@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;
}
@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/Pretendard-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/Pretendard-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/Pretendard-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'GmarketSans';
    src: url('../fonts/GmarketSansTTFBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

* {
	padding:0;
	margin:0;
	box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}
ul,li,dl,dt,dd,ol{
	list-style:none;
}
body {
    font-family: 'NotoSansKR', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #2B2B2B;
    letter-spacing: -1px;
}
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:0;box-shadow: none !important;}
button {outline:0;border:0;cursor:pointer;background-color: #FBFBFB;
    border: 1px solid #C7C7C7;
    border-radius: 5px;}
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;
}
a:focus,
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;
}

:root {
    /* --main-color:#0067FF; */
    --main-color:#4389FF;
    --sub-color: #ECF4FF;
    --sub-main-color: #0D47A1;
    --border-color: #E5E5E5;
    --sub-black: #4F4F4F;
    --sub-bg-color: #FBFBFB;
}
.main_color {
    color: var(--main-color);
}
.sub_main_color {
    color:var(--sub-main-color);
}
.mb {display: none;}

select {
appearance: none;         /* 크롬, 사파리 등 */
-moz-appearance: none;    /* 파이어폭스 */
-webkit-appearance: none; /* 오래된 웹킷 브라우저 */
background-size: 14px;
background-image: url(../main_img/angle_down.svg);
background-repeat: no-repeat;
background-position: right center;
background-position: right 10px center;
}

/* index 로그인 화면*/
.login-page {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #EFEFEF;
}
.blue_color {color: var(--main-color);}
.login_form_wrap {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(205, 206, 206, 0.25);
    background: #fff;
}
.login_form_wrap .logo_tit {
    font-size: 26px;
    font-weight: 600;
    color: var(--sub-font-color);
    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;
    border: 1px solid #E5E5E5;
}
.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: var(--sub-font-color);
}
.login_form_wrap .login_options label {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* 체크되었을 때 */
.login_form_wrap input[type="checkbox"]:checked {
    background-color: #fff;
}
.login_form_wrap input[type="checkbox"]:checked::after {
    content: "✔";
    font-size: 10px;
    color: var(--main-color);
    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;
    border: 0;
}

/* 아이디 찾기 */

.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);
    color: initial;
}
.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;
    color: #fff;
}
.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;
    color: #fff;
}
.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: 10px;
	color: #fff;
    border: 0;
}
.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;
}




/**/
.red_color {
    color: #EB292E;
    font-weight: 500;
}
.register_form {
	max-width: 750px;
    margin: 0 auto;
	padding: 50px;
}
.form_content {
	margin: 25px 0;
	padding: 25px 0;
	border-top: 3px solid #EDEDED;
	border-bottom: 3px solid #EDEDED;
}
.form_content .form_group {
	margin-bottom: 25px;
	display: flex;
	flex-direction: column;
}
.form_content .form_group:last-child {
	margin-bottom: 0;
}
.form_content .form_group label {
	display: block;
	cursor: unset;
	margin-bottom: 10px;
	font-weight: 500;
}
.form_content .form_group label small {
	font-size: 14px;
	color: #666;
}
.form_content .form_wrap .bank_txt {
	word-break: keep-all;
}


