@font-face {
    font-family: "Pretendard";
    src: url("/assets/font/pretendard/Pretendard-Thin.subset.woff2") format("woff2");
    font-weight: 100;
    font-display: swap;
}
@font-face {
    font-family: "Pretendard";
    src: url("/assets/font/pretendard/Pretendard-ExtraLight.subset.woff2") format("woff2");
    font-weight: 200;
    font-display: swap;
}
@font-face {
    font-family: "Pretendard";
    src: url("/assets/font/pretendard/Pretendard-Light.subset.woff2") format("woff2");
    font-weight: 300;
    font-display: swap;
}
@font-face {
    font-family: "Pretendard";
    src: url("/assets/font/pretendard/Pretendard-Regular.subset.woff2") format("woff2");
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: "Pretendard";
    src: url("/assets/font/pretendard/Pretendard-Medium.subset.woff2") format("woff2");
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: "Pretendard";
    src: url("/assets/font/pretendard/Pretendard-SemiBold.subset.woff2") format("woff2");
    font-weight: 600;
    font-display: swap;
}
@font-face {
    font-family: "Pretendard";
    src: url("/assets/font/pretendard/Pretendard-Bold.subset.woff2") format("woff2");
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: "Pretendard";
    src: url("/assets/font/pretendard/Pretendard-ExtraBold.subset.woff2") format("woff2");
    font-weight: 800;
    font-display: swap;
}
@font-face {
    font-family: "Pretendard";
    src: url("/assets/font/pretendard/Pretendard-Black.subset.woff2") format("woff2");
    font-weight: 900;
    font-display: swap;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, input, textarea {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    font-family: Pretendard;
    line-height: 1.5;
}
img{
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}
.d_none{
    display: none !important;
}
.d_block{
    display: block !important;
}
.d_flex{
    display: flex !important;
    align-content: center !important;
}
.fade_out{
    animation: fade_out 0.3s;
}
.fade_in{
    animation: fade_in 0.3s;
}
@keyframes fade_in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.input_style{
    height: 32px;
    width: 100%;
    padding: 6px 12px;
    font-size: 13px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px !important;
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-sizing: border-box;
}
.input_style::placeholder{
    color: #d1d1d1;
}
.input_style:disabled{
    background: #e7e7e7;
    opacity: 0.5;
}

.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    cursor: pointer;
}
.btn_gray_reverse {
    color: #000000 !important;
    background-color: #fff !important;
    border-color: #d1d1d1 !important
}

/* 모달 */
.retina_modal .wrap{
    position: relative;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
}
.retina_modal .popup{
    padding: 0 !important;
    border-radius: 6px !important;
}
.retina_modal .div_modal_header{
    position: relative;
    width: 100%;
    height: 56px;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    background: #f4f7ff;
    box-sizing: border-box;
    font-size: 16px;
    border-radius: 6px 6px 0 0;
    border-bottom: 1px solid #d1d1d1;
}
.retina_modal .btn_close{
    position: absolute;
    width: 32px;
    height: 32px;
    top: 12px;
    right: 16px;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border: none;
    background: transparent;
}
.retina_modal .div_modal_body{
    width: 100%;
    height: 100%;
    padding: 16px;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    line-height: 1.5;
    box-sizing: border-box;
}
.retina_modal .div_modal_footer{
    width: 100%;
    padding: 16px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    border-top: 1px solid #d1d1d1;
    box-sizing: border-box;
}
.btn_close_modal{
    width: 100%;
    height: 40px;
    border-radius: 4px !important;
    font-size: 15px;
    font-weight: bold;
    border: 1px solid #929292;
    background: #FFF;
    color: #929292;
    box-sizing: border-box;
    cursor: pointer;
    white-space: nowrap;
}
.btn_assent_modal{
    width: 100%;
    height: 40px;
    border-radius: 4px !important;
    font-size: 15px;
    font-weight: bold;
    border: none;
    background-image: linear-gradient(to bottom, #3d84c1, #005abb);
    color: #FFFFFF;
    box-sizing: border-box;
    cursor: pointer;
    white-space: nowrap;
}
.btn_assent_modal:disabled{
    background-image: none;
    background-color: #d1d1d1;
    color: #a3a3a3;
    cursor: no-drop;
}

/*셀렉트 박스*/
.select_style{
    height: 32px;
    width: 100%;
    padding: 6px 24px 6px 10px;
    font-size: 13px;
    color: #555;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-sizing: border-box;
    appearance: none;
    background-image: url("/assets/icons/icon_select_down.svg");
    background-repeat: no-repeat;
    background-position: calc(100% - 8px) center;
    background-size: 13px;
    outline: none;
    cursor: pointer;
    text-overflow: ellipsis;
}
.select_style:hover {
    border-color: #888;
}
.select_style:focus {
    border-color: #888;
}
.select_style:disabled {
    background: #e7e7e7;
    opacity: 0.5;
}

/*테이블*/
.table {
    width: 100%;
    user-select: text;
    font-size: 14px !important;
    font-weight: 400 !important;
}

.table th {
    padding: 0.75rem;
    vertical-align: middle;
    border-top: 1px solid #dee2e6;
    box-sizing: border-box;
}

.table td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
    box-sizing: border-box;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
    box-sizing: border-box;
}

