@charset "utf-8";



/* ================================ */
/* timer */
/* ================================ */
.c-timer--horizontal {
    .c-timer__item {
        display: flex;
        column-gap: 10px;
        align-items: center;
        justify-content: space-between;
        padding: 12px 32px;
        background: rgba(168, 168, 168, 0.30);
        border-radius: 8px;
        backdrop-filter: blur(4px);
    }
    
    .c-timer__label {
        font-size: 16px;
        font-weight: 700;
        line-height: 26px;
        color: #000;
    }
    
    .c-timer__content {
        display: flex;
        column-gap: 4px;
        font-weight: 800;
    }
    .c-timer__box {
        display: inline-flex;
        column-gap: 4px;
        align-items: center;
    }
    .c-timer__value {
        min-width: 44px;
        padding: 4px 10px;
        font-size: 18px;
        font-weight: 800;
        line-height: 140%;
        text-align: right;
        letter-spacing: -0.36px;
        background-color: #fff;
        border-radius: 4px;
    }
    
    .c-timer__unit {
        font-size: 16px;
        font-weight: 600;
        line-height: 140%;
        color: #000;
        letter-spacing: -0.32px;
    }
    
    @media screen and (max-width: 767px) {
        width: 100%;

        .c-timer__item {
            display: flex;
            gap: initial;
            justify-content: space-between;
            padding: calc(12 / 390 * 100vw) calc(16 / 390 * 100vw);
            border-radius: calc(8 / 390 * 100vw);
            backdrop-filter: blur(10px);
        }
    
        .c-timer__label {
            font-size: max(10px, calc(12 / 390 * 100vw));
            font-weight: 700;
            line-height: 166.667%;
        }
        .c-timer__box {
            display: inline-flex;
        }
        .c-timer__value {
            min-width: calc(38 / 390 * 100vw);
            padding: 2px calc(8 / 390 * 100vw);
            font-size: calc(16 / 390 * 100vw);
            line-height: 140%;
            letter-spacing: calc(-0.32em / 16);
            border-radius: calc(4 / 390 * 100vw);
        }
    
        .c-timer__unit {
            font-size: max(10px, calc(10 / 390 * 100vw));
            letter-spacing: calc(-0.2em / 10);
        }
    }
}