.required {color: #C00000;}
input.required {color: #373737;}

.input_row {
	display: flex;
	align-items: center;
	gap: 5px;
	height: 45px;
	/* margin-top: 10px; */
}
.form_group input {
	border: 1px solid var( --border-color);
	border-radius: 5px;
	height: 45px;
    padding: 0px 10px;
    font-size: 14px;
}
.input_row input {
	flex: 1;
}
.input_row .btn-search {
	background-color: var(--main-color);
    color: #fff;
    font-weight: 500;
    height: 100%;
    padding: 0 25px;
    border-radius: 5px;
}

.form_content .radio_group {
	display: flex;
	align-items: center;
	gap: 30px;
}
.form_content .radio_group label{
	margin-bottom: 0;
	display: flex;
	align-items: center;
	gap: 5px;
	cursor: pointer;
}

.form_group.two_col {
	flex-direction: row;
	gap: 10px;
}
.form_group.two_col > div {
	display: flex;
	flex-direction: column;
	flex: 1;
}
.btn_box {
	display: flex;
	align-items: center;
	justify-content: center;
}
.btn_box .btn_save {
	background-color: var(--main-color);
	color: #fff;
	border-radius: 5px;
	font-size: 20px;
	font-weight: 500;
	width: 100%;
    max-width: 150px;
    padding: 15px 0;
}
.register_form button {
	border: 1px solid var(--main-color);
	transition: background-color 0.3s ease, color 0.3s ease;
}
.register_form button:hover {
	color: var(--main-color);
	background-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: 100;
}
.modalbox {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    overflow: hidden;
    width: calc(100% - 30px);
    max-width: 500px;
    max-height: calc(100vh - 30px);
    overflow-y: auto;
    z-index: 100;
    background-color: #fff;
}
.talk_list_modal.modalbox {
    max-width: 750px;
}
.talk_ranking_modal.modalbox {
    max-width: 430px;
}
.modalbox .modal_box {
    position: relative;
}
.modalbox .modal_box .tt h3 {
    font-size: 25px;
    font-weight: 600;
    background-color: #383838;
    padding: 10px 0;
    color: #fff;
    text-align: center;
}
.modalbox .close {
    position: absolute;
    top: 15px;
    right: 15px;
}
.modal_box .close.wh {
    color: #fff;
}
.modal_cotents {
    background-color: #fff;
    padding: 20px;
    font-family: 'Noto Sans KR', sans-serif;
}
.modal_cotents .text {
    font-size: 18px;
    word-break: keep-all;
    margin-bottom: 20px;
}
.talk_list_modal .modal_cotents .container {
    display: flex;
    gap: 10px;
}
.talk_list_modal .modal_cotents .container > div {
    width: 50%;
}
.modal_cotents .container .input-wrap {
    /* height: 40px; */
    display: flex;
    gap: 5px;
    margin-bottom: 5px;
    flex-wrap: wrap;
}
.modal_cotents .container .input-wrap input {
    height: 100%;
    border: 1px solid #C7C7C7;
    border-radius: 5px;
    flex: 1;
    padding: 5px 10px;
    font-size: 14px;
    height: 40px;
}
.modal_cotents .container .input-wrap button {
    border: 1px solid #C7C7C7;
    border-radius: 5px;
    font-size: 14px;
    height: 40px;
}
.modal_cotents .container .input-wrap button i {
    font-size: 1rem;
}
.modal_cotents .container .btn-wrap {
    display: flex;
    gap: 5px;
    margin-top: 10px;
}
.modal_cotents .container .btn-wrap button {
    flex: 1;
    border: 1px solid #C7C7C7;
    border-radius: 5px;
    color: var(--sub-main-color);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    height: 40px; /*확인*/
}
.modal_cotents .container .input-wrap .btn_right {}
.modal_cotents .container .input-wrap .btn_right button {}
.modal_cotents .container .input-wrap .register-btn {
    /* height: 100%; */
    padding: 0 10px;
    background-color: var(--sub-bg-color);
}
.modal_cotents .container .left .table-wrap {
    min-height: 260px;
    max-height: 260px;
    overflow-y: auto;
    border: 1px solid #C7C7C7;
}
.modal_cotents .container .right .table-wrap {
    min-height: 215px;
    max-height: 215px;
    overflow-y: auto;
    border: 1px solid #C7C7C7;
}
.modal_cotents table {
    width: 100%;
    font-size: 14px;
}
.modal_cotents table thead {
    background-color: #F6F6F6;
    color: #333;
    height: 40px;
}
.modal_cotents table tbody tr:nth-child(even) {
    background-color: #FAFAFA;
}
.modal_cotents table tbody td {
    
    height: 30px;
    line-height: 30px;
    /* padding-left: 8px; */
   
    /* border-bottom: 1px solid #C7C7C7; */
}
/* .modal_cotents table tbody tr:not(:last-child) td */

.modal_cotents table tbody td:nth-child(2) {
    padding-left: 8px;
    position: relative;
}
.modal_cotents table tbody td:nth-child(2)::before,
.modal_cotents table tbody td:nth-child(2)::after {
    content: "";
    width: 1px;
    height: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #E9E9E9;
}
.modal_cotents table tbody td:nth-child(2)::before {
    left: 0;
}
.modal_cotents table tbody td:nth-child(2)::after {
    right: 0;
}
.modal_cotents table tbody td.call_cell::after {
    content: none;
}

.modal_cotents table thead th,
.modal_cotents table tbody td {
    /* border-bottom: 1px solid #C7C7C7; */

    /*
    border-width: 1px 1px 0 0;
    border-style: solid;
    border-color: #C7C7C7;
    */
}
.modal_cotents table thead th {
    border-top: 0;
}
.modal_cotents table thead th:last-child,
.modal_cotents table tbody td:last-child {
    text-align: center;
    border-right-color: transparent;
    padding-left: 0;
}

.modal_cotents table tbody td:first-child {
    padding-left: 0;
    text-align: center;
}
.modal_cotents .call_group {
    margin-bottom: 5px;
}
.modal_cotents .call_group select {
    width: 100%;
    height: 40px;
    border: 1px solid #c7c7c7;
    font-size: 14px;
    padding: 5px 10px;
    color: #797979;
    border-radius: 5px;
}

/* 체크박스 */
.talk_list_modal input[type="checkbox"],
.talk_ranking_modal input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    background-color: #fff;
    cursor: pointer;
    position: relative;
    padding: 3px;
    display: flex;
    align-items: center;
    margin: 0 auto;
}
/* 체크되었을 때 */
.talk_list_modal input[type="checkbox"]:checked,
.talk_ranking_modal input[type="checkbox"]:checked
 {
    background-color: var(--sub-main-color);
    /* border-color: #03C85A; */
}
.talk_list_modal input[type="checkbox"]:checked::after,
.talk_ranking_modal input[type="checkbox"]:checked::after {
    content: "✔";
    font-size: 10px;
    color: #fff;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/* 순위변동시 알림톡 설정 클릭시 알림톡 발송설정 */
.talk_ranking_modal .select-row input[type="checkbox"] {
    margin: unset;
    margin-right: 10px;
}
.talk_ranking_modal .modal_cotents .container .table-wrap {
    min-height: 218px;
    max-height: 218px;
    overflow-y: auto;
    border: 1px solid #C7C7C7;
}
.talk_ranking_modal .select-wrap {
    padding: 10px 9px;
}
.talk_ranking_modal .select-wrap .select-row {
    margin-bottom: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.talk_ranking_modal .select-wrap .select-row:last-child {
    margin-bottom: 0;
}
.talk_ranking_modal .select-row select {
    border-color: #c7c7c7;
    border-radius: 5px;
    padding: 4px 10px;
    margin: 0 5px;
    color: #787878;
    font-size: 14px;
    width: 100px;
    height: 40px;
}
.talk_ranking_modal .count-txt {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    color: #666;
}
.charge-btn {
    display: flex;
    align-items: center;
    padding: 6px 10px;
    border: 1px solid #c7c7c7;
    gap: 4px;
    border-radius: 5px;
    background: var(--sub-bg-color);
}
.charge-btn span {
    line-height: 1;
}

.memo_form textarea {
    width: 100%;
    height: 250px;
    border: 1px solid #c7c7c7;
    resize: none;
}
.memo_form form > div {
    padding-top: 10px;
    text-align: center;
}
.modify-btn {
    font-size: 14px;
    font-weight: 500;
    padding: 5px 10px;
}



/*main_common*/
.header {
    width: 100%;
    height: 80px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 3;
}
.header .logo{}
.header .hd_menu_wrap{
    margin-left: auto;
}
.header .hd_menu_wrap ul{
    display: flex;
    gap: 8px;
}
.header .hd_menu_wrap ul li a{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.header .hd_menu_wrap ul li a{
    padding: 0 10px;
    transition: color 0.3s ease-in;
}
.header .hd_menu_wrap ul li:hover a{
    color: var(--main-color);
}
.hd_menu_wrap ul li a img {
    transition: all 0.3s ease-in;
}
.hd_menu_wrap ul li a:hover img {
    filter: brightness(0) saturate(100%) invert(39%) sepia(92%) saturate(601%) hue-rotate(180deg) brightness(93%) contrast(89%);
}

.menu_btn_wrap {
    width: 50px;
    height: 50px;
    position: relative;
    display: none;
}
.menu_btn_wrap .menu-btn span{
    display: block;
    width: 60%;
    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: 35%;
    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: 35%;
    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: 60%;
}

#left_menu{
    width: 250px;
    border-right: 1px solid #ddd;
    margin-top: 80px;
    height: calc(-80px + 100dvh);
    overflow: hidden auto;
    /* scroll-behavior: smooth;
    scrollbar-color: var(--sub-color) #fff;
    scrollbar-width: thin; */
    position: fixed;
    transition: left 0.3s ease-in-out, opacity 0.3s ease-in-out;
    z-index: 3;
    background: #fff;
    
    position: fixed;
    top: 0;
    left: -250px;
    padding-bottom: 70px;
}

#left_menu::-webkit-scrollbar {
    width: 6px;
}
#left_menu::-webkit-scrollbar-track {
    background: #fff;
}
#left_menu::-webkit-scrollbar-thumb {
    background-color: var(--sub-color);
    border-radius: 4px;
    border: 1px solid #fff;
}
#left_menu::-webkit-scrollbar-thumb:hover {
    background-color: #D3E7FF;
}


