body {
    background: #ffffff;
}

body > main {
    position: relative;
    width: 100%;
    min-width: 1080px;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

body > main > #layout-out-common {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex-grow: 1;
    background-color: #ffffff;
}

label.pipe {
    font-size: 10px;
    color: #dcddde;
    margin: 0 10px;
    vertical-align: 2px;
}

nav.header-nav {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* 헤더 컨텐츠 스타일 */
nav.header-nav .header-content {
    width: 100%;
    max-width: 1080px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* 헤더 컨테이너 스타일 */
nav.header-nav .header-container {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* 좌측 로고 */
nav.header-nav .header-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* 우측 링크 컨테이너 */
nav.header-nav .header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* 매니저 정보 */
nav.header-nav .header_manager_data {
    position: absolute;
    right: 0;
    top: 0;
    background-color: #eeeeee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 2px;
}

nav.header-nav .header-right > .badge-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

nav.gnb-menu {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    z-index: 100;
    border-top: 1px solid #dcddde;
    border-bottom: 1px solid #dcddde;
}

nav.gnb-menu .gnb-menu-list {
    width: 100%;
    height: 100%;
    max-width: 1080px;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav.gnb-menu .gnb-menu-list > li {
    position: relative;
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

nav.gnb-menu .gnb-menu-list > li > a {
    font-size: 18px;
    color: #333333;
    font-weight: bold;
    font-family: 'Nanum Square', sans-serif;
}

nav.gnb-menu .gnb-menu-list > li:hover a {
    color: #0070ff;
}

nav.gnb-menu > div > #hidden-logo-symbol {
    position: absolute;
    top: 50%; /* 원하는 위치 조정 */
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

@media (max-width: 1175px) {
    nav.gnb-menu > div > #hidden-logo-symbol {
        display: none;
    }
}

/* 메뉴에 마우스를 올리면 서브 메뉴 보이기 */
nav.gnb-menu > .gnb-menu-list > li:hover .lnb-menu {
    display: flex;
}

nav.gnb-menu > .gnb-menu-list > li > .lnb-menu {
    width: 100%;
    display: none;
    position: absolute;
    top: 100%;
    border-top: 1px solid #0070ff;
    background-color: #ffffff;
    z-index: 10;
}

nav.gnb-menu > .gnb-menu-list > li > .lnb-menu > .lnb-menu-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    gap: 0.75rem;
    box-shadow: 0 5px 10px 2px rgba(0, 0, 0, 0.07);
}

nav.gnb-menu > .gnb-menu-list > li > .lnb-menu > .lnb-menu-list > li {
    width: 100%;
    text-align: center;
}

nav.gnb-menu > .gnb-menu-list > li > .lnb-menu > .lnb-menu-list > li > a {
    width: 100%;
    color: #333333;
    font-size: 16px;
    font-family: 'Noto Sans KR', sans-serif;
}

nav.gnb-menu > .gnb-menu-list > li > .lnb-menu > .lnb-menu-list > li > a:hover {
    color: #0070ff;
}

body > main > footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #222222;
    color: white;
}

footer p {
    color: #999999;
}

footer > .fnb-menu {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #333333;
}

footer > .fnb-menu > .fnb-wrap {
    width: 1080px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #333333;
}

footer > .fnb-menu > .fnb-wrap > .fnb-menu-list {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

footer > .fnb-menu > .fnb-wrap > .fnb-menu-list > a {
    color: #fff;
    font-weight: 700;
}

footer > .fnb-menu > .fnb-wrap > .fnb-menu-family-site {
    position: relative;
    width: 180px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #41414d;
    border-left: 1px solid #41414d;
    cursor: pointer;
}

.fnb-menu-family-site-dropdown {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    position: absolute;
    bottom: 100%;
    border: 1px solid #3267e9;
}

.fnb-menu-family-site-dropdown a {
    display: block;
    width: 100%;
    color: #5c667b;
    font-size: 13px;
    padding: 7px 10px;
    background: #fff;
}

.fnb-menu-family-site-dropdown a:hover {
    background-color: #f4f6fa;
    color: #3267e9;
}


.fnb-menu-family-site-dropdown a:hover {
    background-color: #f1f1f1;
}

.fnb-menu-family-site:hover .fnb-menu-family-site-dropdown {
    display: flex;
}

footer > .fnb-menu-info {
    position: relative;
    width: 100%;
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer > .fnb-menu > .fnb-wrap > .fnb-menu-family-site span,
footer > .fnb-menu > .fnb-wrap > .fnb-menu-family-site i,
footer > .fnb-menu-info > .fnb-menu-info-inner > .fnb-customer-center span,
footer > .fnb-menu-info > .fnb-menu-info-inner > .fnb-cc-right span {
    color: #fff;
}

footer > .fnb-menu-info > .fnb-menu-info-inner {
    width: 100%;
    max-width: 1080px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

footer > .fnb-menu-info > .fnb-menu-info-inner > address {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 1rem;
    font-style: normal;
    color: #999999;
}

footer > .fnb-menu-info > .fnb-menu-info-inner > address > .address-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.75rem;
    white-space: nowrap;
}

footer > .fnb-menu-info > .fnb-menu-info-inner > address > .address-inner > p > strong {
    color: #cccccc;
}

footer > .fnb-menu-info > .fnb-menu-info-inner > .fnb-customer-center {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1.75rem;
    white-space: nowrap;
}

footer > .fnb-menu-info > .fnb-menu-info-inner > .fnb-customer-center > .fnb-cc-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.25rem;
    white-space: nowrap;
}

footer > .fnb-menu-info > .fnb-menu-info-inner > .fnb-customer-center > .fnb-cc-left > .fnb-cc-time {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

footer > .fnb-menu-info > .fnb-menu-info-inner > .fnb-customer-center > .fnb-cc-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
}

footer > .fnb-menu-info > .fnb-menu-info-inner > .fnb-customer-center > .fnb-cc-right > .fnb-cc-btn {
    width: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.5rem;
    padding: 10px 15px;
    border: 1px solid #ffffff;
    color: #ffffff;
}

footer > .fnb-menu-info > .fnb-menu-info-inner > .fnb-customer-center > .fnb-cc-right > .fnb-cc-btn:hover {
    background: #ffffff;
    color: #000;
}

footer > .fnb-menu-info > .fnb-menu-info-inner > .fnb-customer-center > .fnb-cc-right > .fnb-cc-btn:hover > span {
    color: #000;
}

/* items */
button.confirm {
    font-size: 16px;
    font-weight: 400;
    background-color: #0070ff;
    color: white;
    border: 1px solid #0070ff;
}

.badge {
    width: 1.5rem;
    min-width: 1.5rem;
    height: 1.5rem;
    min-height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background-color: #2d86fe;
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
}

.point {
    color: #2C65E0;
}

/* ALIGN */
.ta-c, .center {
    text-align: center !important;
}

.ta-r, .right {
    text-align: right !important;
}

.ta-l, .left {
    text-align: left !important;
}

.ta-cost {
    text-align: right !important;
    margin-right: 4px;
}

/* FLOAT */
.f_right {
    float: right !important;
}

.f_left {
    float: left !important;
}

/* H & W 100% */
.height100 {
    height: 100%;
}

.width100 {
    width: 100%;
}

.bold {
    font-weight: bold !important;
}

/* VALUE or TYPE */
.cost {
    font-size: 11px;
}

.date {
    font-size: 11px;
}

.point {
    color: #2C65E0;
}

/* COMMON */
#blackPanel {
    display: none;
    width: 100%;
    height: 100%;
    z-index: 1000000;
    position: fixed;
    background-image: url('/resource/common/images/opacity/opacity50.png');
}

.clear {
    clear: both;
}

.del {
    text-decoration: line-through;
}

.del_red {
    text-decoration: line-through;
    text-decoration-color: red;
}

.displayNone {
    display: none;
}

.overFlowHidden {
    overflow: hidden;
}

@media print {
    @page {
        size: 21cm 29.7cm; /*A4*/
        margin: 1cm;
    }

    body {
        margin: 0;
    }

    .printElement {
        width: 1150px !important;
        padding: 0 !important;
    }

    .printElement table {
        width: 1040px !important;
    }

    .print_hide {
        display: none !important;
    }
}

/* TOOLTIP */

.es_tooltip {
    opacity: 1 !important;
    display: block;
    position: absolute;
    border: 2px solid #f9ad2f;
    background-color: white;
    border-radius: 5px;
    padding: 10px 13px;
    color: #000;
    font-size: 12px;
    max-width: 325px;
    z-index: 100001;
    white-space: nowrap;
    margin-left: 8px;
    margin-top: 0px;
    text-align: left;
}

.es_tooltip.right {
    left: auto;
    right: -1px;
}

.es_tooltip span {
    color: blue !important;
}

.tooltip_esn {
    opacity: 1 !important;
    display: block;
    position: absolute;
    color: #000;
    background-color: white;
    padding: 25px 30px;
    font-size: 14px;
    max-width: 500px;
    z-index: 100001;
    margin-left: 4px;
    margin-top: 0;
    box-shadow: 2.5px 4.33px 10px 0px rgba(1, 5, 1, 0.1);
}

.tooltip_esn.right {
    opacity: 1 !important;
    display: block;
    position: absolute;
    border: 2px solid #f9ad2f;
    background-color: white;
    border-radius: 5px;
    padding: 10px 13px;
    color: #000;
    font-size: 12px;
    max-width: 500px;
    z-index: 100001;
    white-space: nowrap;
    margin-left: 8px;
    margin-top: 0px;
}

/* STYLE */
.clickButton {
    cursor: pointer;
}

/* pixel(px) */
.wd-40 {
    width: 40px !important;
}

.wd-45 {
    width: 45px !important;
}

.wd-50 {
    width: 50px !important;
}

.wd-55 {
    width: 55px !important;
}

.wd-60 {
    width: 60px !important;
}

.wd-65 {
    width: 65px !important;
}

.wd-70 {
    width: 70px !important;
}

.wd-75 {
    width: 75px !important;
}

.wd-80 {
    width: 80px !important;
}

.wd-85 {
    width: 85px !important;
}

.wd-90 {
    width: 90px !important;
}

.wd-95 {
    width: 95px !important;
}

.wd-100 {
    width: 100px !important;
}

.wd-110 {
    width: 110px !important;
}

.wd-120 {
    width: 120px !important;
}

.wd-130 {
    width: 130px !important;
}

.wd-140 {
    width: 140px !important;
}

.wd-150 {
    width: 150px !important;
}

.wd-160 {
    width: 160px !important;
}

.wd-180 {
    width: 180px !important;
}

.wd-200 {
    width: 200px !important;
}

.wd-220 {
    width: 220px !important;
}

.wd-240 {
    width: 240px !important;
}

.wd-250 {
    width: 250px !important;
}

.wd-270 {
    width: 270px !important;
}

.wd-300 {
    width: 300px !important;
}

.wd-320 {
    width: 320px !important;
}

.wd-350 {
    width: 350px !important;
}

.wd-400 {
    width: 400px !important;
}

/* percent(%) */
.wd-p-20 {
    width: 20%;
}

.wd-p-100 {
    width: 100%;
}

.wd-p-50 {
    width: 50%;
}

.no-padding {
    padding: 0 !important;
}

.pa-0 {
    padding: 0 !important;
}

.pa-5 {
    padding: 5px;
}

.pa-8 {
    padding: 8px;
}

.pa-12 {
    padding: 12px;
}

.pa-18 {
    padding: 18px;
}

.pa-40 {
    padding: 40px;
}

.font-12 {
    font-size: 12px !important;
}

.font-14 {
    font-size: 14px !important;
}

.font-16 {
    font-size: 16px !important;
}

.font-18 {
    font-size: 18px !important;
}

.font-20 {
    font-size: 20px !important;
}

.font-24 {
    font-size: 24px !important;
}

.ta-l {
    text-align: left
}

.ta-c {
    text-align: center
}

.ta-r {
    text-align: right
}

.va-t {
    vertical-align: top
}

.va-m {
    vertical-align: middle
}

.va-b {
    vertical-align: bottom
}

.va-c {
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}

/* 말줄임표 dotdotdot */
.ellipsis {
    text-overflow: ellipsis;
    -ms-text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.hover_u:hover {
    text-decoration: underline;
}

.dotdotdot {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -ms-text-overflow: ellipsis;
    width: 100%;
}

/*달력 선택*/
.os-select-calendar {
    float: right;
}

.os-select-calendar input {
    width: 110px;
    font-size: 20px;
    text-align: center;
}

.os-select-calendar a {
    display: inline-block;
    height: 26px;
    width: 30px;
    position: relative;
    padding: 0;
    margin: 0;
}

.os-select-calendar a i {
    position: relative;
    margin: 0;
    left: 3px;
    top: 3px;
    font-size: 18px;
}

@media (max-width: 425px) {
    /*모바일*/
    .os-select-calendar a {
        display: inline-block;
        height: 20px;
        width: 25px;
        position: relative;
        padding: 0;
        margin: 0;
    }

    .os-select-calendar input {
        width: 100px;
        font-size: 18px;
        text-align: center;
    }
}


.YS_blue {
    color: #0d8be5;
}

.YS_orange {
    color: #e5a12a;
}

button.primary {
    background-color: #3276b1;
}

button.danger {
    background-color: #a90329;
}

button.warning {
    background-color: #F68B3E;
}

button.olive {
    background-color: #5b835b;
}

button.info {
    background-color: #57889c;
}

button.success {
    background-color: #739e73;
}

button.disable {
    background-color: #999;
}

button.default {
    background-color: #ffffff;
    color: #000000;
}

/*글자 포인트*/
.point_red {
    color: #ff4949 !important;
}

.point_blue {
    color: blue !important;
}

.point_ebei_sky {
    color: #00aaff !important;
}

.point_bold_red {
    color: #ff4949 !important;
    font-weight: bold;
}

.point_bold_blue {
    color: blue !important;
    font-weight: bold;
}

/*custom_function*/

.noBackGround {
    background-image: none !important;
}

.custom_alert {
    z-index: 1001;
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-image: url('/resource/common/images/opacity/opacity50.png');
}

.custom_alert > div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    border: 1px solid #E5E5E5;
    padding: 30px 15px;
}

.custom_alert > div p.title {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    line-height: 20px;
}

.custom_alert > div p.content {
    color: #555555;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    margin-top: 10px;
    line-height: 18px;
}

.custom_alert > div > div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 20px 0;
}

.custom_alert > div > div button {
    bottom: 32px;
    min-width: 104px;
    padding: 0 20px;
    height: 36px;
    box-sizing: border-box;
    border-radius: 0;
    background-color: #0070ff;
    font-size: 16px;
    font-weight: 400;
    color: white;
}

.custom_alert > div > div button.custom_alert_cancel {
    border: 1px solid #95a1b4;
    background-color: #95a1b4;
    color: #ffffff;
}

.caution {
    background-color: yellow !important;
}

/*레프트메뉴 있는 형식*/
.mainWrap .content_wrap {
    position: relative;
}

.mainWrap {
    width: 1080px;
    margin: 0 auto;
    position: relative;
    padding-top: 40px;
    box-sizing: border-box;
}

.mainWrap .left_menu {
    position: absolute;
    border-right: 1px solid red;
    padding: 25px 20px;
    box-sizing: border-box;
    border-right: 1px solid #dddddd;
    width: 180px;
    height: 100%;
}

.mainWrap .main_content {
    min-height: 800px;
    margin-left: 180px;
    box-sizing: border-box;
    display: block;
    padding: 40px 40px 80px;
    box-sizing: border-box;
}

/*기본 센터 형식*/
section.main_section {
    min-width: 1080px;
    position: relative;
}

section.main_section .section {
    box-sizing: border-box;
    position: relative;
    width: 1080px;
    margin: 0 auto;
}

/*헤더 스타일*/
.header_center_top h1 {
    margin-top: 80px;
    margin-bottom: 50px;
    font-size: 36px;
    font-weight: 600;
    text-align: center;
}

.header_center_top div.nav {
    position: absolute;
    right: 0;
    top: 75px;
    color: #a7a9ac;
}

.header_center_top div.nav label {
    color: #0070ff;
}

.header_left_top h1 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 34px;
}

