@charset "utf-8";

:root {

    /* color */
    --transparent: transparent;
    --white_default: #FFFFFF;
    --white_light: #F8F8F8;
    --white_alpha-90: rgba(255, 255, 255, 0.9);
    --white_alpha-80: rgba(255, 255, 255, 0.8);

    --pri-blue-50: #E9F0FD;
    --pri-blue-100: #BBD1F9;
    --pri-blue-200: #9ABBF6;
    --pri-blue-300: #6C9CF2;
    --pri-blue-400: #5089EF;
    --pri-blue-500: #246BEB;
    --pri-blue-600: #2161D6;
    --pri-blue-700: #1A4CA7;
    --pri-blue-800: #143B81;
    --pri-blue-900: #0F2D63;
    --sec-50: #EAFBF7;
    --sec-100: #BDF4E5;
    --sec-200: #9DEED9;
    --sec-300: #70E6C7;
    --sec-400: #55E1BD;
    --sec-500: #2ADAAC;
    --sec-600: #26C69D;
    --sec-700: #1E9B7A;
    --sec-800: #17785F;
    --sec-900: #125C48;
    --grey-50: #F8F8F8;
    --grey-100: #F0F0F0;
    --grey-200: #E4E4E4;
    --grey-300: #D8D8D8;
    --grey-400: #C6C6C6;
    --grey-500: #8E8E8E;
    --grey-600: #717171;
    --grey-700: #555555;
    --grey-800: #2D2D2D;
    --grey-900: #1D1D1D;

    --text_title: #1D1D1D;
    --text_default: #2D2D2D;
    --text_info: #717171;
    --text_disabled: #8E8E8E;

    --icon_default: #555555;
    --icon_sub: #717171;
    --disabled: #C6C6C6;

    --border_default: #8E8E8E;
    --border_dark: #717171;
    --border_light: #C6C6C6;

    --divider_default: #C6C6C6;
    --divider_strong: #8E8E8E;

    --err_surface: #FEECF0;
    --err_border: #FCD4DE;
    --err_default: #EB003B;
    --err_strong: #D50136;

    --warn_surface: #FFF8E9;
    --warn_border: #FFEAC1;
    --warn_default: #FFB724;
    --warn_strong: #98690A;

    --suc_surface: #EEF7F0;
    --suc_border: #CEE9D4;
    --suc_default: #008A1E;
    --suc_strong: #006E18;

    --info_surface: #E9F0FF;
    --info_border: #D4E1FF;
    --info_default: #2768FF;
    --info_strong: #1F53CC;

    /* Text-size styles */
    --display-l-66: 66px;
    --display-m-50: 50px;
    --display-s-40: 40px;
    --heading-l-50: 50px;
    --heading-m-40: 40px;
    --heading-s-32: 32px;
    --title-xxl-32: 32px;
    --title-xl-25: 25px;
    --title-l-21: 21px;
    --title-m-19: 19px;
    --title-s-17: 17px;
    --title-xs-15: 15px;
    --body-l-40019: 19px;
    --body-m-40016: 16px;
    --body-s-40015: 15px;
    --detail-l-40017: 17px;
    --detail-m-40015: 15px;
    --detail-s-40013: 13px;
    --label-l-40019: 19px;
    --label-m-40017: 17px;
    --label-s-40015: 15px;
    --label-x-s-40013: 13px;
    --links-l-40019: 19px;
    --links-m-40017: 17px;
    --links-s-40015: 15px;

    /* Effect styles */
    --main-card-shdow: 4px 4px 15px rgba(0, 0, 0, 0.07);
    
    /* tooltip 함수 추가 20250212 yhan*/
    --tooltip-arrow-size: 8px;
    --tooltip-arrow-gap: calc((12px / 2) * -1);
    --krds-tooltip--popover-radius: 4px;
    --krds-tooltip--popover-radius-box:  12px;
    --krds-tooltip--popover-contents-pc-font-size: 15px;
    --krds-tooltip--popover-contents-mobile-font-size: 15px;
    --krds-tooltip--popover-margin-x: 24px;
    --krds-tooltip--popover-inline-color-text: #ffffff;
    --krds-tooltip--popover-box-color-text: #1e2124;
    --krds-tooltip--popover-color-border: #cdd1d5;
    --krds-tooltip--popover-color-surface: #1e2124;
    --krds-tooltip--popover-box-color-surface: #ffffff;
}

@media screen and (max-width:890px) {
    :root {
        --display-l-66: 40px;
        --display-m-50: 32px;
        --display-s-40: 25px;
        --heading-l-50: 40px;
        --heading-m-40: 32px;
        --heading-s-32: 25px;
        --title-xxl-32: 25px;
    }
}

html,
body {
    width: 100%;
    overflow-x: hidden !important;
}

#wrapper{
    position: relative;
}
#container{
    min-height: calc(100vh - 356px); /* 컨텐츠가 없을 시 최소 높이 지정 */
}

/* datepicker 강제조정 */
.datepicker table tr > th, 
.datepicker table tr > td {
	padding:0;
}
.bootstrap-datetimepicker-widget table td.day {
    width: 30px !important; /* 너비 균일하게 맞춤 */
    max-width: 30px !important;
}

/* Content */
#content_wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding-bottom: 80px;
}

/* *** header skip nav - 웹접근성 *** */
#skip {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    margin: 0 auto;
    z-index: 2500;
}
#skip a {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center              ;
    height: 30px;
    line-height: 30px;
    color: var(--white_default);
    background: var(--pri-blue-500);
}
#skip a:link, #skip a:visited, #skip a:active {
    top: -10000px;
}
#skip a:hover, #skip a:focus {
    top: 0;
}

/* ******************************************** */
/* input : common */
/* ******************************************** */
textarea {
    width: 100%;
    min-height: 80px;
    border-radius: 8px;
    border: 1px solid var(--border_light);
    resize: none;
}

select:disabled,
input:disabled {
    background: var(--grey-300);
    border-color: var(--grey-400);
    color: var(--text_disabled);
}

