@charset "utf-8";

/* 공통 */

.show-default {
    display: block;
}

.hide-default {
    display: none;
}

/* header */
.header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    background-color: #171A1E;
    height: 60px;
}

.header_inner .logo {
    min-width: 210px;
}

.header_inner .logo img {
    width: 83px;
    height: 21px;
}

.header_inner .left button {
    width: 20px;
    height: 20px;
}

.header_inner .left button img {
    width: 14px;
    height: 12px;
}

.header_inner .right {
    height: 100%;
}

.header_inner .lang {
    position: relative;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 12px;
    padding-right: 30px;
}

.header_inner .lang::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url('/image/main/h_arw.svg') no-repeat center / contain;
    width: 11px;
    height: 7px;
}

.header_inner .common_select_box label {
    height: 100%;
    font-weight: 300;
}

.header_inner .common_select_box.on ul {
    height: auto;
    opacity: 1;
    visibility: visible;
}

.header_inner .common_select_box ul {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #080A0C;
    visibility: hidden;
    height: 0;
    opacity: 0;
    transition: all 0.3s ease;
    overflow: auto;
}

.header_inner .common_select_box ul li {
    color: #858585;
    padding: 10px 12px;
    line-height: 1;
}

.header_inner .common_select_box ul li.selected {
    color: #fff;
}

.common_select_box ul li {
    opacity: 0;
    transition: all 0.1s ease;
}

.common_select_box.on ul li {
    opacity: 1;
}

.common_select_box ul li:first-child {
    transition-delay: 0.1s;
}

.common_select_box ul li:nth-child(2) {
    transition-delay: 0.2s;
}

.common_select_box ul li:nth-child(3) {
    transition-delay: 0.3s;
}

.common_select_box ul li:nth-child(4) {
    transition-delay: 0.4s;
}

.common_select_box ul li:nth-child(5) {
    transition-delay: 0.5s;
}

.common_select_box ul li:nth-child(6) {
    transition-delay: 0.6s;
}

.header_inner .state_box {
    margin-left: 20px;
    height: 30px;
    padding: 0 15px 0 6px;
    border-radius: 30px;
    background-color: #2A2C2F;
}

.header_inner .state_box .link {
    position: relative;
    font-weight: 400;
    font-size: 12px;
    color: #ccc;
    line-height: 1;
}

.header_inner .state_box .link .icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.header_inner .state_box .link .icon.two {
    width: 13px;
    height: 13px;

}

.header_inner .state_box .link.bar {
    margin-right: 10px;
    padding-right: 10px;
}

.header_inner .state_box .link.bar::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.35);
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

/* END header */

/* side_gnb */
.side_gnb {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    flex-basis: 250px;
    flex-shrink: 0;
    transition: transform 0.15s ease-in-out;
    transform: translateX(-250px);
}

#container.on .side_gnb {
    transform: translateX(0);
}

.side_gnb nav {
    padding-top: 60px;
    background-color: #212529;
    display: flex;
    flex-direction: column;
    height: 100%;
    flex-wrap: nowrap;
}

.nav::-webkit-scrollbar {
    width: 6px;
    opacity: 0.2;
}

.nav::-webkit-scrollbar-thumb {
    position: relative;
    width: 100%;
    cursor: pointer;
    border-radius: inherit;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
}

.w300 {
    font-weight: 300;
    line-height: 1;
}

.w400 {
    font-weight: 400 !important;
}

.w500 {
    font-weight: 500 !important;
    line-height: 1;
}

.w600 {
    font-weight: 600 !important;
    line-height: 1;
}

.w700 {
    font-weight: 700 !important;
    line-height: 1;
}

.white {
    color: #fff;
}

.gray {
    color: #C2C2C2;
}

.side_gnb .top_box {
    padding: 25px 20px 10px;
    border-bottom: 1px solid #414141;
}

.side_gnb .top_box .info_box {
    padding: 10px 0;
}

.side_gnb .top_box .info_box .box {
    padding: 5px 0;
}

.side_gnb .top_box .info_box .box .name {
    min-width: 70px;
}

.nav {
    padding: 7px 0;
    overflow: auto;
}

.nav .link_box {
    line-height: 1;
}

.nav .link_box .box {
    padding: 10px 20px;
    color: #bbb;
}

.nav .link_box.on {
    background-color: #2D3136;
    padding: 18px 0 20px;
}

.nav .link_box.on .box {
    color: #fff;
}

.nav .link_box.on .box img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.nav .link_box.on .sub_link_box {
    display: block;
}

.nav .link_box .icon {
    width: 20px;
    height: 20px;
    margin-right: 15px;
}

.nav .link_box .icon img,
.nav .link_box .arw img {
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
}

.nav .link_box .arw {
    width: 11px;
    height: 7px;
    margin-left: auto;
}

.nav .sub_link_box {
    display: none;
}

.nav .sub_link_box a {
    color: #aaa;
    display: block;
    line-height: 1;
    padding: 8px 0;
    padding-left: 55px;
}

.nav .sub_link_box a:hover {
    color: #fff;
}

.nav .sub_link_box a.active {
    color: #fff;
}

