/* index */
a:link {
    color: #000;
    text-decoration: none;
}

a:visited {
    color: #000;
    text-decoration: none;
}

a:hover {
    color: #000;
    text-decoration: none;
}

a:active {
    color: #000;
    text-decoration: none;
}

.wrapper {
    background-color: var(--bg);
    min-height: 92vh;
}

.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

header {
    position: relative;
    width: 100%;
    height: 60px;
    background: var(--bg);
}

.flex_between {
    background-color:#fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.login_info {
    /* shutterstock_530668258 2 */
    /*display: -webkit-box;
    display: -ms-flexbox;
    display: flex;*/
    /*position: absolute;*/
    width: 220px;
    height: 164px;
    background-color: #00B9EF;
}


.logo_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.btn_hamburger {
    display: none;
    height: 42px;
    width: 42px;
    padding: 8px;
    position: relative;
    cursor: pointer;
    vertical-align: middle;
    text-align: center;
    border-radius: 30px;
    margin: 12px;
}

.btn_hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn_hamburger .ham_wrapper {
    /* display: none; */
    /* height: 100%;
    width: calc(100% - 4px);
    margin-top: 2px;
    background: transparent;
    display: inline-block; */
    width: 20px;
    height: 20px;
    position: relative;
    margin: 6px auto;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

.btn_hamburger span {
    /* background: var(--grey1);
    width: 100%;
    height: 2px;
    display: block;
    margin: 4px 0; */
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--grey1);
    border-radius: 1px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.btn_hamburger span:nth-child(1) {
    top: 0px;
}

.btn_hamburger span:nth-child(2),
.btn_hamburger span:nth-child(3) {
    top: 6px;
}

.btn_hamburger span:nth-child(4) {
    top: 12px;
}

.nav.active .btn_hamburger span {
    background-color: #fff;
}

.nav.active .btn_hamburger span:nth-child(1) {
    top: 6px;
    width: 0%;
    left: 50%;
}

.nav.active .btn_hamburger span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.nav.active .btn_hamburger span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.nav.active .btn_hamburger span:nth-child(4) {
    top: 6px;
    width: 0%;
    left: 50%;
}

.logo {
    min-width: 200px;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.logo img {
    width: 126px;
}

.dropdown {
    display: none;
    position: absolute;
    z-index: 999;
    background: #fff;
    top: 60px;
    right: 24px;
    -webkit-box-shadow: 0 0 16px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    min-width: 240px;
}

.show {
    display: block;
}

.dropdown .option {
    padding: 16px;
    border-bottom: 1px solid var(--grey6);
    cursor: pointer;
}

.dropdown .option span {
    vertical-align: top;
    padding-left: 8px;
}

.dropdown .option:last-child {
    border-bottom: none;
}

.dropdown .title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}

.gnb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.gnb i {
    width: 24px;
    height: 24px;
}

.gnb .notice,
.gnb .profile {
    width: 42px;
    height: 42px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 26px;
    margin-right: 24px;
    cursor: pointer;
}

nav {
    background-color: var(--primary);
    color: #fff;
    height: calc(100vh - 60px);
    position: absolute;
    top: 60px;
    left: 0;
    border-radius: 0 32px 0 0;
    width: 220px;
}

nav i {
    color: #fff;
}

nav .ul_nav {
    padding: 32px 0;
}

nav .ul_nav li {
    height: 44px;
    line-height: 44px;
    padding: 0 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}

.nav_name {
    margin-left: 8px;
    font-size: 18px;
    color: var(--primary_menu);
}

.nav_name_new {
    margin-left: 8px;
    font-size: 18px;
    color: #B5B5B5;
}

nav .ul_nav li.selected {
    background-color: #00B9EF;
    /*border-radius: 22px 0 0 22px;*/
}
i.model {
    background-image: url(/Content/CMS/img/i_model.svg);
}
i.model_selected {
    background-image: url(/Content/CMS/img/i_model_w.svg);
}

i.device {
    background-image: url(/Content/CMS/img/i_device.svg);
}
i.device_selected {
    background-image: url(/Content/CMS/img/i_device_w.svg);
}
i.contents {
    background-image: url(/Content/CMS/img/i_contents.svg);
}
i.contents_selected {
    background-image: url(/Content/CMS/img/i_contents_w.svg);
}
i.portal {
    background-image: url(/Content/CMS/img/i_portal.svg);
}
i.portal_selected {
    background-image: url(/Content/CMS/img/i_portal_w.svg);
}
i.user {
    background-image: url(/Content/CMS/img/i_user_icon.svg);
}
i.user_selected {
    background-image: url(/Content/CMS/img/i_user_icon_w.svg);
}
i.payment {
    background-image: url(/Content/CMS/img/i_payment.svg);
}
i.payment_selected {
    background-image: url(/Content/CMS/img/i_payment_w.svg);
}
i.common_code {
    background-image: url(/Content/CMS/img/i_common_code.svg);
}
i.common_code_selected {
    background-image: url(/Content/CMS/img/i_common_code_w.svg);
}
i.setting_lang {
    background-image: url(/Content/CMS/img/i_setting_lang.svg);
}
i.setting_lang_selected {
    background-image: url(/Content/CMS/img/i_setting_lang_w.svg);
}

.selected i.box_w {
    background-image: url(/Content/CMS/img/i_box_p.svg);
}

.selected i.tag_w {
    background-image: url(/Content/CMS/img/i_tag_p.svg);
}

.selected i.setting_w {
    background-image: url(/Content/CMS/img/i_setting_p.svg);
}

.selected .nav_name_new {
    /*color: var(--primary_menu);*/
    color:#fff;
}

.foot {
    position: absolute;
    bottom: 0;
    z-index: 999;
}

.select-box {
    position: relative;
    display: block;
    width: 120px;
    height: 32px;
    margin: 0 auto;
    color: #ffffff;
    border: 1px solid #fff;
    border-radius: 8px;
    ;
}

.select-box__current {
    position: relative;
    cursor: pointer;
    outline: none;
}

.select-box__current:focus+.select-box__list {
    opacity: 1;
    -webkit-animation-name: none;
    animation-name: none;
}

.select-box__current:focus+.select-box__list .select-box__option {
    cursor: pointer;
}

.select-box__current:focus .select-box__icon {
    -webkit-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

.select-box__icon {
    position: absolute;
    top: 50%;
    right: 8px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 12px;
    -webkit-transition: 0.2s ease;
    -o-transition: 0.2s ease;
    transition: 0.2s ease;
}

.select-box__value {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.select-box__input {
    display: none;
}

.select-box__input:checked+.select-box__input-text {
    display: block;
}

.select-box__input-text {
    display: none;
    width: 100%;
    margin: 0;
    padding: 0 12px;
    height: 32px;
    line-height: 32px;
    background-color: transparent;
    color: #fff
}

.select-box__list {
    position: absolute;
    width: 100%;
    padding: 0;
    border-radius: 8px;
    list-style: none;
    opacity: 0;
    -webkit-animation-name: HideList;
    animation-name: HideList;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: step-start;
    animation-timing-function: step-start;
    -webkit-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
}

.select-box__option {
    display: block;
    padding: 0 12px;
    height: 32px;
    line-height: 32px;
    color: var(--grey1);
    background-color: #fff;
    margin-bottom:0px;
}

.select-box__option:hover,
.select-box__option:focus {
    color: var(--primary);
    background-color: var(--primary_light);
}

@-webkit-keyframes HideList {
    from {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    to {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
    }
}

@keyframes HideList {
    from {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    to {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
    }
}

.info {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 24px;
    padding: 16px 12px;
    margin: 8px 8px 8px;
    text-align: center;
}

.info p {
    color: var(--grey6);
    font-size: 12px;
}

.info .tel {
    font-weight: bold;
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.info .site a {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
}

.info .copyright {
    color: var(--grey6);
    font-size: 10px;
}

/* content */
.content {
    position: absolute;
    top: 60px;
    left: 220px;
    width: calc(100% - 220px);
    padding: 30px 30px;
    background-color: var(--bg);
}
.content_without_layout {
    position: absolute;
    width: 100%;
    padding: 5px 5px;
    background-color: var(--bg);
}

.title {
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 16px;
}

.box {
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 32px;
    overflow: auto;
}

.box_small {
    float:left;
    padding: 20px;
    border-radius: 8px;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
    margin-left:10px;
    margin-bottom: 32px;
    overflow: auto;
}
.box_small_top {
    margin-left:20px;
    margin-right:20px;
}
.box_small_title {
    float: left;
    line-height: 30px;
    font-size: 18px;
}
.box_small_img {
    float: left;
    line-height: 30px;
    font-size: 18px;
    /*filter: invert(8%) sepia(89%) saturate(4013%) hue-rotate(230deg) brightness(105%) contrast(115%);*/
}
.box_small_img img{
    fill: #001686;
}
.box_small_content {
    margin-left: 20px;
    color: var(--primary);
    line-height: 50px;
    font-size: 40px;
    font-weight: bold;
}

.box_sublist_title {
    font-size: 14px;
    width: 120px;
    padding: 5px 10px 5px 10px;
    background-color: #d31a40;
    border: solid 1px #c8c8c8;
    color: #fff;
    font-weight: 300;
    margin-left: -17px;
    margin-top: -17px;
    margin-bottom: 10px;
    border-radius: 10px 0px 5px 0px;
}

.box_hori_divider {
    width: 4%;
    text-align: center;
    min-height: 660px;
    color: #d31a40;
    font-size: 30px;
    line-height: 660px;
    float: left;
}

.flex_start {
    display: -webkit-box;
    display: -ms-filebox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-flow: start;
    justify-content: flex-start;
}

.search_selected_btn {
    margin-right: 10px;
    margin-bottom: 10px;
    width: 150px;
    height: 40px;
    line-height: 40px;
    font-size: 22px;
    text-align: center;
    border-radius: 5px;
    background-color: #1430bf;
    border: 1px solid #001686;
    color: #fff;
    cursor: pointer;
}
.search_unselected_btn {
    margin-right: 10px;
    margin-bottom: 10px;
    width: 150px;
    height: 40px;
    line-height: 40px;
    font-size: 22px;
    text-align: center;
    border-radius: 5px;
    background-color: #fff;
    border: 1px solid #001686;
    color: #1430bf;
    cursor: pointer;
}

.select_group {
    margin-right: 24px;
}

.select_group label {
    display: block;
    padding-bottom: 8px;

}

select {
    width: 200px;
    padding: 8px 12px;
    border: 1px solid var(--primary_grey);
    background: var(--primary_light) url('/Content/CMS/img/chevron-down_grey.svg') no-repeat 95% 50%;
    background-size: 12px;
    border-radius: 8px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}

.search_group {
    position: relative;
    width: 296px;
    height: 42px;
}

.search_group button {
    position: absolute;
    left:285px;
    z-index: 9;
    padding: 10px;
    border: none;
    background: none;
    cursor: pointer;
}

.search_group input {
    position: absolute;
    padding: 8px 16px;
    width: 100%;
    height: 100%;
    background: var(--primary_light);
    border: 1px solid var(--primary_grey);
    border-radius: 8px;
}

/* table */
    .table {
    width: 100%;
    margin-top: 16px;
}

.table thead tr {
    border-radius: 8px 8px 0 0;
}
    .table thead tr th {
        border-bottom: 1px solid #EBEBEB;
        background-color: #f0f0f0;
    }

        .table th {
            background-color: #fff; /*var(--grey6);*/
            height: 50px;
            line-height: 50px;
            border-bottom: 1px solid #EBEBEB;
            vertical-align: middle;
            font-weight: 300;
            color: #000; /*var(--grey2);*/
            text-align: center;
            font-size: 14px;
        }


.table tbody tr td {
    border-bottom: 1px solid var(--grey7);
    vertical-align: middle;
    height: 50px;
    /*text-align: center;*/
}

.no_data {
    text-align:center;
}

.text {
    text-align: left;
}

.number {
    text-align: right;
}

.date {
    text-align: center;
}

tbody td button {
    margin: 0 auto;
}

.table.col {
    border-top: 1px solid var(--grey5)
}

.table.col th {
    min-width: 112px;
}

.table.col tr {
    border-bottom: 1px solid #fff;
}

.table.col td {
    text-align: left;
    padding: 0 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

td button.btn {
    margin-left: 8px;
}

td .span_text {
    margin: 0 8px;
}

.tag0 {
    display: inline;
    padding: 4px 8px;
    background: var(--tag0_bg);
    color: var(--tag0);
    border-radius: 6px;
    font-size: 12px;
}

.tag1 {
    display: inline;
    padding: 4px 8px;
    background: var(--tag1_bg);
    color: var(--tag1);
    border-radius: 6px;
    font-size: 12px;
}

.tag2 {
    display: inline;
    padding: 4px 8px;
    background: var(--tag2_bg);
    color: var(--tag2);
    border-radius: 6px;
    font-size: 12px;
}

.tag3 {
    display: inline;
    padding: 4px 8px;
    background: var(--tag3_bg);
    color: var(--tag3);
    border-radius: 6px;
    font-size: 12px;
}

.tag4 {
    display: inline;
    padding: 4px 8px;
    background: var(--tag4_bg);
    color: var(--tag4);
    border-radius: 6px;
    font-size: 12px;
}

.tag5 {
    display: inline;
    padding: 4px 8px;
    background: var(--tag5_bg);
    color: var(--tag5);
    border-radius: 6px;
    font-size: 12px;
}

.page_area {
    padding-top: 16px;
    text-align: right;
}

.pagination {
    display: inline-block;
}

.pagination a {
    text-decoration: none;
    color: var(--black);
    float: left;
    padding: 6px 12px;
    -webkit-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;

}

.pagination a.active {
    background-color: var(--primary_light);
    color: var(--primary);
    border: 1px solid var(--primary);

}

.pagination a:hover:not(.active) {
    background-color: var(--grey6);
}

.pagination a:not(.active) {
    border: 1px solid var(--grey6)
}

.pagination a:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.pagination a:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.pagination a i {
    background-size: 13px;
    vertical-align: bottom;
}

/* form.html */
.flex_end {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.btn_area button {
    margin-right: 16px;
}

.btn_area button:last-child {
    margin-right: 0;
}


//¹öÆ°À» °¨½Î´Â ¿µ¿ª
.btnWrap {
    width: 500px;
    margin: 100px auto;
}

//¹öÆ° µðÀÚÀÎ
#btnNew {
    width: 150px;
    height: 50px;
    padding: 10px 5px;
}

//¸ð´Þ ÆË¾÷À» °¨½Î°í ÀÖ´Â ÃÖ»óÀ§ ºÎ¸ð
#modalWrap {
    position: fixed; /* Stay in place */
    z-index: 999999; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    display: none;
}

//¸ð´Þ ÆË¾÷Ã¢
#modalBody {
    width: 500px;
    height: 300px;
    padding: 30px 30px;
    margin: 0 auto;
    border: 1px solid #777;
    background-color: #fff;
}

//´Ý±â ¹öÆ°
#closeBtn {
    float: right;
    font-weight: bold;
    color: #777;
    font-size: 25px;
    cursor: pointer;
}


input[type="text"],
input[type="number"],
input[type="password"],
/*input[type="date"],*/
textarea {
    min-width: 180px;
    padding: 8px 12px;
    border: 1px solid var(--primary_grey);
    background: var(--primary_light);
    border-radius: 8px;
    font-size:14px;
}

input[type="text"]:active,
input[type="text"]:focus,
input[type="date"]:active,
[type="date"]:focus,
textarea:active,
textarea:focus {
    border: 1px solid var(--primary)
}

.radio_group {
    margin-right: 24px;
}

.td_noheight {
    height: auto;
    padding: 16px;
}

textarea {
    width: 100%;
    height: 100px;
    margin: 16px 0;
}

/* treeview */
.treeview {
    border: 1px solid var(--grey6);
    border-radius: 8px;
    padding: 16px;
    margin-top: 16px;
}

.tree,
.tree ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tree ul {
    margin-left: 10px;
    position: relative;
}

.tree ul ul {
    margin-left: 10px;
}

.tree ul:before {
    content: "";
    display: block;
    width: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    border-left: 2px dotted var(--grey5);
}

.tree li {
    margin: 0;
    padding: 8px 0 8px 16px;
    position: relative;
}

.tree ul li:before {
    content: "";
    display: block;
    width: 10px;
    height: 0;
    border-top: 2px dotted var(--grey5);
    margin-top: -1px;
    position: absolute;
    top: 16px;
    left: 0;
}

.tree ul li:last-child:before {
    background: #fff;
    height: auto;
    top: 24px;
    bottom: 0;
}

.indicator {
    width: 24px;
    height: 24px;
    background-size: 20px;
    vertical-align: bottom;
}

.tree li a {
    text-decoration: none;
}

.tree li button,
.tree li button:active,
.tree li button:focus {
    text-decoration: none;
    color: #555;
    border: none;
    background: transparent;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    outline: 0;
}

.tree ul,
.tree li {
    cursor: pointer;
}

.tree .btn-default.active {
    background-color: #1c90c1;
    color: #fff;
}

.tree .btn-default {
    background-color: #eee;
}

.tree .fa-info-circle {
    color: #1c90c1;
}

/* login */
.wrapper_login {
    width: 100%;
    max-width: 1000px;
    padding: 160px 12px;
    margin: 0 auto;
}

.flex_center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.box_login {
    max-width: 420px;
    width: 50%;
}

.box_img {
    max-width: 600px;
    width: 50%
}

.box_login .logo {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 350px;
    margin-bottom: 50px
}

.box_login .logo img {
    width: 100%
}

.box_login p {
    width: 380px;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 32px;
    letter-spacing: -1px
}

.input_group {
    width: 100%;
    margin-bottom: 32px;
}

.input_group label {
    display: block;
    width: 100%;
    margin-bottom: 8px;
    font-size: 18px;
}

.input_group input {
    width: 100%;
    max-width: 400px;
    height: 42px;
    font-size: 18px;
}

.box_login .btn {
    width: 100%;
    max-width: 400px;
    margin-bottom: 16px;
    font-weight: bold;
    font-size: 15px;

}

.flex_start div {
    width: 100%;
}

/* popup */
#popup {
    display: none;
}

.popup-container {
    height: 100vh;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: rgb(0 0 0 / 70%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99999
}

.popup {
    background-color: #ffffff;
    width: 50%;
    max-width: 500px;
    border-radius: 8px;
}

.close-popup {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px;
}

.popup .border {
    background: var(--grey6);
    width: 100%;
    height: 1px;
}

.close-popup a {
    padding: 8px;
    border-radius: 8px;
    display: inline-block;
}

.popup h2 {
    font-size: 18px;
}

.popup>p {
    padding: 16px;
}

.popup .btn_area {
    padding: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

/* mediaquery */
@media (max-width: 768px) {
    .btn_hamburger {
        display: inline-block;
    }

    .logo {
        width: 130px;
    }

    .nav {
        background: transparent;
        position: absolute;
        top: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        border-radius: 0;
        visibility: hidden;
        -webkit-transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s linear 0.3s;
        -o-transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s linear 0.3s;
        transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s linear 0.3s;
    }

    .nav.active {
        background: rgba(0, 0, 0, 0.6);
        -webkit-transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear;
        -o-transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear;
        transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear;
        visibility: visible;
    }

    .nav.active .mob_nav {
        left: 0;
    }

    .nav .mob_nav {
        z-index: 999;
        background: var(--primary);
        display: inline-block;
        position: relative;
        width: 200px;
        height: 100%;
        border-radius: 0 24px 0 0;
        left: -100%;
        -webkit-transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        -o-transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    nav .ul_nav {
        padding: 0 0;
    }

    .gnb .notice,
    .gnb .profile {
        margin-right: 16px;
    }

    .content {
        left: 0;
        width: 100%;
        padding: 16px 12px;
    }

    .wrapper_login {
        padding: 0;
        background: url(/Content/CMS/img/img_login.png) no-repeat center center;
        background-size: cover;
        min-height: 100vh;
    }

    .box_img {
        display: none;
    }

    .flex_center {
        min-height: 100vh;
    }

    .box_login {
        width: 90%;
        padding: 48px 16px;
        border-radius: 24px;
        background: #FFFFFF;
        -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
        margin-bottom: 32px;
        max-width: 360px;
        border-radius: 24px;
    }

    .box_login .logo {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin: 0 auto;
        margin-bottom: 50px;
        width: 300px;
    }

    .box_login p {
        width: 100%;
        font-size: 18px;
        text-align: center;
        font-weight: 300;
    }

    .flex_start div.check_group {
        width: 50%;
    }

    .content .flex_start {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .content .flex_start .select_group {
        width: 100%;
        margin-right: 0;
        margin-bottom: 16px;
    }

    select {
        width: 100%;
        background-position: calc(100% - 12px)
    }

    .box .flex_between {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end
    }

    .box .search_group {
        margin-bottom: 16px;
    }

    .table_wrap {
        overflow-x: scroll;
    }

    .table .pin {
        position: sticky;
        left: 0;
        background: var(--grey6)
    }

    th,
    td {
        scroll-snap-align: start;
        padding: 0 12px;
        white-space: nowrap;
    }

    .page_area {
        text-align: center;
    }
    .pagination a{
        padding: 4px 8px;
    }
    .table.col th{
        min-width: auto;
    }
    .table.col td{
        padding:0 8px;
        -webkit-box-flex: 0;
            -ms-flex: 0 0 auto;
                flex: 0 0 auto;
        white-space:normal;

    }
    input[type="text"], input[type="date"], textarea {
        min-width: 100px;
        width:100%;
    }
    
    .table.col td.mob_flex_col{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        height: auto;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        padding-top:8px;
        padding-bottom:8px;
    }
    td.mob_flex_col .btn{
        width:100%;
        margin-top:8px;
        margin-left:0;
    }
    .mob_flex_col .radio_group {
        margin-right: 0;
        width: 100%;
        padding: 4px 12px;
    }
    .popup {
        min-width: 290px;
    }
  }

.search_count {
    margin-right:15px;
}