@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
@font-face {
    font-family: 'NotoSansKR';
    src: url('../fonts/NotoSansKR-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'NotoSansKR';
    src: url('../fonts/NotoSansKR-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'NotoSansKR';
    src: url('../fonts/NotoSansKR-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'NotoSansKR';
    src: url('../fonts/NotoSansKR-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'NotoSansKR';
    src: url('../fonts/NotoSansKR-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'NotoSansKR';
    src: url('../fonts/NotoSansKR-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'NotoSansKR';
    src: url('../fonts/NotoSansKR-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'NotoSansKR';
    src: url('../fonts/NotoSansKR-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'NotoSansKR';
    src: url('../fonts/NotoSansKR-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

*{
	padding:0;
	margin:0;
	box-sizing: border-box;
}
ul,li,dl,dt,dd,ol{
	list-style:none;
}
body {
    font-family: 'NotoSansKR', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #373737;
    letter-spacing: -1px;
    background-color: #EFF3F7;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    border: 0;
    vertical-align: top;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}
input,textarea{outline:0;border: 1px solid var(--border-color);}
button {outline:0;border:0;cursor:pointer;background-color: transparent;}
input,input[type="submit"]{
   appearance: none;
   border-radius: 0;
   -webkit-appearance: none;
   -webkit-border-radius: 0;
}
input[type="radio"],
input[type="checkbox"]{
	appearance: auto;
	-webkit-appearance: auto;
}
input:focus,
textarea:focus,
select:focus,
button:focus{ outline: none; box-shadow: none;}
button,label{ cursor:pointer}
b{font-weight:600;}
table {
    border-collapse: collapse;
}
input[type=text]:focus {
    box-shadow: none;
    border: 0;
}
 

:root {
    --main-color:#FFC300;
    --border-color: #E0E0E0;
    --tb-bg-color: #FBFBFB;
}
.main_color {
    color: var(--main-color);
}

/* index 로그인 화면*/
.login-page {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../main_imgs/login_bg.png);
    background-repeat: no-repeat;
    background-size: cover; 
}
.blue_color {color: var(--main-color);}
.login_form_wrap {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
}
.login_form_wrap .logo_tit {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 40px;
}
.login_form_wrap .login_form {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.login_form_wrap .login_form .login_input,
.login_form_wrap .login_form .pw_input {
    width: 100%;
    height: 50px;
    border-radius: 5px;
    margin-bottom: 10px;
    padding-left: 20px;
}
.login_form_wrap .login_form .login_options {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/*아이디 찾기*/
.login_form_wrap .login_form .login_options .find_wrap {}
.login_form_wrap .login_form .login_options .find_wrap a:hover {
	text-decoration: underline;
}
.login_form_wrap .btn_wrap.find_btn .complete_btn {
	margin-top: 0;
}

/* 체크박스 */
.login_form_wrap input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    background-color: transparent;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    padding: 3px;
}
.login_form_wrap .login_options {
    color: #fff;
}
.login_form_wrap .login_options label {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* 체크되었을 때 */
.login_form_wrap input[type="checkbox"]:checked {
    background-color: var(--main-color);
    border-color: var(--main-color);
}
.login_form_wrap input[type="checkbox"]:checked::after {
    content: "✔";
    font-size: 10px;
    color: #fff;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* .login_form_wrap .login_form .btn_login {
    width: 100%;
    padding: 15px 0;
    color: #fff;
    background-color: var(--main-color);
    border-radius: 5px;
    border: 1px solid var(--main-color);
    margin-top: 20px;
} */
.login_form_wrap .btn_login_box {}
.login_form_wrap .btn_login_box .btn_login {
    display: block;
    text-align: center;
    background: var(--main-color);
    padding: 15px 0;
    margin-top: 30px;
    border-radius: 5px;
	width: 100%;
    color: #fff;
}




/* 모달*/
.modal_bg {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.4);
    z-index: 9;
}
.modalbox {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    overflow: hidden;
    z-index: 11;
    width: 100%;
    max-width: 500px;
    width: calc(100% - 30px);
    max-height: calc(100vh - 30px);
    overflow-y: auto;
    background: #fff;
}
.close {
    position: absolute;
    top: 15px;
    right: 15px;
}
.modalbox {
    display: none;
}
.modal_cotents {
    background-color: #fff;
    padding: 20px;
}

/* 아이디 찾기 */

.find_top_wrap{display:flex; justify-content: space-around; background:#f7f7f7; margin-bottom:20px; text-align:cener;}
.find_top_wrap > div{padding:10px 0; cursor:pointer; color:#9f9f9f; font-weight:500; width:100%; font-size:13px;}
.find_detail_txt{border:1px solid var(--main-color); background-color:#fff;
color: var(--main-color) !important;}
.find_top_wrap > div{padding:10px 0; cursor: pointer; text-align: center; color:#9f9f9f; font-weight:500; width:100%; font-size:14px;}
.find_top_tt{text-align: center; border-bottom:1px solid #eee; margin-bottom:20px; padding-bottom:20px;}
.find_top_tt > p:first-child{font-size: 18px; font-weight: 500; color:#373737;}
.find_top_tt > p:last-child{color: #858585; font-weight: 350; font-size:14px;}
.joinform_box{margin-bottom:10px; display:flex; justify-content: flex-start; align-items: baseline; flex-wrap:wrap;}
.joinform_box_tt{font-weight:500; font-size:13px; flex-basis:20%; max-width:20%; font-size:12px; font-weight:500; color:#373737;}
.joinform_box_tt > div > span{color:#4D7CFF; margin-left:3px;}
.joinform_box_form{flex-basis:80%; max-width:80%;}
.joinform_box::after{content:""; display: block; clear:both;}

.joinform_input{width:100%; color:#9F9F9F; border:1px solid #eee; border-radius:3px; padding:10px 8px; font-weight:400; font-size: 11px;}
.joinform_box_form_top{margin-bottom:4px;}
.joinform_box_form_top::after{content:""; display: block; clear: both;}

.next_box{display:flex; justify-content: space-between; text-align: center;}
.next_box > div:first-child{margin-right:4px;}
.next_box > div{background:#D1D1D1; border-radius:3px; width:100%;}
.next_box > div > a{display:block; width:100%; padding:10px; font-weight:400; cursor: pointer; font-size:14px; font-family: 'Noto Sans KR', sans-serif !important;}
.next_box > div:last-child{margin-left:4px;}
.find_next_btn{background-color: var(--main-color) !important;}
.find_next_btn > a{color:#fff;}








/* 이용약관 */
.login_form_wrap .agree_wrap {
    width: 100%;
}
.login_form_wrap .agree_wrap h4 {
    padding-left: 5px;
    border-left: 4px solid var(--main-color);
}
.login_form_wrap .agree_wrap .agree_box {
    margin-bottom: 20px;
}
.login_form_wrap .agree_wrap .agree_text {
    margin: 10px 0;
    padding: 10px;
    max-height: 100px;
    scroll-behavior: smooth;
    scrollbar-color: var(--main-color) #f7f7f7;
    overflow-y: auto;
    background: #fff;
    color: #666;
    border-radius: 5px;
    border: 1px solid var(--border-color);
}
.login_form_wrap .agree_check_all {
    margin-bottom: 20px;
}
.login_form_wrap .btn_wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}
.login_form_wrap .btn_wrap li{
    flex: 1;
}
.login_form_wrap .btn_wrap li a{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    padding: 15px 0;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.login_form_wrap .btn_wrap li .prev_btn {
    background-color: #4F4F4F;
    border-color: #4F4F4F;
}
.login_form_wrap .btn_wrap li .prev_btn:hover {
    background-color: #B1AEAE;
}
.login_form_wrap .btn_wrap li .complete_btn:hover {
    background-color: #fff;
    color: var(--main-color);
}
.login_form_wrap .form_group label {
	margin-bottom: 10px;
}

/* 회원가입 */
.join_form_wrap {
    width: 100%;
}
.join_form_wrap .form_group {
    display: flex;
    flex-direction: column;
}
.join_form_wrap .input_row > div {
    height: 100%;
}
.join_form_wrap .input_row > div .id_check {
    background: var(--main-color);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    border-radius: 5px;
}
.join_form_wrap .form_group {
    margin-bottom: 20px;
}
.join_form_wrap .form_group.pw_box {
    margin-bottom: 0;
}
.join_form_wrap .form_group.two_col input {
    flex: 1;
}
.join_form_wrap .front_num {
    flex: 0 0 100px;
    max-width: 100px;
}
.join_form_wrap .complete_btn {
    background: var(--main-color);
    padding: 15px 0;
    text-align: center;
    border-radius: 5px;
    margin-top: 30px;
	color: #fff;
}
.join_form_wrap .name_box {
    margin-top: 20px;
}

.join_form_wrap .correct_txt {
    padding: 5px 0;
    font-size: 14px;
}
.idcheck {
    display: none;
}
.idcheck.available {
    display: block;
}
.idcheck.unavailable {
    display: block;
}



/* 정보수정 */
.myform_box_tt {
	font-weight: 500;
    font-size: 14px;
    flex-basis: 20%;
    max-width: 20%;
    color: #373737;
}
.myform_input {
	width: 100%;
    color: inherit;
    border: 1px solid #eee;
    border-radius: 3px;
    padding: 10px 8px;
    font-weight: 400;
    font-size: 11px;
}

.my_page .modal_logo_box .tt {display: none;}
.my_page .modal_top_tt {
	text-align: center;
	font-size: 1.5rem;
	font-weight: 600;
	padding-bottom: 25px;
}
.my_page .correct_txt {
	font-size: 12px;
}
.my_page .next_box > div:last-child button {
	width: 100%;
    height: 100%;
    color: #fff;
    font-size: 14px;
}


/*main_common*/
.header {
    width: 100%;
    height: 80px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #E9E9E9;
    box-shadow: 3px 2px 8px rgba(0,0,0,0.07);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 3;
}
.header .logo {}
.header .logo a {
    display: flex;
    align-items: center;
    font-size: 30px;
    font-weight: 700;
    gap: 10px;
    color: var(--main-color);
}
.header .hd_menu_wrap {
    margin-left: auto;
}
.header .hd_menu_wrap .login_user_wrap {
    display: flex;
    align-items: center;
    gap: 5px;
}
.header .hd_menu_wrap .login_user_wrap button {
    color: var(--main-color);
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header .hd_menu_wrap .login_user_wrap button i {
    font-size: 1.2rem;
}

.menu_btn_wrap {
    width: 50px;
    height: 50px;
    position: relative;
    display: none;
}
.menu_btn_wrap .menu-btn span{
    display: block;
    width: 70%;
    height: 2px;
    background: #111;
    transition: all 0.3s;
    position: absolute;
    left: 0;
    transition-duration: 1s;
    top: 50%;
}
.menu_btn_wrap .menu-btn span:nth-child(1){
    width: 50%;
    top: 35%;
    transition: width 0.3s ease-in-out;
}
.menu_btn_wrap .menu-btn span:nth-child(2){}
.menu_btn_wrap .menu-btn span:nth-child(3){
    width: 50%;
    top: 65%;
    transition: width 0.3s ease-in-out;
}
.menu_btn_wrap.active .menu-btn span:nth-child(1),
.menu_btn_wrap.active .menu-btn span:nth-child(3) {
    width: 70%;
}

#left_menu{
    width: 240px;
    border-right: 1px solid #ddd;
    margin-top: 80px;
    /* height: 100%; */
    height: calc(-80px + 100dvh);
    overflow: hidden auto;
    scroll-behavior: smooth;
    scrollbar-color: var(--font-color) #fff;
    scrollbar-width: thin;
    position: fixed;
    transition: left 0.5s ease 0s;
    z-index: 3;
    background: #fff;
    box-shadow: 3px 2px 8px rgba(0,0,0,0.07);
    
    position: fixed;
    top: 0;
    left: -240px;
}
#left_menu.active {
    left: 0;
}
#left_menu .menu_list li {}
#left_menu .menu_list li .menu {
    display: flex;
    align-items: center;
    /* padding: 20px; */
    padding: 12px 20px;
    /* background: #fff; */
    border-bottom: 1px solid #F1F1F1;
    font-weight: 500;
    cursor: pointer;
    gap: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
}

/*추가 ↓*/
#left_menu .menu_list li .menu::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--main-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: 1;
}
#left_menu .menu_list li .menu:hover::after {
    transform: scaleX(1);
}
/*추가 ↑*/

/* 클릭된 메뉴 스타일 */
/* #left_menu .menu_list li .menu.active {
    background-color: var(--main-color);
    color: #fff;
} */
#left_menu .menu_list li .menu.active .arrow {
    color: #fff;
    /* transform: rotate(180deg); */
}

#left_menu .menu_list li .menu .arrow{
    margin-left: auto;
    color: #999;
    transition: transform 0.3s ease;
    transform: rotate(0deg);
}
#left_menu .menu_list li .sub_menu {
    /* display: none; */
    /* padding: 10px 0; */
}
#left_menu .menu_list > li:first-child .sub_menu {
    /* display: block; */
}
#left_menu .menu_list li .sub_menu a {
    /* padding: 15px 0 15px 40px; */
    padding: 12px 0 12px 40px;
    background-color: #FFF9F1;
    display: inline-flex;
    justify-content: flex-start;
    gap: 5px;
    width: 100%;
    white-space: nowrap;
    transition: color 0.3s ease-in-out;
}
#left_menu .menu_list li .sub_menu a img {
    object-fit: contain;
}

#left_menu .menu_list .menu .wh_icon {
    display: none;
}
#left_menu .menu_list .menu.active .main_icon {
    display: none;
}
#left_menu .menu_list .menu.active .wh_icon {
    display: inline-block;
}

#left_menu .menu_list li.active .sub_menu {
    display: block;
}

#left_menu .menu_list li.active .sub_menu {
    display: block;
}


#left_menu .menu_list li .menu.current {
    background-color: var(--main-color);
    color: #fff;
}
#left_menu .menu_list li .menu.current .main_icon {
    display: none;
}
#left_menu .menu_list li .menu.current .wh_icon {
    display: inline-block;
}
#left_menu .menu_list li .menu.active:not(.current) {
    background-color: var(--main-color);
    color: #fff;
}
#left_menu .menu_list li .menu.active:not(.current) .main_icon {
    display: none;
}
#left_menu .menu_list li .menu.active:not(.current) .wh_icon {
    display: inline-block;
}