/*탭 (카테고리 등)*/
.tab_style {
    margin-bottom: 10px;
}

.tab_style > ul {
    width: 100%;
    display: flex;
}

.tab_style > ul > li {
    width: 100px;
    box-sizing: border-box;
    border: 1px solid #CCCCCC;
    border-bottom: 1px solid #0070ff;
    border-left: none;
    background-color: #ffffff;
}

.tab_style > ul > li a {
    width: 100%;
    min-height: 38px;
    line-height: 38px;
    display: inline-block;
    text-align: center
}

.tab_style > ul > li a:visited {
    color: #333333;
}

.tab_style > ul > li:first-of-type {
    margin: 0;
    border-left: 1px solid #DDDDDD;
}

.tab_style > ul > li.on {
    border: 1px solid #0070ff;
    border-bottom: none;
    border-right: none;
}

.tab_style > ul > li.on a {
    color: #0070ff;
}

.tab_style > ul > li.on + li {
    border-left: 1px solid #0070ff;
    margin: 0;
}

.tab_style > ul > li.last_margin {
    display: block;
    height: 40px;
    width: auto;
    position: relative;
    float: none;
    margin: 0;
    border: none;
    border-bottom: 1px solid #0070ff;
    flex-grow: 1;
}

.tab_style.fill > ul > li.on {
    background-color: #0070ff;
    border-bottom: 1px solid #0070ff;
}