#left_menu.active {
    left: 0;
}
#left_menu .menu_list_wrap {
    /* height: calc(-80px + 100dvh); */
}
#left_menu .menu_list li {}
#left_menu .menu_list li .menu{
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 1px solid #ddd;
    font-weight: 500;
    cursor: pointer;
    gap: 10px;
}
#left_menu .menu_list li .menu .arrow{
    margin-left: auto;
    color: #999;
    transition: transform 0.3s ease;
}
#left_menu .menu_list li .sub_menu {
    display: none;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}
#left_menu .menu_list > li:first-child .sub_menu {
    display: block;
}
#left_menu .menu_list li .sub_menu a {
    padding: 5px 20px;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    white-space: nowrap;
    transition: color 0.3s ease-in-out;
    font-size: 14px;
}
#left_menu .menu_list li .sub_menu a:hover {
    color: var(--main-color);
}
#left_menu .menu_list li .sub_menu a.active {
    color: var(--main-color);
    font-weight: bold;
}
@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}
#left_menu .menu_list li .sub_menu a .sub_icon{
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    margin-left: 5px;
    border-radius: 2px;
    animation: blink 1.5s infinite;
    display: block;
    width: 14px;
    height: 14px;
    line-height: 14px;
    text-align: center;
    padding-right: 1px;
}
#left_menu .menu_list li .sub_menu a .hot{
    background-color: #FC2904;
}
#left_menu .menu_list li .sub_menu a .new{
    background-color: #FCA404;
}