input[type=radio],
input[type=checkbox] {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* === Label === */
label {
    font-size: 15px;
}

/* === Select === */
.form-select {
    width: 100%;
    height: 56px;
    padding: 0 16px 0 16px;
    background-color: var(--white_default);
    background-image: url(/images/component/ico_select_lg.svg);
    background-repeat: no-repeat;
    background-position: center right 1rem;
    border: 1px solid var(--border_dark);
    border-radius: 8px;
    font-family: inherit;
    font-size: 19px;
    color: var(--text_default);
    opacity: 1;
}

.form-select.md {
    height: 48px;
    padding: 0 16px 0 16px;
    background-size: 1.4rem;
    border-radius: 6px;
    font-size: 16px;
}

.form-select.sm {
    height: 40px;
    padding: 0 10px 0 10px;
    background-size: 1.2rem;
    border-radius: 6px;
    font-size: 15px;
}

/* === input === */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.form-group .form-tit {
    width: 100%;
}

.form-tit {
    display: flex;
    position: relative;
    font-size: 15px;
    color: #000;
}

.form-group .form-conts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.form-group .form-hint {
    width: 100%;
    font-size: 14px;
    color: var(--text_info);
}

.form-control {
    position: relative;
    width: 100%;
    height: 56px;
    padding: 0 16px 0 16px;
    background-color: var(--white_default);
    border: 1px solid var(--border_dark);
    border-radius: 8px;
    font-family: inherit;
    font-size: 19px;
    color: var(--text_default);
    transition: 0.4s ease-in-out;
}

.form-control.md {
    height: 48px;
    font-size: 16px;
    border-radius: 6px;
}

.form-control.sm {
    height: 40px;
    padding: 0 10px 0 10px;
    font-size: 15px;
    border-radius: 6px;
}

/* === date === */
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}
input[type="date"] {
	position:relative;
	padding-right: 40px !important;
}
input[type="date"]::after {
	content:'';
	display:inline-block;
	width:20px;
	height:20px;
	position:absolute;
	right:10px;
	top:50%;
	transform:translateY(-50%);
	background:url(/images/icons/calendar_20.svg);
}

/* === checkbox, radio === */
.chk-area {
    display: flex;
    gap: 16px;
}

.form-check input[type=radio]~label,
.form-check input[type=checkbox]~label {
    position: relative;
    display: inline-flex;
    min-height: 20px;
    padding-left: calc(20px + 8px);
    font-size: 16px;
    /*line-height: 20px;*/
}

.form-check input[type=radio]~label:before,
.form-check input[type=checkbox]~label:before {
    z-index: 3;
}

.form-check input[type=radio]~label:after,
.form-check input[type=checkbox]~label:after {
    z-index: 4;
}

.form-check input[type=radio]~label:before,
.form-check input[type=radio]~label:after,
.form-check input[type=checkbox]~label:before,
.form-check input[type=checkbox]~label:after {
    display: block;
    content: "";
    transition: 0.4s cubic-bezier(0.4, 0, 0.23, 1);
}


.form-check input[type=checkbox]~label:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: var(--white_default);
    border: 1px solid var(--grey-600);
    border-radius: 4px;
}

.form-check input[type=checkbox]:checked~label:before {
    background-color: var(--pri-blue-500);
    border-color: var(--pri-blue-500);
}

.form-check input[type=checkbox]:checked~label:after {
    opacity: 1;
    transition-delay: 0.2s;
}

.form-check input[type=checkbox]~label:after {
    position: absolute;
    top: calc((20px - 14px) / 2);
    left: calc((20px - 14px) / 2);
    width: 16px;
    height: 16px;
    background: url(/images/component/ico_check_primary_checked.svg) no-repeat 0 0;
    background-size: contain;
    opacity: 0;
}

.form-check input[type=radio]~label:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: var(--white_default);
    border: 1px solid var(--grey-600);
    border-radius: 100%;
}

.form-check input[type=radio]:checked~label:before {
    border-color: var(--pri-blue-500);
}

.form-check input[type=radio]:checked~label:after {
    background-color: var(--pri-blue-500);
}

.form-check input[type=radio]~label:after {
    position: absolute;
    top: calc((20px - 8px) / 2);
    left: calc((20px - 8px) / 2);
    width: 10px;
    height: 10px;
    background-color: var(--white_default);
    border-radius: 100%;
}

.form-check input[type=radio]:focus~label,
.form-check input[type=checkbox]:focus~label {
    outline-offset: 0.4rem !important;
    outline: 2px dashed rgba(36, 107, 235, 0.8) !important;
}


/* disabled - 기본 check-radio */
.form-check input[type=radio]:disabled+label,
.form-check input[type=checkbox]:disabled+label {
    color: var(--text_disabled);
    cursor: default;
}

.form-check input[type=checkbox]:disabled~label:before {
    border-color: var(--grey-400);
    background-color: var(--grey-200);
}

.form-check input[type=checkbox]:disabled~label:after {
    background-image: url(/images/component/ico_check_primary_disabled.svg);
}

.form-check input[type=radio]:disabled~label:before {
    border-color: var(--grey-400);
    background-color: var(--grey-200);
}

.form-check input[type=radio]:checked:disabled~label:after {
    display: block;
    background-color: var(--grey-400);
}

/* checkbox - sm */
.form-check.sm>[type=checkbox]~label {
    font-size: 15px;
    line-height: 16px;
    min-height: 16px;
    padding-left: calc(16px + 8px);
}

.form-check.sm>[type=checkbox]~label::before {
    width: 16px;
    height: 16px;
}

.form-check.sm>[type=checkbox]~label::after {
    width: 12px;
    height: 12px;
}

/* checkbox - lg */
.form-check.lg>[type=checkbox]~label {
    font-size: 19px;
    line-height: 24px;
    min-height: 24px;
    padding-left: calc(24px + 8px);
}

.form-check.lg>[type=checkbox]~label::before {
    width: 24px;
    height: 24px;
}

.form-check.lg>[type=checkbox]~label::after {
    width: 20px;
    height: 20px;
}

/* radio - sm */
.form-check.sm>[type=radio]~label {
    font-size: 15px;
    line-height: 16px;
    min-height: 16px;
    padding-left: calc(16px + 8px);
}

.form-check.sm>[type=radio]~label::before {
    width: 16px;
    height: 16px;
}