.c-timer--vertical {
    display: flex;
    position: relative;
    align-items: center;
    .c-timer__label {
        margin-right:32px;
        color: #FFF;
        font-size: 16px;
        font-weight: 600;
        line-height: 24px;
        letter-spacing: -0.4px;
        white-space: nowrap;
    }
    .c-timer__box {
        display: flex;
        flex-direction: column;
    }
    .c-timer__box:last-child .c-timer__value::after {
        display:none;
    }
    .c-timer__box:last-child .c-timer__unit {
        padding-right:0;
    }
    .c-timer__value {
        display: flex;
        min-width: 51px;
        color: #F31E11;
        font-size: 33px;
        font-weight: 600;
        line-height: 100%;
        letter-spacing: -0.66px;
        align-items: center;
        justify-content: center;
    }
    .c-timer__value::after {
        content: "";
        display: block;
        margin: 0 8px;
        width: 3px;
        height: 13px;
        background: url(/kr/event/promotions/images/icon-kv-timer-divider-black.svg) no-repeat;
    }
    .c-timer__unit {
        margin-top: 4px;
        padding-right: 20px;
        text-align: center;
        color: #000;
        text-align: center;
        font-size: 14px;
        font-weight: 500;
        line-height: 120%;
    }
    .c-timer__unit {
        font-size: 16px;
        font-weight: 600;
        line-height: 140%;
        color: #fff;
        letter-spacing: -0.32px;
    }
    @media screen and (max-width: 767px) {
        &::before {
            border-radius: calc(8 / 390 * 100vw);
            background: linear-gradient(111deg, #8f433d, #654745, #8f433d);
        }
        .c-timer__value {
            min-width: calc(40 / 390 * 100vw);
            font-size: calc(33 / 390 * 100vw);
            line-height: 1;
            letter-spacing: calc(-0.66em / 33);
        }
        .c-timer__value::after {
            margin: 0 calc(6 / 390 * 100vw);
            width: calc(3 / 390 * 100vw);
            height: calc(13 / 390 * 100vw);
        }
        .c-timer__unit {
            padding-right: calc(15 / 390 * 100vw);
            font-size: calc(14 / 390 * 100vw);
            font-weight: 500;
            line-height: 120%;
        }
    }
}
/* ================================ */
/* // timer */
/* ================================ */



/* 템플릿 페이지 전용 스타일 */
.template-desc {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    padding: 0 20px 20px;

    .l-article__content & {
        padding-left: 0;
        padding-right: 0;
    }

    .l-article__inner--mo-gutter & {
        padding-left: 0;
        padding-right: 0;
    }

    .template-desc__tit {
        font-size: 20px;
        font-weight: 700;
        line-height: 140%;
    }
    .template-desc__sub-tit {
        font-size: 18px;
        font-weight: 500;
        line-height: 140%;
    }
    
    .template-desc__list {
        display: flex;
        flex-direction: column;
        row-gap: 8px;
        padding: 20px 20px 20px 40px;
        border: solid 1px gray;
    }
    
    .template-desc__list:has(.template-desc__list) .template-desc__list {
        padding: 12px 0 10px 15px;
        border: none;
    }
    
    .template-desc__list:has(.template-desc__list) .template-desc__list .template-desc__item {
        list-style-type: decimal;
    }
    
    .template-desc__item {
        font-size: 16px;
        line-height: 1.5;
        list-style-type: decimal;
    }
    .template-desc__linker {
        font-weight: bold;
        text-decoration: underline;
        color: #258eeb;
    }
    
    @media screen and (max-width: 767px) {
        padding: 0 calc(20 / 390 * 100vw);

        .l-article__inner--mo-gutter & {
            padding-left: 0;
            padding-right: 0;
        }
        .template-desc__tit {
            font-size: calc(18 / 390 * 100vw);
        }
        .template-desc__sub-tit {
            font-size: calc(16 / 390 * 100vw);
        }
        .template-desc__list {
            padding: 10px 10px 10px 30px;
        }
        .template-desc__list .template-desc__list {
            padding-left:0px;
        }
    }
}
/* // 템플릿 페이지 전용 스타일 */




.test--bb2bjjhh2 .c-custom-accordion__area--first {
    scroll-margin-top: calc(var(--header-height) + var(--sticky-main-switch-height) + var(--sticky-main-sticky-height));
}
.test--bb2bjjhh2 .c-custom-accordion__area--fade {
    height: 120px;
}
.test--bb2bjjhh2 .c-custom-accordion__area--fade::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 20%, #fff 50%, #fff 95%);
}
.test--bb2bjjhh2 .c-custom-accordion__btn--test01 {
    scroll-margin-top: calc(var(--header-height) + var(--sticky-main-switch-height) + var(--sticky-main-sticky-height));
}


/* 유틸리티 콘텐츠 영역 */
.l-article__content:has(.g-tmpl-wrap) {
    width: 100%;
}
.g-tmpl-wrap {
    width: 100%;
    margin: 0 auto;
    color: #333;
    line-height: 1.6;
}

.g-tmpl-section {
    background: #fff;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    transition: transform 0.2s ease;
}

.g-tmpl-section__head {
    background-color: #fff;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.g-tmpl-section__title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.g-tmpl-section__title::before {
    content: '';
    display: block;
    width: 4px;
    height: 20px;
    background-color: #4c6ef5;
    border-radius: 2px;
}

.g-tmpl-table-wrap {
    overflow-x: auto;
    margin-bottom: 24px;
    border: 1px solid #eee;
    border-radius: 8px;
}

.g-tmpl-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
    font-size: 14px;
}

.g-tmpl-table th {
    background-color: #f8f9fa;
    color: #555;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-align: left;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
}

.g-tmpl-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #f5f5f5;
    color: #444;
    vertical-align: top;
}

.g-tmpl-table tr:last-child td {
    border-bottom: none;
}

