@charset "utf-8";
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');
@import 'reset.css';
:root {

    /* color */
    --color-black: #000000;
    --color-white: #ffffff;

    /* font */
    --fs-36 : 2.25rem;
    --fs-30 : 1.875rem;
    --fs-29 : 1.813rem;
    --fs-28 : 1.75rem;
    --fs-27 : 1.688rem;
    --fs-26 : 1.625rem;
    --fs-25 : 1.563rem;
    --fs-24 : 1.5rem;
    --fs-23 : 1.438rem;
    --fs-22 : 1.375rem;
    --fs-21 : 1.3125rem;
    --fs-20 : 1.25rem;
    --fs-19 : 1.1875rem;
    --fs-18 : 1.125rem;
    --fs-17 : 1.0625rem;
    --fs-16 : 1rem;
    --fs-15 : 0.9375rem;
    --fs-14 : 0.875rem;
    --fs-13 : 0.8125rem;
    --fs-12 : 0.75rem;
    --fs-11 : 0.6875rem;
    --fs-10 : 0.625rem;

    --fw-800 : 800;
    --fw-700 : 700;
    --fw-600 : 600;
    --fw-500 : 500;
    --fw-400 : 400;
    --fw-300 : 300;
    --fw-200 : 200;
    --fw-100 : 100;
}


/* 공통 */
.mt-10 { margin-top:10px}
.mt-20 { margin-top:20px}
.mt-30 { margin-top:30px}

.ml-10 { margin-left:10px}

.blind {
    visibility: hidden;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    font-size: 0;
    line-height: 0
}
.wid400 {
    width: 400px;
}


/* button */

button {
    cursor: pointer;
    border-radius: 3px;
}
a:active, button:active {
    opacity: .75;
}
button:disabled {
    color: #999;
    opacity: 0.5;
}
.btn_normal {
    font-size: var(--fs-14);
    color: #333;
    height: 36px;
    padding: 0 10px;
    border: 1px solid #b6b6b6;
    background-color: #fff;
}
.btn_confirm {
    font-size: var(--fs-14);
    color: #fff;
    height: 36px;
    padding: 0 16px;
    border: 1px solid #a6a6a6;
    background-color: var(--color-black);
}
.closeButton {
    display: none;
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
}
.closeButton img {
    width: 10px;
    height: 10px;
}

/* layout */
html, body {
    height: 100vh;
    min-height: -webkit-fill-available;
    min-height: var(--vh-100);
    font-size: 16px;
    color: #333;
    line-height: 150%;
    font-family: 'Pretendard', 'sans-serif';
}
header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding: 12px 20px;
    border-bottom: 1px solid #d6d6d6;
    overflow: hidden;
    background-color: #ffffff;
    z-index: 100;
}
header a.nav_menu {
    display: none;
}
.wrapper {
    margin: 0 auto;
    height: 100vh;
}
.container {
    padding: 32px;
    margin: 0 auto;
    min-width: 320px;
    overflow-y: auto;
}
.container h2 {
    font-size: var(--fs-30);
    font-weight: var(--fw-800);
    margin-bottom: 10px;
}
.breadcrumb {
    position: relative;
    top: -20px;
}
.breadcrumb a {
    font-size: var(--fs-13);
    color: #999;
}
.breadcrumb a::after {
    position: relative;
    content: ">";
    padding-left: 10px;
    padding-right: 5px;
    font-size: 10px;
    top: -2px
}
.breadcrumb a:last-child {
    color: #333;
}
.breadcrumb a:last-child::after {
    content: " ";
}
.option_wrap {
    position: relative;
    padding: 10px 0;
    border-radius: 6px;
    border: 1px solid #d6d6d6;
}
.option_wrap ul {
    overflow: hidden;
}
.option_wrap ul li {
    display: inline-block;
    padding: 5px 16px;
}
.option_wrap ul li span {
    display: inline-block;
    padding: 3px 0;
}
.option_wrap ul li span label {
    display: inline-block;
    padding: 0 10px
}
.position_right {
    position: absolute;
    right: 12px;
    bottom: 12px;
}

/*정산내역 조회 : bora 추가*/
.position_f_right {float:right; margin-right:80px; }