#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.active .menu .arrow {
    transform: rotate(180deg);
}


/*메인*/
#wrapper, #container_wr {
    width: 100%;
}
#container_wr {
    padding-left: 250px;
    padding-top: 80px;
    transition: width 0.3s ease-in-out;
}

#left_menu:not(.active) + #container_wr {
    width: 100%;
    padding-left: 0;
}

.main_banner{
    width: 100%;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 150px;
    position: relative;
    background: url(../main_img/main_banner_bg.png), linear-gradient(to bottom , #fff, #F6F9FF);
    background-repeat: no-repeat;
    background-position-x: right;
    background-size: auto;
}
.main_banner .chart {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.main_banner .bar-container {
    width: 100%;
    max-width: 500px;
    height: 100%;
    display: flex;
    align-items: flex-end;
    /* background: pink; */
    position: absolute;
    right: 0;
    bottom: 0;
    justify-content: space-between;
    padding: 0 20px 0 15px;
    overflow: hidden;
}
.main_banner .bar {
    width: calc(17% - 20px);
    height: 0;
    animation: grow 1.5s ease-out forwards;
    box-shadow: 0px 0 15px rgba(0, 0, 0, 0.3);
    position: relative;
}
.main_banner .bar-icon {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    max-width: 50px;
    animation: moveIcon1 1.5s ease-out forwards;
}

.main_banner .main_tit,
.main_banner ul {
    z-index: 1;
}
.main_banner .main_tit p {
    font-size: 34px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    word-break: keep-all;
}
.main_banner ul {
    display: flex;
    gap: 10px;
    padding-top: 30px;
    flex-wrap: wrap;
}
.main_banner ul li{}
.main_banner ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 18px;
    background-color: #fff;
    border-radius: 50px;
    padding: 12px 22px;
    font-weight: 500;
    color: #111;
    border: 1px solid var(--border-color);
    box-shadow: 1px 2px 6px 0 rgba(255,255,255,0.15);
}

/**/
.dashboard {
    padding: 20px;
    background-color: #F5F6FA;
}
.dashboard .dashboard_top {
    /* display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px; */
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.dashboard .card {
    border: 1px  solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 1px 2px 6px 0 rgba(0, 0, 0, 0.15);
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    padding: 30px;
    background-color: #fff;
}
.dashboard .card h3{
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}
.dashboard .card h3 .more_btn {
    margin-left: auto;
}
.dashboard .card h3 .more_btn i {
    transition: transform 1s ease;
}

.dashboard .card h3 .more_btn:hover i {
    transform: rotate(360deg);
}

.dashboard .card .card-content{
    max-height: 235px;
    overflow-y: auto;
    /* padding-right: 10px; */
}
.dashboard .card .scroll-content::-webkit-scrollbar {
    width: 4px;
}
.dashboard .card .scroll-content::-webkit-scrollbar-thumb {
    background: #C1C1C1;
    border-radius: 5px;
}

.dashboard .card .card-content .card_con {
    display: flex;
    align-items: center;
    padding: 12px 0;
    padding-right: 5px;
    transition: background 0.3s ease;
    border-bottom: 1px dotted var(--border-color);
}

.dashboard .card .card-content .card_con:hover {
    background-color: #f8f8f8;
}
.dashboard .card .card-content .card_con .left {
    margin-left: auto;
}
.dashboard .card .card-content .card_con span {
    font-weight: 600;
}

/*차트*/
.chart_content {
    display: flex; 
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.chart_content .chart_shape {
    /* width: 150px;  */
    /* height: 150px; */
    position: relative; 
    width: 50%;
    max-width: 200px;
    min-width: 150px;
    height: 100%;
    /* margin: 0 auto; */
    display: flex;
    align-items: center;
    justify-content: center;
}
/* .chart_content .chart_shape #slotUsageChart {
    margin: 0 auto;
} */
.chart_content .chart_shape #slotUsageLabel {
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    text-align: center;
}
.chart_content .chart_shape #slotUsageLabel {}
.chart_content .chart_shape #slotUsageLabel > div {
    font-weight: 700;
    font-size: 30px;
}
.chart_content .chart_shape #slotUsageLabel > div .num {
    color: var(--sub-main-color);
    font-size: 40px;
}
.chart_content .chart_shape #slotUsageLabel .total {
    color: var(--sub-black);
}
.chart_content #slotUsageLegend {
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.chart_content #slotUsageLegend .company_list {
  /* margin-bottom: 28px; */
  display: flex;
  align-items: center;
}
.chart_content #slotUsageLegend .company_list .list_color {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  border-radius: 2px;
}
.chart_content #slotUsageLegend .company_list strong {
    margin-left: auto;
}