.form-check.sm>[type=radio]~label::after {
    top: calc((16px - 6px) / 2);
    left: calc((16px - 6px) / 2);
    width: 8px;
    height: 8px;
}

/* radio - lg */
.form-check.lg>[type=radio]~label {
    font-size: 19px;
    line-height: 24px;
    min-height: 24px;
    padding-left: calc(24px + 8px);
}

.form-check.lg>[type=radio]~label::before {
    width: 24px;
    height: 24px;
}

.form-check.lg>[type=radio]~label::after {
    top: calc((24px - 12px) / 2);
    left: calc((24px - 12px) / 2);
    width: 14px;
    height: 14px;
}


/* === check Chips === */
.radio~.form-chip-outline,
.checkbox~.form-chip-outline {
    display: inline-flex;
    align-items: center;
    border-width: 1px;
    border-style: solid;
    border-color: var(--grey-400);
}

.form-chip .checkbox~.form-chip-outline {
    gap: 4px;
    height: 48px;
    padding: 0 16px 0 12px;
    border-radius: 8px;
    font-size: 16px;
}

.form-chip .checkbox~.form-chip-outline::before {
    display: inline-flex;
    content: "";
}

.form-chip .checkbox~.form-chip-outline::before {
    width: 20px;
    height: 20px;
    background: url(/images/component/ico_check_chip.svg) no-repeat 0 0;
    background-size: contain;
}

.form-chip .checkbox:checked ~ .form-chip-outline::before {
    background-image: url(/images/component/ico_check_chip_checked.svg);
}
.radio:checked~.form-chip-outline,
.checkbox:checked~.form-chip-outline {
    background-color: var(--pri-blue-50);
    border-color: var(--info_default);
    color: var(--pri-blue-600);
}

.radio:disabled~.form-chip-outline,
.checkbox:disabled~.form-chip-outline {
    pointer-events: none;
    background-color: var(--grey-300);
    border-color: var(--grey-400);
    color: var(--grey-600);
}

.form-chip .checkbox:disabled~.form-chip-outline::before {
    background-image: url(/images/component/ico_check_chip_disabled.svg);
}

.form-chip .checkbox:focus~.form-chip-outline {
    outline-offset: -0.4rem;
    outline: 2px dashed rgba(36, 107, 235, 0.8);
    border-radius: 8px;
}

.radio:focus~.form-chip-outline,
.checkbox:focus~.form-chip-outline {
    border-color: rgba(36, 107, 235, 0.8);
}


/* ******************************************** */
/* Button */
/* ******************************************** */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: auto;
    height: 56px;
    padding: 0 20px;
    background-color: var(--pri-blue-500);
    border: 1px solid var(--pri-blue-500);
    border-radius: 8px;
    font-size: 19px;
    color: var(--white_default);
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.4s ease-in-out;
}

.btn:hover {
    background-color: var(--pri-blue-600);
    border-color: var(--pri-blue-600);
}

.btn:active {
    background-color: var(--pri-blue-700);
    border-color: var(--pri-blue-700);
}

/* btn type - fullColor */
.btn.primary {
    background-color: var(--pri-blue-500);
    border: 1px solid var(--pri-blue-500);
    color: var(--white_default);
}

.btn.primary:hover {
    background-color: var(--pri-blue-600);
    border-color: var(--pri-blue-600);
}

.btn.primary:active {
    background-color: var(--pri-blue-700);
    border-color: var(--pri-blue-700);
}

.btn.secondary {
    background-color: var(--sec-600);
    border: 1px solid var(--sec-600);
    color: var(--white_default);
}

.btn.secondary:hover {
    background-color: var(--sec-700);
    border-color: var(--sec-700);
}

.btn.secondary:active {
    background-color: var(--sec-800);
    border-color: var(--sec-800);
}

/* btn type - outline */
.btn.outline {
    background-color: var(--pri-blue-50);
    border: 1px solid var(--pri-blue-600);
    color: var(--pri-blue-600);
}

.btn.outline:hover {
    background-color: var(--pri-blue-100);
}

.btn.outline:active {
    background-color: var(--pri-blue-200);
    border: 1px solid var(--pri-blue-600);
    color: var(--pri-blue-700);
}

.btn.outline.sec {
    background-color: var(--sec-50);
    border: 1px solid var(--sec-700);
    color: var(--sec-700);
}

.btn.outline.sec:hover {
    background-color: var(--sec-100);
}

.btn.outline.sec:active {
    background-color: var(--sec-200);
    border: 1px solid var(--sec-800);
    color: var(--sec-800);
}

.btn.outline.err {
    background-color: var(--err_surface);
    border: 1px solid var(--err_default);
    color: var(--err_default);
}

.btn.outline.err:hover {
    background-color: var(--err_border);
    border: 1px solid var(--err_strong);
    color: var(--err_strong);
}

.btn.outline.err:active {
    background-color: #F799B1;
}

.btn.outline.warn {
    background-color: var(--warn_surface);
    border: 1px solid var(--warn_default);
    color: var(--warn_default);
}

.btn.outline.warn:hover {
    background-color: var(--warn_border);
    border: 1px solid var(--warn_strong);
    color: var(--warn_strong);
}

.btn.outline.warn:active {
    background-color: #FFE2A7;
}

/* btn type - tertiary */
.btn.tertiary {
    background-color: var(--white_default);
    border: 1px solid var(--grey-900);
    color: var(--pri-blue-900);
}

.btn.tertiary:hover {
    background-color: var(--grey-50);
}

.btn.tertiary:active {
    background-color: var(--grey-100);
}


/* btn type - disabled */
.btn:disabled {
    background-color: var(--grey-300);
    border-color: var(--grey-300);
    color: var(--grey-600);
    cursor: default;
}

.btn.outline:disabled,
.btn.tertiary:disabled {
    background-color: var(--grey-300);
    border: 1px solid var(--grey-400);
    color: var(--grey-600);
}

/* button size */
.btn.xsm {
    /* 가장작은 버튼 사이즈 */
    height: 32px;
    padding: 0 10px;
    border-radius: 6px;
    font-size: 15px;
}