.g-tmpl-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    vertical-align: middle;
    margin-right: 6px;
    text-transform: uppercase;
}
.g-tmpl-badge--pc { background-color: #4c6ef5; box-shadow: 0 2px 4px rgba(76, 110, 245, 0.2); }
.g-tmpl-badge--mo { background-color: #20c997; box-shadow: 0 2px 4px rgba(32, 201, 151, 0.2); }
.g-tmpl-badge--all { background-color: #fd7e14; }
.g-tmpl-badge--gray { background-color: #e9ecef; color: #495057; }

.g-tmpl-code__list {
    display:flex;
    flex-direction: column;
    gap: 4px;
}
.g-tmpl-code {
    display: inline-flex;
    width: fit-content;
    background-color: #f1f3f5;
    color: #c92a2a;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(0,0,0,0.03);
}

.g-tmpl-desc-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-top: 11px;
}

.g-tmpl-desc-list {
    margin: 8px 0 0;
    padding-left: 18px;
    font-size: 14px;
    color: #666;
}
.g-tmpl-desc-list li {margin-bottom: 6px;}

.g-tmpl-values {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
}

.g-tmpl-values-group {
    margin-bottom: 20px;
}
.g-tmpl-values-group:last-child { margin-bottom: 0; }

.g-tmpl-values__title {
    font-size: 14px;
    font-weight: 700;
    color: #343a40;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}
.g-tmpl-values__title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e9ecef;
    margin-left: 12px;
}
.g-tmpl-values__desc {
    margin: 4px 0;
    font-size: 13px;
}
.g-tmpl-values__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.g-tmpl-values__item {
    background: #fff;
    border: 1px solid #dee2e6;
    padding: 6px 12px;
    font-size: 13px;
    color: #495057;
    border-radius: 20px;
    transition: all 0.2s;
    cursor: default;
}

.g-tmpl-values__item--accent {
    background-color: #fff9db;
    border-color: #fab005;
    color: #e67700;
    font-weight: 700;
}
/* // 유틸리티 콘텐츠 영역 */


/* 코드 하이라이트 */
.l-article__content:has(pre) {
    width: 100%;
} 
/* // 코드 하이라이트 */

/* 테스트 용도 */
.test--fdsaer11 {
    scroll-margin-top: calc(var(--header-height) + var(--sticky-main-switch-height) + var(--sticky-main-sticky-height));
}

.test--reqw13 {
    width: 100%;
    height: 16vh;
    background-color: #B3C89E;
}
.test--reqw13:nth-child(2n),
.test--reqw13--odd {
    background-color: #626D58;
}

.test--reqw123 .custom-scroll-slider__item {
    max-width: 460px;
    min-width: 460px;
}
@media screen and (max-width: 767px) {
    .test--reqw123 .custom-scroll-slider__item {
        min-width: 100%;
    }
}


.test--custom-slider-01fdsa213 .custom-scroll-slider__content-wrapper {
    column-gap: 16px;
}

.test--custom-slider-01fdsa213 .custom-scroll-slider__item {
    flex: 0 0 366px;
}
 .test--custom-slider-01fdsa213__linker {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 10%;
    height: 10%;
    background-color: red;
}
@media screen and (max-width: 767px) {
    .test--custom-slider-01fdsa213 .custom-scroll-slider__content-wrapper {
        column-gap: calc(12 / 390 * 100vw);
    }
    .test--custom-slider-01fdsa213 .custom-scroll-slider__item {
        flex: 0 0 100%;
    }
}

.test--fdsaf32d1  .custom-scroll-slider__container {
    padding: 0 20px;
}
.test--fdsaf32d1 .custom-scroll-slider__item {
    flex: 0 0 100%;
    @media screen and (max-width: 767px) {
      flex: 0 0 calc(350 / 390 * 100vw);
    }
}
.test--fdsaf32d1 .custom-scroll-slider__video {
    width: 100%;
}
.test--fdsaf32d1 .custom-scroll-slider__video {
    width: 100%;
}
@media screen and (max-width: 767px) {
    .article--test-modal-tooltip .tooltip-box {
        left:0;
    }
    .test--fdsaf32d1 .custom-scroll-slider__video {
        width: calc(350/390*100vw);
        aspect-ratio: 1920 / 1080;
    }
}


.test--fdadf432 .custom-scroll-slider__video {
    width: 100%;
}
@media screen and (max-width: 767px) {
    .test--fdadf432 .custom-scroll-slider__video {
        width: calc(350/390*100vw);
        aspect-ratio: 1920 / 1080;
    }
}

.test--fdf8fdgh {
    max-width: 1146px;
    margin: 0 auto;
}

.test--dsfjsfg,
.test--bffdgjhh2 {
    width: 70%;
}

.l-article .test--fgew4fd {
    width: stretch;
    max-width: 820px;
}

.test--fasgwersdf .swiper-slide {
    width: 366px;
    @media screen and (max-width: 767px) {
        width: calc(350/390*100vw);
    }
}
a.test--fasgwersdfl {
    display: block;
    position: absolute;
    top: 10%;
    left: 10%;
    width: fit-content;
    height: 10%;
    background-color: red;
}
/* // 테스트 용도 */



.event-benefit-template .c-tab--main-sticky .c-tab__list{border-bottom: solid 1px #777777;}

/* .event-benefit-template .c-title__eyebrow{font-weight: 600;} */


.event-benefit-template .bg_black{background-color: #000;}
.event-benefit-template .bg_black .text_gray{color: #A9A9A9;}

.event-benefit-template .bg_white .l-article__inner{background-color: #F4F4F4;}
.event-benefit-template .bg_white .c-title__main{color: #000000;}
.event-benefit-template .bg_white .c-button__label{background-color: #F4F4F4; border-color: #262626; color: #262626;}

.event-benefit-template .bg_beige{background-color: #F4F4F4;}

.event-benefit-template .text_gray{color: #777777;}
.event-benefit-template .text_red{color: #FD312E;}

.event-benefit-template .c-tooltip_black .tooltip-box{background-color: #181818;}
.event-benefit-template .c-tooltip_black .tooltip-box .c-tooltip__title{color: #FFF;}
.event-benefit-template .c-tooltip_black .tooltip-box .c-list__item{color: #FFF;}

.event-benefit-template .article_product_btn .btn_product_landing01{position: absolute; top: 73%; left: 50%; transform: translateX(-50%); width: 23%; height: 7%; }

.event-benefit-template .article_tab_swiper01_pc .l-article__inner{width: 85%; }

.event-benefit-template .article_popup01 .l-article__content{position: relative;}
.event-benefit-template .article_popup01 .l-article__content .c-tooltip_black .btn-close::after{background: url(/kr/event/promotions/images/icon_tooltip_close_btn_white.png) no-repeat; }
.event-benefit-template .article_popup01 .l-article__content .c-tooltip{position: absolute; top: 73%;left: 52.5%;}
.event-benefit-template .article_popup01 .l-article__content .c-tooltip .ui_tooltip-target{background: none;}

.event-benefit-template .l-article .c-toggle__content{ padding: 2% 0 2% 1.5%; border-radius: 10px;}
.event-benefit-template .article_product_btn .c-toggle__content{background-color: #FFF; }
.event-benefit-template .l-article03 .c-toggle__content{background-color: #F4F4F4; }
.event-benefit-template .subs_benefit_article .c-toggle__content{background-color: #FFF; }
.event-benefit-template .l-article08 .c-toggle__content{background-color: #F4F4F4; }



.event-benefit-template .c-toggle__title{font-weight: 700;}
.event-benefit-template .c-toggle__btn{font-weight: normal;}

@media screen and (max-width: 767px) {

    
    
    .event-benefit-template .text-align--left-mo{text-align: left;}
    .event-benefit-template .article_product_btn .btn_product_landing01{position: absolute; top: 74%; left: 50%; transform: translateX(-50%); width: 50%; height: 6%;}
    
    .event-benefit-template .article_popup01 .l-article__content{position: relative;}
    .event-benefit-template .article_popup01 .l-article__content .c-tooltip{position: absolute; top: 73%;left: 56%;}
    .event-benefit-template .article_popup01 .l-article__content .c-tooltip .tooltip-wrap{width: calc(25 / 390 * 100vw); height:calc(25 / 390 * 100vw); }
    .event-benefit-template .article_popup01 .l-article__content .c-tooltip .tooltip-box{top: calc(35 / 390 * 100vw); left: calc(-120 / 390 * 100vw);}
    .event-benefit-template .article_popup01 .l-article__content .c-tooltip .tooltip-box .c-list{margin-left: 0;}
    .event-benefit-template .article_popup01 .l-article__content .c-tooltip .ui_tooltip-target{background: none;}
    
    .event-benefit-template .article_product_list .c-product__badge{font-size: calc(10 / 390 * 100vw);} 
    
    .event-benefit-template .article_tab_swiper01_mo .l-article__inner{width: 100%; }
    .event-benefit-template .article_tab_swiper01_mo .c-tab__list{display: flex; padding: 0 0 calc(14 / 390 * 100vw) 0}
    .event-benefit-template .article_tab_swiper01_mo .c-tab__list li:first-child{margin-left: 0;}
    .event-benefit-template .article_tab_swiper01_mo .swiper-navigation-button{display: none;}
    .event-benefit-template .article_tab_swiper01_mo .c-swiper__controls{display: none;}
    
    
    .event-benefit-template .l-article .c-toggle__content{ padding: 4% 0 4% 2%;}
    .event-benefit-template .c-toggle .c-list{width: calc(350 / 390 * 100vw); margin-left: 0;}
    .event-benefit-template .subs_benefit_article .c-toggle .c-list{width: calc(340 / 390 * 100vw); margin-left: 0;}

    .event-benefit-template .l-article06_02 .l-article__inner{ padding-top: 0;}
    
    
}