@charset "UTF-8";

/*=================================================================================
 * Layout style
 =================================================================================*/
.page-wrapper {
    position: relative;
    width: 100vw;

    min-height: 100%;
    background-color: #fff;
}
.dashboard-layout-container {
    position: relative;
    display: flex;
}
.dashboard-layout-left {
    position: fixed;
    top: 70px;
    left: -280px;
    width: 280px;
    height: 100vh;
    box-shadow: 0px 3px 6px 2px rgba(0, 0, 4, 0.05);
    transition: left 0.3s ease;
    z-index: 0;
}
.dashboard-layout-left.open {
    left: 0;
}
.dashboard-layout-right {
    width: 100%;
    margin-left: 0;
    transition: all 0.3s;
    z-index: 1;
}
.dashboard-layout-right.opened {
    width: calc(100% - 280px);
    margin-left: 280px;
}
.dashboard-layout-header {
    position: fixed;
    width: 100%;
    height: 90px;

    background: #fff;
    transition: all 0.3s;
    z-index: 2;
}
.layout-contents {
    width: 100%;
    min-height: calc(100% - 70px);
    margin-top: 70px;
    padding: 36px 36px 36px 36px;
}

/*=================================================================================
 * (Layout) Header / Footer style
=================================================================================*/
header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 32px;
}
header .left {
    position: relative;
    display: flex;
    align-items: center;
    gap: 56px;
}
header .left .logo {
    display: flex;
    align-items: center;
    width: 240px;
    gap: 24px;
}
header .left .logo .toggle-btn img {
    width: 28px;
}
header .left nav ul {
    display: flex;
    align-items: center;
    gap: 80px;
}
header .left nav ul a {
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
}
header .right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}
header .right .user {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    color: #a0a0a0;
    gap: 8px;
}
header .right .user img {
    width: 24px;
}
header .right .user .user-name {
    color: #333;
    font-size: 16px;
    font-weight: 700;
}
header .right .user::after {
    content: '';
    width: 14px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    background: url('../images/ico-userdetail.svg') no-repeat;
}
header .right .user-box {
    display: none;
    position: absolute;
    top: 60px;
    right: 30px;
}
header .right .user-box ul {
    display: flex;
    justify-content: center;
    flex-flow: column wrap;
    background-color: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 3px;
    box-shadow: 0px 0px 10px rgba(0, 2, 6, 0.08);
    padding: 8px;
}
header .right .user-box a {
    display: block;
    min-width: 140px;
    padding: 9px 16px;
    font-size: 14px;
    color: #4d4d4d;
    text-align: center;
}
header .right .user-box a:hover {
    background-color: #edeff5;
    border-radius: 3px;
    color: #333333;
    font-weight: 700;
}
header .right .login,
header .utill .logout {
    display: block;
    padding: 10px 20px;
    border: 1px solid #000;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 700;
    margin-right: 20px;
}

@media screen and (max-width: 1100px) {
    header .left {
        gap: 24px;
    }
    header .left nav {
        display: none;
    }
}

.search-results-popup {
    position: absolute;
    top: 70px;
    right: 24px;
    min-width: 520px;
    display: none;
}
.search-results-popup .search-results {
    padding: 24px;
    background-color: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 2, 6, 0.08);
}
.search-results-popup .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #000;
    padding-bottom: 12px;
}
.search-results-popup .title h4 {
    display: inline-flex;
    align-items: center;
    font-size: 22px;
}
.search-results-popup .title h4 span {
    margin: 0 6px;
}
.search-results-popup .contents {
    margin-top: 16px;
}
.results-list {
    max-height: 420px;
    overflow: auto;
}
.results-list > li {
    position: relative;
}
.results-list > li > a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    padding: 10px 60px 10px 8px;
}
.results-list > li > a::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: #555555;
    border-radius: 4px;
}
.results-list > li > a::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 20px;
    height: 20px;
    background: url('../images/icon/ico-srch-results.svg') no-repeat center;
    transform: translate(-50%, -50%);
}
.results-list > li > a:hover {
    background-color: #f1f7ff;
    border-radius: 3px;
}
.results-list > li span {
    vertical-align: baseline;
}
.results-list li .page-navi {
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
}
.results-list li .page-navi > li {
    max-width: 300px;
    color: #1d1d1d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.results-list li .page-navi > li::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 16px;
    background: url('../images/icon/ico-nav-next.svg') no-repeat center;
    vertical-align: middle;
}
.results-list li .page-navi > li:last-child::after {
    display: none;
}

/*=================================================================================
 * (Layout) Nav style
=================================================================================*/
.layout-sidebar {
    height: 100%;
    background-color: #fcfcfe;
    overflow: auto;
    z-index: 10;
}
.layout-sidebar .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
}