.btn.sm {
    height: 40px;
    padding: 0 12px;
    border-radius: 6px;
    font-size: 16px;
}

.btn.md {
    height: 48px;
    padding: 0 16px;
    border-radius: 8px;
    font-size: 17px;
}

.btn.lg {
    /* 기본 btn 사이즈 */
    height: 56px;
    padding: 0 20px;
    border-radius: 8px;
    font-size: 19px;
}

.btn.xlg {
    height: 64px;
    padding: 0 24px;
    border-radius: 8px;
    font-size: 19px;
}

/* btn type - text */
.btn-txt {
    color: inherit;
    border: 0;
    background-color: inherit;
    padding: 0 2px !important;
}

.btn-txt.link {
    height: auto;
    text-decoration: underline !important;
}

.btn-txt:hover {
    background-color: #edf1f5;
}

.btn-txt:active {
    background-color: #cdd7e4;
}

.btn-txt:disabled {
    color: var(--text_disabled);
    background-color: var(--transparent);
}

/* btn icon */
.btn[class*=ico-]::before {
    display: inline-flex;
    content: "";
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: contain;
}
.btn.xsm[class*=ico-]::after {
    width: 16px;
    height: 16px;
}
.btn-txt.sm[class*=ico-]::before, 
.btn-txt.sm[class*=ico-]::after {
    width: 20px;
    height: 20px;
}
.btn.ico-add::before{
    background-image: url(/images/component/ico_add_white_24.svg);
}
.btn.ico-minus::before{
    background-image: url(/images/component/ico_close.svg);
}



/* ******************************************** */
/* GNB */
/* ******************************************** */
#header {
    position: relative;
    background: var(--white_default);
    height: 80px;
    border-bottom: 1px solid var(--border_light);
    position: relative;
    z-index: 300;
}
#header .hd-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1840px;
    margin: 0 auto;
    height: 100%;
}
#header #logo img {
    height: 38px;
}

.gnb-wrap {
    display: flex;
    align-items: center;
}
.gnb {
    display: flex;
    margin-right: 25px;
}
.gnb .screen {
    background-color: #fff;
    width: 100%;
    height: 0px;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    overflow: visible;
    transition: all ease .3s;
}
.gnb.drop .screen {
    background-color: #ffffff;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    overflow: visible;
    box-shadow: 0px 6px 14px rgba(228, 228, 228, 0.5);
    transition: all ease .3s;
}
.gnb-tit {
    background-repeat: no-repeat;
    transition: all .3s ease-in-out;
    color: var(--text_title);
    font-weight: 700;
    font-size: 19px;
    position: relative;
}
.gnb-tit::after {
    content: '';
    display: block;
    height: 4px;
    width: 80%;
    background-color: var(--pri-blue-800);
    position: absolute;
    left: 50%;
    bottom: -9px;
    transform: translateX(-50%);
    opacity: 0;
}
.gnb-tit.gnb-hov {
    color: var(--pri-blue-800);
}
.gnb-tit.gnb-hov::after {
    opacity: 1;
}
.gnb-tit.gnb-hov+.dep2 {
    background-color: var(--pri-blue-600);
    color: var(--white_default);
}

li.gnb-list {
    position: relative;
}
li.gnb-list .gnb-tit {
    display: block;
    width: 198px;
    padding: 19px 16px;
    text-align: center;
}

.gnb .gnb-list:last-child .dep2 {
    border-right: 1px solid #ddd;
}
.gnb.drop .gnb-list .dep2 {
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;/* 높이별 수정 필요 */
    height: 100%;
    transition: all ease .3s;
    z-index: 80;
}
.gnb .gnb-list .dep2 {
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;/* 높이별 수정 필요 */
    text-align: left;
    height: 0;
    overflow: hidden;
    transition: all ease .3s;
    z-index: 80;
    border-left: 1px solid #ddd;
}
.gnb .gnb-list .dep2:active{
    background-color: var(--pri-blue-600);
}
.gnb .gnb-list .dep2:active > li > a{
    color: var(--white_default);
}
ul.dep2 > li > a {
    padding: 14px 0;
    display: block;
    font-size: 17px;
    text-align: center;
    position: relative;
}
ul.dep2 > li > a:hover {
    color: var(--white_default);
    font-weight: 700;
}
ul.dep2>li>a:hover::after {
    content: '▼';
    display: inline-block;
    font-size: 7px;
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
}
ul.dep2>li>a:active {
    color: var(--white_default);
    background-color: transparent;
}

/* GNB right: Utillty menu - base */
.base_gnb_um{
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}
.gnb_um_btn{
	display: flex;
    align-items: center;
    color: #585858;
    font-weight: 700;
    padding: 4px;
}
.gnb_um_btn::before{
    content:'';
    display: block;
    width: 20px;
    height: 20px;
    margin:0 auto ;
    margin-right: 4px;
    background-size: cover !important;
}
.gnb_um_btn.all_search::before{
    background: url(/images/icons/ico_search.svg)center center no-repeat;
}
.gnb_um_btn.login::before{
    background: url(/images/icons/ico_login.svg)center center no-repeat;
}
.gnb_um_btn.logout::before{
    background: url(/images/icons/ico_logout.svg)center center no-repeat;
}
.gnb_um_btn.mypage::before{
    background: url(/images/icons/ico_mypage.svg)center center no-repeat;
}

/* GNB right: Utillty menu - 타임세션추가 20250211 yhan */
.base_gnb_wrapper .keepLoginTime {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-bottom: 4px;
    padding-left: 8px;
    font-size: 15px;
}
.base_gnb_wrapper .keepLoginTime .remain_time {
    font-weight: 700;
    color: var(--err_strong);
}
.base_gnb_wrapper .keepLoginTime > button {
    padding: 0 6px;
    border: 1px solid var(--pri-blue-500);
    border-radius: 999px;
    font-size: 14px;
    color: var(--pri-blue-600);
    transition: all .3s ease;
}
.base_gnb_wrapper .keepLoginTime > button:hover {
    background: var(--pri-blue-50);
}