/* header */
header h1 {
    float: left;
    font-size: var(--fs-21);
    font-weight: var(--fw-800)
}
header h1 span {
    position: relative;
    top: -1px;
    display: inline-block;
    padding-left: 10px;
}
header h1 span select {
    font-size: var(--fs-13);
    height: 26px !important;
}
.menu_right {
    float: right;
    font-size: var(--fs-14);
    font-weight: var(--fw-400);
    color: #666;
    margin-top: 5px;
}
.menu_right a {
    display: inline-block;
    padding: 0 10px;
    color: #333;
    font-size: var(--fs-13);
}

/*상단영역 selectbox*/
.partenr_selecter {
    position: relative;
    top: -2px;
    display: inline-block;
    padding-left: 10px;
}
.partenr_selecter > .table_select_box {
    font-size: var(--fs-13);
}

/* input */
[tabindex='-1'], [tabindex='0'] {
    outline: none;
}

input {
    /* -webkit-appearance : none;
    -moz-appearance:none;
    appearance:none; */
    height: 36px;
    border: 1px solid #d6d6d6;
    padding: 0 10px;
    box-sizing: border-box;
    outline: none;
    font-size: var(--fs-14);
    color: #333;
    border-radius: 3px;
}

input:focus, input:active, input:hover {
    border: 1px solid #333;
    outline: none;
}
input[type=number] {
    -moz-appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
}
input::-ms-clear {
    display: none;
}
input:invalid {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
:-moz-submit-invalid {
    -moz-box-shadow: none;
    box-shadow: none;
}
:-moz-ui-invalid {
    -moz-box-shadow: none;
    box-shadow: none;
}
input:focus-within {
    border: 1px solid #333;
}
input:disabled {
    background: #f5f5f5;
}
input:read-only {
    color: var(--color-black);
    background: #f5f5f5;
}
input::placeholder {
    color: #c6c6c6;
    font-weight: var(--fw-400);
}
*::placeholder {
    font-weight: var(--fw-300);
}
.date_select input {
    font-size: var(--fs-15);
}


/* clear button */
.input-container {
    position: relative;
    display: block;
}
.input-box {
    width: 200px;
    padding: 8px 30px 8px 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}
.clear-btn {
    position: absolute;
    right: 10px;
    top: 70%;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 12px;
    color: var(--color-white);
    background-color: #666;
    display: none; /* 처음에는 숨김 */
}
.clear-btn:hover {
    color: var(--color-white);
}


/* checkbox */
.check_box {
    position: relative;
    display: inline-block;
    font-size: var(--fs-15);
}
.check_box label {
    cursor: pointer;
}

input[type="checkbox"] + label {
    position: relative;
    top: 5px;
    display: block;
    width: 16px;
    height: 16px;
    background: url(../images/chk_off.svg) no-repeat 0 0 / contain;
}

input[type='checkbox']:checked + label {
    background: url(../images/chk_on.svg) no-repeat 0 0 / contain;
}

input[type="checkbox"] {
    /* display: none; */
}


/* radiobox */
.radio_box {
    position: relative;
    padding-left: 33px;
    padding-right: 30px;
    font-size: var(--fs-16);
    margin-left: 12px;
}
.radio_box label {
    position: absolute;
    left: 3px;
    top: 2px;
    cursor: pointer;
}
input[type="radio"] + label {
    position: absolute;
    display: block;
    height: 20px;
    padding-left: 26px;
    background: url(../images/radio_off.svg) no-repeat 0 0 / contain;
}

input[type='radio']:checked + label {
    background: url(../images/radio_on.svg) no-repeat 0 0 / contain;
}

input[type="radio"] {
    display: none;
}


/* select */
select {
    -webkit-appearance: none;
    -moz-appearance:none;
    appearance:none;
    height: 36px;
    padding: 0 30px 0 10px;
    border: 0;
    color: #333;
    font-size: var(--fs-14);
    font-weight: var(--fw-400);
    border-radius: 3px;
    -moz-border-radius: 3px;
    outline: 0;
    background: url('../images/ico_down_black.svg') no-repeat center right 8px, var(--color-white);
    background-size: 10px auto;
    transition: all .2s;
    border: 1px solid #d6d6d6;
    font-family: 'Pretendard', 'sans-serif';
}
select:disabled {
    opacity: 0.6;
}
select::-ms-expand {
    display:none;
}
select:focus-within, select:active {
    border: 1px solid #333;
}
select:disabled {
    background-color: #f9f9f9;
}
select:disabled + span {
    opacity: 0.3;
}


/* flex layout */
.flexbox {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    flex-direction: row;
    align-items: stretch
}
.flexitem {
    flex: 1;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-orient: horizontal;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
ul.board_list {
    display: flex;
    border-radius: 6px;
    margin-top: 30px;
}
ul.board_list li {
    flex: 1;
    font-size: var(--fs-14);
    font-weight: var(--fw-700);
    padding: 18px 16px;
    background-color: #f5f5f5;
    margin-right: 16px;
    border-radius: 6px;
}
ul.board_list li:last-child {
    margin-right: 0;
}
ul.board_list li span {
    font-weight: var(--fw-400);
}



/* navigation */

.menu_wrap {
    width: 100%;
    max-width: 200px;
    min-width: 200px;
    height: 100%;
    overflow: auto;
    background-color: #333;
    padding: 20px 0;
}
.menu_wrap_mobile {
    display: none;
}
.menu_wrap a {
    position: relative;
    display: block;
    cursor: pointer;
    font-size: var(--fs-14);
    color: #c6c6c6;
    padding: 8px 20px;
}
nav.menu_wrap a:first-child {
    margin-top: 0;
}
nav.menu_wrap .nav_section li {
    padding-left: 0;
}
nav.menu_wrap .nav_section li a {
    font-size: var(--fs-13);
    padding: 3px 10px;
}
nav.menu_wrap .nav_section li a.active {
    color: var(--color-white);
    font-weight: var(--fw-700);
}
.nav_tit + .nav_section {
    display: none;
    margin: 7px 25px;
    border-left: 1px solid #999;
}
.nav_tit.active {
    color: var(--color-white);
    font-weight: var(--fw-700);
}
.nav_tit.active + .nav_section {
    display: block;
}


/* loader */
.made-with-love{
    margin-top: 20px;
    padding: 10px;
    font-size: 10px;
    font-family: arial;
    color: #fff;
}
.loader {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 10000;
}
.loader svg{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    display:inline-block;
}


/*현종추가*/
.menu-wrapper {
    position: relative;
    transition: width 0.3s ease;
}

.toggle_btn {
    position: absolute;
    width: 25px;
    height: 25px;
    background: #333;
    right: -25px;
    top: 0;
    border-radius: 0 3px 3px 0;
}
.toggle_btn > img {width:100%}



.menu-toggle-btn {
    position: absolute;
    right: auto;
    top: auto;
    width: 25px;
    height: 25px;
    background-color: #333;
    border: none;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 0 5px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, left 0.3s ease;
}

.menu-toggle-btn img {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.menu-hidden .menu-wrapper {
    width: 0;
    overflow: hidden;
}

.menu-hidden .menu_wrap {
    transform: translateX(0);
}

.menu-hidden .menu-toggle-btn {
    visibility: visible;
    left: 0;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.menu-hidden .menu-toggle-btn img {
    transform: rotate(180deg);
}

.menu-visible .container {
    transition: margin-left 0.3s ease, width 0.3s ease;
}

.menu-visible .menu-toggle-btn {
    visibility: hidden;
    left: 250px;
}

.wrapper.flexbox {
    display: flex;
    transition: all 0.3s ease;
}



/* table */
.table_wrap {
    position: relative;
}
.table_wrap.mt-20 {
    margin-top: 30px;
}
.table_wrap h4 {
    display: inline-block;
    font-size: var(--fs-18);
    font-weight: var(--fw-700);
    height: 36px;
    line-height: 36px;
    margin-bottom: 5px;
}

.table_wrap .btn_right {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
    width: 100%;
}

.table_wrap .btn_right button {
    width: auto;
    font-size: var(--fs-15);
}

table {
    width: 100%;
    border-top: 2px solid #333;
}
th, td {
    text-align: center;
    padding: 10px;
    color: #333;
    white-space: nowrap;
    word-break: break-all
}
th {
    font-size: var(--fs-13);
    font-weight: var(--fw-700);
    border-bottom: 1px solid #d6d6d6
}
td {
    font-size: var(--fs-14);
    font-weight: var(--fw-400);
    border-bottom: 1px solid #e6e6e6;
}
.tb_sty01.bdr tr th, .tb_sty01.bdr tr td {
    border-right: 1px solid #d6d6d6;
}
.tb_sty01.bdr tr th:last-child, .tb_sty01.bdr tr td:last-child {
    border-right: 0;
}
.tb_flex {
    display: flex;
}


/* modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}
.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    width: 100%;
    max-width: 360px;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 16px;
}
.modal-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid #d6d6d6;
}
.modal-header h2 {
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    margin: 0;
    padding: 0 15px;

}
.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}
.modal-body {
    margin-top: 50px;
    font-size: var(--fs-15);
    padding: 10px 0;
}
.modal-body .col-box {
    padding-bottom: 16px;
}
p.col-box label {
    display: block;
    font-size: var(--fs-13);
    color: #666;
    margin-bottom: 5px;
}
p.col-box input {
    width: 100%;
}
.btn_both {
    display: flex;
}
.btn_both button {
    width: 50%;
    flex: 1;
}
.btn_both button:nth-child(1) {
    margin-right: 3px;
}
.btn_both button:nth-child(2) {
    margin-left: 3px;
}


/* login */
.login_wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.login_box {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    width: 100%;
    max-width: 360px;
    transform: translate(-50%, -50%);
    background-color: white;
}
.login_box h1 {
    font-size: var(--fs-36);
    font-weight: var(--fw-800);
}
.login_box p {
    margin-top: 16px;
}
input.login_in {
    width: 40% !important;
    margin-right: 5px;
}
.login_box label {
    display: block;
    font-size: var(--fs-13);
    color: #666;
    margin-bottom: 6px;
}
.login_box input {
    width: 100%;
    height: 46px;
    font-size: var(--fs-14);
    font-weight: var(--fw-700);
}
.btn_login {
    width: 100% !important;
    margin-top: 32px;
    height: 46px;
    font-size: var(--fs-15);
    font-weight: var(--fw-800);
}
.login_subtit {
    font-size: var(--fs-14);
    color: #333;
    margin-top: 20px;
    margin-bottom: 30px;
}
.login_other {
    text-align: right;
    margin-top: 32px;
}
.login_other a {
    color: #333;
    font-size: var(--fs-14);
}
.login_other a span {
    border-bottom: 1px solid #333;
}
.login_other a:first-child::after {
    position: relative;
    top: 3px;
    content: "";
    display: inline-block;
    width: 1px;
    height: 13px;
    background-color: #999;
    margin-left: 14px;
    margin-right: 10px;
}


/* main */
.graph {
    margin-top: 15px;
    padding: 25px;
    background-color: #f9f9f9;
}
.graph canvas {
    max-height: 200px;
}
.main_count {
    padding: 0 0 40px 0;
}
.main_count .dateer {
    font-size: var(--fs-13);
    background-color: #666;
    color: var(--color-white);
    padding: 5px 10px;
    border-radius: 3px;
}
.main_count .dateer span {
    display: inline-block;
    margin-left: 10px;
}
.main_count .dateer span button {
    font-size: var(--fs-12);
    padding: 0 6px;
}
.main_count .dateer span button.negative {
    background-color: #901d1d;
    color: var(--color-white);
}
.main_count .dateer span button.positive {
    background-color: var(--color-white);
    color: #333;
}
.count_wrap {
    overflow: hidden;
    width: 100%;
    display: flex;
}
.count_wrap > li {
    flex: 1;
    font-size: var(--fs-14);
    padding: 12px 16px;
    border-radius: 3px;
    margin-right: 16px;
    background-color: #f5f5f5;
}
.count_wrap > li:last-child {
    margin-right: 0;
}
.count_wrap > li strong {
    font-weight: var(--fw-700);
    font-size: var(--fs-14);
}
.count_wrap > li p {
    position: relative;
    font-size: var(--fs-16);
    font-weight: 700;
}
.count_wrap > li p em {
    position: absolute;
    left: 0;
    top: 0;
}
li.no_bg {
    background-color: transparent;
}
h3 {
    font-size: var(--fs-18);
    font-weight: var(--fw-700);
    margin: 30px 0 5px 0;
}
.count_wrap h5 {
    font-size: var(--fs-14);
    font-weight: var(--fw-400);
    margin-bottom: 3px;
    color: #666;
}
.date {
    position: relative;
    top: -1px;
    left: 15px;
    display: inline-block;
    font-size: var(--fs-15);
}
.tb_wrapper {
    overflow-x: auto;
}
.fx_left {
    flex: 4;
    overflow-y: auto;
    width: 100%;
}
.fx_right {
    flex: 2;
    padding-left: 16px;
}
.fx_right ul {
    border-top: 2px solid #333;
}
.fx_right li {
    position: relative;
    padding: 10px 90px 10px 10px;
    font-size: var(--fs-14);
    border-bottom: 1px solid #e6e6e6;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}
.fx_right li span {
    position: absolute;
    right: 0;
    top: 10px;
    font-size: var(--fs-13);
    color: #666;
}


/* pagenation */

.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 10px;
    margin-top: 20px;
}
.pagination li {
    margin: 0 5px;
}
.pagination a {
    font-size: var(--fs-13);
    font-weight: var(--fw-400);
    text-decoration: none;
    padding: 8px 12px;
    background: white;
    color: black;
    border: 1px solid #d6d6d6;
    border-radius: 3px;
    cursor: pointer;
}
.pagination a.active {
    margin: 0 2px; /* 페이지 번호 버튼들 사이 간격 좁게 */
}

.pagination .page-btn.prev {
    margin-right: 7px; /* 이전 버튼과 페이지 번호 사이 간격 */
}

.pagination .page-btn.next {
    margin-left: 7px; /* 다음 버튼과 페이지 번호 사이 간격 */
}

.pagination .page-btn.first {
    margin-right: 5px; /* 이전 버튼과 페이지 번호 사이 간격 */
}

.pagination .page-btn.last {
    margin-left: 5px; /* 다음 버튼과 페이지 번호 사이 간격 */
}

.pagination .page-btn.active {
    background: #0059C5;
    color: white;
    border: 1px solid #0059C5;
}


/*상점조회 화면 tab*/
.tab-container {
    width: 100%;
    /*max-width: 400px;*/
    margin: 20px auto;
}
.tabs {
    display: block;
}
.tabs button {
    margin-right: 8px;
    font-size: var(--fs-14);
}
.tabs button:last-child {
    margin-right: 0;
}
.tab {
    flex: inherit;
    padding: 10px 15px;
    text-align: center;
    cursor: pointer;
    border: none;
    background: #f8f8f8;
    font-size: 16px;
    transition: background 0.3s ease;
}
.tab.active {
    background: var(--color-black);
    color: white;
    font-weight: bold;
}
.tab-content {
    display: none;
    padding: 15px;
    border-top: none;
}
.tab-content.active {
    display: block;
}

/*main
.container .main_con > h4 {
    font-size: var(--fs-23);
    font-weight: var(--fw-800);
    padding: 3px 15px;
    background: #e5e5e5;
    border-radius: 30px;
    display: inline-block;
}
.main_con .main_wrap > p,
.main_con .main_wrap .btm_wrap > p{
    font-size: var(--fs-20);
    font-weight: var(--fw-600);
    padding-left: 5px;
    border-left: 3px solid #0088d9;
    line-height: 1.1;
}

.main_con .main_wrap table {
    margin:15px auto 30px auto;
}
.main_con .main_wrap table > tr > th,
.main_con .main_wrap table > tr > td {border-bottom: 1px solid #333;}

.main_con .main_wrap .main_wrap_btm {
    overflow: hidden;
    margin-left:-30px;
}
.main_con .main_wrap .main_wrap_btm > li {
    width:50%; float:left;
}
.btm_wrap {margin-left:30px;}

.btm_notice {
    background: #f5f5f5;
    padding: 40px 40px 30px 40px;
    border-radius: 30px;
    margin-top: 37px;
}
.main_con .main_wrap .btm_notice > p {text-align: center; font-size: var(--fs-25); border-left: 0px; margin-bottom:15px;}
.main_con .main_wrap .btm_notice .tb_sty01 td {background:#fff;}

.tb_sty_main th {font-size:var(--fs-17); }
.tb_sty_main td {font-size:var(--fs-16); }

.tb_wrapper2 td {padding:12px 15px;}
.tb_wrapper2 input, .table_select_box2{width: 100% !important;}

.tb_sty_bl td:nth-child(3) {border-left:1px solid #eee}*/


/*가맹점*/
.tb_merchant_detail td {text-align: left}


/* 모바일 */

@media (max-width: 767px){
    .tabs {
        display: flex;
    }
    .tabs button {
        margin-right: 8px;
    }
    .tab {
        flex: 1;
    }
    li.no_bg {
        height: 1px;
        padding: 0 !important;
        margin-bottom: 0 !important;
    }
    .tb_flex {
        display: block;
    }
    .fx_left {
        flex: inherit;
        overflow-y: auto;
        width: 100%;
    }
    .fx_right {
        flex: inherit;
        padding-left: 0;
        margin-top: 30px;
    }
    header {
        padding: 10px 16px;
        height: 50px;
    }
    select, input, button {
        height: 42px;
    }
    header h1 {
        font-size: var(--fs-18);
    }
    header a.nav_menu {
        position: absolute;
        display: block;
        top: 15px;
        right: 15px;
    }
    .container {
        padding: 16px;
        height: 100%;
        overflow: inherit;
    }
    .container h2 {
        margin: 0 0 10px 0;
    }
    .menu_wrap, .menu_right, .breadcrumb {
        display: none;
    }
    .menu_wrap.active {
        position: fixed !important;
        display: block;
        top: 0 !important;
        left: 0 !important;
        width: 100%;
        height: 100%;
        max-width: inherit;
        z-index: 1000;
        padding-top: 20px;
    }
    .tb_right {
        position: relative;
        margin-bottom: 10px;
    }
    .closeButton {
        display: block;
    }
    .option_wrap ul li {
        width: 100%;
    }
    .position_right {
        position: inherit;
    }
    .position_right span, .position_right button {
        width: 100%;
        height: 42px;
        font-size: var(--fs-15);
    }
    .wid400 {
        width: 100%;
    }
    .tb_wrapper {
        overflow-x: auto;
    }
    .tb_sty01 {
        width: 800px;
    }
    .tb_sty01.bdr {
        width: inherit
    }
    th, td {
        font-size: var(--fs-14);
    }
    .count_wrap {
        display: block;
    }
    .count_wrap li {
        flex: none;
        padding: 16px;
        margin-right: 0;
        margin-bottom: 16px;
    }
    .graph {
        padding: 16px;
    }
    .login_box label {
        display: block;
        text-align: left;
        margin-bottom: 5px;
    }
    .login_box {
        width: 90%;
    }
    .login_box input {
        width: 100%;
    }

    .login_box input.login_in {
        width: 60%;
    }

    /* modal */
    .modal-content {
        width: 92%;
        max-width: inherit;
    }
    .menu_wrap a {
        font-size: var(--fs-18);
        font-weight: 700;
        color: var(--color-white);
        margin-top: 16px;
    }
    .menu_wrap a.nav_tit {
        pointer-events: none;
        cursor: default;
    }
    nav.menu_wrap .nav_section li a {
        font-size: var(--fs-14);
        font-weight: 400;
        padding: 6px 0;
        color: var(--color-white);
    }
    .option_wrap {
        border: 0;
        padding: 0;
    }
    .option_wrap ul li {
        padding: 10px 0;
        border-bottom: 1px solid #e6e6e6;
    }
    .nav_tit + .nav_section {
        display: block !important;
        border-left: 0;
    }
    .option_wrap ul li span {
        padding: 5px 0;
    }
    ul.board_list {
        display: block;
        border: 0;
        border-radius: 6px;
        margin-top: 40px;
    }
    ul.board_list li {
        display: inline-block;
        width: 48.688%;
        padding: 16px;
        margin-bottom: 10px;
        font-size: var(--fs-17);
        margin-right: 5px;
    }
    ul.board_list li:nth-child(2n) {
        margin-right: 0;
    }
    ul.board_list li span {
        display: block;
        font-size: var(--fs-13);
        margin-bottom: 3px;
    }
    .table_wrap.mt-20 {
        margin-top: 40px;
    }
}

/* 테블릿 세로 */
@media (min-width: 768px) and (max-width: 991px) {

}


/* 테블릿 가로 */

@media (min-width: 992px) and (max-width: 1199px) {

}


/* 데스크탑 일반 */

@media (min-width: 1200px) {

}