.nav {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}
.nav::-webkit-scrollbar {
    width: 7px;
    height: 10px;
    border-radius: 10px;
}
.nav::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}
.nav::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #b3b6bf;
}

.nav > ul {
    width: 100%;
    padding: 0px 24px;
}
.nav > ul li a {
    color: #333333;
    transition: all 0.2s;
}
.nav .dep1 {
    position: relative;
    margin: 12px 0;
}
.nav .dep1 > a {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    color: #333;
    padding: 8px 8px;
    background: url('../images/icon/ico-lnb-bg.svg') no-repeat 92% 50%;
    font-size: 17px;
    font-weight: 600;
    border-radius: 16px 16px 0 0;
    transition: all 0.2s;
}
.nav .dep1 > a:hover {
    background-color: #f0f7ff;
    border-radius: 12px;
}
.nav .dep1 > a::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 6px;
    vertical-align: middle;
}
.nav .dep1:nth-child(1) > a::before {
    background: url('../images/icon/ico-lnb01-g.svg') no-repeat center;
}
.nav .dep1:nth-child(2) > a::before {
    background: url('../images/icon/ico-lnb02-g.svg') no-repeat center;
}
.nav .dep1:nth-child(3) > a::before {
    background: url('../images/icon/ico-lnb03-g.svg') no-repeat center;
}
.nav .dep1:nth-child(4) > a::before {
    background: url('../images/icon/ico-lnb04-g.svg') no-repeat center;
}
.nav .dep1:nth-child(5) > a::before {
    background: url('../images/icon/ico-lnb05-g.svg') no-repeat center;
}
.nav .dep1.on > a,
.nav .dep1.active > a {
    background: url('../images/icon/ico-lnb-on.svg') #007afd no-repeat 92% 50%;
    color: #fff;
    font-weight: 700;
    border-radius: 16px 16px 0 0 !important;
}
.nav .dep1.active:nth-child(1) > a::before {
    background: url('../images/icon/ico-lnb01-w.svg') no-repeat center;
}
.nav .dep1.active:nth-child(2) > a::before {
    background: url('../images/icon/ico-lnb02-w.svg') no-repeat center;
}
.nav .dep1.active:nth-child(3) > a::before {
    background: url('../images/icon/ico-lnb03-w.svg') no-repeat center;
}
.nav .dep1.active:nth-child(4) > a::before {
    background: url('../images/icon/ico-lnb04-w.svg') no-repeat center;
}
.nav .dep1.active:nth-child(5) > a::before {
    background: url('../images/icon/ico-lnb05-w.svg') no-repeat center;
}
.nav .dep2 {
    display: none;
    padding: 16px 16px 16px 24px;
    background-color: #f0f2f9;
    border-radius: 0 0 16px 16px;
}
.nav .dep2 > li {
    position: relative;
    padding-left: 16px;
    border-left: 3px solid #dbdfed;
}
.nav .dep2 > li.on,
.nav .dep2 > li.active .dep3 {
    display: block;
}
.nav .dep2 > li.active > a {
    color: #007afd;
}
.nav .dep2 > li.active > a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -3px;
    display: block;
    width: 3px;
    height: 42px;
    background-color: #007afd;
}
.nav .dep2 > li > a {
    display: block;
    padding: 11px 0;
    font-size: 16px;
    font-weight: 500;
    color: #555555;
}
.nav .dep2 > li a:hover {
    color: #007afd;
}
.nav .dep2 > li > a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -2px;
    display: block;
    width: 2px;
    height: 34px;
    background-color: #dbdfed;
}
.nav .dep2 > li.on > a {
    font-weight: 700;
    color: #007afd;
}
.nav .dep2 > li.on > a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -2px;
    display: block;
    width: 2px;
    height: 32px;
    background-color: #007afd;
}
.nav .dep3 {
    display: none;
    margin-left: 12px;
}
.nav .dep3 > li > a {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    color: #bbbbbb;
}
.nav .dep3 > li.on > a {
    color: #007afd;
}