/*메인*/
#wrapper, #container_wr {
    width: 100%;
}
#container_wr {
    padding-left: 240px;
    padding-top: 80px;
    transition: width 0.3s ease-in-out;
}

#left_menu:not(.active) + #container_wr {
    width: 100%;
    padding-left: 0;
}

.content-wrap {
    padding: 30px 40px 80px;
    /* background-color: #EFF3F7; */
}
.sd_box {
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 2px rgba(139,139,139,0.25);
    background-color: #fff;
	margin-top: 30px;
}
.title_txt h3 {
    font-size: 40px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}
.title_txt p {
    font-size: 18px;
    color: #666;
    padding-top: 5px;
}
.ad_sub_page .title_txt p {
	padding-bottom: 30px;
}

.top_view_wrap {
    /* display: grid; */
    /* grid-template-columns: repeat(3, 1fr); */
    gap: 10px;
    margin: 30px 0;

    display: flex;
    flex-wrap: wrap;
}
.top_view_wrap .view_list{
    /* border-radius: 10px;
    padding: 25px 20px;
    border: 1px solid var(--border-color);
    display: flex;
    gap: 20px; */

    display: flex;
    gap: 20px;
    flex-direction: column;
    min-width: 200px;
    width: calc(16.666% - 10px);
    gap: 10px;
    border: 0;
    border-right: 1px solid var(--border-color);
    align-items: center;
    text-align: center;
}
/*추가 ↓*/
.top_view_wrap .view_list:last-child {
    border-right: 0;
}
/*추가 ↑*/