/* GNB right: Utillty menu - mypage tooltip */
.mypage-content {
    display: none; /* 기본적으로 숨김 */
    position: absolute;
    top: 80px;
    right: 0px;
    background-color: var(--white_default);
    padding: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 101;
    margin-top: 5px; /* 버튼 아래에 약간의 여백 */
    border-radius: 5px;
}
.mypage-content > .username{
    padding: 12px 16px;
    border-bottom: 1px solid var(--border_light);
    font-size: var(--title-m-19);
    font-weight: 700;
    margin-bottom: 8px;
}
.mypage-content .mypage_menu li > a {
    display: flex;
    padding: 12px 15px;
    border-radius: 6px;
}
.mypage-content .mypage_menu li > a:hover {
    background: var(--pri-blue-50);
}
.mypage-content .mypage_menu li > a:active {
    background: var(--pri-blue-100);
}

/* GNB right: Utillty menu - search toggle */
.all_search_pop {
	display: none;
	position: absolute;
	top: 80px;
	left: 0;
	right: 0;
	z-index: 100;
	background-color: rgba(255, 255, 255, 0.9);
	padding: 30px 0;
}
.all_search_pop .search_wrap {
	width: 530px;
	border: 2px solid var(--pri-blue-600);
	margin: 0 auto;
	border-radius: 30px;
	overflow: hidden;
}
.all_search_pop .search_box {
	display: flex;
    align-items: center;
    height: 58px;
    background-color: var(--white_default);
    padding: 5px;
}
.all_search_pop .search_box .txt_search {
	width: calc(100% - 80px);
	border: none;
	margin:  5px 5px 5px 30px;
	font-size: 15px;
}
.all_search_pop .search_box .txt_search::placeholder {
	font-size: 15px;
    font-weight: 700;
	color: var(--text_disabled);
}
.all_search_pop .search_box .btn_search {
	width: 48px;
	height: 48px;
	background: var(--pri-blue-500) url(/images/icons/ico_search_w.svg) no-repeat center center;
	background-size: 28px;
	transition: all .3s ease;
	border-radius: 24px;
}
.all_search_pop .search_box .btn_search:focus,
.all_search_pop .search_box .btn_search:hover {
    background-color: var(--pri-blue-700);
}



/* ******************************************** */
/* GNB Mobile */
/* ******************************************** */
.mobile-menu > a {
    display: block;
    width: 24px;
    height: 24px;
    background: url(/images/icons/hamburger_menu.svg)no-repeat;
    position: relative;
}
#mobilemenu-wrapper {
    display: none;
    position: absolute;
    background: var(--white_light);
    border-left: 1px solid var(--border_light);
    top: 55px;
    right: -100%;
    z-index: 10;
    width: 100%;
    max-width: 340px;
    height: calc(100vh - 55px);
    overflow-y: auto;
    overflow-x: hidden;
}

#mobilemenu-wrapper .sub-top-menu {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 1px solid var(--border_light);
    background: var(--white_default);
}
#mobilemenu-wrapper .menu-list {
    background: var(--white_default);
}
#mobilemenu-wrapper .menu-list .menu-link {
    font-size: 15px;
    font-weight: 700;
}
#mobilemenu-wrapper .menu-list .menu-submenu li a {
    display: block;
    padding: 10px 30px;
    font-size: 14px;
    background: var(--white_default);
}
#mobilemenu-wrapper .menu-list .menu-submenu li .head::before {
    content: '-';
    margin-right: 8px;
}
#mobilemenu-wrapper .menu-list .menu-submenu li a:hover {
    color: blue;
}
#mobilemenu-wrapper .menu-list li.accordion-toggle,
#menu-container .menu-list .menu-login {
    font-size: 14px;
    padding: 10px 20px;
    text-transform: uppercase;
    border-top: 1px solid var(--border_light);
}
#mobilemenu-wrapper .menu-list li:first-of-type {
    border-top: 0;
}

.accordion-toggle,
.accordion-content{
    cursor: pointer;
    font-size: 16px;
    position: relative;
    letter-spacing: 1px;
}
.accordion-content:last-child {
    border-bottom: 1px solid var(--border_light);
}
.accordion-content {
    display: none;
}
.accordion-toggle a::before,
.accordion-toggle a::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 30px;
    width: 15px;
    height: 2px;
    margin-top: -1px;
    background-color: var(--text_default);
    transform-origin: 50% 50%;
    transition: all 0.3s ease-out;
}
.accordion-toggle a::before {
    transform: rotate(-90deg);
    opacity: 1;
    z-index: 2;
}
.accordion-toggle.active-tab {
    background-color: var(--pri-blue-50);
    transition: all 0.3s ease;
}
.accordion-toggle a.active::before {
    transform: rotate(0deg);
}
.accordion-toggle a.active::after {
    transform: rotate(180deg);
    opacity: 0;
}
.mobile-menu {
    display: none;
}

/* GNB right: Utillty menu - Mobile */
.before-login,
.after-login{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.after-login > p {
    margin: 0;
    color: var(--text_info);
    font-size: 15px;
}
.after-login .user-name {
    font-weight: 700;
    color: var(--pri-blue-800);
}
.after-login .logout::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(/images/icons/ico_logout_mobile.png);
}
.before-login .login::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(/images/icons/ico_login_mobile.png);
}
/* =========헤더 END=========== */

/*  header 반응형 */

@media screen and (max-width:1865px) {
    #header .hd-wrapper, #header .mobile-wrapper {
        padding: 0 20px;
    }
}

@media screen and (max-width:1370px) {
    li.gnb-list {
        width: 160px;
    }
    li.gnb-list .gnb-tit {
        width: 160px;
    }
}