.tab_style.fill > ul > li.on a {
    color: white;
}

.tab_style.large > ul > li a {
    padding: 10px 0;
}

.tab_style.large > ul > li > div > ul {
    display: flex;
    flex-direction: column;
}

/*테이블스타일*/
.list_table {
    position: relative;
}

.list_table.margin_40 {
    padding: 40px;
}

.list_table.box {
    border: 1px solid #dcddde;
}

.list_table .table_description {
    padding: 15px 10px;
    font-size: 16px;
    color: #6d6e71;
}

.list_table .table_description label {
    color: #0070ff;
}

.list_table .char {
    color: #dcddde !important;
    font-size: 12px;
}

.list_table h1 {
    font-size: 24px;
    line-height: 33px;
    font-weight: 500;
    margin-bottom: 20px;
    margin-top: 40px;
}

.list_table h1 label {
    color: #0070ff;
}

.list_table h1 label.description {
    color: #6d6e71;
    font-size: 14px;
    font-weight: 400;
}

.list_table h2 {
    color: #0070ff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}

.list_table h2 label {
    color: #0070ff;
}

.list_table h2 label.description {
    color: #6d6e71;
    font-size: 14px;
    font-weight: 400;
}

.list_table span.required {
    position: absolute;
    right: 0;
    top: 26px;
    color: #6d6e71;
}

.list_table span.required label {
    color: #0070ff;
}

.list_table table.es_type1 {
    width: 100%;
}

.list_table table.es_type1 th {
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
    font-weight: 500;
}

.list_table table.es_type1 td {
    border-bottom: 1px solid #dddddd;
    color: #6d6e71;
}

.list_table table.es_type1 td a,
.list_table table.es_type1 td a:visited {
    color: #6d6e71;
}

.list_table table.es_type1 th,
.list_table table.es_type1 td {
    padding: 20px 4px;
}

.list_table table.es_type1 td label {
    color: #0070ff
}

.list_table table.es_type2 {
    border-top: 1px solid #333333;
    width: 100%;
}

.list_table table.es_type2 th,
.list_table table.es_type2 td {
    border-bottom: 1px solid #dddddd;
    color: #333333;
    height: 56px;
    box-sizing: border-box;
}

.list_table table.es_type2 th {
    background: #f2f3f6;
    font-weight: 500;
    padding: 10px 10px;
    height: 60px;
    box-sizing: border-box;
}

.list_table table.es_type2 td {
    padding: 10px 20px;
    color: #6d6e71;
}

.list_table table.es_type2 th label,
.list_table table.es_type2 td label {
    color: #0070ff
}

.list_table table.es_type2.es_blue_th th {
    background: #eef7ff;
}

.list_table table.es_type3 {
    width: 100%;
    border-top: 1px solid #333333;
    margin-top: 15px;
    text-align: left
}

.list_table table.es_type3 th {
    border-top: 1px solid #333333;
    font-weight: 500;
}

.list_table table.es_type3 td {
    color: #6d6e71;
}

.list_table table.es_type3 th,
.list_table table.es_type3 td {
    padding: 20px 4px;
    border-bottom: 1px solid #dddddd;
}

.list_table input[type=text],
.list_table input[type=password] {
    outline: none;
    padding: 5px 9px;
    margin-right: 3px;
    border: 1px solid #dddddd;
    font-size: 15px;
    color: #333333;
    width: 100%;
    box-sizing: border-box;
}

.list_table input[type=text]:focus,
.list_table input[type=password]:focus {
    border: 1px solid #0070ff;
}

.list_table input[type=text]:read-only {
    background-color: #F9F9F9 !important;
}

.list_table input[type=text]:disabled {
    background-color: #F9F9F9 !important;;
}

.list_table input[type=text]::placeholder,
.list_table input[type=password]::placeholder {
    color: #a7a9ac
}

.list_table input[type=text]::-webkit-input-placeholder,
.list_table input[type=password]::-webkit-input-placeholder {
    color: #a7a9ac
}

.list_table input[type=text]:-ms-input-placeholder,
.list_table input[type=password]:-ms-input-placeholder {
    color: #a7a9ac
}

.list_table input:-webkit-autofill,
.list_table input:-webkit-autofill:hover,
.list_table input:-webkit-autofill:focus,
.list_table input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

ul.pay_cost_wrap {
    text-align: right;
    width: 150px;
    margin: 0 auto;
}

ul.pay_cost_wrap > li > ul {
    width: 100%;
}

ul.pay_cost_wrap > li > ul > li {
    width: 90px;
    float: left;
    font-size: 13px;
    color: #6d6e71;
}

ul.pay_cost_wrap > li > ul > li:first-of-type {
    width: 60px;
}

ul.pay_cost_wrap .pay_cost {
    color: #0070ff;
}

ul.item_list {
    vertical-align: top;
    display: inline-block;
    width: 600px;
    margin-left: 15px;
}

ul.item_list li {
    position: relative;
    color: #95a1b4;
    font-size: 12px;
    border: 1px solid #e3e8ff;
    border-radius: 50px;
    background-color: red;
    padding: 3px 25px 4px 10px;
    background-color: #f7f8fc;
    margin: 6px 4px 0px 0;
}

ul.item_list li span {
    cursor: pointer;
    content: url("/resource/common/images/icon/item_remove.png");
    width: 20px;
    height: 20px;
    padding: 6px;
    box-sizing: border-box;
    position: absolute;
    top: 3px;
    right: 4px;
}

ul.item_list li span:hover {
    content: url("/resource/common/images/icon/item_remove_hover.png");
}

/*페이저*/
.list_paging {
    margin-top: 40px;
}

.list_paging a,
.list_paging em {
    background-color: #ffffff;
    vertical-align: top;
    margin: 0 1px;
    width: 30px;
    height: 30px;
    border: 1px solid #dcddde;
    color: #a7a9ac;
    font-weight: 400;
    font-size: 14px;
    display: inline-block;
    line-height: 28px;
    font-style: normal;
}

.list_paging em {
    color: #333333;
    border: 1px solid #6d6e71;
    font-weight: 700;
}

.list_paging a.btn_prev,
.list_paging a.btn_next {
    font-family: 'NanumSquare';
    margin: 0 7px;
}

/*하단 검색 영역*/
.list_search {
    text-align: center;
    margin-top: 40px;
}

.list_search input[type=text] {
    width: 250px;
    height: 30px;
    padding: 2px 10px;
    border: 1px solid #dddddd;
}

.list_search input[type=button] {
    vertical-align: bottom;
    width: 80px;
    padding: 5px 4px 5px;
    border: 1px solid #95a1b4;
    text-align: center;
    font-weight: 400;
    color: #ffffff;
    background-color: #95a1b4;
    font-size: 14px;
    margin: -1px 0 0 0;
}

.list_search div.list_search_select {
    position: relative;
    display: inline-block;
    margin: 0;
}

.list_search div.list_search_select select {
    color: #a7a9ac;
    border-radius: 0;
    background-color: white;
    padding: 4px 30px 4px 10px;
    margin: 0;
    -webkit-appearance: none; /* 네이티브 외형 감추기 */
    -moz-appearance: none;
    appearance: none;
    font-family: inherit;
    font-size: 14px;
    border: 1px solid #dddddd;
    outline: 0;
}

.list_search div.list_search_select select::-ms-expand {
    display: none;
}

.list_search div.list_search_select:before {
    content: "\f0d7";
    color: #333333;
    width: 6px;
    height: 6px;
    position: absolute;
    top: 8px;
    right: 12px;
    font-family: Font Awesome\ 5 Free;
    pointer-events: none;
    font-weight: 900;
}

/*사파리핵*/
/*      폼 스타일 - button */
_:-webkit-full-screen:not(:root:root), .list_search input[type=text] {
    padding: 1px 10px;
}

_:-webkit-full-screen:not(:root:root), .list_search input[type=button] {
    padding: 4px 4px
}

.list_detail {
}

.list_detail .title_wrap {
    padding: 15px 20px;
    font-weight: 500;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
    font-size: 16px;
}

.list_detail .title_wrap span {
    float: right;
    color: #6d6e71;
    font-size: 14px;
    font-weight: 400;
}

.list_detail .title_wrap strong {
    font-weight: 500;
    color: #333333;
}

.list_detail .title_wrap label {
    font-size: 12px;
    color: #dcddde;
}

.list_detail .sub_title_wrap {
    color: #6d6e71;
    background-color: #f7f8fc;
    margin-top: 20px;
    padding: 10px 30px;
}

.list_detail .sub_title_wrap strong {
    font-weight: 500;
    color: #333333;
}

.list_detail .sub_title_wrap label {
    font-size: 12px;
    color: #dcddde;
}

.list_detail .review_sub_header {
    background-color: #f7f8fc;
    margin-top: 20px;
    padding: 15px 30px;
}

.review_sub_header input[type=button] {
    border: none;
    background-color: #95a1b4;
    padding: 3px 12px;
    font-size: 12px;
    margin-left: 9px;
    vertical-align: baseline;
    color: #ffffff;
    -webkit-appearance: none; /* 네이티브 외형 감추기 */
    -moz-appearance: none;
    appearance: none;
}

.list_detail .detail_content {
    padding: 35px 30px;
    font-size: 14px;
    color: #6d6e71;
    line-height: 24px;
    border-bottom: 1px solid #dddddd;
    word-break: break-all;
}

.list_detail .detail_content.inquiry {
    padding: 33px 30px;
}

.list_detail .file_wrap {
    margin-top: 10px;
    padding: 30px;
    background: #f7f8fc;
}

.list_detail .file_wrap ul {
    margin-top: -6px;
}

.list_detail .file_wrap ul li {
    line-height: 30px;
    color: #6d6e71;
}

.list_detail .file_wrap ul li a:hover {
    text-decoration: underline;
}

.list_detail .inquiry_footer {
    padding: 10px 0;
    margin-top: 40px;
}

.list_detail .inquiry_footer.answer {
    border: 1px solid #dcddde;
    border-top: 1px solid #0070ff;
}

.list_detail .inquiry_footer .title_wrap {
    border: none;
}

.list_detail .inquiry_footer .inquiry_content {
    padding: 20px 30px;
    color: #6d6e71;
    line-height: 24px;
}

.list_detail .inquiry_footer.member_form {
    text-align: center
}

.list_detail .inquiry_footer.member_form input {
    padding: 4px 25px
}

.list_detail .navi_wrap {
    border-bottom: 1px solid #dddddd;
    padding: 20px;
}

.list_detail .navi_wrap img {
    margin-right: 20px;
}

.list_detail .navi_wrap strong {
    margin-right: 35px;
}

.list_detail .navi_wrap label {
    color: #a7a9ac;
}

.list_detail .navi_wrap a,
.list_detail .navi_wrap a:visited {
    color: #6d6e71;
}

.list_detail .navi_wrap a:hover {
    text-decoration: underline;
}

.list_detail .navi_wrap.next {
    border-top: 1px solid #333333;
    margin-top: 40px;
}

.list_detail .footer_btn_wrap {
    margin-top: 10px;
}

.list_detail .footer_btn_wrap span {
    float: right;
}

.list_detail .footer_btn_wrap input[type=button] {
    margin: 0;
    padding: 4px 35px 4px;
    border: 1px solid #CCCCCC;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    background-color: #FFFFFF;
}

/* ebei style = es */

/*      폼 스타일 */
div.es_select {
    margin: 0 3px 0 0;
}

div.es_select.small {
    margin: 0 1px 0 0;
}

div.es_select:last-child {
    margin-right: 0px;
}


input.es_text[type=text],
input.es_text[type=password] {
    outline: none;
    padding: 15px 15px 15px;
    margin-right: 3px;
    border: 1px solid #dddddd;
    font-size: 16px;
    color: #333333;
    width: 100%;
    box-sizing: border-box;
}

input.es_text[type=text]:focus,
input.es_text[type=password]:focus {
    border: 1px solid #0070ff;
}

input.es_text[type=text]:read-only {
    background-color: #F9F9F9 !important;
}

input.es_text[type=text]:disabled {
    background-color: #F9F9F9 !important;;
}

input.es_text[type=text]::placeholder,
input.es_text[type=password]::placeholder {
    color: #a7a9ac
}

input.es_text[type=text]::-webkit-input-placeholder,
input.es_text[type=password]::-webkit-input-placeholder {
    color: #a7a9ac
}

input.es_text[type=text]:-ms-input-placeholder,
input.es_text[type=password]:-ms-input-placeholder {
    color: #a7a9ac
}

input.es_text:-webkit-autofill,
input.es_text:-webkit-autofill:hover,
input.es_text:-webkit-autofill:focus,
input.es_text:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

/*      폼 스타일 - button */
input[type=button].es_btn {
    padding: 15px 15px 15px;
    margin: 0 3px 0 0;
    border: 1px solid #CCCCCC;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    background-color: #FFFFFF;
}

input[type=button].es_btn.slim {
    padding: 1px 22px
}

input[type=button].es_btn.in_table {
    font-size: 14px;
    padding: 4px 12px;
}

input[type=button].es_btn.confirm {
    background-color: #0070ff;
    color: white;
    border: 1px solid #0070ff;
}

input[type=button].es_btn.type1 {
    color: #0070ff;
    border: 1px solid #0070ff;
}

input[type=button].es_btn.type2 {
    color: #ffffff;
    border: 1px solid #808285;
    background-color: #808285;
}

input[type=button].es_btn.type3 {
    color: #df3260;
    border: 1px solid #df3260;
}

input[type=button].es_btn.type4 {
    color: #1e4376;
    border: 1px solid #1e4376;
}

input[type=button].es_btn.type5 {
    color: #95a1b4;
    border: 1px solid #95a1b4;
}

input[type=button].es_btn.type6 {
    color: #ffffff;
    border: 1px solid #95a1b4;
    background-color: #95a1b4;
}

input[type=button].es_btn.type7 {
    color: #6d6e71;
    border: 1px solid #dddddd;
    background-color: #f8f8f8;
}

input[type=button].es_btn.type8 {
    color: #ffffff;
    border: 1px solid #95a1b4;
    background-color: #95a1b4;
}

input[type=button].es_btn.aoa {
    color: #de9103;
    border: 1px solid #95a1b4;
    background-color: #95a1b4;
}

input[type=button].es_btn.coa {
    color: #c61062;
    border: 1px solid #95a1b4;
    background-color: #95a1b4;
}

button.es_btn.warning {
    background-color: #F68B3E;
}

button.es_btn.warning:hover {
    background-color: #ff9e40;
}

button.es_btn.warning:active {
    background-color: #F68B3E;
}

button.es_btn.confirm {
    background-color: #0070ff;
    color: white;
    border: 1px solid #0070ff;
}

button.es_btn.type1 {
    color: #0070ff;
    border: 1px solid #0070ff;
}

button.es_btn.type2 {
    color: #ffffff;
    border: 1px solid #808285;
    background-color: #808285;
}

button.es_btn.type3 {
    color: #df3260;
    border: 1px solid #df3260;
}

button.es_btn.type4 {
    color: #1e4376;
    border: 1px solid #1e4376;
}

button.es_btn.type5 {
    color: #95a1b4;
    border: 1px solid #95a1b4;
}

button.es_btn.type6 {
    color: #ffffff;
    border: 1px solid #95a1b4;
    background-color: #95a1b4;
}

button.es_btn.type7 {
    color: #6d6e71;
    border: 1px solid #dddddd;
    background-color: #f8f8f8;
}

button.es_btn.type8 {
    color: #ffffff;
    border: 1px solid #95a1b4;
    background-color: #95a1b4;
}

/*      폼 스타일 - select */
div.es_select {
    position: relative;
    display: inline-block;
}

div.es_select:before {
    content: "\f0d7";
    color: #AAAAAA;
    width: 6px;
    height: 6px;
    position: absolute;
    top: 23px;
    right: 16px;
    font-family: Font Awesome\ 5 Free;
    pointer-events: none;
    font-weight: 900;
}

div.es_select select {
    width: 100%;
    color: #a7a9ac;
    border-radius: 0;
    background-color: white;
    padding: 15px 30px 15px 15px;
    margin: 0;
    -webkit-appearance: none; /* 네이티브 외형 감추기 */
    -moz-appearance: none;
    appearance: none;
    font-family: inherit;
    font-size: 16px;
    border: 1px solid #dddddd;
    outline: 0;
}

div.es_select select:disabled {
    background-color: #F9F9F9;
}

div.es_select select.sel_color {
    color: #333333;
}

div.es_select select::-ms-expand {
    display: none;
}

div.es_select.small:before {
    top: 10px;
    right: 15px;
}

div.es_select.small select {
    padding: 7px 30px 7px 8px;
    font-size: 14px;
}

/*      폼 스타일 - radio */
/*기본 -> 둥근 아이콘에 파랑점*/
input[type="radio"].es_radio {
    display: none;
}

input[type="radio"].es_radio + div {
    margin-right: 4px;
    position: relative;
    padding-left: 20px;
    display: inline-block;
}

input[type="radio"].es_radio + div:hover {
    color: #777
}

input[type="radio"].es_radio + div:before {
    position: absolute;
    top: 3px;
    left: 0;
    display: inline-block;
    content: url('/resource/common/images/icon/radio_default.png');
    box-sizing: border-box;
    width: 16px;
    height: 16px;
    line-height: 16px;
    cursor: pointer;
}

input[type="radio"].es_radio:checked + div {
    color: #333;
}

input[type="radio"].es_radio:checked + div:before {
    content: url('/resource/common/images/icon/radio_default_on.png');
}

input[type="radio"].es_radio:checked:disabled + div:before {
    content: url('/resource/common/images/icon/radio_default_disabled.png');
}

/*box -> box 안에 텍스트*/
input[type="radio"].es_radio.box {
    display: none;
}

input[type="radio"].es_radio.box + div {
    font-size: 16px;
    text-align: center;
    box-sizing: border-box;
    padding: 15px 15px 15px;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid #DDDDDD;
}

input[type="radio"].es_radio.box + div:hover {
    background-color: #F0F5FE;
    border: 1px solid #5080E9;
}

input[type="radio"].es_radio.box + div:before,
input[type="radio"].es_radio.box:disabled + div:before {
    content: '';
}

input[type="radio"].es_radio.box:disabled + div {
    background-color: #F9F9F9;
    color: #333333;
    border-color: #DDDDDD;
}

input[type="radio"].es_radio.box:checked + div {
    background-color: #F0F5FE;
    border: 1px solid #5080E9;
    color: #333333;
}

/*check -> 둥근 아이콘에 체크모양*/
input[type="radio"].es_radio.check {
    display: none;
}

input[type="radio"].es_radio.check + div {
    border: 0;
    position: relative;
    padding: 0 0 0 30px;
}

input[type="radio"].es_radio.check + div:hover {
}

input[type="radio"].es_radio.check + div:before {
    position: absolute;
    top: 5px;
    left: 0;
    vertical-align: bottom;
    display: inline-block;
    content: url('/resource/images/icon/radio1_off.png');
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    line-height: 20px;
    cursor: pointer;
}

input[type="radio"].es_radio.check:checked + div {
    background: none;
    border: none;
}

input[type="radio"].es_radio.check:checked + div:before {
    background: none;
    border: none;
    content: url('/resource/images/icon/radio1_on.png');
}

/*      폼 스타일 - checkbox */
input.es_chk[type="checkbox"] {
    display: none;
}

input.es_chk[type="checkbox"] + div {
    margin-right: 4px;
    position: relative;
    padding-left: 20px;
    display: inline-block;
    vertical-align: top;
}

input.es_chk[type="checkbox"] + div:hover {
    color: #777;
}

input.es_chk[type="checkbox"] + div:before {
    position: absolute;
    top: 3px;
    left: 0;
    vertical-align: top;
    display: inline-block;
    content: url('/resource/common/images/icon/checkbox_off.png');
    box-sizing: border-box;
    width: 16px;
    height: 16px;
    line-height: 16px;
    cursor: pointer;
}

input.es_chk[type="checkbox"]:checked + div {
    color: #333;
}

input.es_chk[type="checkbox"]:checked + div:before {
    content: url('/resource/common/images/icon/checkbox_on.png');
}

input.es_chk.fill[type="checkbox"]:checked + div {
    color: #0070ff;
}

/*circle -> 원형 체크박스*/
input.es_chk.circle[type="checkbox"] + div {
    padding-left: 28px;
}

input.es_chk.circle[type="checkbox"] + div:before {
    top: 2px;
    width: 24px;
    height: 24px;
    line-height: 24px;
    content: url('/resource/common/images/icon/checkbox_round_off.png');
}

input.es_chk.circle[type="checkbox"]:checked + div:before {
    content: url('/resource/common/images/icon/checkbox_round_on.png');
}

input.es_chk.circle[type="checkbox"]:disabled + div:before {
    content: url('/resource/common/images/icon/checkbox_round_gray.png');
}

/*large -> 큰 체크박스*/
input.es_chk.large[type="checkbox"] + div {
    padding-left: 28px;
}

input.es_chk.large[type="checkbox"] + div:before {
    top: 5px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    content: url('/resource/common/images/icon/checkbox_large_off.png');
}

input.es_chk.large[type="checkbox"]:checked + div:before {
    content: url('/resource/common/images/icon/checkbox_large_on.png');
}


/*토글버튼*/
input.es_toggle[type=checkbox] {
    display: none;
}

input.es_toggle[type=checkbox] + span {
    transition: background-color .3s ease .0s;
    top: 4px;
    position: relative;
    display: inline-block;
    border-radius: 20px;
    width: 80px;
    height: 30px;
    background-color: #cad0d9;
}

input.es_toggle[type=checkbox] + span::before {
    content: "";
    width: 32px;
    height: 32px;
    position: absolute;
    box-shadow: 0.5px 0.866px 5px 0px rgba(1, 5, 1, 0.2);
    border-radius: 20px;
    background-color: white;
    top: -1px;
    left: -1px;
    transition: left .3s ease .0s;
}

input.es_toggle[type=checkbox] + span::after {
    content: "OFF";
    color: white;
    font-weight: 700;
    position: absolute;
    font-size: 14px;
    top: 4px;
    right: 17px;
}

input.es_toggle[type=checkbox]:checked + span {
    background-color: #2f80f6;
    transition: background-color .3s ease .0s;
}

input.es_toggle[type=checkbox]:checked + span::before {
    left: 49px;
    transition: left .3s ease .0s;
}

input.es_toggle[type=checkbox]:checked + span::after {
    content: "ON";
    left: 13px;
    right: auto;
}

label.pipe {
    font-size: 10px;
    color: #dcddde;
    margin: 0 10px;
    vertical-align: 2px
}

div.description_p p {
    background-color: #f7f8fc;
    padding: 25px 30px;
    line-height: 24px;
    font-size: 14px;
    color: #6d6e71;
}

div.description_p p strong {
    color: #333333;
    font-weight: 500;
    font-size: 14px;
}

/*사파리핵*/
/*      폼 스타일 - button */
_:-webkit-full-screen:not(:root:root), input[type=button] {
    padding: 12px 16px 10px;
}

/*      모달 스타일 */
.popup_modal {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    z-index: 1000001;
    left: 50%;
    top: 50%;
    margin-top: -380px;
    margin-left: -380px;
    position: absolute;
    width: 760px;
    background-color: white;
    border: 1px solid #E5E5E5;
    padding: 30px 40px 40px;
    box-sizing: border-box;
}

.popup_modal h1 {
    font-size: 30px;
    text-align: center;
    margin-top: 20px;
}

.popup_modal div.context {
    line-height: 24px;
    font-size: 12px;
    margin-top: 30px;
    width: 680px;
    height: 560px;
    background-color: #f7f8fc;
    overflow-x: hidden;
    overflow-y: scroll;
    padding: 35px 20px;
    box-sizing: border-box;
}

.popup_modal div.privacy_policy_detail {
    line-height: 24px;
    font-size: 12px;
    margin-top: 30px;
    width: 680px;
    height: 560px;
    background-color: #f7f8fc;
    overflow-x: hidden;
    overflow-y: scroll;
    padding: 35px 20px;
    box-sizing: border-box;
}

.popup_modal div.close {
    cursor: pointer;
    position: absolute;
    width: 20px;
    height: 20px;
    top: 20px;
    right: 20px;
}

.popup_modal div.close:before {
    position: absolute;
    transform: rotate(45deg);
    width: 27px;
    height: 2px;
    border-radius: 4px;
    background-color: #777777;
    content: "";
    top: 9px;
    left: -4px;
}

.popup_modal div.close:after {
    position: absolute;
    transform: rotate(-45deg);
    width: 27px;
    height: 2px;
    border-radius: 4px;
    background-color: #777777;
    content: "";
    top: 9px;
    left: -4px;
}


/*      레이어 팝업 - 네이비 헤더 스타일 */
.layer_popup {
    width: 740px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    z-index: 1000001;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: fixed;
    background-color: white;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.layer_popup.non_float {
    width: 100%;
    top: 0;
    left: 0;
    transform: none;
    box-shadow: none;
}

/*타이틀헤더*/
.layer_popup > header {
    padding: 0 20px;
    box-sizing: border-box;
    height: 60px;
    color: #ffffff;
    line-height: 60px;
    font-size: 20px;
    background-color: #0d2e7f;
}

.layer_popup > header div.close {
    cursor: pointer;
    position: absolute;
    width: 30px;
    height: 30px;
    top: 14px;
    right: 15px;
}

.layer_popup > header div.close:before {
    position: absolute;
    transform: rotate(45deg);
    width: 30px;
    height: 2px;
    border-radius: 4px;
    background-color: #ffffff;
    content: "";
    top: 15px;
}

.layer_popup > header div.close:after {
    position: absolute;
    transform: rotate(-45deg);
    width: 30px;
    height: 2px;
    border-radius: 4px;
    background-color: #ffffff;
    content: "";
    top: 15px;
}

.layer_popup > section {
    padding: 20px 20px 10px;
}

/*빈공간*/
.layer_popup > section article {
    position: relative;
    padding: 25px;
    box-sizing: border-box;
    border: 1px solid #dcddde;
    margin-top: 10px;
}

.layer_popup > section article:first-of-type {
    margin-top: 0;
}

/*테두리있는공간*/
.layer_popup > section article.border-less {
    border: none;
}

.layer_popup > section article.padding-less {
    padding: 0;
}


.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 오버레이 역할 */
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5000;
}

.layer_bottom_bar {
    width: 600px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 1px 15px 0 0;
    background-color: #0e0e0e;
    color: #fff;
    box-sizing: border-box;
    gap: 1rem;
}

.layer_bottom_bar > label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}