.top_view_wrap .view_list .icon_box {
    /* width: 70px; */
    aspect-ratio: 1/1;
    border-radius: 10px;
    background: linear-gradient(-45deg, #FFC300, #FFA600);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
}
.top_view_wrap .view_list .list_info {font-weight: 500;}
.top_view_wrap .view_list .list_info .name{
    font-size: 18px;
    color: #666;

}
.top_view_wrap .view_list .list_info .count{
    font-size: 30px;
    color: var(--main-color);
}

.search_filer_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.search_filer_wrap .filter_left {
    height: 45px;
    min-width: 150px;
}
.search_filer_wrap .filter_left select{
    width: 100%;
    height: 100%;
    vertical-align: top;
    padding-left: 15px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
}
.search_filer_wrap .filter_right {
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    gap: 5px;
}
.search_filer_wrap .filter_form {
    height: 45px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}
.search_filer_wrap .filter_right .search_box {
    border: 1px solid var(--border-color);
    border-radius: 5px;
    height: 100%;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 330px;
overflow: hidden;
}
.search_filer_wrap .filter_right .search_box input {
    height: 100%;
    flex: 1;
    padding: 0 15px;
    box-shadow: none;
    outline: none;
	
	border:none;
}
.search_filer_wrap .filter_right .search_box input:focus {
    border-color: var(--main-color);
    outline: none;
    box-shadow: none;
} 
.search_filer_wrap .filter_right .search_box .search_btn {
    height: 100%;
    padding: 0 10px;
}
.view_table_wrap .tit_wrap .excel_btn {
    color: #156A36;
    border-color: #156A36;
    background-color: #fff;
}
.view_table_wrap .right_box.add_excel {
    height: 45px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.search_filer_wrap .filter_right .btn-register,
.search_filer_wrap .filter_right .delete_btn {
    border: 1px solid var(--main-color);
    border-radius: 5px;
    height: 100%;
    /* padding: 0 20px; */
    min-width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--main-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}
.search_filer_wrap .filter_right .btn-register:hover, 
.search_filer_wrap .filter_right .delete_btn:hover {
    background-color: var(--main-color);
    color: #fff;
}
.search_filer_wrap .filter_right .btn-register .wh_icon {
    display: none;
}
.search_filer_wrap .filter_right .btn-register:hover .main_icon {
    display: none;
}
.search_filer_wrap .filter_right .btn-register:hover .wh_icon {
    display: inline-block;
}

/**/

.view_table {
    overflow-x: auto !important;
}
.view_table table {
    width: 100%;
    table-layout: fixed;
    min-width: 1300px;
}
.view_table table thead {
    background-color: var(--tb-bg-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.view_table table th {
    font-weight: 400;
    height: 50px;
    position: relative;
}
.view_table table th::after {
    content: '|';
    color: #C7C7C7;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.view_table table th:last-child::after {
    content: '';
    display: none;
}
.view_table table th .type {
    font-size: 12px;
    color: #666;
    display: block;
}
.view_table table th {}
.view_table .col-ckeck {width: 80px;}
.view_table .col-report {width: 150px;}
.view_table .col-type {width: 210px;}
.view_table .col-day {width: 80px;}
.view_table .col-all {width: 100px;}
.view_table .col-status {width: 120px;}
.view_table .col-star {width: 100px;}
.view_table .col-stop {width: 100px;}
.view_table .col-date {width: 150px;}
.view_table .col-wd80 {width: 80px;}
.view_table .col-wd100 {width: 100px;}
.view_table .col-wd120 {width: 120px;}
.view_table .col-wd150 {width: 150px;}
.view_table .col-wd200 {width: 200px;}
.view_table .col-wd250 {width: 250px;}

.view_table td .bo_tit.tit_box {
	display: flex;
    align-items: center;
	color: inherit;
    font-weight: 500;
}


.view_table td .tit {
	display: inline-block;
	/* width: 100%; */
	text-align: left;
	white-space: nowrap;
  	overflow: hidden;
  	text-overflow: ellipsis;
	padding: 0 5px;
	max-width: calc(100% - 30px);
}

.view_table table td { 
    font-size: 14px;
    text-align: center;
    height: 50px;
    padding: 5px 0;
    border-bottom: 1px solid #E9E9E9;
	word-wrap: break-word;
    overflow-wrap: break-word;
}
.view_table tbody tr.even{
    background-color: #fff;
}
.view_table tbody tr:nth-child(even) {
	background-color: var(--tb-bg-color);
}
.view_table tbody:nth-child(even) {
    background-color: var(--tb-bg-color);
    border-top: 1px solid #E9E9E9;
}
.view_table table td .status {
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 5px;
    max-width: 85px;
    margin: 0 auto;
}
.view_table table td .ing {
    color: #0765E5;
    background-color: #EAF6FF;
}
.view_table table td .stay {
    color: #88740F;
    background-color: #F9F2E4;
}
.view_table table td .finish {
    color: #20845C;
    background-color: #E3FFF4;
}

.view_table table td .star,
.view_table table td .stop {
    font-size: 1.5rem;
    color: #C7C7C7;
}
/*
.view_table tbody:nth-child(even) td .star {
    background: linear-gradient(45deg, #3668E7, #2C4B98);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.view_table tbody:nth-child(odd) td .stop {
    background: linear-gradient(45deg, #3668E7, #2C4B98);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
*/
.view_table td .star.on {
    background: linear-gradient(45deg, #3668E7, #2C4B98);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.view_table td .stop.on {
    background: linear-gradient(45deg, #3668E7, #2C4B98);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.view_table table td .excel_btn {
    color: #156A36;
    border: 1px solid #156A36;
    background-color: #fff;
    width: 100%;
    padding: 5px 0;
    border-radius: 5px;
}

.pg_wrap {
    float: none;
    clear: none;
    display: unset;
}
.pg_wrap .pg {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 30px;
}
.pg_wrap .pg a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    aspect-ratio: 1/1;
    font-size: 14px;
}
/* .pg_wrap .pg a.reverse img {
    transform: scaleX(-1);
} */




.dashboard_bottom .card_tabs ul {
    display: flex;
    align-items: center;
}
.dashboard_bottom .card_tabs ul li {
    flex-basis: 33.333%;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    padding: 13px 0;
    background-color: #FBFBFB;
    border-right: 1px solid #DDD;
    border-bottom: 1px solid #DDD;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.dashboard_bottom .card_tabs ul li:last-child {
    border-right: 0;
}
.dashboard_bottom .card_tabs ul li.on {
    background-color: #ECF4FF;
    color: var(--main-color);
}
.dashboard_bottom .card_tabs .tab-item {
    display: none;
}
.dashboard_bottom .card_tabs .tab-item:nth-of-type(1) {
    display: block;
}
.tab-pg_wrap .tab-pg-item {
    display: none;
}
.tab-pg_wrap .tab-pg-item:nth-of-type(1) {
    display: block;
}

/*이용권 안내*/
.card_guide .card-content {
    padding: 10px 20px;
}
.card_guide .card_con_product {
    position: relative;
    border-radius: 15px;
    box-shadow: 0 0 10px 0 rgba(1,111,242,0.5);
    padding: 50px 20px 10px 20px;
    margin-bottom: 20px;
}
.card_guide .card_con_product:last-child {
    /* margin-bottom: 0; */
}
.card_guide .card_con_product .sale_tit{
    font-size: 14px;
    color: #fff;
    background-image: url(../main_imgs/card_sale_bg.png);
    background-repeat: no-repeat;
    position: absolute;
    top: 8px;
    left: -7px;
    width: 120px;
    height: 30px;
    line-height: 30px;
    padding-left: 15px;
}
.card_guide .card_con_product .product_group {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.card_guide .card_con_product .product_group .product p{
    font-size: 20px;
    font-weight: 600;
    color: #333;
}
.card_guide .card_con_product .product_group .product > div {
    /* font-size: 22px; */
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -1px;
}
.card_guide .card_con_product .product_group .product .gy {
    color: #7d7d7d;
    text-decoration: line-through;
}
.card_guide .card_con_product .product_group .product .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--main-color);
}
.card_guide .card_con_product .product_group .product .price .won {
    font-size: 20px;
    font-weight: 400;
}
.card_guide .card_con_product .product_group .buy {
    width: 100%;
    max-width: 100px;
    text-align: center;
}
.card_guide .card_con_product .product_group .buy a{
    display: block;
    font-size: 14px-;
    padding: 15px 0;
    border: 1px solid var(--main-color);
    border-radius: 5px;
    color: var(--main-color);
    font-weight: 700;
    font-size: 18px;
    transition: background-color 0.3s ease-out, color 0.3s ease-out;
}
.card_guide .card_con_product .product_group .buy a:hover {
    background-color: var(--main-color);
    color: #fff;
}


#ft, #aside{display: none;}
#container_wr:after {
    display: none;
    content: none;
}