/* @media screen and (max-width:1135px) { */
@media screen and (max-width:1180px) { 
    #header {
        height: 55px;
    }
    #header .hd-wrapper {
        height: 55px;
        position: relative;
        padding: 0 20px;
    }
    #logo img {
        height: 24px !important;
    }
    #header .hd-wrapper .menu-wrapper {
        position: absolute;
        top: 55px;
        right: 0;
        display: none;
    }
    
    .gnb_um_btn.logout {
    	display:none;
	}

    .mobile-menu {
        display: block;
    }
    #mobilemenu-wrapper {
        display: block;
    }

    .base_gnb_um{
        position: absolute;
        right: 50px;
    }
    .gnb_um_btn{
        font-size: 0;
        width: 26px;
        height: 26px;
        padding: 0;
        margin-right: 16px;
    }
    .gnb_um_btn::before{
        margin: 0;
        width: 26px;
        height: 26px;
        background-repeat: no-repeat;
    }
    .gnb_um_btn.login{
        display: none;
    }
    .mypage-content {
        min-width: 200px;
        top: 45px;
    }

	/* 타임세션 */
    .base_gnb_wrapper{
        height: 24px;
        display: flex;
        align-items: center;
    }
    .base_gnb_wrapper .keepLoginTime {
        position: absolute;
        right: 100px;
        height: 26px;
        margin-bottom: 0;
    }

    /* 검색 */
    .all_search_pop {
        top: 55px;
    }
}
@media screen and (max-width:768px){
    .all_search_pop .search_wrap {
        width: auto;
        margin: 0 20px;
    }
}
@media screen and (max-width:480px) {
    #logo img {
        height: 20px !important;
    }
    .gnb_um_btn {
        margin-right: 5px;
    }
    .base_gnb_wrapper .keepLoginTime {
        right: 88px;
        gap: 8px;
    }
    .base_gnb_wrapper .keepLoginTime .remain_time {
        font-size: 13px;
    }
    .base_gnb_wrapper .keepLoginTime > button {
        font-size: 12px;
    }
}









/* ******************************************** */
/* BreadCrumb */
/* ******************************************** */
.bc_nav {
    background-color: var(--white_default);
    border-bottom: 1px solid var(--border_light);
}
.bc_nav .inner {
    max-width: 1280px;
    margin: 0 auto;
    height: 50px;
}
.bc_nav .inner > ul {
    display: flex;
    height: 100%;
    line-height: 1.35; 
}
.bc_nav .inner > ul > li {
    position: relative;
}
.bc_nav .inner > ul > li.home > a::after {
    content: '';
    width: 1px;
    height: 30px;
    margin-top: -14px;
    background: var(--border_light);
    position: absolute;
    right: 0;
    top: 50%;
}
.bc_nav .inner > ul > li:first-child:after {
    display: none;
}
.bc_nav .inner > ul > li > a{
    display: table;
    height: 100%;
    width: 100%;
    padding: 0 1.25rem;
    color: var(--text_default);
}
.bc_nav .inner > ul > li > a > span{
    display: table-cell;
    vertical-align: middle;
    position: relative;
    padding-right: 25px;
    background: url(/images/icons/arrowdown_16.png) right center no-repeat;
    background-size: 16px;
}
.bc_nav .inner > ul > li:last-child > a {
    background-color: var(--pri-blue-50);
}
.bc_nav .inner > ul > li:last-child > a > span {
    color: var(--pri-blue-700);
}
.bc_nav .inner .home {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-indent: -999px;
    background: url(/images/icons/Base-Breadcrumb.svg) center center no-repeat;
    width: 50px;
}
.bc_nav .inner .bc_menu {
    min-width: 218px;
}
.bc_nav .inner .bc_menu .depth {
    position: absolute;
    border: 1px solid var(--border_light);
    left: 0;
    top: 100%;
    width: 100%;
    display: none;
    z-index: 149;
    color: var(--text_info);
    font-size: .938em;
    font-weight: 400;
    background: #fafafa;
    padding: 0 1.25rem;
}
.bc_nav .inner .bc_menu .depth li{
    border-bottom: 1px solid var(--border_light);
    height: 45px;
    display: table;
    width: 100%;
    position: relative;
}
.bc_nav .inner .bc_menu .depth li:last-child {
    border-bottom: 0;
}
.bc_nav .inner .bc_menu .depth a {
    display: table-cell;
    vertical-align: middle;
    color: var(--text_info);
}
.bc_nav .inner .bc_menu .depth a:hover{
    color: var(--text_default);
}

/* breadcrum 반응형 */
@media screen and (max-width: 880px) {
    .bc_nav .inner .home {display: none;}
    .bc_nav .inner .bc_menu {
        width: 100%;
        min-width: 50px;
    }
}





/* ******************************************** */
/*  step indicator  */
/* ******************************************** */
.step_indicator {
    margin-top: 40px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.step_indicator > p {
    font-size: var(--title-l-21);
    font-weight: 700;
    color: var(--grey-700);
}
.step_indicator .step-wrap {
    margin-left: auto;
    margin-bottom: 0;
}
.step-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
}
.step-wrap > li {
    flex: 1;
    position: relative;
    font-size: var(--label-s-40015);
}
.step-wrap > li::after {
    position: absolute;
    top: 10px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #c6c6c6;
}
.step-wrap > li > span {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-top: 32px;
    padding-right: 32px;
}
.step-wrap > li > span::before,
.step-wrap > li > span::after {
    content: '';
    border-radius: 100%;
}
.step-wrap > li > span::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 20px;
    height: 20px;
    background-color: #e4e4e4;
    border: 1px solid #e4e4e4;
}
.step-wrap > li .step {
    color: #555555;
}
.step-wrap > li .step-tit {
    font-weight: 700;
    white-space: nowrap;
}
.step-wrap > li.done::after {
    background-color: #003675;
}
.step-wrap > li.done > span::before {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    border: 0;
    background-color: #003675;
}
.step-wrap > li.done > span::after {
    position: absolute;
    top: 4px;
    left: 2px;
    z-index: 3;
    width: 12px;
    height: 12px;
    background: url(/images/icons/ico_check_8.svg) no-repeat;
    background-position: center;
    background-size: contain;
}
.step-wrap > li.active > span::before {
    background-color: #fff;
    border-color: #246beb;
}
.step-wrap > li.active > span::after {
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 3;
    width: 12px;
    height: 12px;
    background: #246beb url(/images/icons/ico_step_active.svg) no-repeat center;
    background-size: contain;
}
.step-wrap > li:last-child::after {
    display: none;
}









/* ******************************************** */
/*  pagination */
/* ******************************************** */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    margin-top: 40px;
}

.pagination .page-navi {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--grey-700);
    /* min-width: 52px; */
    min-width: 40px;
    height: 40px;
}