.table tbody + tbody {
    border-top: 2px solid #dee2e6;
    box-sizing: border-box;
}

.table_bordered {
    border: 1px solid #ddd;
}
.table_bordered tbody>tr>th, .table_bordered thead>tr>th{
    background: #F1F1F1;
}
.table_bordered tbody>tr>td, .table_bordered thead>tr>td{
    background: #ffffff;
}
.table_bordered tbody>tr>th, .table_bordered tbody>tr>td,
.table_bordered thead>tr>th, .table_bordered thead>tr>td{
    border: 1px solid #ddd;
}

/*메인 슬라이드*/
.splide__arrow{
    background: transparent !important;
}
.splide__pagination{
    display: flex !important;
}

.splide__pagination__main{
    position: absolute;
    bottom: 0;
    text-align: center;
    width: 100%;
}

.splide__pagination__main::-webkit-scrollbar {
    display: none;
}

.splide__pagination__main .splide__pagination__page{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90px;
    height: 36px;
    border: 0;
    padding: 2px 16px !important;
    border-radius: 30px;
    background: rgba(0, 0, 0, 0.8);
    cursor: pointer;
    opacity: 0.5 !important;
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px; /* 100% */
    letter-spacing: -0.32px;
    flex-shrink: 0;
}
/*이벤트-협력사 슬라이드*/
.splide__pagination__offer{
    height: 54px;
    padding: 0 8px !important;
    position: static !important;
    flex-wrap: nowrap !important;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start !important;
    box-sizing: content-box !important;
    –webkit-overflow-scrolling: touch;
    -webkit-transform: translateZ(0);
    pointer-events: auto !important;
}

.splide__pagination__offer::-webkit-scrollbar {
    display: none;
}

.splide__pagination__offer .splide__pagination__page{
    width: fit-content;
    height: 40px;
    margin: 0;
    padding: 6px 16px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    border-radius: 100px;
    background: #fff5d1;
    color: #454545;
    font-size: 16px;
    font-weight: 500;
}
.splide__pagination__offer .splide__pagination__page.is-active{
    transform: none;
    background: #ffdb69;
    color: #000;
    font-weight: bold;
}
.splide__pagination__offer li{
    flex-shrink: 0;
}
.splide__pagination__offer .splide__pagination__page > *{
    flex-shrink: 0;
}
/*이벤트 슬라이드*/
.splide__pagination__event{
    height: 34px;
    padding: 0 8px !important;
    position: static !important;
    gap: 8px;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start !important;
    box-sizing: content-box !important;
    –webkit-overflow-scrolling: touch;
    -webkit-transform: translateZ(0);
    pointer-events: auto !important;
}

.splide__pagination__event::-webkit-scrollbar {
    display: none;
}

.splide__pagination__event .splide__pagination__page{
    width: fit-content;
    height: 30px;
    margin: 0;
    padding: 6px 16px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    border-radius: 100px;
    background: #d6eeff;
    color: #454545;
    font-size: 14px;
    font-weight: 500;
}
.splide__pagination__event .splide__pagination__page.is-active{
    transform: none;
    background: #78c6ff;
    color: #000;
}
.splide__pagination__event li{
    flex-shrink: 0;
}
.splide__pagination__event .splide__pagination__page > *{
    flex-shrink: 0;
}