/* ===================================header=================================== */
.gnb-menu-list .snb_wrap {
    width: fit-content;
}

.gnb-menu-list .snb_wrap .container_lecture_list {
    width: fit-content;
    display: flex;
    justify-content: flex-start;
    margin: 0;
    padding: 15px 30px 20px 30px;
    background: #fff;
    box-shadow: 0 5px 10px 2px rgba(0, 0, 0, 0.07);
}

.gnb-menu-list .snb_wrap .container_lecture_list ul {
    display: block;
    float: left;
}

/* 강의 리스트(기본/분석/특강) */
.gnb-menu-list .snb_wrap .container_lecture_list .wrap_lecture_list {
    width: fit-content;
    margin: 0;
    padding-left: 30px;
    padding-right: 30px;
    border-right: 1px dotted #cfcfcf;
    overflow: visible;
}

.gnb-menu-list .snb_wrap .container_lecture_list .wrap_lecture_list:first-child {
    padding-left: 0;
}


.gnb-menu-list .snb_wrap .container_lecture_list .wrap_lecture_list li {
    width: 180px;
    height: 32px;
    float: left;
    text-align: left;
    font-size: 16px;
    color: #333;
    line-height: 32px;
}

.gnb-menu-list .snb_wrap .container_lecture_list .wrap_lecture_list li.lecture_category {
    height: 25px;
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: 14px;
    color: #202020;
    font-weight: 700;
    line-height: 25px;
}