.pagination .page-navi:hover {
    border-radius: 6px;
    background-color: var(--sec-50);
    transition: all .3s ease;
}

.pagination .page-navi:active {
    background-color: var(--sec-100);
    transition: all .3s ease;
}

.pagination .page-navi.first-pg {
    order: 1;
}

.pagination .page-navi.first-pg::before {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    content: '';
    width: 20px;
    height: 20px;
    background-image: url(/images/component/ico_first_page_20.svg);
    background-repeat: no-repeat;
}

.pagination .page-navi.prev {
    order: 2;
    padding: 0 8px 0 4px;
}

.pagination .page-navi.prev::before {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    content: '';
    width: 20px;
    height: 20px;
    background-image: url(/images/component/ico_page_arr_left.svg);
    background-repeat: no-repeat;
}

.pagination .page-navi.next {
    order: 4;
    padding: 0 4px 0 8px;
}

.pagination .page-navi.next::after {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    content: '';
    width: 20px;
    height: 20px;
    background-image: url(/images/component/ico_page_arr_right.svg);
    background-repeat: no-repeat;
}

.pagination .page-navi.last-pg {
    order: 5;
}

.pagination .page-navi.last-pg::before {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    content: '';
    width: 20px;
    height: 20px;
    background-image: url(/images/component/ico_last_page_20.svg);
    background-repeat: no-repeat;
}

.pagination .page-links {
    display: flex;
    justify-content: center;
    align-items: center;
    order: 2;
    gap: 4px;
}

.pagination .page-links .page-link {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--grey-700);
    min-width: 36px;
    height: 36px;
}

.pagination .page-links .page-link:hover {
    border-radius: 6px;
    background-color: var(--pri-blue-50);
    transition: all .3s ease;
}

.pagination .page-links .page-link:active {
    background-color: var(--pri-blue-50);
    transition: all .3s ease;
}

.pagination .page-links .page-link.link-dot {
    background-image: url(/images/component/ico_page_dot.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.pagination .page-links .page-link.active {
    font-weight: bold;
    color: var(--white_default);
    border-radius: 6px;
    background-color: var(--pri-blue-700);
}

.pagination.m-page {
    display: none;
}

.pagination + .helper-box {
    margin-top: 40px;
}

@media screen and (max-width:590px) {
    .pagination {
        position: relative;
        padding-top: 50px;
    }
    .pagination .page-navi {
        position: absolute;
        top: 0;
    }
    .pagination .page-navi.first-pg {
        right: calc(50% - -40px);
    }
    .pagination .page-navi.prev{
        right: 50%;
    }
    .pagination .page-navi.next{
        left: 50%;
    }
    .pagination .page-navi.last-pg{
        left: calc(50% - -40px);
    }
    .pagination .page-links .page-link {
        min-width: 32px;
        height: 32px;
        font-size: 15px;
    }
}








/* ******************************************** */
/*  TAB */
/* ******************************************** */
.tab-area {
    width: 100%;
}

.tab > ul {
    display: flex;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
}

.tab li,
.tab .btn-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    white-space: nowrap;
    min-width: 120px;
}

.tab .btn-tab {
    width: 100%;
    background-color: var(--white_default);
    border: 1px solid var(--white_default);
    color: var(--grey-700);
    font-weight: bold;
    transition: all .3s ease;
}

.tab .btn-tab:not(:disabled):hover {
    background-color: var(--pri-blue-50);
    transition: all .3s ease;
}

.tab .btn-tab:not(:disabled):active {
    background-color: var(--pri-blue-100);
    transition: all .3s ease;
}

.tab .btn-tab[disabled] {
    color: var(--grey-500);
    cursor: default;
}

.tab li {
    flex-grow: 0;
}

.tab.full {
    width: 100%;
}

.tab.full .btn-tab {
    height: 70px!important;
    font-size: 19px !important;
}

.tab.full > ul {
    display: flex; /* group-wrap */
}
.tab.full,
.tab.fill {
    margin-top: 40px;
} 

.tab.full > ul > li {
    flex: 1; /* equal-width */
}

.tab.fill .btn-tab {
    height: 36px;
    padding: 0 16px;
    font-size: 19px;
}

.tab.fill .active .btn-tab {
    background-color: var(--pri-blue-100);
    color: var(--pri-blue-700);
}

.tab.fill > ul > li {
    margin-left: 8px;
}

.tab.fill > ul > li .btn-tab {
    border-radius: 8px;
}

.tab.fill.full {
    margin-top: 40px;
}
.tab.fill.full .btn-tab {
    border: 1px solid var(--border_light) !important;
    border-right: none !important;
    border-radius: 0;
}
.tab.fill.full> ul > li:last-child .btn-tab {
    border-right: 1px solid var(--border_light) !important;
}

.tab.fill.full .active .btn-tab {
    background-color: var(--pri-blue-500);
    color: var(--white_default);
}
.tab.fill.full > ul > li {
    margin-left: 0;
}

.tab.fill.full > ul > li .btn-tab {
    border-left: none;
}

.tab.fill.full > ul > li:first-of-type .btn-tab {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.tab.fill.full > ul > li:last-of-type .btn-tab {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.tab.line .btn-tab {
    height: 48px;
    padding: 2px;
    font-size: 19px;
}

.tab.line .btn-tab:before {
    position: absolute;
    bottom: 0;
    left: 50%;
    content: '';
    width: 0;
    height: 2px;
    background-color: var(--pri-blue-500);
    transition: all .3s ease;
}

.tab.line .active .btn-tab {
    color: var(--pri-blue-700);
}

.tab.line .active .btn-tab:before {
    left: 0;
    width: 100%;
}

.tab.line > ul > li + li {
    margin-left: 16px;
}

.tab.line.full  {
    margin-top: 0;
}
.tab.line.full .btn-tab {
    padding-left: 0;
    padding-right: 0;
    border: 0;
    border-bottom: 2px solid var(--grey-300);
}

.tab.line.full .btn-tab:before {
    bottom: -2px;
    height: 4px;
}

.tab.line.full .btn-tab:hover,
.tab.line.full .btn-tab:active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.tab.line.full > ul > li + li {
    margin-left: 0;
}

.tab-conts {
    display: none;
    margin-top: 40px;
}

.tab-conts.active {
    display: flex;
    flex-direction: column;
    align-items: normal;
}

/* mobile only */
@media (max-width: 768px) { /* 예시 미디어 쿼리 */
    .tab-conts {
        margin-top: 40px;
    }
    .tab-conts.active {
        gap: 32px;
    }
    .tab.full .btn-tab {
        height: 56px !important;
        font-size: 16px !important;
    }
}










/* ******************************************** */
/* Tooltip - 20250212 yhan */
/* ******************************************** */
.krds-tooltip-popover {
    display: none;
    position: fixed;
    z-index: 100;
    white-space: nowrap;
    font-size: 15px;
    border-radius: 4px;
    padding: 4px 12px;
    color: var(--white_default);
    background-color: #1e2124;
    top: 0;
    left: 0;
}

.krds-tooltip-popover.active {
    display: block;
}

.krds-tooltip-popover::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    background-color: #1e2124;
    left: var(--tooltip-arrow-gap);
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.krds-tooltip-popover.tooltip-box {
    white-space: normal;
    max-width: 36rem;
    border: 1px solid var(--krds-tooltip--popover-color-border);
    border-radius: var(--krds-tooltip--popover-radius-box);
    padding: 8px 16px;
    color: var(--krds-tooltip--popover-box-color-text);
    background-color: var(--krds-tooltip--popover-box-color-surface);
    font-weight: 400;
}

.krds-tooltip-popover.tooltip-box::before {
    content: '';
    width: 12px;
    height: 12px;
    border: 1px solid var(--krds-tooltip--popover-color-border);
    border-top-color: transparent;
    border-left-color: transparent;
    background-color: var(--krds-tooltip--popover-box-color-surface);
}

.krds-tooltip-popover.right::before {
    content: '';
    left: calc(100% + var(--tooltip-arrow-gap));
}

.krds-tooltip-popover.bottom::before,
.krds-tooltip-popover.top::before {
    content: '';
    top: calc(100% + var(--tooltip-arrow-gap));
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}

.krds-tooltip-popover.bottom.right::before {
    content: '';
    left: calc(100% - var(--krds-tooltip--popover-margin-x));
}

.krds-tooltip-popover.bottom.left::before {
    content: '';
    left: var(--krds-tooltip--popover-margin-x);
}

.krds-tooltip-popover.bottom::before {
    content: '';
    top: var(--tooltip-arrow-gap);
}

.krds-tooltip-popover.bottom.tooltip-box::before {
    content: '';
    transform: translateX(-50%) rotate(-135deg);
}

button.info-icon {
    display: inline-block;
    align-content: center;
    width: 24px;
    height: 24px;
    background:url(/images/icons/help_24.svg) center center no-repeat;
    vertical-align: bottom;
}


/* responsive mobile */
@media (max-width: 420px) {
    .krds-tooltip-popover {
        width: calc(100% - (24px * 2));
        /* 중앙 배치 필요 */
        left: 50%;
        transform: translateX(-50%);
    }

    .krds-tooltip-popover::before {
        display: none;
    }

    .krds-tooltip-popover.tooltip-box {
        max-width: 100%;
    }
}










/* ******************************************** */
/* Footer */
/* ******************************************** */
#footer{
    position: relative;
    background: #32363F;
}
#footer .top_btn{
    position: absolute;
    top: -40px;
    right: 0;
    display: block;
    width: 80px;
    height: 80px;
    background: url(/images/icons/top.png) center no-repeat;
    background-size: contain;
}
.footer-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 30px 0 20px 0;
}
.footer-wrap .footer-inner{ 
    position: relative;   
   	padding-bottom:20px;
}
.footer-wrap .footer-inner .footer-logo {
    display: block !important;
    width: 260px;
    height: 41px;
    background: url(/images/logo/ast_rm_logo_footer.svg) no-repeat;
    background-size:contain;
    margin-bottom:24px;
}
.footer-wrap .footer-inner .footer-logo a {
    display: block !important;
    width: 260px;
    height: 41px;
}
.footer-wrap .footer-inner .footer-logo a span {
    font-size: 0;
}
.footer-wrap .footer-inner .footer-nav {
    color: var(--grey-400);
}
.footer-wrap .footer-inner .footer-nav ul {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
}