/*=================================================================================
 * (Layout) Contents style
=================================================================================*/
/* Page Title */
.page-title-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.page-title-wrap .left {
    display: flex;
    align-items: center;
    gap: 16px;
}
.page-title-wrap h2 {
    display: flex;
    align-items: center;
    font-size: 26px;
    font-weight: 700;
}
.page-title-wrap .page-navi {
    display: flex;
    align-items: center;
}
.page-title-wrap .page-navi > li {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #808080;
}
.page-title-wrap .page-navi > li::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 16px;
    background: url('../images/icon/ico-nav-next.svg') no-repeat center;
    vertical-align: middle;
}
.page-title-wrap .page-navi > li:last-child {
    font-weight: 600;
    color: #4d4d4d;
}
.page-title-wrap .page-navi > li:last-child::after {
    display: none;
}
.section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.section-title > div {
    display: flex;
    align-items: center;
}
.section-title h3 {
    font-size: 22px;
    font-weight: 700;
    color: #222222;
}
.section-title .btn-guide {
    margin-left: 10px;
}
.section-title p {
    display: flex;
    align-items: center;
    color: #777;
}
.section-title p::before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 16px;
    background-color: #aaaaaa;
    margin: 0 16px;
}
.section-title ul {
    display: flex;
    align-items: center;
    gap: 8px;
}

/*=================================================================================
 * Section style
=================================================================================*/
section {
    padding: 24px;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 0px 10px rgba(0, 0, 10, 0.05);
    overflow: auto;
}

.row {
    display: flex;
    margin-bottom: 24px;
    gap: 24px;
}
.row:last-child {
    margin-bottom: 0;
}
.col section,
.col .section {
    margin-bottom: 24px;
}
.col section:last-child .col .section:last-child {
    margin-bottom: 0;
}

/*=================================================================================
 * Swiper style
 =================================================================================*/
/* Swiper 전체 컨테이너 */
.swiper-container {
    position: relative;
    width: 100%;
}
.swiper {
    width: 100%;
}
.swiper-wrapper {
    display: flex;
}
/* 개별 슬라이드 */
.swiper-slide {
    width: 100%; /* 중앙 슬라이드가 전체 보이도록 설정 */
    max-height: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    border-radius: 20px;
    box-shadow: 1px 1px 10px #eee;
    overflow: hidden;
}
.swiper-button-next,
.swiper-button-prev {
    color: #fff !important;
    padding: 30px;
}
.swiper-button-next:hover::after,
.swiper-button-prev:hover:after {
    color: #2680fa;
}

