

.hero_wrap{
    margin: 0 1rem;
    height: 19.8rem;
    background: url('../image/bg_sub_hero1.png') no-repeat center/cover;
    border-radius: 0 0 1.6rem 1.6rem;
}
.hero_wrap.global_payment{
    background-image: url('../image/bg_sub_hero2.png');
}
.hero_wrap.solution{
    background-image: url('../image/bg_sub_hero3.png');
}
.hero_wrap.customers{
    background-image: url('../image/bg_sub_hero4.png');
}

@media (max-width: 480px) {
    .hero_wrap{
        margin: 0;
    }
}


.navigation_wrap{
    margin: 5rem auto 12rem;
    width: 128rem;
    padding: 0 2rem;
}
@media (max-width: 1280px){
    .navigation_wrap{
        width: 100%;
    }
}
@media (max-width: 480px){
    .navigation_wrap{
        margin: 5rem auto 7rem;
    }
}
.navigation{
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.4rem;
}
.navigation span{
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.navigation a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.navigation span{
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.icon_nav_home{
    width: 2.1rem;
    height: 2.1rem;
}
.icon_nav_arrow{
    width: 0.8rem;
    height: 1.4rem;
}


.sub_title_wrap{
    margin: 0 auto 10rem;
    padding: 0 2rem;
}
@media (max-width: 480px) {
    .sub_title_wrap{
        margin: 0 auto 4rem;
    }
}
.sub_title{
    font-size: 7.4rem;
    text-align: center;
}
@media (max-width: 1024px) {
    .sub_title{
        font-size: clamp(4rem, 1rem + 10vw, 7.4rem);
    }
}


.tabs {
    width: 128rem;
    margin: 0 auto 12rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.2rem;
    padding: 0 2rem;
    box-sizing: border-box;
    overflow-x: auto;
}

.tabs_item {
    flex: 1;
    display: flex;
    height: 6rem;
    justify-content: center;
    align-items: center;
    background: var(--boxBg-color);
    color: var(--grey-color);
    font-size: 1.5rem;
    padding: 0 1rem;
    white-space: nowrap;
}

.tabs_item.is_active {
    background: var(--black-color);
    color: #FFF;
}
.tabs_item.is_active:hover {
    background: var(--black-color);
    color: #FFF;
}

.tabs_item:hover {
    background: var(--buttonBg-color);
}

@media (max-width: 1280px) {
    .tabs {
        width: 100%;
        max-width: 100vw;
        flex-wrap: nowrap; 
        justify-content: flex-start;
        overflow-x: auto; 
        -webkit-overflow-scrolling: touch;
    }

    .tabs::-webkit-scrollbar {
        display: none; 
    }

    .tabs_item {
        /* flex: 0 0 auto;  */
        padding: 0 2.5rem; 
    }
}




.subject{
    margin: 0 auto 8.2rem;
    width: 128rem;
    font-size: 4rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    font-weight: 700;
    padding: 0 2rem;
}
@media (max-width: 1280px) {
    .subject{
        width: 100%;
    }
}
.subject img{
    width: 4.4rem;
    height: 4.4rem;
}
.sec_detail{
    width: 128rem;
    margin: 0 auto 8rem;
    padding: 0 2rem;
}



.sec_detail .detail_title{
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: var(--black-color);
}
.sec_detail .detail_desc{
    font-size: 1.8rem;
    line-height: 1.6;
    color: var(--grey-color);
    margin-bottom: 6rem;
}

@media (max-width: 1280px) {
    .sec_detail{
        width: 100%;
    }
}
.card_list{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.card_list li{
    display: flex;
    height: 6rem;
    padding: 0 3rem;
    justify-content: center;
    align-items: center;
    border-radius: 0.8rem;
    border: 1px solid var(--line-color);
    font-size: 1.8rem;
    color: var(--grey-color);
    font-weight: 700;
}
@media (max-width: 1280px) {
    .card_list li{
        flex: 1 1 calc(25% - 1rem);
    }
}
@media (max-width: 1024px) {
    .card_list li{
        flex: 1 1 calc(33% - 1rem);
    }
}
@media (max-width: 768px) {
    .card_list li{
        flex: 1 1 calc(50% - 1rem);
    }
}
.card_list li img{
    zoom: 0.5;
}




.features_table {
    border-top: 2px solid var(--black-color);
    border-bottom: 1px solid var(--line-color);
}

.features_table_item {
    display: flex;
    border-bottom: 1px solid var(--line-color);
}



.features_table_item:last-child {
    border-bottom: none;
}

.item_title {
    display: flex;
    align-items: center;
    width: 20rem;
    background-color: var(--boxBg-color);
    color: var(--black-color);
    font-size: 1.8rem;
    font-weight: 700;
    padding: 2.8rem 2rem;
    flex-shrink: 0;
}
@media (max-width: 640px) {
    .features_table_item.column {
        flex-direction: column;
    }
    .item_title {
        width: 14rem;
    }
    .features_table_item.column .item_title {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .features_table_item.column .item_text {
        padding: 2.8rem 0
    }
}
@media (max-width: 480px) {
    .item_title {
        width: 10rem;
    }
}

.item_text {
    flex: 1;
    display: flex;
    align-items: center;
    color: var(--grey-color);
    font-size: 1.8rem;
    padding: 2.8rem 2rem;
}

.module_box{
    position: relative;
    width: 152rem;
    height: auto;
    margin: 16rem auto 0;
    border-radius: clamp(1.6rem, 0.188rem + 4.71vw, 3.2rem);;
    background: var(--boxBg-color);
    text-align: center;
    padding-top: 55rem;
    overflow: hidden;
}
.module_box .module_img{
    display: flex;
    justify-content: center;
}
@media (max-width: 1560px) {
    .module_box{
        width: calc(100% - 4rem);
    }
}

.module_box.module_system{
    padding-top: unset;
    height: 100rem;
    background: url(../image/bg_system_apply.jpg) no-repeat center/cover;
}
.module_box.module_core_tech{
    padding-top: unset;
    height: 49.8rem;
    background: url(../image/bg_core_technology.jpg) no-repeat center/cover;
}
.module_box.apply_account{
    padding-top: unset;
    height: 100rem;
    background: url(../image/bg_apply_account.jpg) no-repeat center/cover;
}

.module_title_wrap{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90rem;
    position: absolute;
    top: 17.6rem;
    left: 50%;
    transform: translateX(-50%);
}

.module_tag{
    font-size: 2.2rem;
    color: var(--main-color);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}
.module_title{
    font-size: 8.8rem;
    color: var(--black-color);
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.module_desc{
    font-size: 1.8rem;
    color: var(--grey-color);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 5rem;
    text-align: center;
}
.module_core_tech .module_title_wrap{
    top: 50%;
    transform: translate(-50%, -50%);
}
.module_core_tech .module_title{
    color: #FFF;
}
.module_core_tech .module_desc{
    margin-bottom: unset;
    color: #FFF;
}
@media (max-width: 1024px) {
    .module_box{
        padding-top: clamp(60rem, 46.765rem + 44.12vw, 75rem);
    }
    .module_title_wrap{
        width: calc(100% - 4rem);
        padding: 0 2rem;
        top: clamp(9.6rem, 2.541rem + 23.53vw, 17.6rem);
    }
    .module_title{
        font-size: clamp(4rem, -0.235rem + 14.12vw, 8.8rem);
    }
    .module_desc{
        font-size: clamp(1.4rem, 1.047rem + 1.18vw, 1.8rem);
    }
}
@media (max-width: 1024px) {
    .module_box .module_img{
        width: 80%;
        margin: 0 auto;
    }
}



.module_box.apply_account .module_title{
    color: #FFF;
}
.module_box.apply_account .module_desc{
    margin-bottom: unset;
    color: #FFF;
    margin-bottom: 5rem;
}

.module_img img{
    zoom: 0.5;
    display: block;
}

.currency_list{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.currency_list li{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.2rem;
    border-radius: 0.8rem;
    background: var(--boxBg-color);
    color: var(--black-color);
    font-size: 1.6rem;
    height: 4.5rem;
    font-weight: 600;
    gap: 0.6rem;
}
.currency_code{
    color: var(--grey-color);
    font-weight: 400;
}


.sec_process{
    width: 128rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.process_title{
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: var(--black-color);
}
.process_desc{
    font-size: 1.8rem;
    line-height: 1.6;
    color: var(--grey-color);
    margin-bottom: 6rem;
}

.process_list {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    width: 100%;
}
.process_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 6rem 2rem;
    flex: 1;
    border-radius: 1.6rem;
    background: #fff;
    box-shadow: 0 12px 18px 0 rgba(0, 0, 0, 0.06);
}
.process_img{
    zoom: 0.5;
}
.process_text_wrap{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.process_text_wrap .step{
    text-align: center;
    font-size: 1.4rem;
    color: #FFF;
    font-weight: 700;
    background: var(--black-color);
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.8rem;
}
.process_text_wrap .title{
    text-align: center;
    font-size: 1.6rem;
    color: var(--black-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
}
.process_text_wrap .desc{
    text-align: center;
    font-size: 1.4rem;
    color: var(--grey-color);
    line-height: 1.4;
}
.process_bg{
    position: absolute;
    top: 50%;
    right: 29rem;
    transform: translateY(-50%);
    z-index: 0;
}
.process_bg img{
    zoom: 0.5;
}

@media (max-width: 1280px) {
    .sec_process{
        width: 100%;
    }
    .process_wrap{
        width: 100%;
    }
    .process_list{
        gap: 2rem;
    }
    .process_bg{
        display: none;
    }
}
@media (max-width: 1024px) {
    .process_item{
        flex: 1 1 calc(50% - 1rem);
        min-width: 0;
    }
}
@media (max-width: 480px) {
    .process_list{
        width: 100%;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .process_item{
        flex: 1 1 100%;
    }
}




.state_list{
    display: flex;
    flex-wrap: wrap;
    row-gap: 6rem;
    column-gap: 4rem;
}


.state_item{
    display: flex;
    gap: 2rem;
    flex: 0 0 calc(50% - 2rem);
}

.state_flag{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 1.2rem;
    background: var(--boxBg-color);
}
.state_flag img{
    zoom: 0.5;
    border-radius: 50%;
    overflow: hidden;
}
.state_name{
    color: var(--black-color);
    font-size: 2.4rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}
.state_desc{
    color: var(--grey-color);
    font-size: 1.8rem;
    margin-bottom: 1.4rem;
    line-height: 1.6;
}
.payment_methods{
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.6rem;
    position: relative;
}
.methods_viewport{
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    overflow: hidden;
    gap: 0.4rem;
    flex: 1;
}
.payment_methods .method{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.4rem;
    padding: 0 0.6rem;
    flex-shrink: 0;
}
.payment_methods img{
    zoom: 0.5;
}
.btn_method_more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--grey-color);
    background: var(--boxBg-color);
    border-radius: 0.8rem;
    flex-shrink: 0;
}
.methods_layer {
    display: none; 
    position: absolute;
    bottom: calc(100% + 0.8rem);
    right: 0;
    z-index: 10;
    width: 100%;
    padding: 1.2rem;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 0.8rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    gap: 0.6rem;
    flex-wrap: wrap;
}

.payment_methods.active .methods_layer {
    display: flex;
}





@media (max-width: 1024px) {
    .state_item{
        flex: 1 1 100%;
    }
}


.sec_chart{
    width: 100%;
    background: var(--boxBg-color);
    position: relative;
    padding: 38.5rem 2rem 8rem;
    margin: 16rem auto 16rem;
}
.bg_gradient{
    background: linear-gradient(180deg, #FFF 0%, #F7F8FA 100%);
}
.chart_text_wrap{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 98rem;
    position: absolute;
    top: 12rem;
    left: 50%;
    transform: translateX(-50%);
}
.chart_tag{
    font-size: 2.2rem;
    color: var(--main-color);
    font-weight: 700;
    margin-bottom: 2rem;
}
.chart_title{
    font-size: 8.8rem;
    color: var(--black-color);
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}
.chart_desc{
    font-size: 1.8rem;
    color: var(--grey-color);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 5rem;
    text-align: center;
}

.diagram_wrap{
    max-width: 128rem;
    margin: 0 auto;
}
.diagram_wrap.diagram_payapp{
    max-width: 85.5rem;
    margin: 0 auto;
}
.diagram_wrap picture img{
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
@media (max-width: 1024px) {
    .sec_chart{
        padding-top: 56.5rem;
    }
    .chart_text_wrap{
        width: calc(100% - 4rem);
        padding: 0 2rem;
        top: clamp(8rem, 4.471rem + 11.76vw, 12rem);
    }
    .chart_title{
        font-size: clamp(4rem, -0.235rem + 14.12vw, 8.8rem);
    }
    .chart_desc{
        font-size: clamp(1.4rem, 1.047rem + 1.18vw, 1.8rem);
    }
}

@media (max-width: 960px) {
    .diagram_wrap picture img {
        max-width: 60rem; 
    }
}
@media (max-width: 640px) {
    .diagram_wrap picture img {
        max-width: 100%; 
    }
}

.sec_pgi{
    margin-bottom: 16rem;
}
.pgi_text_wrap{
    width: 128rem;
    padding: 0 2rem;
    margin: 0 auto;
}


.pgi_title{
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: var(--black-color);
}
.pgi_desc{
    font-size: 1.8rem;
    line-height: 1.6;
    color: var(--grey-color);
    margin-bottom: 6rem;
}
.pgi_swiper_wrap{
    max-width: 100%;
    overflow: hidden;
    padding: 0 2rem;
    margin: 0 auto;
}
.pgi_swiper{
    max-width: 128rem;
    overflow: visible;
}
.pgi_swiper .swiper-wrapper{
    display: flex;
}
.pgi_swiper .swiper-slide{
    max-width: 100rem;
}
.pgi_swiper img{
    width: 100%;
    height: auto;
    display: block;
}
.sec_pgi .pgi_swiper_control {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
}
.sec_pgi .swiper-button-prev,
.sec_pgi .swiper-button-next {
    position: static;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--buttonBg-color);
    margin-top: auto;
}
.sec_pgi .swiper-button-prev::after {
    content: "";
    background: url('../image/icon_prev.svg') no-repeat center center;
    width: 0.7rem;
    height: 1.2rem;
}
.sec_pgi .swiper-button-next::after {
    content: "";
    background: url('../image/icon_next.svg') no-repeat center center;
    width: 0.7rem;
    height: 1.2rem;
}

@media (max-width: 1024px) {
    .sec_pgi, .pgi_text_wrap, .pgi_swiper {
        width: 100%;
        max-width: 100%;
    }
    .pgi_swiper .swiper-slide {
        width: calc(100% - 2rem);
    }
}

@media (max-width: 480px) {
    .pgi_swiper {
        overflow-x: auto; 
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .pgi_swiper .swiper-wrapper {
        gap: 0;
    }

    .pgi_swiper .swiper-slide {
        width: 100%;
        scroll-snap-align: start;
        flex-shrink: 0;
    }
}

.features_wrap{
    display: flex;
    gap: 6rem;
}
.feature_item{
    display: flex;
    flex-direction: column;
    gap: 3rem;
    flex: 1;
}
.feature_img {
    border-radius: clamp(1.6rem, 0.188rem + 4.71vw, 3.2rem);;
    overflow: hidden;
}
.features_wrap.img_2x{
    flex-wrap: wrap;
    row-gap: 6rem;
}
.features_wrap.img_2x .feature_item{
    flex: none;
    width: calc(50% - 3rem);
}
.feature_img img{
    max-width: 100%;
    height: auto;
    display: block;
}
.feature_text_wrap{
    padding: 0 1rem;
}
.feature_title{
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 0.8rem;
}
.feature_desc{
    font-size: 1.6rem;
    color: var(--grey-color);
    line-height: 1.6;
}
@media (max-width: 1024px) {
    .features_wrap{
        gap: 3rem;
    }
}
@media (max-width: 768px) {
    .features_wrap{
        flex-direction: column;
        gap: 6rem;
        width: 100%;
    }
    .features_wrap .feature_img{
        border-radius: clamp(1.6rem, 0.188rem + 4.71vw, 3.2rem);
    }
    .features_wrap.img_2x .feature_item{
        width: 100%;
    }
}

.pay_method_wrap{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}
.method_item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: var(--boxBg-color);
    border-radius: 1.6rem;
    height: 15rem;
    padding: 3rem 1rem;
}
.method_img{
    width: 8rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.method_img img{
    zoom: 0.5;
}
.method_title{
    font-size: 1.8rem;
    color: var(--black-color);
    font-weight: 700;
    text-align: center;
}
@media (max-width: 1180px){
    .pay_method_wrap{
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 768px){
    .pay_method_wrap{
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 480px){
    .pay_method_wrap{
        grid-template-columns: repeat(2, 1fr);
    }
}

.sec_story{
    display: flex;
    gap: 7.6rem;
    max-width: 128rem;
    margin: 0 auto 12rem;
    padding: 0 2rem;
    align-items: flex-start;
}
.story_img{
    max-width: 72rem;
    border-radius: clamp(1.6rem, 0.188rem + 4.71vw, 3.2rem);;
    overflow: hidden;
}
.story_img img{
    max-width: 100%;
    height: auto;
    display: block;
}
.story_text_wrap{
    max-width: 48rem;
    flex-shrink: 0;
    padding-top: 5rem;
}
.story_tag{
    font-size: 2rem;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 2rem;
}
.story_title{
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 2rem;
    line-height: 1.4;
}
.story_desc{
    font-size: 1.8rem;
    color: var(--grey-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}
.sec_story.reverse{
    flex-direction: row-reverse;
}

@media (max-width: 920px){
    .sec_story{
        flex-direction: column;
        max-width: 70rem;
        padding: 0 2rem;
    }
    .story_text_wrap{
        padding: 0 1rem
    }
    .sec_story.reverse{
        flex-direction: column;
    }
}

.feature_cards_wrap{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.feature_card_item{
    background: var(--boxBg-color);
    border-radius: 1.6rem;
    padding: 3rem 2rem;
}
.feature_card_num{
    font-size: 1.8rem;
    color: var(--main-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature_card_title{
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 0.8rem;
}
.feature_card_desc{
    font-size: 1.6rem;
    color: var(--grey-color);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .feature_cards_wrap{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .feature_cards_wrap{
        grid-template-columns: unset;
    }
}
.bank_experience{
    display: flex;
    max-width: 90rem;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 4rem;
    margin: 0 auto;
}
.exp_img{
    max-width: 49.2rem;
}
.exp_img img{
    max-width: 100%;
    display: block;
    height: auto;
}
.exp_benefits{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
    flex-shrink: 0;
}
.exp_benefit_item{
    display: flex;
    padding: 1.2rem 2rem;
    align-items: center;
    gap: 1rem;
    border-radius: 3rem;
    background: #EDF0F6;
    font-size: 1.6rem;
    font-weight: 500;
}
.exp_benefit_item svg{
    width: 1.7rem;
    height: 1.2rem;
}
@media (max-width: 920px){
    .bank_experience{
        flex-direction: column;
        max-width: 49.2rem;
        align-items: flex-start;
    }
    .exp_benefits{
        padding: 0 1.5rem;
    }
    .sec_chart.sec_exp{
        padding-top: clamp(40rem, 32.5rem + 25vw, 48.5rem);
    }
}
.sec_chart.sec_exp{
    margin-bottom: 1rem;
}
.sec_advantage{
    width: 100%;
    background: var(--boxBg-color);
    padding: 12rem 2rem 12rem;
    margin-bottom: 16rem;
}
.adv_title{
    max-width: 128rem;
    font-size: 2.4rem;
    color: var(--black-color);
    margin: 0 auto 2rem;
}
.adv_desc{
    max-width: 128rem;
    font-size: 1.8rem;
    line-height: 1.6;
    color: var(--grey-color);
    margin: 0 auto 6rem;
}

@media (max-width: 1280px) {
    .sec_advantage{
        width: 100%;
    }
}

.adv_cards_wrap{
    max-width: 128rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.adv_card_item{
    background: #FFF;
    padding: 3rem;
    border-radius: clamp(1.6rem, 0.188rem + 4.71vw, 3.2rem);
}


.adv_card_img{
    width: 5rem;
    height: 5rem;
    margin-bottom: 2rem;
}
.adv_card_img img{
    max-width: 100%;
    height: auto;
    display: block;
}




.adv_card_title{
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 0.8rem;
}
.adv_benefit_list{
    position: relative;
}
.adv_benefit_list li{
    font-size: 1.6rem;
    color: var(--grey-color);
    line-height: 1.6;
    padding-left: 1.0rem;
}
.adv_benefit_list li::after{
    content: "";
    display: inline-block;
    position: absolute;
    top: 1.1rem;
    left: 0;
    width: .3rem;
    height: .3rem;
    background: var(--grey-color);
    border-radius: 50%;
}

@media (max-width: 1024px) {
    .adv_cards_wrap{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .adv_cards_wrap{
        grid-template-columns: unset;
    }
}


/* notice */
.sec_search{
    max-width: 128rem;
    display: flex;
    justify-content: flex-end;
    margin: 0 auto;
}
.search_box{
    width: 42rem;
    height: 8rem;
    border-bottom: .2rem solid var(--black-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}
.search_box .search_inp{
    flex: 1;
    height: 100%;
    font-size: 2rem;
    color: var(--black-color);
}
.search_box .search_inp::placeholder{
    color: var(--placeholder);
}
.btn_search{
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn_search svg{
    width: 2.2rem;
    height: 2.2rem;
}

.list_wrap{
    padding: 0 2rem
}

.notice_list{
    max-width: 128rem;
    margin: 3rem auto 0;
    border-top: 1px solid var(--line-color);
}
.notice_item{
    display: flex;
    gap: 3rem;
    padding: 3rem 2rem;
    border-bottom: 1px solid var(--line-color);
}
.notice_tag{
    font-size: 2rem;
    color: var(--main-color);
    font-weight: 700;
    width: 12rem;
    flex-shrink: 0;
}
.notice_title_wrap{
    display: block;
    flex: 1;
    min-width: 0;
}
.notice_item .title{
    font-size: 2.4rem;
    color: var(--black-color);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 1.2rem;
}
.notice_item .date{
    font-size: 1.6rem;
    color: var(--grey-color);
}
@media (max-width: 768px){
    .notice_item{
        flex-direction: column;
        gap: 2rem;
    }
    .notice_tag{
        font-size: 1.6rem;
    }
    .notice_item .title{
        font-size: 2rem;
    }
    .search_box{
        width: 100%;
    }
}
.pagination{
    display: flex;
    margin-top: 5rem;
    gap: 1rem;
    justify-content: center;
}
.page-link{
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 4rem;
    height: 4rem;
    background-color: var(--boxBg-color);
    color: var(--black-color);
    font-size: 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0.8rem;
}
.page-link.is_active{
    background-color: var(--main-color);
    color: #fff;
    font-weight: 700;
    pointer-events: none;
    cursor: default;
}
.pagination .prev::after {
    content: "";
    background: url(../image/icon_prev.svg) no-repeat center center;
    width: 0.7rem;
    height: 1.2rem;
}
.pagination .next::after {
    content: "";
    background: url(../image/icon_next.svg) no-repeat center center;
    width: 0.7rem;
    height: 1.2rem;
}



.notice_wrap{
    max-width: 128rem;
    margin: 12rem auto 0;
    padding: 0 2rem;
}
.notice_header{
    border-bottom: 1px solid var(--line-color);
    padding-bottom: 4rem;
    margin-bottom: 8rem;
}
.notice_header .notice_tag{
    font-size: 1.6rem;
    margin-bottom: 2rem;
}
.notice_header .notice_title{
    font-size: clamp(2.4rem, 0.988rem + 4.71vw, 4rem);
    margin-bottom: 2rem;
}
.notice_header .notice_date{
    font-size: 1.6rem;
    margin-bottom: 2rem;
}
.notice_body{
    font-size: clamp(1.6rem, 1.247rem + 1.18vw, 2rem);
    line-height: 1.6;
}
.notice_body p{
    margin-bottom: 2rem;
}



/* 신청폼 스타일 */

.request_wrap {
    max-width: 128rem;
    padding: 0 2rem;
    margin: 0 auto;
}

.request_item {
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
    
    min-height: 7.4rem; 
    border: 1px solid var(--line-color);
    border-radius: 1.4rem;
    background-color: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}


.request_item:has(textarea.floting_inp) {
    height: 40rem;
    overflow: hidden;
}

.request_item:focus-within {
    border-color: var(--main-color);
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.25);
}

input.floting_inp {
    width: 100%;
    background: transparent;
    font-size: 2rem;
    height: 7.2rem;
    padding: 2rem 2rem 0;
}

textarea.floting_inp {
    width: 100%;
    font-size: 2rem;
    height: 100%;
    padding: 3.8rem 2rem 2rem;
    resize: none;
}



.floating_label {
    position: absolute;
    left: 2rem;
    top: 2.4rem;
    font-size: 2rem;
    color: var(--black-color);
    pointer-events: none;
    transition: all 0.2s ease;
    z-index: 1;
}

textarea.floting_inp ~ .floating_label {
    top: 2.4rem;
}

.floting_inp:focus ~ .floating_label,
.floting_inp:not(:placeholder-shown) ~ .floating_label {
    top: 1.2rem;
    font-size: 1.2rem;
    color: var(--main-color);
}



.floating_label.essential::after {
    content: '';
    display: inline-block;
    position: relative;
    top: -1rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 0.25rem;
    background: var(--alert-color);
    margin-left: 0.7rem;
}

.floting_inp:focus ~ .floating_label.essential::after,
.floting_inp:not(:placeholder-shown) ~ .floating_label.essential::after {
    display: none;
}

.floting_inp::-webkit-outer-spin-button,
.floting_inp::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"].floting_inp {
    -moz-appearance: textfield;
}

@media screen and (max-width: 480px) {
    .request_item {
        border: none;
        border-bottom: 1px solid var(--line-color);
        border-radius: 0;
        background-color: transparent;
        min-height: 6.5rem;
        margin-bottom: 2.5rem;
    }

    .request_item:has(textarea.floting_inp) {
        height: 25rem;
    }

    .request_item:focus-within {
        border-bottom: 2px solid var(--main-color);
        box-shadow: none;
    }

    input.floting_inp {
        height: 5.4rem;
        padding: 2.2rem 0 0 0;
    }

    textarea.floting_inp {
        padding: 3rem 0 0 0;
    }

    .floating_label {
        left: 0;
        top: 1.8rem;
    }

    textarea.floting_inp ~ .floating_label {
        top: 2rem;
    }

    .floting_inp:focus ~ .floating_label,
    .floting_inp:not(:placeholder-shown) ~ .floating_label {
        top: 0;
        font-size: 1.4rem;
    }

    .floating_label.essential::after {
        top: -0.6rem;
        margin-left: 0.5rem;
    }
}

.terms_box {
    display: flex;
    align-items: center;
    height: 6rem;
    border: 1px solid var(--line-color);
    background: var(--boxBg-color);
    border-radius: 1.4rem;
    padding: 0 2rem;
    margin-top: 2rem;
}

.inp_chk {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.terms_box label {
    display: inline-flex;
    align-items: center;
    font-size: 1.8rem;
    color: var(--black-color);
    cursor: pointer;
}


.custom_chk {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    margin-right: 2rem;
    transition: all 0.2s ease;
}

.custom_chk svg {
    width: 1.7rem;
    height: 1.3rem;
    transition: all 0.2s ease;
    filter: grayscale(1) opacity(0.2);
}


.inp_chk:checked + label .custom_chk svg {
    filter: none;
}

.btn_layer{
    margin-left: auto;
    font-size: 1.7rem;
    color: var(--black-color);
    border-bottom: 1px solid var(--black-color);
    flex-shrink: 0;
}

.resource_list{
    max-width: 128rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.resource_item{
    padding: 4rem 3rem;
    display: flex;
    min-height: 20rem;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 1.4rem;
    background: var(--boxBg-color);
}

@media (max-width: 1024px){
    .resource_list{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px){
    .resource_list{
        grid-template-columns: repeat(1, 1fr);
    }
    .resource_item{
        padding: 3rem 2rem;
        min-height: 14rem;
    }
}
.resource_item .title{
    font-size: 2rem;
    font-weight: 700;
    width: 100%;
    height: auto;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 보여줄 줄 수 설정 */
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (max-width: 768px) {
    .request_wrap .btn_wrap {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 100;
        padding: 2rem;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
        margin-top: 5rem;
    }
    .request_wrap .btn_wrap .btn_primary {
        width: 100%;
    }
}

.resource_item .btn_wrap{
    display: flex;
    justify-content: flex-end;
}
.btn_download{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-size: 1.5rem;
    color: var(--black-color);
    border: 1px solid var(--line-color);
    background: #FFF;
    border-radius: 5rem;
    padding: 0 1.4rem;
    height: 3.4rem;
    font-weight: 600;
}
.btn_download:hover{
    color: #FFF;
    border: 1px solid var(--main-color);
    background: var(--main-color);
}

.btn_download svg{
    width: 1rem;
    height: 1.3rem;
    stroke: var(--black-color);
}
.btn_download:hover svg{
    stroke: #FFF;
}

.payment_history_tabs{
    margin-bottom: 5rem;
}



.payment_history_wrap {
    max-width: 128rem;
    padding: 0 2rem;
    margin: 0 auto;
}

.payment_history_item {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
}

.payment_history_item .title {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--black-color);
    width: 18rem;
    flex-shrink: 0;
}

.payment_history_item .row {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex: 1;
}
.payment_history_item .column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    flex: 1;
}

.inp_box {
    position: relative;
    flex: 1;
    width: 100%;
    min-height: 6rem;
    background-color: #fff;
    border: 1px solid var(--line-color);
    border-radius: 1.4rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.inp_box.custom_select {
    flex: none;
    width: 25rem;
}
@media (max-width: 768px){
    .payment_history_item .title{
        width: 10rem;
    }
    .inp_box.custom_select{
        width: 16rem;
    }
}

.inp_box:focus-within,
.inp_box.custom_select.active {
    border-color: var(--main-color);
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.25);
}

input.default_inp {
    width: 100%;
    height: 5.8rem;
    padding: 0 2rem;
    font-size: 1.6rem;
    font-weight: 500;
    border: none;
    background: transparent;
    outline: none;
    box-shadow: none;
}

.select_trigger {
    width: 100%;
    height: 5.8rem;
    padding: 0 4rem 0 2rem;
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
    font-size: 1.6rem;
    font-weight: 500;
}

.inp_box .floating_label {
    display: none;
}

.select_trigger::after {
    content: '';
    position: absolute;
    width: 1.6rem;
    height: 0.9rem;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    background: url('../image/icon_arrow_down.svg') no-repeat center center;
    transition: transform 0.3s;
}
.inp_box.custom_select.active .select_trigger::after {
    transform: translateY(-50%) rotate(180deg);
}
.select_options {
    display: none;
    position: absolute;
    top: 6rem;
    left: -1px;
    width: calc(100% + 2px);
    border: 1px solid var(--line-color);
    background: #fff;
    border-radius: 1.4rem;
    padding: 1rem 0;
    z-index: 10;
}
.inp_box.custom_select.active .select_options { display: block; }
.select_options li { padding: 1rem 2rem; font-size: 1.6rem; cursor: pointer; }
.select_options li:hover { background: #f5f5f5; }
.hidden_select { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

@media (max-width: 768px) {
    .hidden_select {
        appearance: none;
        -webkit-appearance: none;
        width: 100%;
        height: 6.4rem;
        font-size: 2rem;
        background: #fff url('../image/icon_arrow_down.svg') no-repeat right center;
        background-size: 1.6rem;
        color: var(--text-color);
        padding-top: 1.2rem;
    }
}



/* 금액 우측 '원' 텍스트 고정 */
.amount_box input.default_inp { padding-right: 4rem; }
.unit_text { position: absolute; right: 2rem; top: 50%; transform: translateY(-50%); font-size: 1.6rem; font-weight: 500; color: #333; pointer-events: none; }

/* 기본 스피너 제거 */
input.default_inp::-webkit-outer-spin-button,
input.default_inp::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
input[type="number"].default_inp { -moz-appearance: textfield; }


@media screen and (max-width: 768px) {
    .payment_history_item {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 2.5rem;

    }
    .payment_history_item .title {
        display: none;
    }
    .payment_history_item .row {
        flex-direction: column;
        align-items: flex-start;
        gap: 2.5rem;
        width: 100%;
    }

    .inp_box {
        border: none;
        border-bottom: 1px solid var(--line-color);
        border-radius: 0;
        min-height: 5.5rem;
    }
    .inp_box.custom_select {
        width: 100%;
    }

    .inp_box:focus-within,
    .inp_box.custom_select.active {
        border-bottom: 2px solid var(--main-color);
        box-shadow: none;
    }

    input.default_inp{
        height: 6.4rem;
        padding: 1.2rem 0 0 0; 
        font-size: 2rem;
    }
    .select_trigger {
        height: 6.4rem;
        padding: 0 0 0 0; 
        font-size: 2rem;
    }
    .select_trigger::after {
        top: 50%;
        right: 0;
    }
    .unit_text {
        top: 50%;
        right: 0;
        font-size: 2rem;
    }
    .select_options {
        top: 6.6rem;
        left: 0;
        width: 100%;
        border-radius: 0 0 1.4rem 1.4rem;
    }
    .select_options li{
        font-size: 2rem;
    }

    .inp_box .floating_label {
        display: block;
        position: absolute;
        left: 0;
        top: 1.8rem;
        font-size: 2rem;
        font-weight: 500;
        color: #999;
        pointer-events: none;
        transition: all 0.2s ease;
        z-index: 1;
    }

    input.default_inp::placeholder {
        color: transparent;
    }

    .inp_box:focus-within .floating_label,
    .inp_box:has(input:not(:placeholder-shown)) .floating_label {
        top: 0;
        font-size: 1.4rem;
        color: var(--main-color);
    }

    .inp_box:has(input:not(:placeholder-shown)) .floating_label {
        color: #666;
    }
}



.date_box {
    padding-left: 4rem;
}
.btn_calendar {
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    background: url('../image/icon_calendar.svg') no-repeat center center;
    background-size: contain;
    background-color: transparent;
    cursor: pointer;
    z-index: 2;
}
@media (max-width: 768px) {
    .btn_calendar{
        top: 60%;
        left: 0;;
    }
}

/* 보안문자 */
.captcha_row {
    gap: 1.2rem;
}

.captcha_img_zone {
    width: 25rem;
    height: 6rem;
    background-color: #eee;
    overflow: hidden;
    flex-shrink: 0;
}
.captcha_img_zone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.captcha_box {
    display: flex;
    align-items: center;
}
.captcha_box input.default_inp {
    padding-right: 10rem;
}

.btn_refresh {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    height: 4.4rem;
    padding: 0 1.4rem;
    background-color: var(--buttonBg-color);
    color: var(--main-color);
    font-size: 1.4rem;
    font-weight: 500;
    border-radius: 0.6rem;
    cursor: pointer;
    white-space: nowrap;
}


@media screen and (max-width: 768px) {
    .date_box {
        padding-left: 2.5rem;
    }
    .icon_calendar {
        top: 60%;
        left: 0;
    }

    .payment_history_item .row.captcha_row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .captcha_img_zone {
        width: 100%;
        height: 8rem;
    }

    .btn_refresh {
        right: 0;
        background-color: transparent;
        border-color: transparent;
        padding: 0;
    }

    .captcha_box .floating_label {
        left: 0;
    }

    .captcha_box input.default_inp {
        padding: 2.2rem 7rem 0 0 !important;
    }
}



/* 달력 전체 팝업 박스 */
#ui-datepicker-div {
    display: none;
    padding: 1.5rem;
    border: 1px solid var(--line-color, #e5e5e5);
    background: #fff;
    border-radius: 1.4rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    z-index: 100 !important;
    font-family: inherit;
    width: 28rem !important;
}

/* 달력 상단 헤더 (연도, 월, 이전/다음 버튼) */
.ui-datepicker-header {
    position: relative;
    padding: 0.5rem 0;
    margin-bottom: 1rem;
    text-align: center;
}
.ui-datepicker-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--black-color, #333);
}

/* 이전 / 다음 달 이동 버튼 */
.ui-datepicker-prev, .ui-datepicker-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    width: 2.4rem;
    height: 2.4rem;
    text-align: center;
    line-height: 2.4rem;
    font-size: 1.2rem;
    color: #666;
    z-index: 5;
}
.ui-datepicker-prev { left: 0; }
.ui-datepicker-next { right: 0; }
.ui-datepicker-prev::before { content: '◀'; }
.ui-datepicker-next::before { content: '▶'; }
.ui-datepicker-header .ui-icon { display: none; } /* 구글 기본 아이콘 숨김 */

/* 달력 날짜 테이블 테이블 */
.ui-datepicker-calendar {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
.ui-datepicker-calendar th {
    text-align: center;
    padding: 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 500;
    color: #999;
}
.ui-datepicker-calendar td {
    padding: 0.2rem 0;
    text-align: center;
}

/* 날짜 링크(글자) 기본 스타일 */
.ui-datepicker-calendar a {
    display: block;
    width: 3.2rem;
    height: 3.2rem;
    margin: 0 auto;
    line-height: 3.2rem;
    text-decoration: none;
    font-size: 1.4rem;
    color: #333;
    border-radius: 50%;
    transition: background 0.2s;
}
/* 오늘 날짜 표시 */
.ui-datepicker-today a {
    background-color: #f5f5f5;
    font-weight: 700;
}
/* 날짜 마우스 호버 및 선택 시 하이라이트 */
.ui-datepicker-calendar a:hover,
.ui-datepicker-current-day a {
    background-color: var(--main-color, #000);
    color: #fff;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .btn_calendar {
        display: none !important;
    }

    .date_box {
        padding-left: 0 !important;
    }

    .date_box .floating_label {
        left: 0 !important;
    }

    #ui-datepicker-div {
        display: none !important;
    }
}

@media (max-width: 768px){
    .payment_history_wrap .btn_wrap{
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1;
        padding: 2rem;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
        margin-top: 5rem;
    }
    .payment_history_wrap .btn_wrap .btn_primary{
        width: 100%;
    }
}

.result_wrap{
    display: none;
    max-width: 128rem;
    margin: 8rem auto 0;
    padding: 0 2rem;
}
.result_wrap.is_active{
    display: block;
}
.result_wrap .pc_view{
    width: 100%;
    display: block;
    padding: 2rem;
    border-radius: 1.4rem;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.50);
}
.result_wrap .mo_view{
    display: none;
    padding: 3rem 0;
    border-top: 1px solid var(--line-color);
    border-bottom: 1px solid var(--line-color);
}

.result_table{
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
}
@media (max-width: 1024px){
    .result_wrap .pc_view{
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 1rem;
    }
    .result_table{
        min-width: 80rem;
    }
}


.result_table th,
.result_table td{
    height: 6rem;
    padding: 0 1.2rem;
    text-align: center;
    font-size: 1.6rem;
    border-bottom: 1px solid var(--line-color);
    color: var(--grey-color);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.result_table thead th{
    border-bottom: 1px solid var(--black-color);
    font-weight: 500;
    color: var(--black-color);
}
td.result_amount{
    text-align: right;
}
.result_amount .unit{
    text-align: right;
    padding-left: 0.6rem;
}
.btn_detail {
    height: 3.5rem;
    padding: 0 1.4rem;
    background-color: var(--buttonBg-color);
    color: var(--main-color);
    font-size: 1.5rem;
    font-weight: 500;
    border-radius: 0.6rem;
    white-space: nowrap;
}
.result_card_list{
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.result_card_list .btn_result{
    width: 100%;
    border-radius: 1.4rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.result_card_body{
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-start;
}
.result_card_body span{
    font-size: 1.6rem;
    color: var(--grey-color);
}
.result_card_body span.store{
    color: var(--black-color);
    font-weight: 600;
}
.result_card_status{
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-end;
}
.result_card_status span{
    font-size: 1.6rem;
    color: var(--grey-color);
    text-align: right;
}
.result_card_status span .unit{
    padding-left: 0.4rem;
    color: var(--black-color);
}
.result_card_status span.price{
    color: var(--black-color);
    font-weight: 600;
}

.result_card_info{
    display: flex;
    gap: 1rem;
    align-items: center;
}
.result_card_info span{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.result_card_info span::after{
    content: '';
    display: inline-block;
    background: var(--line-color);
    width: 1px;
    height: 1rem;
}
.result_card_info span:last-of-type::after{
    display: none;
}


@media (max-width: 768px){
    .result_wrap .pc_view{
        display: none;
    }
    .result_wrap .mo_view{
        display: block;
    }
}


.hint_text{
    font-size: 1.5rem;
    text-align: center;
    margin-top: 5rem;
    color: var(--grey-color);
    line-height: 1.6;
}


.receipt_popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    z-index: 1000;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    box-sizing: border-box;

    display: none; 
}
.receipt_popup.is_show {
    display: flex;
    justify-content: center;
    align-items: center;
}



.receipt_wrap {
    width: 100%;
    max-width: 45rem;
    background: #ffffff;
    padding: 4rem 2.4rem;
    box-sizing: border-box;
    box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.15);
}
.popup_header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFF;
    margin-bottom: 4rem;
}
.receipt_title {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--black-color);
}

.receipt_total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 0.2rem solid var(--black-color);
    margin-bottom: 3rem;
}
.receipt_total .label {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black-color);
}
.receipt_total .price {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--black-color);
}
.receipt_total .price span {
    font-size: 1.8rem;
    font-weight: 500;
}

/* 상세 내역 리스트 */
.receipt_list {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    padding: 0;
    margin: 0 0 4rem 0;
    list-style: none;
}
.receipt_list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.receipt_list li.align_top {
    align-items: flex-start;
}

.receipt_list .item_label {
    font-size: 1.6rem;
    color: var(--black-color);
    font-weight: 500;
    flex-shrink: 0;
    white-space: nowrap;
}
.receipt_list .item_data {
    font-size: 1.6rem;
    color: var(--black-color);
    font-weight: 500;
    text-align: right;
    max-width: 65%;
}

.receipt_list .font_eng {
    font-family: 'Helvetica', 'Arial', sans-serif;
    letter-spacing: -0.05rem;
}
.receipt_list .break_all {
    word-break: break-all;
    line-height: 1.4;
}

.receipt_btn_area {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}
.btn_print {
    width: 100%;
}
.receipt_wrap .btn_close{
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
}
.receipt_wrap .btn_close svg {
    width: 1.6rem;
    height: 1.6rem;
}
@media (max-width: 480px){
    .receipt_popup{
        padding: 0;
        width: 100%;
        height: 100%;
    }
    .receipt_popup.is_show{
        align-items: flex-start;
    }
    .receipt_wrap{
        width: 100%;
        height: 100%;
        padding: 4rem 2rem 0;
        display: flex;
        flex-direction: column;
    }
    .popup_header{
        flex-shrink: 0;
        margin-bottom: 3rem;
    }
    .receipt_total {
        flex-shrink: 0;
    }
    .receipt_list{
        flex-grow: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 12rem; 
        margin: 0;
    }
    .receipt_btn_area{
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 0 2rem 2rem;
        background: linear-gradient(to top, #ffffff 80%, rgba(255, 255, 255, 0) 100%);
    }
}
@media print {
    .receipt_btn_area, 
    .popup_header .btn_close {
        display: none !important;
    }
    
    .receipt_wrap {
        padding: 2cm !important;
        box-shadow: none !important;
        border: none !important;
        background: #fff !important;
        max-width: 100% !important;
    }
}
#selectPay {
    display: none;
}
#selectPay.is_show {
    display: flex;
}
.pay_logo_list{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.2rem;
    width: 100%;
}
@media (max-width: 1160px){
    .pay_logo_list{
        grid-template-columns: repeat(5, 1fr);
    }
}
@media (max-width: 960px){
    .pay_logo_list{
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 768px){
    .pay_logo_list{
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 480px){
    .pay_logo_list{
        grid-template-columns: repeat(2, 1fr);
    }
}
.pay_logo_list li{
    display: none;
    align-items: center;
    height: 4.6rem;
    gap: 0.8rem;
}
.pay_logo_list li.is_show {
    display: flex;
}
.pay_logo_list label img{
    zoom: 0.5;
}