.footer-wrap .footer-inner em {
    position: absolute;
    bottom: 10px;
    right: 0;
    display: block;
    width: 86px;
    height: 63px;
    background: url(/images/logo/fake_wa_mark.png.png) no-repeat center;
    background-size: contain;
    text-indent: -999em;
    margin-left: 14px;
}

.footer-nav > p,
.footer-nav li span {
    display: block;
    position: relative;
    padding: 4px 8px 4px 6px;
}
.footer-nav li span:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -1px;
    display: block;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background-color: var(--grey-400);
}
.footer-bottom {
	display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--grey-400);
    padding-top:20px;
}
.footer-bottom .private {
    display: flex;
}
.footer-bottom .private > li::after {
	content:'';
	display:inline-block;
	width:1px;
	height:14px;
	background:var(--grey-400);
	margin: 0 8px;
	vertical-align:middle;
}
.footer-bottom .private > li:last-child::after,
.footer-nav li:last-child span:after{
	display:none;
}
.footer-bottom .private li a {
    font-size: 15px;
    color: var(--grey-400);
}
#footer .copyright {
    font-size: 14px;
    color: var(--grey-400); 
    opacity: 0.5;
}

/* 푸터 반응형 */
@media screen and (max-width:1370px) {
    .footer-wrap {
        margin: 0 20px;
        padding: 30px 0 20px 0;
    }
}
@media screen and (max-width:1110px) {
    .footer-wrap .footer-inner em {
        position: relative;
        margin-left: 0;
        margin-top: 24px;
    }
}
@media screen and (max-width:980px) {
    .footer-wrap .footer-inner{
        display: flex;
        flex-direction: column;
    }
    .footer-bottom {
        flex-direction: column;
    }
    #footer .copyright {
        text-align: center;
    }
}
@media screen and (max-width:425px) {
    .footer-bottom .private li > a{
        font-size: 14px;
    }
}
