.c-green {
    color: #00A94F !important;
}
.h-dt {
    display: none;
}
.h-mb {
    display: block;
}
/*================ tab ==================*/
.recommend-group .recommend {
    display: none;
}
.recommend-group .recommend.active {
    display: block;
}
.recommend-group .tab-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}
.tab-group .tab-btn {
    padding: 8px 24px;
    border-radius: 8px;
    border: 1px solid #999999;
    color: #333333;
    background-color: #ffffff;
    transition: all .3s ease-in-out;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    cursor: pointer;
}
.tab-group .tab-btn.is-active {
    border: 1px solid #00A94F;
    color: #00A94F;
    background-color: rgba(102, 203, 149, 0.12);
}

/*================ popup ==================*/
.sc-content:has(.popup-custom) {
    background-color: #ffffff;
    border-radius: 8px;
}
.popup-custom .mfp-close {
    background-color: #00A94F;
    width: 40px;
    height: 40px;
    top: -18px;
    right: -18px;
}
.popup-custom .kplus-icon {
    width: 32px;
    height: 32px;
    margin-left: 8px;
}
.popup-custom .popup-header {
    font-size: 26px;
    font-weight: 600;
    line-height: 39px;
    color: #333333;
    text-align: center;
    margin-bottom: 32px;
}
.popup-custom .popup-header .c-green {
    color: #00A94F;
}
.popup-custom .mfp-close:before, 
.popup-custom .mfp-close:after {
    width: 22px;
    height: 3px;
    border-radius: 8px;
}
.popup-custom .image-step {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
}
.item-step-inside-popup {
    width: 100%;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}
.item-step-inside-popup img {
    width: 100%;
}
.popup-custom .item-step-inside-popup small {
    font-size: 13px;
    font-weight: 600;
    line-height: 20px;
}
.popup-custom .item-step-inside-popup p {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}
.custom-btn-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 32px;
    gap: 24px;
}
.btn.btn-popup-green {
    padding: 9px 32px;
    background-color: #00A94F;
    color: #ffffff;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
}
.btn.btn-popup-green:hover,
.btn.btn-popup-green:focus {
    background-color: #00A94F;
    color: #ffffff;
    outline: unset;
    outline-offset: unset;
}
.btn-text-link-green {
    color: #00A94F !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 24px !important;
    text-decoration: underline !important;
}

.info .content-container .content-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-top: 16px;
}
.info .content-container .content-point img {
    width: 50px;
    height: 50px;
}
.wrapper-text-content .tag {
    margin-left: 8px;  
    padding: 2px 12px !important;
    font-size: 13px !important;
    line-height: 20px;
    font-weight: 600 !important;
}
.content-container .content-point .text-gold {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #FAC661;
}
@media screen and (min-width: 768px) {
    .sc-recommend .recommend-group .layout {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .sc-recommend .recommend-group .image img {
        max-height: 390px;
    }
}
@media screen and (max-width: 767px) {
    .h-dt {
        display: block;
    }
    .h-mb {
        display: none;
    }
    .recommend-group .tab-group {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .btn.btn-popup-green {
        width: 100%;
    }
    .info .content-container .content-point img {
        width: 32px;
        height: 32px;
    }
    .wrapper-text-content .text-gold:has(.tag) {
        white-space: nowrap;
    }
    .wrapper-text-content .text-light {
        line-height: 26px;
    }
}