.swiper-slide .thumb {
    width: 100%;
    max-height: 400px;
}
.swiper-slide img {
    width: 100%;
    height: 100%;
}
.swiper-slide .txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 36px;
    font-weight: 600;
    text-align: center;
}
.swiper-slide .txt h2 {
    font-size: 36px;
    line-height: 1.4;
    white-space: nowrap;
}
.swiper-control {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.swiper-pagination {
    left: 50% !important;
    bottom: 16px;
    background-color: #fff;
    padding: 6px 8px;
    border-radius: 30px;
    display: inline-block;
    width: auto !important;
    transform: translateX(-50%) !important;
}
.swiper-pagination span {
    width: 12px;
    height: 12px;
}
.swiper-pagination {
    display: flex;
    gap: 4px;
}
.swiper-pagination-bullet-active {
    background: #2680fa !important;
}

@media screen and (max-width: 1400px) {
    .swiper-slide .txt h2 {
        font-size: 28px;
    }
}

/*=================================================================================
 * TAB style
 =================================================================================*/
.tab-links {
    display: flex;
    width: 100%;
    border: 1px solid #e4e4e4;
    border-radius: 8px;
    overflow: hidden;
}
.tab-links li {
    position: relative;
    width: 50%;
}
.tab-links li a {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    height: 42px;
    line-height: 42px;
    background-color: #fff;
    color: #808080;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
}
.tab-links li.active a {
    background-color: #3f3f3f;
    color: #fff;
    font-weight: 700;
}
.tab-item {
    display: none;
    transition: all 0.3s;
}
.tab-item.active {
    display: block;
}

/*=================================================================================
 * Table style
 =================================================================================*/
.table-wrap {
    width: 100%;
    overflow: auto;
}

/*Table style*/
table {
    width: 100%;
    font-size: 16px;
    background-color: #fff;
    border-top: 1px solid #333;
}
table tr,
table td,
table td a {
    text-align: center;
    transition: all 0.2s;
}
table th {
    font-size: 15px;
    border-bottom: 1px solid #c6c6c6;
    background-color: #edeff5;
    padding: 0 10px;
    height: 48px;
    font-weight: 700;
}
table td {
    border-bottom: 1px solid #ebebeb;
    max-width: 600px;
    height: 48px;
    padding: 5px 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
table td input[type='text'],
table td input[type='search'],
table td input[type='password'],
table td input[type='tel'],
table td input[type='email'],
table td input[type='number'] {
    height: 42px;
    line-height: 42px;
    font-size: 15px;
}
.td-btn {
    display: flex;
    gap: 8px;
}
.td-btn .input-clear {
    width: 100%;
}

.list-table tr:hover {
    cursor: pointer;
}
.list-table tbody tr:hover,
.list-table tr:hover td {
    background-color: #f1f7ff;
}
.list-table tr th,
.list-table tr td {
    text-align: center;
}
.list-table tr input[type='checkbox'] {
    margin: 0 auto;
}
.list-table tr input[type='checkbox']:focus {
    outline: none;
}

.write-table th {
    padding: 8px 20px;
    height: 56px;
    border-right: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    text-align: center;
}
.write-table td {
    padding: 6px 12px;
    min-height: 56px;
    border-bottom: 1px solid #e8e8e8;
    text-align: left;
}

.view-table thead tr th {
    border-right: 0;
}
.view-table th {
    height: 70px;
    padding: 28px 24px;
    border-right: 1px solid #d4d5d7;
    border-bottom: 1px solid #d4d5d7;
    text-align: left;
}
.view-table td {
    padding: 24px;
    text-align: left;
    min-height: 400px;
}
.view-table .tit {
    font-size: 18px;
}
.view-table .date {
    color: #777;
    font-weight: 400;
    text-align: right;
}
.view-table .text textarea {
    border: none;
}

/*Table style*/
.reply-box {
    position: relative;
    background-color: #fafafa;
    padding: 36px;
    border-radius: 8px;
    margin-top: 36px;
}
.reply-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}
.reply-top .user {
    display: flex;
    align-items: center;
    gap: 16px;
}
.reply-top p {
    font-size: 18px;
    font-weight: 700;
    color: #007afd;
}
.reply-top .date {
    font-size: 15px;
    color: #777;
    font-weight: 400;
}
.btn-reply-set {
    width: 40px;
    text-align: center;
}
.reply-setting {
    display: none;
    position: absolute;
    top: 70px;
    right: 36px;
}
.reply-setting ul {
    display: flex;
    justify-content: center;
    flex-flow: column wrap;
    background-color: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 3px;
    box-shadow: 0px 0px 10px rgba(0, 2, 6, 0.08);
    padding: 8px;
}
.reply-setting a {
    display: block;
    min-width: 80px;
    padding: 9px 16px;
    font-size: 14px;
    color: #4d4d4d;
    text-align: center;
}
.reply-setting a:hover {
    background-color: #edeff5;
    border-radius: 3px;
    color: #333333;
    font-weight: 700;
}

/* 페이징  */
.paging-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
.paging-wrap li {
    margin: 0 2px;
}
.paging-wrap li.on a {
    background-color: #03428e;
    color: #fff;
}
.paging-wrap li.on a:hover {
    background-color: #184d8f !important;
    color: #fff;
}
.paging-wrap li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 5px;
    font-size: 16px;
    line-height: 1;
    transition: all 0.2s;
}
.paging-wrap li a:hover {
    background-color: #ddecf8;
}
.paging-wrap li a.disable {
    background-color: #edeff5;
}
.btn-first::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 14px;
    background: url('../images/icon/btn-first.svg') no-repeat center;
    vertical-align: middle;
}
.btn-last::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 14px;
    background: url('../images/icon/btn-last.svg') no-repeat center;
    vertical-align: middle;
}
.btn-prev::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 14px;
    background: url('../images/icon/btn-prev.svg') no-repeat center;
    vertical-align: middle;
}
.btn-next::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 14px;
    background: url('../images/icon/btn-next.svg') no-repeat center;
    vertical-align: middle;
}

/*=================================================================================
 * Popup style
=================================================================================*/
.popup-overlay,
.popup-wrapper {
    display: none;
}
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 20;
}
.popup-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 400px;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 36px;
    border-radius: 15px;
    z-index: 50;
}
.popup-title {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 10px;
    margin-bottom: 24px;
    font-size: 28px;
    font-weight: 600;
}
.popup-title h3,
.popup-title h4 {
    font-size: 28px;
}
.popup-title .btn-popup-close {
    position: absolute;
    right: 24px;
}
.popup-contents {
}
.popup-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
}
.popup-button .btn {
    height: 56px;
    line-height: 56px;
    padding: 8px 42px;
    font-size: 18px;
}

/*=================================================================================
 * Motion style
 =================================================================================*/
/* Motion */
.slidein {
    animation: slideIn 0.3s ease-in-out forwards;
}
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slidedown {
    animation: slideDown 0.3s ease-in-out forwards;
}
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 764px) {
    header {
        padding: 0 20px;
    }
    header .left .logo {
        width: 130px;
    }

    .dashboard-layout-header {
        padding: 40px 0 100px 0;
    }

    header .right .user-box {
        display: none;
        position: absolute;
        top: 30px;
        right: 30px;
    }
}