/* END side_gnb */

/* main_content */
#container {
    display: flex;
}

#container.on .main_content_box {
    margin-left: 0;
}

.main_content_box {
    margin-left: -250px;
    padding-left: 250px;
    top: 60px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 60px);
    /* overflow: auto; */
    min-width: 0;
    flex-grow: 1;
    background-color: #F7F8FC;
    transition: all 0.3s ease;
}

.main_content {
    padding: 40px 35px 0;
}

.main_tit {
    color: #000;
}

.wid100 {
    width: 100%;
}

.blue {
    color: #377BFF;
}

.dark_blue {
    color: #3751FF;
}

.red {
    color: #F91B1B;
}

.common_search_btn {
    background-color: #3751FF;
    border-radius: 4px;
    line-height: 45px;
    width: 145px;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    margin-left: auto;
}

/* END main_content */

/* footer */
.footer_inner {
    justify-content: center;
    padding: 55px 0;
    width: 100%;
    color: #C7CCD4;
    line-height: 1;
}

/* END footer */

/* page_nav */
.common_page_nav {
    justify-content: center;
    padding: 40px 0;
}

.common_page_nav .num {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: #222;
}

.common_page_nav .num.active {
    color: #516FF7;
}

.common_page_nav .arw {
    border: 1px solid #D8D8D8;
}

.common_page_nav .arw img {
    width: 29px;
    height: 28px;
}

.common_page_nav .arw2 {
    border-right: unset;
}

/* END page_nav */

/* page_history */
.sub_common_tit_box {
    justify-content: space-between;
}

.page_history a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.page_history a.active {
    color: #3751FF;
}

.page_history a:not(:last-child) {
    margin-right: 8px;
    padding-right: 8px;
}

.page_history a:not(:last-child)::after {
    position: absolute;
    content: '';
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background-color: #BCBCBC;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.page_history .home img {
    width: 13px;
    height: 13px;
    object-fit: contain;
}

/* END page_history */

/* pop */
.common_pop_tit {
    padding: 30px;
    line-height: 1;
    font-size: 20px;
    font-weight: 700;
    background-color: #EBEDF3;
}

/* END pop */

.common_btn_box {
    margin-top: 20px;
}
.excel_btn {
    border: 1px solid #2e7d32;
    border-radius: 5px;
    padding: 0 20px;
    font-size: 14px;
    height: 45px;
    line-height: 43px;
    display: inline-flex;
    align-items: center;
    color: #2e7d32;
}
.excel_btn .icon {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.common_btn_box button {
    width: 90px;
    height: 45px;
    line-height: 43px;
    font-size: 14px;
    background: transparent;
    border: 1px solid #ccc;
    color: #000;
    box-sizing: border-box;
}

.common_no_alt {
    height: 280px;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
}

.flex_wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.flex_left {
    margin-left: auto;
}
.common_table_wrap.scroll {
    word-break: keep-all;
    white-space: nowrap;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
}

.common_table_wrap.scroll::-webkit-scrollbar {
    height: 10px;
}

.common_table_wrap.scroll::-webkit-scrollbar-thumb {
    position: relative;
    width: 6px;
    cursor: pointer;
    border-radius: inherit;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
}

@media all and (max-width:1600px) {}

/* 타블렛 가로 */
@media all and (max-width:1399px) {}


/* 타블렛 세로 */
@media all and (max-width:900px) {}


/* 타블렛 가로 미만 ~ 모바일 */
@media all and (max-width:700px) {}

/* 모바일 상세 */
@media all and (max-width:640px) {}

/* 모바일 가로 */
@media all and (max-width:568px) {}

@media all and (max-width:425px) {}

@media all and (max-width:375px) {}

@media all and (max-width:320px) {}







/* 공통 */

/* PC이하 ~ 타블렛 가로 */
@media all and (max-width:1199px) {
    .show-1199 {
        display: block;
    }

    .hide-1199 {
        display: none;
    }
}

@media all and (max-width:1199px) {
    .show-1199 {
        display: block;
    }

    .hide-1199 {
        display: none;
    }
}

/* 타블렛 가로 이하 */
@media all and (max-width:1024x) {}

/* 타블렛 가로 이하 */
@media all and (max-width:1023px) {
    .show-1023 {
        display: block;
    }

    .hide-1023 {
        display: none;
    }
}

/* 타블렛 이하 ~ 모바일 */
@media all and (max-width:767px) {
    .show-767 {
        display: block;
    }

    .hide-767 {
        display: none;
    }


}

/* 모바일 가로 미만 */
@media all and (max-width:568px) {
    .show-568 {
        display: block;
    }

    .hide-568 {
        display: none;
    }
}

/* 모바일 최소 */
@media all and (max-width:480px) {
    .show-425 {
        display: block;
    }

    .hide-425 {
        display: none;
    }


}

@media all and (max-width:375px) {
    .show-375 {
        display: block;
    }

    .hide-375 {
        display: none;
    }
}

@media all and (max-width:320px) {
    .show-320 {
        display: block;
    }

    .hide-320 {
        display: none;
    }
}