/*대쉬보드 사용현황 부분*/
.dashboard.renewal .card .card-content {}
.dashboard.renewal .card .card-content .tablebox {
    padding-top: 12px;
}
.dashboard.renewal .card .card-content .tablebox table {
    width: 100%;
}
.dashboard.renewal .card .card-content .tablebox thead tr {
    color: var(--sub-black);
    text-align: left;
}
.dashboard.renewal .card .card-content .tablebox thead tr th {
    font-weight: 500;
}
.dashboard.renewal .card .card-content .tablebox tbody td {
    font-size: 20px;
    font-weight: 600;
}
.dashboard.renewal .card .card-content .bar_wrap {}
.dashboard.renewal .card .card-content .bar_wrap .usage {}
.dashboard.renewal .card .card-content .bar_wrap .usage:first-child {
    margin: 30px 0;
}
.dashboard.renewal .card .card-content .bar_wrap .usage .label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
}
.dashboard.renewal .card .card-content .bar_wrap .usage .label {}
.dashboard.renewal .card .card-content .bar_wrap .usage .label .tit {}
.dashboard.renewal .card .card-content .bar_wrap .usage .label .num_vew {
    font-size: 20px;
    font-family: 'Pretendard';
    font-weight: 400;
}
.dashboard.renewal .card .card-content .bar_wrap .usage .label .num_vew b {
    font-weight: 600;
}
.usage .bar {
    width: 100%;
    height: 6px;
    background: #F5F6FA;
    border-radius: 5px;
    overflow: hidden;
}
.usage .bar.dark {
    background: #e6eaf3;
}
.usage .bar .fill {
    width: 0;
    height: 100%;
    background: var(--main-color);
    border-radius: 5px;
}
.usage .bar .fill.rest {
    background: var(--sub-main-color);
}
/*대쉬보드 사용현황 부분 끝*/


