@charset "UTF-8";

/* header */
header {min-height:100px;padding: 32px 0 24px; border-bottom: 1px solid #E7E9EF; background: #fff;}
header .header-container{/* padding: 0 120px; */width: 1280px;margin: auto;position: relative;}
header .header-container .header-top {display: flex;justify-content: flex-end;align-items: center;gap: 12px;position: absolute;right: -172px;}
header .header-container .count {display: flex; align-items: center; font-size: 13px; color: #DF2030;}
header .header-container .count #sessionTimer{min-width: 31px;}
header .header-container .count::after {content: ''; width: 1px; height: 12px; margin-left: 12px; background: #E0E3EB;}
header .header-container .count .btn-txt {margin-left: 4px;}
header .header-container .btn-txt {font-size: 14px;}
header .header-container .btn-txt:hover {color: #535765;}
header .header-container .ico-bell {display: flex; align-items: flex-start;}
header .header-container .ico-bell::before {content: ''; width: 16px; height: 16px; background: url(/images/common/Icon/1x/ico_bell.png) no-repeat center / contain;}
header .header-container .ico-bell span {min-width: 16px; margin: -7px 0 0 -7px; padding: 2px 4px; border-radius: 8px; background: #DF2030; font-size: 8px; font-weight: 400; color: #fff;}
header .header-container .row {/* justify-content: space-between; */align-items: center;}
header .header-container .row > * {width: auto; max-width: initial;}
header .header-container .header-logo {font-size: initial;}
header .header-container .nav {display: flex;align-items: center;column-gap: 8px;margin-left: 100px;}
header .header-container .nav ul {display: flex; column-gap: 8px;}
header .header-container .nav ul li {width:142px;text-align: center;}
header .header-container .nav ul li a {font-size: 18px; font-weight: 600; color: #0B0C0E;}
/* header .header-container .ico-menu {width: 24px; height: 24px; background: url(/images/common/Icon/1x/ico_menu.png) no-repeat center / contain;} */
.breadcrumb {margin-bottom: 0; padding: 12px 0; border-bottom: 1px solid #F5F6FA;}
.breadcrumb ol {display: flex; width: 1280px; margin: 0 auto;}
.breadcrumb ol > li {display: flex; align-items: center; flex: 0 0 260px; position: relative;}
.breadcrumb ol > li::after {width: 1px; height: 16px; background: #F5F6FA; content: '';}
.breadcrumb ol > li.home {flex: 0 0 auto;}
.breadcrumb ol > li.home > a::after {width: 24px; height: 24px; background: url(/images/common/Icon/1x/ico_home.png) no-repeat center / contain; content: '';}
.breadcrumb ol > li.depth1 {flex: 0 0 120px;}
.breadcrumb ol > li > a {flex: 1;}
.breadcrumb ol > li a {display: flex; padding: 0 16px; font-size: 16px; font-weight: 500; color: #0B0C0E;}
.breadcrumb ol > li a.ico-chevron-down {display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1; overflow: hidden; padding-right: 36px; background: url(/images/common/Icon/1x/ico_chevron_down.png) no-repeat right 16px center;}
.breadcrumb .submenu {display: none;opacity: 0; position: absolute; top: -21px; left: -9px; width: 277px; padding: 8px; border: 1px solid #E7E9EF; border-radius: 8px; background: #fff; box-shadow: 0 2px 12px 0 rgba(30, 32, 36, 0.1); z-index: 1000;transition: opacity 0.3s ease-in-out;}
.breadcrumb .submenu li {border-radius: 6px;}
/* .breadcrumb .submenu li:first-child {padding: 12px 0 12px 16px;} */
/* .breadcrumb .submenu li:not(:first-child):hover {background: #F0F6FE;} */
.breadcrumb .submenu li:hover a {color: #1E2024; background: #E3EEFF}
.breadcrumb .submenu li.active {background: #DDE7F9;}
.breadcrumb .submenu li.active a {color: #1E2024;}
.breadcrumb .submenu li a {padding: 12px 16px; font-size: 13px; font-weight: 400; color: #535765;}
.breadcrumb .submenu li a {
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 400;
    color: #535765;
    position: relative;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.breadcrumb .submenu li a.ico-chevron-down {padding: 0 36px 0 0; font-size: 16px; color: #0B0C0E;}

/* 호버 시 좌측 강조 바 */
.breadcrumb .submenu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 3px;
    height: 50%;
    background: linear-gradient(180deg, #007bff 0%, #0056b3 100%);
    background: linear-gradient(180deg, #007bff 0%, #003fb3 100%);
    border-radius: 0 3px 3px 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.breadcrumb .submenu li a:hover {
    background: linear-gradient(90deg,
        rgba(0, 123, 255, 0.04) 0%,
        rgba(0, 123, 255, 0.02) 50%,
        transparent 100%);
    color: #2600ff;
    color: #007bff;
    padding-left: 24px;
    transform: translateX(2px);
}

.breadcrumb .submenu li a:hover::before {
    transform: translateY(-50%) scaleY(1);
}

.breadcrumb .submenu.show {
    display: block;
    opacity: 1;
}
/* footer */
footer {
    padding: 80px 0 120px;
    background: #F5F6FA;
}
footer .footer-container {
    width: 1280px;
    margin: auto;   
}
footer .footer-container .row {
    margin: 0;
}
footer .footer-container .row ~ .row {
    margin-top: 32px;
}
footer .footer-container [class^=col] {
    padding: 0;
    width: auto;
}
footer .footer-container [class^=col]:last-child {
    flex: 0 1 auto;
}
footer .footer-container .footer-logo {
    display: flex;
    column-gap: 32px;
}
footer .footer-container p {
    font-size: 15px;
    color: #535765;
}
footer .footer-container p strong{
    margin-right: 7px;
    font-weight: 500;
}
footer .footer-container p strong + strong{
    position: relative;
    margin-left:22px;
}
footer .footer-container p strong + strong:before{
    content:'';
    position: absolute;
    left:-11px;
    top:3px;
    width:1px;
    height:12px;
    background-color: #A9AFBC;
}
footer .footer-container .copyright {
    margin-top: 16px;
    font-weight: 500;
    color:#535765;
}
footer .footer-container .footer-customer-wrap {
    display: flex;
    column-gap: 20px;
}
footer .footer-container .footer-customer {
    display: flex;
    align-items: center;
    column-gap: 32px;
    padding: 26px 32px;
    border-radius: 24px;
    background: #E7E9EF80;
}
footer .footer-container .footer-customer-remote {
    display: flex;
    align-items: center;
}
footer .footer-container .footer-customer .customer-title {
    font-size: 20px;
    font-weight: 600;
    color: #535765;
}
footer .footer-container .footer-customer .customer-title span {
    display: block;
    margin-top: 2px;
    line-height: 20px;
    font-size: 13px;
    font-weight: 400;
    color: #535765;
}
footer .footer-container .footer-customer .customer-number {
    font-size: 32px;
    font-weight: 600;
    color: #5388DF;
}
footer .footer-container .info-agree-wrap {
    display: flex;
    margin-bottom: 16px;
}
footer .footer-container .info-agree-wrap p{
    position: relative;
}
footer .footer-container .info-agree-wrap p a{
    font-size: 16px;
    color:#535765;
    line-height: 24px;
    font-weight: 400;
}
footer .footer-container .info-agree-wrap p + p{
    position: relative;
    margin-left:32px;
}
footer .footer-container .info-agree-wrap p + p a{
    color: #1E2024;
    font-weight: 500;
}
footer .footer-container .info-agree-wrap p + p:before{
    content:'';
    position: absolute;
    left:-16px;
    top:50%;
    margin-top:-6px;
    width:1px;
    height:12px;
    background-color: #E7E9EF;    
}
footer .footer-container .copyright-wrap{
    margin-top: 24px !important;
    border-top: 1px solid #E7E9EF;
}
footer .footer-container .copyright-wrap button{
    margin-top: 24px;
}
footer .footer-container .copyright-wrap .owned-media-wrap{
    display: flex;
    align-items: center;
    margin-top: 16px;
    column-gap: 42px;
}
footer .footer-container .copyright-wrap .owned-media-wrap img{
    width : 45px;
    height: 45px;
    display : block;
}
/* visual */
.visual {
    display: flex;
    align-items: center;
    width: 100%;
    height: 240px;
}
.banner01 {
    background: url(/images/banner/sub_banner01.png) no-repeat center;
}
.banner02 {
    background: url(/images/banner/sub_banner02.png) no-repeat center;
}
.banner03 {
    background: url(/images/banner/sub_banner03.png) no-repeat center;
}
.banner04 {
    background: url(/images/banner/sub_banner04.png) no-repeat center;
}
.banner05 {
    background: url(/images/banner/sub_banner05.png) no-repeat center;
}

/* img 태그일 경우 */
/* .visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.visual .visual-container {
    position: absolute;
    width: 1280px;
}
.visual .visual-title {
    font-size: 48px;
} */

.visual .visual-container {
    width: 1280px;
    margin: 0 auto;
}
.visual .visual-title {
    font-size: 48px;
}

.container {
    min-width: 1280px;
    width: 1280px;
    margin: 80px auto 130px;
    padding:0;
}
.container .card-body{padding:0;}
.container .card-header:first-child{padding:0}
/* 팝업 스타일 */
.popup_wrap{border:1px solid #DDE7F9;position: absolute;min-width: 480px;background-color: #fff;z-index: 1000;}
.popup_header{display: flex; justify-content: space-between;align-items: center;}
.popup_header .popup_title{display: flex;position: relative;width: 100%;align-items: center;margin-bottom:24px;font-size:20px;font-weight: 600;color: #0B0C0E;}
.popup_header .popup_title .close{position: absolute;right:0;top:0;width: 30px;height: 30px;border: 0;background: url('/images/Icon/1x/ico_close.png') no-repeat center center;}
.popup_body{min-height: 320px;max-height: 560px;overflow-y: auto;}
.popup_body .con_text + .con_text{margin-top: 36px;}
.popup_foot{margin-top: 36px;padding:20px;background-color: #DDE7F9;}
.popup_foot .form-group{justify-content: space-between;}
.popup_foot .form-group a.btn-txt{font-size: 15px;text-decoration: underline;}
.popup_foot .form-check .form-check-input{width: 18px;height: 18px;border-radius: 4px;}
.popup_foot .form-check .form-check-label{font-size: 15px;font-weight: 400;color:#1E2024;}

.con_wrap{margin-top: 80px;}
.con_header{display: flex; justify-content: space-between;align-items: center;}
.con_header.add-info{align-items: baseline;flex-direction: column;}
.con_header.add-info .con_title{margin-bottom: 12px;}
.con_header.add-info .caution-info{margin-bottom: 24px;color:#535765;}
.con_header.border-bottom {margin-bottom: 12px; border-color: #E7E9EF !important;}
.con_header .con_title{display: flex;align-items: center;margin-bottom:24px;font-size:24px;font-weight: 600;color: #0B0C0E;}
.con_header .con_title .btn-tooltip{margin-left: 10px;}
.con_header .con_right{font-size:16px;color: #535765;}
.con_header ~ .dataTable-wrap {margin-top: 0;}

/* scroll */
.scroll {scroll-margin-top: 80px;}

.table-responsive{overflow-x: inherit;}

/* @media (max-width: 1460px) {
  header .header-container .nav ul li {
    width: 9.7260vw;
  }
} */
@media (max-width: 1520px) {
    header .header-container{
        width: 1280px;
        margin: 0 auto;
        padding: 0;
    }
    /* header .header-container .nav ul li{
        width:128px;
    } */
}
@media (max-width: 1280px) {
  header .header-container{
    padding: 0 30px;
    transition: all 0.8s ease;
}
  footer .footer-container {
    width: 1280px;
    margin: 0 auto;
  }
  .container{
    padding:0 30px;
    transition: all 0.8s ease;
}
.breadcrumb{
    padding: 12px 30px;
    transition: all 0.8s ease;
}
.visual{
    padding: 0 30px;
    transition: all 0.8s ease;
  }
}
   