.gnb-menu-list .snb_wrap .container_lecture_list .wrap_lecture_list li a {
    display: inline-block;
    width: 100%;
    color: #333;
    transition: all 0.3s;
    cursor: pointer;
}

.gnb-menu-list .snb_wrap .container_lecture_list .wrap_lecture_list li a:hover {
    color: #0070ff;
}

/* 버튼 리스트 */
.gnb-menu-list .snb_wrap .container_lecture_list .wrap_lecture_btn_list {
    width: fit-content;
    margin: 0;
    padding-left: 30px;
    overflow: visible;

}

.gnb-menu-list .snb_wrap .container_lecture_list .wrap_lecture_btn_list li {
    width: 170px;
    height: 60px;
    margin-bottom: 10px;
    background-color: #fcfcfc;
    border: 1px solid #dcddde;
    transition: all 0.3s;
    overflow: visible;
}

.gnb-menu-list .snb_wrap .container_lecture_list .wrap_lecture_btn_list li a {
    display: inline-block;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding-left: 25px;
    text-align: left;
    font-size: 16px;
    font-family: Noto Sans KR;
    color: #333;
    line-height: 59px;
    position: relative;
    transition: all 0.3s;
    cursor: pointer;
}

.gnb-menu-list .snb_wrap .container_lecture_list .wrap_lecture_btn_list li:hover {
    background-color: #f6faff;
    border: 1px solid #0070ff;
}