.red {
    color: #FF0000;
}
.dashboard .card .card-content .card_con .status {
    padding: 4px 6px;
    border-radius: 5px;
    margin-right: 4px;
    font-size: 12px;
    font-weight: 600;
}
.dashboard .card .card-content .card_con .left .date {
    font-weight: 400;
}
.slotimgbox {
    display: inline-flex;
    margin-right: 5px;
}

.status_no {
    color: var(--sub-main-color);
    background-color: #E7EEF6;
}
.status_ok {
    color: #fff;
    background-color: #CDCDCD;
}

.dashboard .dashboard_bottom {
    /* display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px; */
    /* padding-bottom: 120px; */
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.dashboard_bottom > div {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
}
.dashboard_bottom .card {
    /* max-height: 600px; */
    max-height: 360px;
    height: 100%;
}
.dashboard_bottom .card .card-content {
    max-height: 550px;
}
.dashboard .table-content {}
.dashboard .table-content table {
    width: 100%;
    table-layout: fixed;
}
.dashboard .table-content table .title{
    /* width: 80%; */
}
.dashboard .table-content table .date{
    /* width: 20%; */
    text-align: center;
}
.dashboard .table-content table thead th{}

.dashboard .table-content table tbody td {
    padding: 12px 0;
    border-bottom: 1px dotted var(--border-color);
}

.dashboard .table-content table tbody tr {}
.dashboard .table-content table tbody .title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.dashboard .table-content table tbody .title:hover a{
    text-decoration: underline;
}
.dashboard .table-content table tbody .date {
    /* padding: 10px 0; */
}
.pg_wrap,
.tab-pg_wrap {
    float: none;
    clear: none;
    display: unset;
}
.pg_wrap .pg,
.tab-pg_wrap .pg{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 30px;
}
.pg_wrap .pg a,
.tab-pg_wrap .pg a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    aspect-ratio: 1/1;
    border: 1px solid #EDEDED;
    font-size: 14px;
}
.pg_wrap .pg a.pg_current , .tab-pg_wrap .pg a.pg_current {
    background: var(--sub-main-color);
    color: #fff;
    font-weight: 500;
    height: unset;
    line-height: unset;
    padding: unset;
    min-width: unset;
    border-radius: unset;
}

/* .pg_wrap .pg a.reverse img,
.tab-pg_wrap .pg a.reverse img {
    transform: scaleX(-1);
} */
.dashboard_bottom .card_tabs ul {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    border-bottom: 1px solid #DDD;
    padding-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
}
.dashboard_bottom .card_tabs ul li {
    flex-basis: 33.333%;
    text-align: center;
    cursor: pointer;
    transition: color 0.3s ease;
    border-right: 1px solid var(--border-color);
}
.dashboard_bottom .card_tabs ul li:last-child {
    border-right: 0;
}
.dashboard_bottom .card_tabs ul li.on {
    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;
}

/*이용권 안내*/
.ticket_info {
    margin: 20px 0 40px;
}
.ticket_info .ticket-wrap {
    padding-top: 12px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.ticket_info .ticket-wrap .card_con_product {
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 20px;
}

.ticket_info .ticket-wrap .card_con_product .product_group p {
    margin-bottom: 8px;
    font-weight: 500;
}
.ticket_info .ticket-wrap .card_con_product .product_group .sale_tit {
    display: inline-block;
    padding: 5px 10px;
    color: #fff;
    background-color: var(--main-color);
    border-radius: 4px;
}
.ticket_info .ticket-wrap .card_con_product .product_group .ptoduct_name {
    color: var(--sub-black);
    font-size: 20px;
}
.ticket_info .ticket-wrap .card_con_product .product_group .original {
    font-size: 18px;
    color: #9F9F9F;
    text-decoration: line-through;
}
.ticket_info .ticket-wrap .card_con_product .product_group .price {
    font-size: 26px;
    font-weight: 700;
}

.ticket_info .ticket-wrap .card_con_product .price_wrap {
    font-weight: 500;
    color: var(--sub-main-color);
    border-top: 1px solid var(--border-color);
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ticket_info .ticket-wrap .card_con_product .price_wrap .price_slot {
    font-size: 18px;
}
/* .ticket_info .ticket-wrap .card_con_product .price_wrap .buy_btn {
  border: 1px solid var(--sub-main-color);
  border-radius: 50px;
  padding: 5px 10px;
  background: linear-gradient(to right, #0D47A1 0%, #0D47A1 0%) no-repeat;
  background-size: 0% 100%;
  background-position: left center;
  background-color: transparent;
  color: var(--sub-main-color);
  font-weight: 600;
  transition: background-size 0.4s ease, color 0.3s ease;
} */
.ticket_info .ticket-wrap .card_con_product .price_wrap .buy_btn {
    border-radius: 50px;
    padding: 10px 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--sub-color);
    border-color: transparent;
}
.ticket_info .ticket-wrap .card_con_product .price_wrap .buy_btn span {
    color: var(--sub-main-color);
    font-weight: 600;
    z-index: 1;
}
.ticket_info .ticket-wrap .card_con_product .price_wrap .buy_btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: conic-gradient(#0D47A1 20deg, transparent 120deg);
    animation: rotate 2s linear infinite;   
}
.ticket_info .ticket-wrap .card_con_product .price_wrap .buy_btn::after {
    content: '';
    background: var(--sub-color);
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}




#ft, #aside{display: none;}

@media (max-width: 1280px) {
    .menu_btn_wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
}