.gnb-menu-list .snb_wrap .container_lecture_list .wrap_lecture_btn_list li.lecture_btn_li_active {
    background-color: #f6faff;
    border: 1px solid #0070ff;
}

.gnb-menu-list .snb_wrap .container_lecture_list .wrap_lecture_btn_list li a:hover,
.gnb-menu-list .snb_wrap .container_lecture_list .wrap_lecture_btn_list li a:hover i {
    color: #0070ff;
}

.gnb-menu-list .snb_wrap .container_lecture_list .wrap_lecture_btn_list li a g.icon-arrow {
    width: 9px;
    height: 14px;
    position: absolute;
    top: 23px;
    right: 25px;
}

.gnb-menu-list .snb_wrap .container_lecture_list .wrap_lecture_btn_list li a g.icon-arrow svg {
    width: 100%;
    position: absolute;
    fill: #bdbdbd;
}

/*화살표 icon*/
.fa-chevron-right.lecture_btn {
    color: #bdbdbd;
    width: 9px;
    height: 14px;
    position: absolute;
    top: 23px;
    right: 25px;
}

/* common.css >> main_slide_banner */
.main_banner_txt {
    padding-bottom: 50px;
}

.main_banner_txt .font16 {
    padding-top: 8px;
}

.free-badge {
    width: 32px;
    height: 16px;
    display: inline-block;
    vertical-align: -2px;
    margin-right: 4px;
    background: url(/resource/common/images/icon/badge_free.png);
}