/*
Theme Name: TravelWP Child
Theme URI: http://travelWP.physcode.com/
Author: Physcode
Author URI: http://physcode.com/
Description: Description
Version: 1.0.1.1
Template:  travelwp
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: travelWP
Tags: two-columns, left-sidebar, right-sidebar, editor-style, rtl-language-support, sticky-post, theme-options, translation-ready, translation-ready

 */

.hidden {
    display: none;
}
//widget login
  .widget_thim-login .user-name {
      position: relative;
  }
.widget_thim-login .user-name:hover .author {
    visibility: visible;
    opacity: 1;
    top: 30%;
}
.widget_thim-login .author {
    position: absolute;
    right: 100%;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
}
.widget_thim-login .avatar {
    width: 30px;
    height: 30px;
    background-color: #ccc;
}
.widget_thim-login:hover ul.user-info {
    display: block;
}
.widget_thim-login ul.user-info {
    margin: 0;
    list-style: none;
    background: #fff;
    margin-left: -150px;
    z-index: 99999;
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 210px;
}
.widget_thim-login ul.user-info .menu-item:hover {
    background-color: rgba(3, 44, 75, 0.2);
}
.widget_thim-login ul.user-info .menu-item a {
    padding: 15px 20px;
    display: block;
    color: #202121;
}
/* widget partners*/
.thim-partners-inner{
    display: grid;
    grid-template-columns:var(--thim-ekits-partners-columns,repeat(4, 1fr));
    column-gap: var(--thim-ekits-partners-column-gap, 20px);
    row-gap: var(--thim-ekits-partners-row-gap, 20px);
}
.thim-partners-item{
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
/* widget video*/
.thim-video-inner{
    display: grid;
    grid-template-columns:var(--thim-ekits-video-columns,repeat(4, 1fr));
    column-gap: var(--thim-ekits-video-column-gap, 20px);
    row-gap: var(--thim-ekits-video-row-gap, 20px);
}
.thim-video-inner .thim-video-item{
    overflow: hidden;
    position: relative;
    border-radius: 15px;
}
.thim-video-inner .video-thumbnail {
    position: relative;
    cursor: pointer;
}
.thim-video-inner .video-thumbnail::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1E1E1E;
    z-index: 1;
    border-radius: 15px;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}
.thim-video-inner .video-thumbnail:hover::before{
    opacity: 1;
}
.thim-video-inner .video-thumbnail:hover .video-info-footer{
    opacity: 1;
}
.thim-video-inner .video-thumbnail:hover .video-description{
    opacity: 1;
    z-index: 2;
}
.thim-video-inner .video-thumbnail:hover .video-name{
    bottom:32px;
    left: 12px;
    right: 12px;
    z-index: 2;
    transform: translateX(0);
}
.thim-video-inner .video-thumbnail:hover   .play-button{
    right: 13px;
    bottom: 13px;
    top: auto;
    left: auto;
    z-index: 2;
    transform: translate(0);
}
.thim-video-inner  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-description{
    position: absolute;
    opacity:0;
    top:39px;
    left:12px;
    right:12px;
    transition: all 0.3s ease-in-out;
    color: #fff;
}
.thim-video-inner .video-info-footer{
    position: absolute;
    transition: all 0.3s ease-in-out;
    display: flex;
    gap: 10px;
    left: 12px;
    bottom: 6px;
    z-index: 2;
    opacity: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}
.thim-video-inner .video-info-footer img{
    width:20px;
    height:20px;
    object-fit: cover;
    border-radius: 50%;
    overflow: hidden;
}
.thim-video-inner .video-name{
    position: absolute;
    bottom: 11px;
    left:50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
    z-index: 2;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
}
.play-button-no,
.thim-video-inner .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 11px;
    width: 30px;
    height: 30px;
    color: #1E1E1E;
    background: #fff;
    border-radius: 50%;
    padding: 5px;
    text-align: center;
}
.thim-video-inner .play-button:hover{
    background: #155C6F;
    color: #fff;
}
.video-thumbnail-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.video-hover-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    padding: 10px;
    text-align: center;
}

.video-thumbnail-wrapper:hover .video-hover-info {
    opacity: 1;
}

.video-logo {
    max-width: 50px;
    margin-bottom: 10px;
}

.video-logo-name {
    font-size: 16px;
    font-weight: bold;
}

.video-description {
    font-size: 14px;
    margin-top: 5px;
}

/* Video Popup */
.video-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
    background: #000;
    padding: 20px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

.video-popup-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-popup iframe {
    width: 100%;
    height: 400px;
}

.close-popup {
    position: absolute;
    top: -12%;
    right: -8%;
    font-size: 32px;
    cursor: pointer;
    color: #ffffff;
}

/* widget review*/
.review-widget-container {
    background: #F5F5F5;
    padding: 16px 23px 24px;
    border-radius: 15px;
}

.review-widget-container h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 17px;
    line-height: 1.2;
    color:#AEAEB2;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}
@media (max-width:880px){

    .review-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 26px;
    }
}

.review-card {
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    border:1px solid #D9D9D9;
    text-align: left;
}

/* .review-stars {
    color: gold;
    font-size: 18px;
} */
.review-stars .star-rating{
    float:left;
    height: 2em;
    line-height: 1;
    font-size: 1em;
    width: 8.4em;
}
.review-stars  .star-rating:before{
    color:#2C2C2C !important;
    font-size: 20px;
}
.review-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    color:#1E1E1E;
}

.review-body {
    color: #1E1E1E;
}

.review-footer {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.review-avatar {
    width: 40px;
    height: 40px !important;
    border-radius: 50%!important;
    margin-right: 12px;
    object-fit: cover;

}

.review-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.review-name {
    font-weight: 600;
    font-size: 16px;
    color:#757575;
}

.review-date {
    color: #B3B3B3;
}
/* widget faq*/

.faq-container {
    display: flex;
    gap: 20px;
}

.faq-column {
    width: 50%;
}
.faq-item{
    border:1px solid #D9D9D9;
    background:#F5F5F5;
    padding:16px;
    margin-bottom:16px;
    border-radius:8px;
}

.faq-title {
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color:#1E1E1E;
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-content {
    display: none;
    margin-top:8px;
    color: #1E1E1E;
}
.faq-item.active {
    background:#fff;
}
.faq-item.active .faq-content {
    display: block;
}
.faq-item:first-child .faq-content {
    display: block;
}
@media (max-width: 768px) {
    .faq-container {
        flex-direction: column;
    }
    .faq-column {
        width: 100%;
    }
}
/* widget button*/
.custom-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.custom-popup-background {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.custom-popup-container {
    position: relative;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; height: 100%;
}
.custom-popup-container-ct {
    position: relative;
}
.custom-popup-content {
    background: white;
    padding: 30px;
    max-width: 1048px;
    max-height:600px;
    overflow:auto;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.button-popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-inner {
    background: #fff;
    padding: 70px 40px 20px 20px;
    position: relative;
    max-width: 500px;
    max-height: 600px;
    overflow-y: auto;
    border-radius:20px;
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    z-index:9999;
}
.elementor-popup-content{
    position: relative;
}
@media (max-width:767px){
    .popup-inner {
        max-width: 100%;
        max-height:100%;
        padding: 70px 30px 20px 20px;
        border-radius:0;
    }
    .elementor-popup-content {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 0;
        height: 100%;
        width: 100vw;
        margin: 0;
        max-width: none;
        max-height: none;
        overflow: auto;
        overscroll-behavior: contain;
    }
}
/* varibale product*/
.variations_form .tabs {
    display: flex;
    gap:12px;
    margin-bottom: 22px;
}

.variations_form .tab {
    padding: 10px 27px;
    height:40px;
    border: 1px solid #EEEEEE;
    background: #EEEEEE;
    text-transform: capitalize;
    font-weight: 700;
    font-size:14px;
    line-height: 1;
    cursor: pointer;
    border-radius:12px;
    color:#54565A;
}
/* .variations_form .tab:last-child {
    display: flex;
    color:#fff;
    gap: 4px;
    align-items: center;
    background:#155C6F;
    border-radius:100px;
    border-color:#155C6F;
} */
/* .variations_form .tab:first-child{
    border-radius: 100px 0 0 100px;
}
.variations_form .tab:nth-child(2){
    border-radius: 0 100px 100px 0;
} */
.variations_form .tab.active {
    background: #00A899;
    color: #fff;
    border-color:#00A899;
}

.button-grid {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    column-gap:14px;
    row-gap:14px;
}
.button-grid.no-variation{
    grid-template-columns: repeat(1, 1fr);
    column-gap:0;
    row-gap:0;
}
.button-grid.active {
    display: grid;
    transition:all 3s ease;
}

.package-button {
    background: #FAF5E2;
    color: #fff;
    border: 1px solid  transparent;
    padding: 34px 18px 18px 18px;
    border-radius: 15px;
    cursor: pointer;
    text-align: left;
    position: relative;
}

.package-button:hover {
    border: 1px solid  #00A899;
    background: #00A899;
}
.package-button.active {
    border: 1px solid  #00A899;
    color: #fff;
    background: #00A899;
}
.package-button:hover .package-info .price,
.package-button:hover .package-info .data-amount,
.package-button:hover .package-info .details ul li label,
.package-button:hover .package-info .details ul li,
.package-button.active .package-info .price,
.package-button.active .package-info .data-amount,
.package-button.active .package-info .details ul li,
.package-button.active .package-info .details ul li label{
    color: #fff;
}

.package-button:hover .package-info > li:first-child,
.package-button.active .package-info > li:first-child{
    border-color:#fff;
}
.badges {
    padding: 0px 8px;
    color: white;
    font-weight: bold;
    border-radius: 15px 15px 0 0;
    text-align: center;
    font-size: 13px;
    position: absolute;
    width: 101%;
    left: -1px;
    top: -1px;
}
.badge-popular {
    background-color: #1bd4c4;
}
.badge-value {
    background-color: #1d7eff;
}
.badge-speed {
    background-color: #f26522;
}
.single_variation_wrap .quantity,
.single_add_to_cart_button.disabled{
    display:none !important;
}
.tab-content{
    display:block;
    width:100%;
}
.details {
    font-size: 14px;
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
}
.single_variation_wrap {
    display: none !important;
}
.package-info ul,
.package-info{
    list-style:none;
    padding-left:0;
    margin:0;
    display: block;
    width: 100%;
}
.package-info li{
    display:flex;
    justify-content: space-between;
    align-items: center;
}
.package-info > li:first-child{
    align-items: flex-end;
    padding-bottom:10px;
    margin-bottom:14px;
    border-bottom: 0.75px solid #54565A;
}

.package-info .data-amount {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    color:#54565A;
}
.package-info  ins .woocommerce-Price-amount,
.package-info .price{
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    color:#00A899;

}
.package-info  del {
    text-decoration:none;
}
.package-info  del  .woocommerce-Price-amount{
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color:#D9D9D9;
    text-decoration: line-through;
}

.package-info .price{
    display: flex;
    flex-direction: column;
    gap:6px;
    text-align: right;
}
.package-info .details ul li{
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    margin-bottom:8px;
    color:#54565A;
}
.package-info .details ul li:last-child{
    margin-bottom:0px;
}
.package-info .details ul li label{
    color:#54565A;
    font-weight: 400;
    max-width: 100px;

}
.package-info .details ul li svg{
    border-radius:100%;
}
.package-info .details ul li span{
    gap:10px;
    display:flex;
    justify-content: space-between;
    align-item:center;
}
body .thim-ekit-single-product__add-to-cart form.cart {
    column-gap: 10px;
    display: flex;
    flex-direction: column;
}
.no-package-available{
    text-align: center;
    padding: 40px;
    background: #FAF5E2;
    margin-bottom: 20px;
    border-radius: 12px;
}
.no-package-available p{
    margin: 20px 3rem 0;
}
.no-package-available svg{
    float:right;
}
.no-package-available  h3{
    margin:0;
}
@media (max-width:1024px){
    .no-package-available p{
        margin: 20px 0 0;
    }
}
@media (max-width:767px){
    .no-package-available{
        text-align:left;
        margin: 20px 0 0;
    }
    .button-grid {
        grid-template-columns: repeat(2,  minmax(0, 1fr));
        column-gap:14px;
        row-gap:14px;
    }
    .variations_form .tabs {
        gap: 5px;
    }
    .variations_form .tab{
        padding: 5px 12px;
        font-size: 12px;

    }
    .package-info .data-amount{
        font-size:16px;
    }
    .package-info .price{
        font-size:18px;
    }
    .package-button{
        padding: 24px 8px 18px 8px;
    }
    .badges {
        padding: 3px 8px;
        font-size: 10px;
        line-height: 1.1;
    }
    .package-info .details ul li,
    .package-info .details ul li label{
        font-size:12px;
    }
    .no-package-available h3{
        font-size:28px;
    }
}
/* plan-detail*/

.plan-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.plan-title {
    font-size: 28px;
    font-weight: 700;
    text-align:center;
    color:#1E1E1E;
    margin: 0 0 20px;
}
.plan-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.plan-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.plan-icon {
    position:relative;
    font-size:0;
    width: 30px;
    height: 30px;
    border-radius:100%;
}
.plan-icon:before {
    position: absolute;
    content: "";
    width: 30px;
    height: 30px;
    border-radius:100%;
}
.plan-item-content{
    width: calc(100% - 50px);
}
.provider .plan-icon:before {
    background-image: url('./images/provider.png');
}
.network .plan-icon:before {
    background-image: url('./images/network.png');
}
.supported .plan-icon:before {
    background-image: url('./images/supported.png');
}
.hotspot_tethering .plan-icon:before {
    background-image: url('./images/hotspot.png');
}
.ekyc_identity .plan-icon:before {
    background-image: url('./images/eKYC.png');
}
.plan-label {
    font-size:16px;
    line-height:1.4;
    font-weight: 600;
    color:#000000;
}
.plan-text {
    flex: 1;
    color: #8E8E93;
}
.plan-text ul {
    margin: 5px 0;
    padding-left: 20px;
}
/* checkout page */
.woocommerce-checkout{
    background:#F5F5F5;
}
.woocommerce-form-login-toggle .woocommerce-info{
    border-top: 0;
    padding: 0;
    margin: 0;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    color:#1E1E1E;
    background: transparent !important;
}
.open-login-popup{
    color:#00A899;
    text-decoration:underline;
}
#mailpoet_woocommerce_checkout_optin_present_field,
.woocommerce-form-login-toggle .woocommerce-info:before{
    display:none;
}
#wc-stripe-express-checkout-button-separator,
#wc-stripe-express-checkout-element{
    width:100%;
}
body.woocommerce-checkout .woocommerce form.checkout {
    margin: 0 ;
}
.order-wrapper{
    --phys-bg-order-cart:#fff;
    --phys_border_radius-item-big:10px;
    margin-bottom:16px;
    padding:20px 15px !important;
    overflow:hidden;
}
.woocommerce-checkout-review-order-detail .cart-contents .cart-item ul{
    margin:0;
    color:#fff;
    list-style:none;
}
.woocommerce-checkout-review-order-detail .cart-contents .cart-item{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom:16px;
    margin-bottom:16px;
    border-bottom:1px solid  #D9D9D9;
}
.woocommerce-checkout-review-order-detail .cart-contents .cart-item .product-total li,
.woocommerce-checkout-review-order-detail .cart-contents .cart-item li {
    margin-bottom:14px;
    font-size:16px;
    font-weight:400;
    line-height:1.4;
}
.coupon_code-text,
.woocommerce-checkout-review-order-detail .cart-contents .cart-item .product-name li {
    font-size:14px;
    font-weight:500;
    line-height:1.4;
    color:#54565A;
}
.woocommerce-checkout-review-order-detail .cart-contents .cart-item .product-name li:last-child {
    margin-bottom:0px;
}
.cart-subtotal .woocommerce-Price-amount,
.woocommerce-checkout-review-order-detail .cart-contents .cart-item .product-total li {
    font-size:14px;
    font-weight:600;
    line-height:1.4;
    text-align:right;
    color:#00A899;
}
.woocommerce-checkout-review-order-detail .cart-contents .cart-item .product-thumbnail{
    display:block;
    width:100%;
    background:#F5F5F5;
    padding:8px 12px;
    border-radius:8px;
    margin-bottom:20px;
}
.woocommerce-checkout-review-order-detail .cart-contents .cart-item  img{
    width:25px;
    height:25px;
    object-fit: cover;
    border-radius:100%;
    margin-right:5px;
}
.woocommerce-checkout-payment ul li{
    border: 1px solid #EEEEEE;
    background:#fff;
    border-radius:8px;
    margin-bottom:8px !important;
    padding:15px 12px;
}
.woocommerce-checkout-payment ul li:last-child{
    margin-bottom:18px !important;
}
.woocommerce-checkout-payment ul li label{
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    color:#1E1E1E;
}
.woocommerce-checkout-payment ul li .payment_box{
    margin:0!important;
    border: 0 !important;
    padding: 0 !important;
    background-color: #fff !important;
}
.woocommerce-checkout-payment ul li .payment_box fieldset{
    margin:0!important;
    border: 0 !important;
    padding: 0 !important;
}
.woocommerce-checkout-payment ul li .payment_box:before{
    display:none!important;
}
.order-coupon .woocommerce-form-coupon{

    padding-bottom:16px;
    margin-bottom:16px;
    border-bottom:1px solid  #D9D9D9;
}
.order-coupon .woocommerce-form-coupon  .form-row-first,
.order-coupon .woocommerce-form-coupon {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.order-coupon .woocommerce-form-coupon  .form-row-first{
    float:unset;
    width:70%;
    margin-bottom:0;
}
.order-coupon .woocommerce-form-coupon  .form-row-first .button,
.order-coupon .woocommerce-form-coupon  .form-row-first input{
    height:22px;
    border-radius:15px;
    padding: 5px;
}

.order-coupon .woocommerce-form-coupon  .form-row-first .button{
    margin-left:5px;
    font-size:14px;
    font-weight:400;
}
.cart-subtotal{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color:#000;
}
.cart-discount >span,
.cart-subtotal > span{
    font-size:14px;
    font-weight:500;
    line-height:1.4;
    color:#54565A;
}
.cart-discount >span:last-child{
    float:right;
}
.order-total{
    padding-top:16px;
    margin-top:16px;
    border-top:1px solid  #D9D9D9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color:#000;
}
.order-total> span{
    font-size:16px;
    font-weight:600;
    line-height:1.2;
    color:#54565A;
}
.order-total strong {
    font-weight:700;
    font-size:16px;
    color:#00A899;
}
body .woocommerce #payment #place_order {
    width: 100%;
    float: left;
    --phys-body_color_primary:#3C3D44;
    margin:0;
    padding: 8px 25px;
    --phys_font_button-font-size:14px;
}
body .woocommerce #payment #place_order:hover {
    --phys-body_color_second:#00A899;
}
.heading-details{
    margin-bottom:20px;
    position: relative;
    display: flex;
    align-items: center;
}
.heading-details span{
    color:#00A899;
    font-size:24px;
    font-weight:700;
    line-height:1.2;
    margin-right: 8px;
}
body.woocommerce-checkout .woocommerce .checkout .heading-details .heading-details-right #order_review_heading,
body.woocommerce-checkout .woocommerce .checkout .heading-details .heading-details-right h3{
    font-size:24px;
    font-weight:700;
    line-height:1.2;
    color:#1E1E1E;
    --phys-heading-color:#1E1E1E;
    margin: 0 !important;
}
.heading-details .heading-details-right p{
    color:#AEAEB2;
}
body.woocommerce-checkout .checkout .woocommerce-billing-fields h3{
    margin-bottom:0px !important;
}
body.woocommerce-checkout:not(.logged-in) #billing_email_field {
    margin-bottom:0px !important;
}
body.woocommerce-checkout:not(.logged-in) .col-2 .heading-details{
    margin-top: 36px;
}
.col-billing,
.col-payment{
    background:#fff;
    margin-bottom:16px;
    border-radius: 10px;
    padding:20px 15px;
    overflow:hidden;
}
.order-coupon .woocommerce-form-coupon .form-row-first{
    position:relative;
}
.order-coupon .woocommerce-form-coupon .form-row-first input{
    background: #F5F5F5;
    padding: 4px 80px 4px 8px;
    height:auto;
    border:0;
}
.order-coupon .woocommerce-form-coupon .form-row-first input:focus{
    outline-color:#03DAC6;
}
.order-coupon .woocommerce-form-coupon .form-row-first .button{
    position:absolute;
    top:50%;
    right: 8px;
    transform:translateY(-50%);
    background:#00A899;
    color:#fff;
}
@media (max-width:767px){
    body.woocommerce-checkout .checkout .row {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    body.woocommerce-checkout .checkout .row:before{
        display:none !important;
    }
    body.woocommerce-checkout .checkout .col-md-5.columns{
        order:1;
        margin-top: -40px;
    }
    body.woocommerce-checkout .checkout .col-md-7.columns{
        order:2;
    }
    .heading-details span {

        width: 30px;
        height: 30px;
        padding: 7px;
        font-size: 14px;
        left: -46px;
        top: 0px;
    }
}
/* body.woocommerce-checkout .woocommerce-notices-wrapper {
    display: none !important;
} */
body .content-area {
    padding-top: 0;
    padding-bottom: 0px;
}
/* top header */
body .top_site_main .banner-wrapper{
    padding: 14px 15px 24px;
}

body .top_site_main .heading_primary{
    font-size:24px;
    font-weight:600;
    color:#155C6F !important;
}
body .top_site_main .heading_primary:after{
    display:none !important;
}
body .top_site_main .phys-breadcrumb li,
body .top_site_main .phys-breadcrumb li a{
    font-size:24px;
    font-weight:600;
    color:#7D7B7B !important;
}
body.woocommerce-checkout .checkout .woocommerce-billing-fields .form-row, body.woocommerce-checkout .checkout .woocommerce-additional-fields .form-row{
    margin: 0 0 7px;
    padding-bottom:0;
}
#billing_email_field{
    margin-top:36px;
}
body.woocommerce-checkout .checkout .woocommerce-billing-fields .form-row label, body.woocommerce-checkout .checkout .woocommerce-additional-fields .form-row label{
    font-size:16px;
    font-weight:600;
}
body.woocommerce-checkout .checkout .woocommerce-billing-fields .form-row .input-text,
body.woocommerce-checkout .checkout .woocommerce-billing-fields .form-row .select2-selection,
body.woocommerce-checkout .checkout .woocommerce-billing-fields .form-row select,
body.woocommerce-checkout .checkout .woocommerce-billing-fields .form-row textarea,
body.woocommerce-checkout .checkout .woocommerce-additional-fields .form-row .input-text,
body.woocommerce-checkout .checkout .woocommerce-additional-fields .form-row .select2-selection,
body.woocommerce-checkout .checkout .woocommerce-additional-fields .form-row select,
body.woocommerce-checkout .checkout .woocommerce-additional-fields .form-row textarea{
    --phys-bg-input:#F5F5F5;
    color:#000 !important;
    --wc-form-color-text:#fff!important;
    border-radius:4px;
    font-weight:500;
    --phys_body_border_color :#F5F5F5;
}
body.woocommerce-checkout .checkout .woocommerce-billing-fields .form-row .input-text:focus,
body.woocommerce-checkout .checkout .woocommerce-billing-fields .form-row .select2-selection:focus,
body.woocommerce-checkout .checkout .woocommerce-billing-fields .form-row select:focus,
body.woocommerce-checkout .checkout .woocommerce-billing-fields .form-row textarea:focus,
body.woocommerce-checkout .checkout .woocommerce-additional-fields .form-row .input-text:focus,
body.woocommerce-checkout .checkout .woocommerce-additional-fields .form-row .select2-selection:focus,
body.woocommerce-checkout .checkout .woocommerce-additional-fields .form-row select:focus,
body.woocommerce-checkout .checkout .woocommerce-additional-fields .form-row textarea:focus{
    outline-color:#03DAC6;
}
body .woocommerce form .form-row-first,
body .woocommerce form .form-row-last,
body.woocommerce-page form .form-row-first,
body.woocommerce-page form .form-row-last {
    float: left;
    width: 50%;
    overflow: visible;
}
body.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__placeholder,
body.woocommerce-checkout .woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered{
    color:#fff !important;
    font-weight:600;
}
@media (min-width: 1200px) {
    .container {
        width: 1158px;
    }
}

/* my orders*/
.woocommerce-orders-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    max-width: 530px;
    margin: 0 auto;
}

.woocommerce-order-card {
    background-color: #F5F5F5;
    border: 1px solid #F5F5F5;
    border-radius: 10px;
    padding: 22px 18px;;
}
.order-status {
    font-size:12px;
    font-weight: 600;
    color:#FFFFFF;
    line-height:1;
    padding: 6px 12px;
    background: #00586F;
    border-radius: 6px;
}
.order-status.Cancelled{
    background: #F03D29;
}
.order-status.Completed{
    background: #00276F;
}
.order-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.order-datetime{
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    color:#1E1E1E;
}
.order-plan {
    display: flex;
    gap: 7px;
    margin-bottom: 16px;
}

.order-flag img {
    width: 20px;
    height: 20px !important;
    object-fit: cover;
    border-radius: 50% !important;
}

.order-country .name{
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    color: #1E1E1E;

}
.order-country .order-data{
    font-weight: 500;
    font-size: 12px;
    line-height: 1.3;
    color: #1E1E1E;
}
.order-data {
    display:block;
    width:100%;
}
.order-actions.two-actions{
    display: flex;
    gap: 10px;
}
.order-actions.two-actions a.button{
    flex: 1;
    text-align: center;
    margin:0;
}
.order-actions a.button {
    padding: 9px 18px;
    background: #D9D9D9;
    border: 1px solid #D9D9D9;
    margin-right: 8px;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    border-radius: 12px;
    color: #3C3D44;

}
.one-action.order-actions a.button {
    width: 100%;
    text-align: center;
}
.order-actions a.button:hover{
    background: #3C3D44;
    color:#fff;
    border-color:#3C3D44;
}
.order-actions a.button.my_data{
    background: #00A899;
    border-color: #00A899;
    color: #fff;
}
.order-actions a.button.my_data:hover{
    background: #00276F;
    color:#fff;
    border-color:#00276F;
}
/* my orders*/
.woocommerce-view-order{
    background:#F6F7F9;
}
.order-section{
    background:#fff;
    padding:20px 15px;
    border-radius:10px;
    margin-bottom:12px;
    position:relative;
}

.order-section h4{
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    color:#00A899;
    padding-bottom:8px;
    margin-bottom:12px;
    border-bottom: 0.5px solid #CCCCCD;
    text-align:left;
    margin-top:0;
}
.order-section .order-status {
    position: absolute;
    top: 20px;
    right: 14px;
}

.custom-country-region,
.order-section  .order-date,
.order-section .order-number {
    display: flex;
    flex-direction: column;
    border-bottom: 0.5px solid #CCCCCD;
    padding-bottom:12px;
    margin-bottom:12px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    color:#3C3D44;
}
.order-section  .order-date{
    margin-bottom: 0;
}
.custom-validity span,
.custom-package span,
.custom-country-region span,
.order-section  .order-date span,
.order-section .order-number span{
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    color:#1E1E1E;
    margin-top:8px;
}
.custom-country-region{
    margin-top:12px;
    margin-bottom:0;
}
.custom-validity-package{
    display:flex;
    border-bottom: 0.5px solid #CCCCCD;
    gap: 160px;
}
.custom-validity,
.custom-package{
    display: flex;
    flex-direction: column;
    padding:12px 0;
}
.custom-package{
    padding-left:16px;
    border-left: 0.5px solid #CCCCCD;
}
.order-download-link span{
    text-decoration:underline;
}
.order-qr-code{
    position:relative;
}
.order-number.order-qr-code{
    flex-direction: row;
    justify-content: space-between;
}
.order-qr-code-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.order-qr-code-right span{
    margin-top:0;
}
.order-qr-code-right img{
    width: 80px;
    height: 80px;
    object-fit: cover;
}
.download-qr-code{
    font-weight: 500;
    font-size: 12px;
    line-height: 1.2;
}
.order-number.order-expired-date {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom:0;
}
.product-payment-info{
    margin-bottom:24px;
}
.custom-order-view {
    max-width: 530px;
    margin: 0px auto;
}
.custom-order-view .purchase-date {
    margin-bottom: 8px;
    padding-bottom:8px;
    border-bottom:1px solid #CAC4D0;
}
.custom-order-view .purchase-date span{
    color: #30B0C7;
}

.custom-order-view h2 {
    font-weight: 700;
    font-size: 28px;
    line-height: 1.2;
    color:#1E1E1E;
    margin-bottom: 28px;
}
.custom-order-view  .total-amount span,
.custom-order-view  .subtotal span,
    /* .custom-order-view .payment-method  span, */
.custom-order-view .order-number span{
    float:right;
}
.payment-method {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.payment-method,
.custom-order-view  .total-amount,
.custom-order-view  .subtotal {
    margin-bottom: 12px;
    padding-bottom:12px;
    border-bottom:1px solid #CAC4D0;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    color:#3C3D44;
}
.custom-order-view .order-package {
    display: inline-block;
    padding-left:10px;
}
.custom-order-view  .subtotal span,
.custom-order-view .payment-method  span{
    font-weight:600;
    color:#1E1E1E;
}
.custom-order-view .total-amount{
    margin-bottom:0;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
}
.custom-order-view .total-amount span{
    color:#00A899 !important;
    font-weight:600;
}
.custom-order-view .order-country{
    text-transform:uppercase;
    position: relative;
}
.custom-order-view .coupon-discount {
    color: #d9534f;
    font-weight: bold;
}

span.order-confirmed {
    padding: 3px 12px;
    border-radius: 8px;
    background: #97D7E3;
    float: right;
    color: #055B71;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.45;
}
.custom-order-view .total-amount .woocommerce-Price-amount{
    color:#155C6F;
}
.bt-refund-order,
.order-actions-refund .button{
    width:100%;
    text-align:center;
    background-color:#F9B5B5 !important;
    color:#F03D29!important;
    font-size:16px !important;
    font-weight:600!important;
    line-height:1 !important;
    padding:12px 30px  !important;
    border-radius:24px !important;
}
.bt-refund-order:hover,
.order-actions-refund .button:hover{
    background-color: #F03D29 !important;
    color:#fff!important;

}
@media (max-width: 480px) {
    .custom-order-view {
        max-width: 100%;
        padding: 0;
    }
}
/*order refund page*/
.woocommerce-refund-order{
    background: #F6F7F9;
}
.custom-refund-order {
    max-width: 530px;
    margin: 0px auto;
    /* background-color: #fff; */
}
.custom-refund-order-top{
    background: #FFFFFF;
    border-radius:10px;
    padding:20px 12px;
}
.custom-refund-order  .section-title{
    color:#1E1E1E;
    font-size:16px;
    font-weight:700;
    line-height:1.2;
    padding-bottom:12px;
    margin-bottom:12px;
    border-bottom: 0.5px solid #CCCCCD
}
.custom-refund-order  ul.info{
    margin: 1em 0 1em 16px;

}
.custom-refund-order  ul.info,
p.info{
    color:#3C3D44;
    font-weight: 400;
    font-size: 10px;
    line-height: 1.2;
}
.bt-refund-order{
    border:0 !important;
}
.buttons-group{
    margin-bottom:20px;
}
.buttons-group .radio-label input{
    display:none;
}
.buttons-group .radio-label{
    margin-bottom:15px;
}
.buttons-group .radio-label span{
    font-size:12px;
    font-weight:700;
    line-height: 1;
    background:#fff;
    color:#3C3D44;
    padding:6px 11px;
    border-radius:12px;
    /* margin-right:8px; */
    cursor: pointer;
    border: 0.75px solid #3C3D44;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.radio-label input:checked + span {
    background-color: #00586F;
    color: #fff;
}
/* my data page*/
.esim-info-box h2{
    font-size:36px;
    margin-bottom:28px;
}
.esim-container {
    width: 530px;
    margin: 0 auto;
}
@media (max-width:767px){
    .esim-container{
        width:100%;
    }
}

.esim-header {
    text-align: right;
}

.esim-guide {
    background: #30B0C7;
    color: #fff;
    border: none;
    padding: 4px 19px;
    border-radius: 100px;
    text-transform:uppercase;
}
.esim-guide:hover {
    background:#155C6F;
}
.esim-tabs {
    display: flex;
    margin: 0  0 12px;
    overflow:hidden;
    justify-content: space-between;
    gap:6px;
}

.esim-tab {
    flex: 1;
    text-align: center;
    padding: 8px 50px;
    border: 0;
    background: #EEEEEE;
    cursor: pointer;
    color:#54565A;
    border-radius:12px;
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
}

.esim-tab.active {
    background: #00A899;
    color: #fff;
}

.esim-content .esim-info .esim-item{
    background: #F5F5F5;
    padding: 22px 18px 24px;
    border-radius: 10px;
}

.esim-flag {
    width: 20px;
    height: 20px !important;
    border-radius: 50% !important;
}
.esim-header-info{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color:#3F1536;
    margin-bottom:16px;
}
.esim-details-titel{
    color:#3F1536;
}
.esim-details-titel .esim-country{
    text-transform:uppercase;
}
.esim-details {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color:#3F1536;
}
.esim-details-header-left{
    display: flex;
    flex-direction: row;
    gap: 7px;
}
.esim-actions {
    margin-top: 10px;
    text-align: left;
}

.esim-status{
    padding: 6px 12px;
    border-radius:6px;
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
}
.esim-status.activated{
    color:#fff;
    background:#00A394;
}
.esim-status.not-activated{
    color:#000000;
    background:#F0C808;
}
.esim-provider{
    position:relative;
    /* margin-left: 33px;
    margin-bottom:11px; */
    color:#1E1E1E;
    font-weight: 600;
    font-size: 12px;
    line-height: 1;
}
/* .esim-provider:before{
    position:absolute;
    content:"";
    left: -33px;
    top:0;
    background:url('./images/cart.png');
    width: 21px;
    height: 22px;
} */
.esim-plan{
    color:#3F1536;
}
.esim-plan i{
    margin-right:12px;

}
.esim-details-header {
    display: flex;
    align-items: center;
    gap: 9px;
    width:100%;
    padding-bottom:16px;
    margin-bottom:16px;
    border-bottom: 0.5px solid #CCCCCD;
    justify-content: space-between;
}
.esim-expiry{
    color:#1E1E1E;
    font-weight: 500;
    font-size: 12px;
    line-height: 1;
}
.esim-iccid,
.esim-plan{
    color:#1E1E1E;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.3;

}
.copy-esim-btn{
    border:0;
    background:transparent;
    text-decoration:underline;
    color:#54565A;
    font-weight: 500;
    font-size: 11px;
    line-height: 130%;

}
.esim-button {
    background: #7CE8DF;
    color: #1E1E1E;
    padding: 10px 15px;
    border-radius: 24px;
    border: none;
    cursor: pointer;
    width: 100%;
    display: block;
    text-align: center;
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
}
.esim-button.install-activation{
    background:transparent;
    border: 0.75px solid #3B3B3B;
    border-radius:24px;
    color:#1E1E1E;
}
.esim-button.install-activation:hover{
    border-color: #00A899;
    color: #00A899;
}
.esim-button.iunquiry-usage{
    margin-bottom:8px;

}
.esim-button.iunquiry-usage:hover{
    background:#00A899;
    color: white;
}
.esim-button.delete{
    background:#D9D9D9 ;
    color:#3C3D44;
    padding:10px 12px;
    border-radius:24px;
}
.esim-button.delete:hover{
    background:#F03D29;
    color:#fff;
}
.esim-item{
    margin-bottom:13px;
}
/*inquiry usage page*/
.woocommerce-inquiry-usage{
    background:#F6F7F9;
}
.inquiry-usage-container {
    max-width: 530px;
    margin: 0 auto;
    /* background: #D9D9D9;
    border-radius: 8px;
    padding: 20px; */
}
.inquiry-usage-content{
    background:#fff;
    padding:20px 17px;
    border-radius: 10px;
    overflow:hidden;
}
.inquiry-usage-container h2{
    font-weight: 700;
    font-size: 28px;
    line-height: 1.2;
    margin-bottom:28px;
}
.usage-header-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom:21px;
}
.usage-header {
    display: flex;
    gap:8px;
    margin-bottom: 15px;
    padding-bottom:20px;
    margin-bottom:16px;
    border-bottom: 0.5px solid #CCCCCD;
}

.usage-header img {
    width: 27px;
    height: 27px !important;
    border-radius:100% !important;
    object-fit: cover;
    border: 1px solid #ccc;
}

.usage-header .plan-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom:0;
    text-align:left;
}
.check-usage {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom:10px;
    margin-bottom:10px;
    border-bottom: 0.5px solid #CCCCCD;
}
.check-usage-expiration span,
.data-usage-header span,
.check-usage span{
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    color:#3C3D44;
}
.check-usage-btn {
    background: #3C3D44;
    color:#fff;
    border: none;
    padding: 7px 10px;
    font-size: 10px;
    font-weight:600;
    line-height:1;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
}

.data-usage-box {
    padding-bottom:15px;
    margin-bottom:24px;
    border-bottom: 0.5px solid #CCCCCD;
}

.data-usage-box .data-usage-header {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 5px;
}

.progress-bar {
    background: #7CE8DF;
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 5px;
    border: 1px solid #7CE8DF;
    width: 100%;
}

.progress-fill {
    background: #00A394;
    height: 100%;
    width: 0%;
    transition: width 0.3s ease-in-out;
    #border: 1px solid #00A394;
}

.data-usage-footer {
    font-size: 14px;
    color: #555;
}

.detailed-information h4{
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    color:#00276F;
}
.detailed-information ul{
    margin:0;
    list-style:none;

}
.detailed-information ul li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom:10px;
    margin-bottom:10px;
    border-bottom: 0.5px solid #CCCCCD;
}
.check-usage-expiration{
    padding-bottom:10px;
    margin-bottom:10px;
    border-bottom: 0.5px solid #CCCCCD;
}
.detailed-information ul li lable{
    font-weight: 600;
    font-size: 12px;
    line-height: 1.2;
    color:#1E1E1E;
}
.detailed-information ul li span{
    font-weight: 500;
    font-size: 12px;
    line-height: 1.2;
    color:#3C3D44;
}
.btn-help-center{
    background:#7CE8DF !important;
    padding:12px 30px!important;
    width:100%;
    font-weight: 700!important;
    font-size: 12px!important;
    line-height: 1;
    color:#1E1E1E;
    text-align:center;
    margin-top:6px;
    border-radius:16px!important;
}
.btn-help-center:hover{
    background: #00A899!important;
    color:#fff !important;
}
.check-usage-expiration p,
.inquiry-usage-content > p{
    font-weight: 500;
    font-size: 10px;
    line-height: 1;
    color:#3C3D44;
    text-align:center;
    margin:8px 0 0;
}
.time-box {
    background: #D9D9D9;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #555;
    border: 1px solid #B2B2B2;
}

.problem-box {
    background: #D9D9D9;
    border-radius: 4px;
    padding: 10px;
    font-size: 14px;
    color: #555;
    text-align: center;
    border: 1px solid #B2B2B2;
}

.problem-box a {
    color: #0071a1;
    text-decoration: underline;
}
/* referral */
.woocommerce-referral-earn{
    background: #F6F7F9;
}
.referral-widget {
    max-width: 530px;
    margin: auto;
    color: #111827;
}

.referral-widget h2 {
    font-weight: 700;
    font-size: 28px;
    line-height: 1.2;
    margin: 0 0 28px;
}
.referral-widget .referral-card h6{
    color:#00A899;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    margin: 0 0 22px;
}
.referral-widget .referral-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px 14px;
    margin-bottom: 12px;
}

.referral-widget .qr-container {
    text-align: center;
    padding-bottom:22px;
    margin-bottom: 16px;
    border-bottom: 0.5px solid #CCCCCD
}

.referral-widget #download-qr {
    display: block;
    max-width:180px;
    margin: 0 auto;
    width: 100%;
    border: none;
    padding: 7px 0;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    font-size: 12px;
    line-height: 1.2;
    background:#00A899;
    color: #fff;
}

.referral-widget .btn-download {
    background: #14b8a6;
    color: #fff;
    margin-top: 10px;
}

.referral-widget .btn-share {
    background: #00276F;
    color: white;
    width:100%;
    padding:10px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    border-radius:24px;
}
.referral-widget .btn-share:hover{
    background: #00A899;
    color: white;
}
.referral-widget .note {
    font-size: 13px;
    text-align: center;
    margin-top: 5px;
    color: #14b8a6;
}

.referral-link-box p {
    color:#00A899;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    margin: 0 0 9px;
}

.referral-widget .referral-link {
    display: flex;
    background: #fff;
    padding:0;
    border:0;
    overflow: hidden;
    padding-bottom:16px;
    margin-bottom: 20px;
    border-bottom: 0.5px solid #CCCCCD
}

.referral-widget .referral-link input {
    flex: 1;
    border: none;
    padding: 0;
    font-size: 12px;
    line-height: 1.25;
    background: transparent;
    color:#3C3D44;
    font-weight: 500;
}

.referral-widget .referral-link .copy-link {
    background: none;
    border: none;
    padding:0;
    cursor: pointer;
    color: #00A899;
    font-weight: 600;
    font-size: 12px;
    line-height: 1.3;
    text-decoration: underline;

}.referral-widget .referral-link .copy-link svg{
     margin-right: 3px;
 }
.referral-widget .referral-link .copy-link svg path {
    stroke : #00A899;

}
.referral-widget .earnings-box {
    background: #fff;
    padding: 20px 14px;
    border-radius: 10px;
}

.referral-widget .earnings-box h3 {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    color: #00A899;
    margin-bottom:20px;


}

.referral-widget .earning-line {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 16px;
    border-bottom: 1px solid #f3f4f6;
    align-items: center;
}
.referral-widget .earning-line span{
    font-weight: 600;
    font-size: 12px;
    line-height: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
}
.referral-widget .earnings-box h3:first-child {
    margin-top: 0px !important;
}
.referral-widget .earnings-box h3:last-child {
    margin-top: 20px !important;
}
.referral-widget .earning-line strong {
    color: #00b894;
}
ul.paypal-note {
    margin: 0;
    padding-left: 1.5rem;
    font-weight: 400;
    font-size: 10px;
    line-height: 1.2;
    color: #3C3D44;

}
.paypal-method {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    border: 1px solid #CCCCCD !important;
    padding: 13px 15px;
    justify-content: space-between;
    border-radius: 8px;
    gap:8px;
}
.paypal-method:hover {
    background: #00A899;
    color: #fff;
}
.paypal-method span{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:8px;
    font-family: Poppins;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    color:#1E1E1E;
}
#slicewp-share-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
#slicewp-share-popup[style*="display: flex"] {
    display: flex !important;
}
#slicewp-share-popup-content {
    background: #fff;
    padding: 60px 30px;
    border-radius: 8px;
    min-width: 330px;
    max-width: 90vw;
    position: relative;
}
#slicewp-share-popup-content h3{
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    color: #1E1E1E;
    margin-top:0;
    margin-bottom: 14px;
    padding-bottom:16px;
    border-bottom: 1px solid #f3f4f6;

}

.referral-widget #slicewp-share-popup-content .referral-link{
    display: inline-flex;
    width: 100%;
    padding-top:16px;
    margin-top:14px;
    border-top: 0.5px solid #CCCCCD;
    margin-bottom: 0;
    padding-bottom:0;
    border-bottom:0;
    position: relative;
}
.referral-widget #slicewp-share-popup-content .referral-link input{
    background: #F5F5F5;
    border: 1px solid #CCCCCD;
    border-radius: 16px;
    padding: 12px 16px;
    color: #3C3D44;
    font-weight: 500;
    font-size: 10px;
    line-height: 1.25;
    border:0;
}
.referral-widget #slicewp-share-popup-content .referral-link .copy-btn{
    text-decoration: none;
    background: #00276F;
    color: #fff;
    padding: 6px 16px;
    border-radius: 16px;
    position: absolute;
    right: 9px;
    bottom: 0;
    transform: translateY(-23%);
    font-weight: 600;
    font-size: 12px;
    line-height: 1.2;
}
.slicewp-asos-platform {
    display: flex;
    float: left;
    align-items: center;
    justify-content: center;
    margin: 0 0 0 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none !important;
}
.slicewp-asos-platform svg {
    fill: #fff;
    width: 20px;
    height: 20px;
}

.slicewp-asos-platform-facebook { background-color: #1877F2; }
.slicewp-asos-platform-twitter  { background-color: #000000; }
.slicewp-asos-platform-linkedin { background-color: #2867B2; }
.slicewp-asos-platform-whatsapp { background-color: #25D366; }
.slicewp-asos-platform-telegram { background-color: #0088cc; }
.slicewp-asos-platform-email 	{ background-color: #b1b1b1; }

#slicewp-share-popup-close{
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
    color: #1E1E1E;
    padding:0;
    border:0;
    background:transparent;
}
/* coupons page*/
.coupons-container {
    max-width: 600px;
    margin: auto;
    padding: 20px;
}

.coupon-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    border: 0;
}

.coupon-table th, .coupon-table td {
    border: 0;
    padding: 0px;
    text-align: left;
}


.coupon-notice {
    margin-top: 20px;
    padding: 12px 16px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #D9D9D9;
}
.coupon-notice ul{
    margin:0 0 0 16px;
}


/* MyAccount */
.woocommerce-account .woocommerce-MyAccount-content{
    width:100%;
}
.custom-dashboard {
    max-width: 530px;
    margin: 20px auto;
}
.account-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    background: #FAF5E2;
    padding: 36px 20px 20px;
    border-radius: 10px;
    position: relative;
}

.user-avatar img {
    width: 40px !important;
    height: 40px!important;
    border-radius: 50%!important;
    object-fit: cover;
}

.user-info .user-name {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color:#1E1E1E;
}

.user-info .user-email {
    font-size: 14px;
    font-weight: 400;
    color:#1E1E1E;
    margin: 2px 0 0 0;
}
.edit-account-link {
    font-weight: 500;
    position: absolute;
    top: 16px;
    right: 10px;
    font-size: 12px;
    line-height: 1.2;
    color:#00A899;
}
.edit-account-link i{
    margin-right:15px;
}
.woocommerce-account.woocommerce-edit-account form .form-row .input-text,
.woocommerce-account.woocommerce-edit-account form .form-row textarea{
    background: #F5F5F5;
    border-radius: 4px;
    padding: 12px 24px 12px 8px;
    color: #1E1E1E;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    border-color: #F5F5F5;
    width: 100%;
}
.woocommerce-account.woocommerce-edit-account form .form-row .input-text:focus,
.woocommerce-account.woocommerce-edit-account form .form-row textarea:focus {
    border-color: #00A899;
    outline: none;
}
.woocommerce-account.woocommerce-edit-account form .woocommerce-Button{
    width:100%;
    text-align:center;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    margin: 0 0 15px;
    padding: 12px 30px;
    border-radius:24px;
}
.woocommerce-Button.save-account-details{
    --phys-body_color_primary:#00A899;
    color:#fff;
}
.woocommerce-Button.save-account-details:hover{
    --phys-button-hover-color:#00276F !important;
}
.woocommerce-Button.account-log-out {
    --phys-body_color_primary:#3C3D44;
    color:#fff;
}
.woocommerce-Button.account-log-out:hover {
    --phys-button-hover-color:#00A899!important;
}
.woocommerce-Button.woo-delete-account-url{
    --phys-body_color_primary:#D9D9D9;
    color:#fff;
}
.woocommerce-Button.woo-delete-account-url:hover{
    --phys-button-hover-color:#3C3D44!important;
}
.woo-help-tip{
    font-weight: 400;
    font-style: italic;
    font-size: 12px;
    line-height: 1.1;
}
.password-input{
    position: relative;
}
.show-password-input{
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.show-password-input:before{
    position: absolute;
    content:'\f06e';
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-family: FontAwesome;
    font-weight: 900;
    color: #1E1E1E;
    cursor: pointer;
}
.edit-account-change-password{
    margin-bottom: 28px;
}
.account-menu-icons {
    display: flex;
    justify-content: space-between;
    padding-bottom:24px;
    margin-bottom: 24px;
    flex-direction: row;
    border-bottom: 0.5px solid #CCCCCD;
}

.menu-icon-item {
    text-align: center;
    text-decoration: none;
    color: #155C6F;
    width: 72px;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    background: #00A899;
    border-radius: 8px;
    padding: 11px 12px 12px 12px;
    font-weight: 600;
    font-size: 10px;
    line-height: 1;
    color: #FFFFFF;
}

.menu-icon-item .icon-img img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 5px;
}
.edit-account-change-password-fields,
.edit-account-profile{
    background: #fff;
    padding: 12px;
    border-radius: 10px;
}
.woocommerce-edit-account .custom-dashboard h4{
    font-weight: 700;
    font-size: 28px;
    line-height: 1.2;
    margin: 0 0 28px;
    color: #1E1E1E;
}
.edit-account-profile{
    margin-bottom: 28px;
}
.woocommerce-edit-account .custom-dashboard label{
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2 !important;
    color: #1E1E1E;
}

/* Menu List */
.account-menu-list:last-child {
    padding-top:24px;
    margin-top: 24px;
    border-top: 0.5px solid #CCCCCD;
}
.account-menu-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    /* box-shadow: 0px 10px 100px 0px #0000004D; */
    /* border-radius:10px; */
    overflow:hidden;
}
.account-menu-list a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #1E1E1E;
    padding: 15px 16px;
    border-radius:10px;
    /* border-bottom: 1px solid #D9D9D9; */
    transition: background 0.2s;
    justify-content: space-between;
    background:#F5F5F5;
    margin-bottom:8px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;

}
.account-menu-list li:last-child a {
    margin-bottom:0px;
}
.account-menu-list a:hover {
    background: #00A899;
    color: #FFFFFF;
}
.account-menu-list a:hover svg path{
    stroke: #fff;
}
.account-menu-list a img {
    width: 38px;
    height: 38px;
    margin-right: 10px;
}
/* widget searh country */
.attribute-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    align-items: center;
    justify-content: center;
}
.attribute-popup-content{
    position:relative;
    /* position: fixed; */
    z-index: 1000;
    /* left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); */
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    padding: 70px 20px 20px 20px;
    max-width: 500px;
    max-height:600px;
    overflow:hidden;
}
@media(max-width:767px){
    .attribute-popup-content{
        max-width: 360px;
    }
    .product-attribute-filter-widget .search-box input {
        min-width: auto !important;
        width: 100%;
    }
}
.attribute-popup-overlay .close-popups {
    cursor: pointer;
    font-size: 20px;
    position: absolute;
    top: 40px;
    right: 15px;
    color:#000;
}
.product-attribute-filter-widget h3{
    font-size:28px;
    font-weight:700;
    line-height:1.2;
    color:#1E1E1E;
    margin: 0 0 20px;
}
.product-attribute-filter-widget .search-box {
    position:relative;
    margin-bottom:20px;
    overflow:hidden;
}
.product-attribute-filter-widget .search-box input{
    min-width:450px;
    border-radius:16px;
    padding:7px 15px;
    background:#EFEFEF;
    border:1px solid transparent;
}
.product-attribute-filter-widget .search-box input:focus{
    border:1px solid #1CDDC9;
    outline:0;
}
.product-attribute-filter-widget .search-box .attribute-search-btn{
    position: absolute;
    right: 18px;
    top: 50%;
    border: 0;
    background: transparent;
    transform: translateY(-50%);
    color: #03DAC6;
}
/* .product-attribute-filter-widget .search-box .attribute-search-btn:before{
    content: "\f002";
    font-family: thim-ekits !important;
    speak: never;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size:18px;
} */
.product-attribute-filter-widget .attribute-list{
    margin:0;
    list-style:none;
    max-height:340px;
    overflow-y:auto;
}
/* .product-attribute-filter-widget .attribute-list:hover{
    overflow-y:scroll;
} */
.product-attribute-filter-widget .attribute-list img{
    width:37px;
    height:37px;
    border-radius:50%;
    object-fit: cover;
    margin-right:8px;
}
.product-attribute-filter-widget .attribute-list li{
    /* min-width: 360px; */
    font-size: 16px;
    font-weight:600;
    color:#1E1E1E;
    background: #EEEEEE;
    margin-bottom: 8px;
    padding: 10px;
    border-radius: 8px;
}
.product-attribute-filter-widget .attribute-list li:last-child{
    border-bottom:0;
}
/*Coupon Box*/
.woocommerce-account-coupons{
    background: #F6F7F9;
}
.coupon-dashboard-wrapper{
    max-width:530px;
    margin:0 auto;
    text:center;
}
.coupon-dashboard-wrapper h2{
    font-size:28px;
    font-weight:700;
    line-height:1.2;
    color:#1E1E1E;
    margin: 0 0 28px;
}
.coupon-register-box form {
    background: #fff;
    padding:  20px 14px;
    border-radius: 10px;
    /* box-shadow: 0 1px 8px rgba(0,0,0,0.05); */
    margin-bottom: 20px;
}
.coupon-register-box form label{
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    color:#00A899;
    margin-bottom: 16px;
}

#register_coupon_form #coupon_code {
    width: 100%;
    padding: 7px 15px;
    border: 1px solid transparent;
    margin-bottom: 12px;
    border-radius: 8px;
    background: #F5F5F5;
    color:#1E1E1E;
}
#register_coupon_form  #coupon_code::placeholder {
    color: #C8C8C8;
}
#register_coupon_form  #coupon_code:focus {
    border-color: #00A899;
    outline: none;
}
#register-coupon-btn {
    width: 100%;
    background-color: #00A899;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
}
#register-coupon-btn:hover{
    background:#00276F;
}
.coupon-dashboard-wrapper h3{
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    color: #1E1E1E;
    margin: 28px 0 16px;
}
.my-coupons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.coupon-errors,
.coupon-item {
    background: #fff;
    padding: 14px 20px;
    border-radius: 10px;
}
.coupon-errors{
    background: #fff;
    padding: 24px;
    border-radius: 10px;
    text-align: center;
    color: #54565A;
    font-weight: 600;
}
.woocommerce-account-coupons .coupon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    padding-bottom: 6px;
    border-bottom:  0.5px solid #CCCCCD;
    color:#00A899;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
}

.coupon-status {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    color: #fff;
}

.coupon-status.not-used {
    background-color: #00b3a4;
}

.coupon-status.expired {
    background-color: #666;
}

.coupon-detail .coupon-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 11px;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 0.5px solid #CCCCCD;
    align-items: center;
    color:#3C3D44;
    flex-wrap: wrap;
}
.coupon-detail .coupon-row .benefit,
.coupon-detail .coupon-row .expiration{
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
}
.coupon-detail .coupon-row .benefit{
    color: #00A899;
}
.coupon-detail .coupon-row .expiration{
    color:#1E1E1E;
}
.coupon-detail .coupon-notice {
    font-weight: 600;
    font-size: 14px;
    color:#1E1E1E;
    display: block;
    padding:0;
    background:#fff;
    border:0;
    margin:0;
    width:100%;
}





.woo-delete-account{
    border-top: 1px solid  #CAC4D0;
    padding-top:8px;
    margin-top:13px;
}
.woocommerce-delete-account .custom-dashboard h4{
    font-weight: 700;
    font-size: 28px;
    line-height: 1.2;
    color: #1E1E1E;
    margin: 0 0 18px;
}
.delete-account-form{
    background: #FFFFFF;
    padding:12px 20px;
    border-radius: 10px;
    margin-bottom: 26px;
}
#delete-account-form h5{
    color:#1E1E1E;
    font-size: 16px;
    font-weight:700;
    line-height:1.2;
    padding-bottom:12px;
    margin-bottom:12px;
    border-bottom: 0.5px solid #CCCCCD;
}
#delete-account-form ul{
    margin:0;
    list-style:none;
}
#delete-account-form ul li{
    font-size: 12px;
    font-weight:500;
    line-height:1.4;
    color:#1E1E1E;
}
#delete-account-form .confirm-delete{
    width:100%;
    font-size: 16px;
    color:#00A899;
    font-weight:500;
    line-height:1.4;
    padding-top:20px;
    margin-top:12px;
    border-top:  0.5px solid #CCCCCD;
}
#delete-account-form .confirm-delete input{
    border-color:#00A899;
    width:14px;
    height:14px;
}
#delete-account-form .confirm-delete input[type=checkbox]:checked{
    background-color: #00A899;
    border-color: #00A899;
}
#delete-account-form .confirm-delete input[type=checkbox]:checked:before{
    color:#fff;
}
#delete-account-form .button{
    width:100%;
    background: #D9D9D9;
    color:#3C3D44;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    border-radius: 24px;
    padding: 12px 30px;
}
#delete-account-form .button:hover{
    background:#F03D29;
    color:#fff;

}
/* popup coupon checkout*/

.coupon-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: #1E1E1E;
    margin-bottom: 32px;
}

.coupon-subtitle {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.coupon-card {
    background: #F5F5F5;
    border-radius: 10px;
    padding: 14px 20px;
    margin-bottom: 12px;
}

.coupon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 6px;
    border-bottom:  0.5px solid #CCCCCD;
}

.coupon-name {
    color: #00a69c;
    font-weight: 600;
}

.apply-coupon-btn {
    background: #00a69c;
    color: #fff;
    border: none;
    padding: 4px 16px;
    border-radius: 6px;;
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s;
}

.apply-coupon-btn:hover {
    background: #008d84;
}

.coupon-info-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 11px;
    border-bottom:  0.5px solid #CCCCCD;
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    color: #3C3D44;
}

.coupon-info-row .price {
    color: #00A899;
    font-weight: 600;
}

.register-coupon-btn {
    display: block;
    background: #00a69c;
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
    margin-top: 16px;
}

.register-coupon-btn:hover {
    background: #008d84;
}
body  .woocommerce-remove-coupon {
    color: #000000;
}
@media (max-width: 767px) {
    .woocommerce-checkout .modal-content {
        width: 100% !important;
        max-width: 100% !important;
        height: 100vh;
        margin: 0 !important;
        border-radius: 0;
    }
    .woocommerce-checkout .modal-content #close-modal{
        top: 40px !important;
    }
}
/**/
.widget_thim-login ul.user-info {
    box-shadow: 0 4px 12px #00000029;
    border-radius: 8px;
    overflow: hidden;
}
.widget_thim-login ul.user-info .menu-item-logout a{
    border-top:1px solid #D9D9D9;
    margin:0 20px;
    padding:15px 0;
}
.widget_thim-login ul.user-info .menu-item-login a{
    border-bottom:1px solid #D9D9D9;
    padding:15px 0;
    margin:0 20px;
}
/* widget currency language*/
.currency-language-selector .popup-close {
    top: 40px;
    right: 10px;
}
.currency-language-selector .change-trigger:hover svg path{
    stroke:#03DAC6;
}
.currency-language-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}
#currency-language-popup .popup-body{
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}
.currency-language-popup.active {
    display:block;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.popup-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    min-width: 300px;
    max-width: 90%;
}
.popup-content .widget_berocket_ce_widget {
    margin:0;
}
.popup-content .widget_berocket_ce_widget > div{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 12px;
    column-gap: 12px;
}
.popup-content .widget_berocket_ce_widget > div{

}
.popup-content .widget_berocket_ce_widget > div label{
    display:flex;
    align-items: center;
    background: transparent;
    border-radius: 12px;
    padding: 8px;
    cursor:pointer;
}
.popup-content .widget_berocket_ce_widget > div input{
    display:none;
}

.popup-content .widget_berocket_ce_widget > div img{
    width:24px;
    height:24px;
    display:block;
    border-radius:50%;
    margin-right:5px;
    border:1px solid #D9D9D9;
}
.popup-content .widget_berocket_ce_widget > div span{
    font-size:16px;
    font-weight:500;
    color: #767676;
}
.popup-content .widget_berocket_ce_widget > div label:hover,
.popup-content .widget_berocket_ce_widget > div label:has(> input.br_ce_select_currency:checked) {
    background: #f0f8ff;
    border-radius: 12px;
    padding: 8px;
}

.popup-content .widget_berocket_ce_widget > div label:has(> input.br_ce_select_currency:checked) img {
    filter: drop-shadow(0 0 2px rgba(33, 150, 243, 0.5));
}
.popup-content .widget_berocket_ce_widget > div label:hover span,
.popup-content .widget_berocket_ce_widget > div label:has(> input.br_ce_select_currency:checked) span {
    color: #155c6f;
}

.popup-content .trp-language-switcher .trp-ls-shortcode-current-language{
    display:none !important;
}
.popup-content .trp-language-switcher .trp-ls-shortcode-language {
    display: inline-grid !important;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 12px;
    column-gap: 12px;
    overflow: visible;
    visibility: visible;
    border: 0;
    padding: 0;
    width: 100% !important;
    position: relative;
    background: none;
    height: 100%;
}
.popup-content .trp-language-switcher {
    height: 100%;
    position: relative;
    box-sizing: border-box;
    width: 100%;
    text-overflow: initial;
    white-space: nowrap;
}
/* .popup-content .trp-language-switcher {
    height: 200px;
    width: 100%;
} */
.popup-content .trp-language-switcher > div > a.trp-ls-shortcode-disabled-language{
    background: #03DAC6;
    border-radius: 12px;
    padding: 8px 12px;
    color: #1E1E1E;
}
.trp_language_switcher_shortcode{
    padding-bottom: 28px;
    margin-bottom: 24px;
    border-bottom: 0.5px solid #CCCCCD;
}
.popup-content .trp-language-switcher > div > a{
    background: transparent;
    border-radius: 12px;
    padding: 8px;
}
.popup-content .trp-language-switcher > div > a:hover{
    background: #03DAC6;
    border-radius: 12px;
    padding: 8px 12px;
    color: #1E1E1E;
}

.popup-title {
    margin: 0 0 10px;
    font-size: 20px;
    color: #155c6f;
    padding-bottom:10px;
    border-bottom:1px solid #D9D9D9;
    display:block;
    width:100%;
}
.popup-close {
    background: none;
    border: 0;
    font-size: 24px;
    cursor: pointer;
    padding: 0 5px;
}
.woocommerce-checkout-review-order-detail.updating::after,
.woocommerce-checkout-review-order-detail.processing::after {
    display: none !important;
}
.woocommerce-checkout-review-order-detail .blockUI {
    display: none !important;
}
.woocommerce-checkout-review-order-detail.updating {
    opacity: 1 !important;
}
/* Loading overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff; /* Màu nền */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Spinner */
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db; /* Màu spinner */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Ẩn khi load xong */
body.loaded .loading-overlay {
    opacity: 0;
    pointer-events: none;
}
@media (max-width:767px){
    .popup-content .widget_berocket_ce_widget > div{
        grid-template-columns: repeat(1, 1fr);
        row-gap: 5px;
        column-gap: 5px;
    }

    .widget_thim-login .user-name{
        border:0 !important;
        padding: 0 !important;
    }
    .widget_thim-login .avatar{
        display:none !important;
    }
    .currency-language-selector .dropdown-menu{
        left:auto;
        right:0;
    }
}


/* .cctw-widget {
  margin: 20px;
} */
.cctw-widget h2{
    font-size:24px;
    font-weight:600;
    line-height:1.2;
    color: #00586F;
    text-align:center;
    margin-bottom:15px;
}
.cctw-header{
    padding:8px;
    border-radius:12px;
    background:#E5E5EA;
    margin-bottom:20px;
}
/* Search styles */
.cctw-search-wrapper {
    position: relative;
    margin-bottom:8px;
}
.cctw-search-wrapper:before {
    content: "\f002";
    font-family: thim-ekits !important;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
}
.cctw-search {
    width: 100%;
    padding: 12px 30px 13px 40px !important;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;

}
.cctw-search:focus{
    outline-color: #155C6F;
}
.cctw-clear-search {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #666;
}
/* Tab styles */
.cctw-widget .tabs {
    display: flex;
    /* gap: 10px; */
    background:#D9D9D9;
    padding:3px;
    border-radius:8px;
}
.cctw-widget .tab {
    padding: 8px 16px;
    background:#D9D9D9;
    border: none;
    /* border-radius: 4px; */
    cursor: pointer;
    color: #1E1E1E;
    flex: 1;
    border-radius:0;
    transition: all 0.3s ease;
    font-weight:600;
}
/* .cctw-widget .tab:hover, */
.cctw-widget .tab.active {
    background: #fff;
    color: #1E1E1E;
    border-radius:8px;
    /* box-shadow:2px 1px 12px #ffffffcf; */
}



/* List item styles */
.cctw-widget .items-container .item {
    margin-bottom:12px;

}
.cctw-widget .items-container .item:hover a{
    background: #155C6F;
}
.cctw-widget .items-container .item:hover a:after,
.cctw-widget .items-container .item:hover a h3{
    color:#fff;
}
.cctw-widget .items-container .item a{
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border: 1px solid #d9d9d9;
    background: #fff;
    border-radius: 8px;
    position:relative;
}
.cctw-widget .items-container .item a:after{
    content: "\f105";
    font-family: thim-ekits !important;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    color:#1E1E1E;
}
.cctw-widget .items-container .item img {
    width: 53px;
    height: 32px !important;
    object-fit: cover;
    margin-right:15px;
}
.cctw-widget .items-container .item h3{
    font-size:16px;
    font-weight:400;
    line-height:1;
    color:#1E1E1E;
    margin:0;
}

/* Grouped search result styles */
/* .cctw-widget .group {
  margin-bottom: 20px;
} */
.cctw-widget .group-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    text-align:left;
    font-size:16px;
    font-weight:600;
    color:#1E1E1E;
    margin-top:0;
}
.cctw-widget .group-items {
    display: flex;
    flex-wrap: wrap;
}
.cctw-widget .group-items .item {
    width: 100%;
}

/* Swiper slider styles */
.cctw-widget .swiper-container.popular-slider {
    width: 100%;
    padding:0 20px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}
.cctw-widget .swiper-slide a{
    width: 100%;
    height: 100%;
    display: block;
    background: #155C6F;
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 14px;
    color: #fff;
    position:relative;
}
.cctw-widget .swiper-slide a:after{
    content:"BENO";
    position:absolute;
    top: 14px;
    right:14px;
    font-size:16px;
    font-weight:600;
    color:#fff;
}
.cctw-widget .swiper-slide img {
    width: 53px;
    height: 32px !important;
    object-fit: cover;
}
.cctw-widget .swiper-slide h3{
    color:#fff;
    font-size: 14px;
    font-weight:600;
    line-height: 1.5;
    margin-top:0;
    margin-bottom:22px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}
.cctw-widget .swiper-slide a:hover {
    background: #30B0C7;
}

.cctw-widget .swiper-button-next,
.cctw-widget .swiper-button-prev {
    color: #0073aa;
}
.cctw-slider-wrapper .swiper-button-next,.cctw-slider-wrapper.swiper-rtl .swiper-button-prev{
    right: -40px;
    left: auto;
    top: 62%;
    width:40px;
    height:40px;
    line-height:40px;
    text-align:center;
}
.cctw-slider-wrapper .swiper-button-prev,.cctw-slider-wrapper .swiper-rtl .swiper-button-next {
    left: -40px;
    right: auto;
    top: 62%;
    width:40px;
    height:40px;
    line-height:40px;
    text-align:center;
}
.swiper-button-prev:after, .swiper-button-next:after{
    --swiper-navigation-size:14px;
    border: 1px solid #d9d9d9;
    background:#fff;
    display:block;
    width:40px;
    height:40px;
    line-height:40px;
    padding:13px;
    border-radius:50%;
    text-align:center;
}
.swiper-button-prev:hover:after, .swiper-button-next:hover:after{
    background: #155C6F;
    color:#fff;
}
.cctw-slider-wrapper{
    position:relative;
}
.items-container-wrapper > h3,
.cctw-slider-wrapper > h3{
    font-size:16px;
    font-weight:600;
    line-height:1.5;
    color: #1E1E1E;
    margin-top:0;
}

.items-container-wrapper{
    padding:10px;
    background:#E5E5EA;
    border-radius: 8px;
}


/* Loading indicator style */
.cctw-loading {
    text-align: center;
    padding: 20px;
    font-size: 16px;
    color: #555;
}

/* Bạn có thể thêm hiệu ứng spinner nếu cần */
.cctw-loading::after {
    content: '';
    display: inline-block;
    margin-left: 8px;
    width: 16px;
    height: 16px;
    border: 2px solid #ccc;
    border-top-color: #0073aa;
    border-radius: 50%;
    animation: spinner 0.6s linear infinite;
}
.cctw-slider-wrapper .swiper-pagination {
    display: none;
}
@keyframes spinner {
    to { transform: rotate(360deg); }
}
@media (max-width: 767px) {
    .cctw-slider-wrapper {
        margin-bottom:40px;
    }
    .cctw-slider-wrapper .swiper-button-next,
    .cctw-slider-wrapper .swiper-button-prev {
        display: none !important;
    }

    .cctw-slider-wrapper .swiper-pagination {
        display: block;
        bottom: -19px !important;
    }
}



.country-widget {
    background: #fff;
    padding: 16px;
    border-radius: 16px;
    /* max-width: 500px; */
    margin: 0 auto;
}

.search-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 36px;
    position: relative;
}

.search-bar input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 16px;
    border:1px solid transparent;
    background:#EEEEEE;
}
.search-bar input:focus{
    outline:none;
    border:1px solid #1CDDC9;
}

.search-bar .search-icon {
    padding: 0;
    border: 0;
    color: #03DAC6;
    cursor: pointer;
    background: transparent;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.tab-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.tab-button {
    flex: 1;
    padding: 10px 16px;
    border-radius: 20px;
    background: #EEEEEE;
    border: none;
    font-weight: 600;
    color: #54565A;
    cursor: pointer;
}

.tab-button.active {
    background: #00A899;
    color: white;
}

.country-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.country-item a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f8f8;
    padding: 12px 16px;
    border-radius: 12px;
}

.flag-icon img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.country-info {
    flex: 1;
    margin-left: 12px;
}

.country-name {
    font-weight: 600;
    font-size: 16px;
    color: #1E1E1E;
}

.country-price {
    color: #1E1E1E;
    font-size: 14px;
}

.country-price span {
    color: #00A899;
    font-weight: 500;
}

.go-icon {
    font-size: 20px;
    color: #ccc;
}
.currency-section .label{
    color:#54565A;
}
.currency-section {
    display: flex;
    align-items: center;
    gap: 5px;
    color:#54565A;

}
.currency-section h5{
    font-size:16px;
    font-weight: 600;
    color:#54565A;
}
#current-currency a{
    text-decoration: underline;
}
.currency-selector .popup-content{
    padding: 70px 20px 20px;
    border-radius:20px;
}
.currency-selector .popup-content .widget_berocket_ce_widget > div{
    grid-template-columns: repeat(1, 1fr);
}
.currency-selector  .popup-title{
    border-bottom:0;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.2;
    color:#1E1E1E;
    padding-bottom:0;
    margin-bottom:20px;
}
.currency-selector .popup-content .widget_berocket_ce_widget > div input{
    display: block;
    border-color: #54565A;
    width: 20px !important;
    height: 20px !important;

}
.currency-selector  .popup-content .widget_berocket_ce_widget > div label{
    gap:10px;
    padding: 6px 16px;
}
.currency-selector .popup-content .widget_berocket_ce_widget > div img{
    display:none;
}
.currency-selector .popup-content .widget_berocket_ce_widget > div label:hover,
.currency-selector .popup-content .widget_berocket_ce_widget > div label:has(> input.br_ce_select_currency:checked){
    background: #03DAC6;
    color:#1E1E1E;
    padding: 6px 16px;

}
.currency-selector .popup-content .widget_berocket_ce_widget > div label:has(> input.br_ce_select_currency:checked) input{
    border-color:#fff;
    background: #fff;
}
.currency-selector .popup-content .widget_berocket_ce_widget > div  > div label:has(> input.br_ce_select_currency:checked) input::before {
    content: "✔";
    text-indent: unset;
    border-radius: 50px;
    font-size: 16px;
    width: 6px !important;
    height: 6px !important;
    margin: 3px;
    line-height: 16px;
    background-color: transparent;
    color:#03DAC6;
}
.currency-selector .popup-content .widget_berocket_ce_widget > div span {
    color:#1E1E1E;
}

.woo-product-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: #fff; */
    z-index: 1000;
    /* padding: 20px;
    overflow-y: auto; */
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.popup-header  h3{
    margin:0;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.2;
    color:#1E1E1E;
}
.woo-product-popup-inner .input-wrapper{
    margin:20px 0 36px;
}
.woo-product-popup-inner .input-wrapper input{
    background:#EFEFEF;
}
.product-results-heading{
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    color:#1E1E1E;
}
.product-item {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.product-info h4 {
    margin: 0;
    font-size: 16px;
}
.woo-product-popup-inner {
    max-width: 460px;
    background: #fff;
    padding: 50px 20px 20px;
    max-height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    max-width:450px;
}

.input-wrapper input {
    width: 100%;
    padding-right: 40px;
    font-size: 16px;
    font-weight:500;
    line-height:1.45;
    background: #FEF7FF;
    border-radius:16px;
    color:#7D7E81;
    border:1px solid transparent;
    padding: 8px 50px 8px 16px ;
    height:40px;
}
.input-wrapper input:focus{
    border:1px solid #03DAC6;
    outline:none;
}
.icon-search-main,
.icon-search-submit {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #03DAC6;
}
.loading-spinner-v {
    text-align: center;
    margin: 20px 0;
    font-size: 24px;
    color: #999;
}

.woo-product-popup-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}
.product-results {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 400px;
    overflow-y: scroll;
}
.close-woo-popup{
    position:absolute;
    top:40px;
    right:20px;
    cursor:pointer;
}
.woocommerce-delete-account ,
.woocommerce-edit-account{
    background:#F5F5F5;
}
.woocommerce-edit-account .top_site_main{
    background-color:#F5F5F5 !important;
}

.login-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-popup-content {
    background: #fff;
    padding: 39px;
    border-radius: 12px;
    width: 90%;
    max-width: 420px;
    position: relative;
}

.close-login-popup {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}
.custom-login-popup {
    max-width: 400px;
    margin: auto;
    background: #fff;
    border-radius: 12px;
}
.custom-login-popup .popup-header{
    flex-direction: column;
}
.custom-login-popup .popup-header h2 {
    font-size: 24px;
    font-weight: 700;
    display:block;
    width:100%;
    margin:0;
}

.popup-header p {
    font-size: 14px;
    color: #555;
    margin-top: 18px;
    margin-bottom: 21px;
}

.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 6px;
}

.input-text {
    width: 100%;
    padding: 11px 8px;
    border: 0!important;
    border-radius: 4px !important;
    background:#F5F5F5;
}
.input-text:focus {
    outline-color: #03DAC6;
}
.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 14px;
}

.rememberme {
    display: flex;
    align-items: center;
    color:#00A899;
    font-weight: 600;
    font-size: 12px;
    line-height: 1;
    margin-bottom:0;
}

.rememberme input {
    margin: 0 4px 0;
    width:10px !important;
    height:10px !important;
    border:1.5px solid #00A899;
    border-radius:2px;
    min-width:10px !important;
}
.forgot-password{
    color:#54565A;
    font-weight: 500;
    font-size: 12px;
    line-height: 1;
}
.login-button {
    width: 100%;
    background-color: #7CE8DF;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 24px;
    font-weight: bold;
    font-size: 14px;
    line-height:1;
    cursor: pointer;
}

.login-button:hover {
    background-color:#00A899;
}

.login-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.login-divider span {
    background: #fff;
    padding: 0 10px;
    position: relative;
    z-index: 1;
    color:#54565A;
    font-weight: 500;
    font-size: 12px;
    line-height: 1;
}

.login-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #CCCCCD;
    z-index: 0;
}
.mo-openid-app-icons > p{
    display:none;
}
.mo-openid-app-icons>a.mo_btn{
    display:block;
    min-width: 100%;
    background: #FAF5E2 !important;
    padding:0 !important;
    color:#54565A!important;
    border-radius: 24px !important;
    border-color:#FAF5E2!important;
}
.mo_btn-social>:first-child{
    position: static !important;
    height: 14px !important;
    width: 14px !important;
    margin: 0 10px;
    border: 0 !important;
}
body #nsl-custom-login-form-1 .nsl-container-embedded-login-layout-below{
    padding-top:0;
}
body div.nsl-container.nsl-container-block .nsl-container-buttons{
    width: 100%;
}
body div.nsl-container .nsl-button-default {
    display: flex;
    min-width: 100%;
    background: #FAF5E2 !important;
    padding: 0 !important;
    color: #54565A !important;
    border-radius: 24px !important;
    border-color: #FAF5E2 !important;
    box-shadow: unset !important;
    justify-content: center;
}
body div.nsl-container .nsl-button-default div.nsl-button-label-container{
    flex:unset !important;
    margin: 0 24px 0 0px;
}
body div.nsl-container .nsl-button-apple .nsl-button-svg-container svg rect{
    fill:transparent;
}
.signup-link {
    font-size: 14px;
    font-weight: 400;
    line-height:1;
    text-align: center;
    margin-top: 20px;
    color:#1E1E1E;
}

.signup-link a {
    color: #00A899;
    font-weight: 600;
    text-decoration: underline;
}
.custom-refund-order h2,
.title-heading{
    font-weight: 700;
    font-size: 36px;
    line-height: 120%;
    color:#1E1E1E;
    margin:0px 0 18px;
}

/* order received*/
.woocommerce-order{
    max-width:530px;
    margin: 0px auto 40px;
}
.woocommerce-order-details{
    background:#FAF5E2;
    padding: 24px 14px;
    border-radius: 10px;
}

.woocommerce-order-details h2{
    font-weight: 700;
    font-size: 28px;
    line-height: 1.2;
    color:#00276F;
    margin: 0 0 22px;
}
.woocommerce-order-details h4{
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    color:#00A899;
    margin:0;
    padding-bottom:8px;
    border-bottom: 0.5px solid #CCCCCD;
}
.order-details-section .order-header{
    display:flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 0.5px solid #CCCCCD;
}
.order-details-email,
.details-billing-name,
.details-billing-email,
.order-details-section .order-date,
.order-details-section .order-number{
    display:flex;
    flex-direction: column;
    padding: 12px 0;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    color: #3C3D44;
}
.order-details-section .order-date{
    padding-left: 16px;
    border-left: 0.5px solid #CCCCCD;
}
.details-billing-name span,
.details-billing-email span,
.order-details-email span,
.order-details-section .order-date span,
.order-details-section .order-number span{
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    color: #1E1E1E;
    margin-top:8px;
}
.order-details-section .payment-method span{
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    color: #1E1E1E;
}
.order-details-section .custom-validity-package,
.order-details-email{
    margin-bottom:20px !important;
    border-bottom: 0.5px solid #CCCCCD;
}
.order-details-section .payment-method{
    padding-top:12px;
    border-bottom: 0.5px solid #CAC4D0;
}
.order-details-section .total-amount,
.order-details-section .subtotal{
    display:flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom:12px;
    border-bottom: 0.5px solid #CAC4D0;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    color: #3C3D44;
}
.order-details-section .total-amount{
    padding-top:12px;
}
.order-details-section .total-amount span{
    font-weight: 600;
    color: #00A899;
    font-size:16px;
}
.order-details-section .subtotal span{
    font-weight: 600;
    color: #1E1E1E;
}
.woocommerce-customer-details{
    background:#fff;
    padding:24px 12px;
    border-radius:10px;
}
.woocommerce-customer-details h4{
    font-weight: 700;
    font-size: 28px;
    line-height: 1.2;
    color: #1E1E1E;
    padding-bottom:20px;
    margin-bottom:0px;
    border-bottom: 0.5px solid #CAC4D0;
}
.details-billing-name,
.details-billing-email{
    border-bottom: 0.5px solid #CAC4D0;
}
.woocommerce .woocommerce-customer-details address{
    border:0;
    padding: 0;
}
.woocommerce-order-actions a.button{
    padding: 9px 18px;
    background: #F6F7F9;
    border: 0.75px solid #3C3D44;
    margin-right: 8px;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    border-radius: 12px;
    color: #3C3D44;
    width:100%;
    text-align:center;
}
.woocommerce-order-actions a.button:hover{
    background: #00A899;
    border-color:#00A899;
    color:#fff;
}
.woocommerce-order-actions a.button:last-child{
    margin-top:12px;
}
.woocommerce-account .woocommerce-info,
.woocommerce-info {
    max-width:400px;
    text-align:center;
    margin: 40px auto 0;
    float: unset;
    display: block;
    background: #F5F5F5;
    padding: 14px 18px;
    border:0;
    border-radius: 10px;
    padding-left:50px;
    text-align:left;
}
.woocommerce-checkout  .woocommerce-info{
    background: #fff;
    margin-bottom:30px;
}
.woocommerce-account .woocommerce-info:before,
.woocommerce-info:before{
    content: "\f129";
    font-family: FontAwesome;
    background: #00276F;
    color: #fff;
    width: 21px;
    height: 21px;
    border-radius: 4px;
    padding: 0;
    text-align: center;
    top: 17px;
    transform: unset;
    left: 17px;
}

/* login page*/
.action-register,
.action-lostpassword,
.action-resetpass{
    background: #F6F7F9;
}



@media (max-width:676px){
    .attribute-popup-content{
        max-width: 100%;
        max-height: 100%;
        height:100vh;
        width: 100vw;
        top: 0;
        left: 0;
        transform: unset;
        border-radius: 0;
    }
    .product-attribute-filter-widget .attribute-list {
        margin: 0;
        list-style: none;
        max-height: calc(100vh - 230px);
        overflow-y: auto;
    }
    /* .attribute-popup-overlay{
        top: -34px;
    } */
    .currency-selector .popup-content {
        max-width: 100%;
        max-height: 100%;
        height: 100%;
        width: 100vw;
        top: 0;
        left: 0;
        transform: unset;
        border-radius: 0;
    }
    .woo-product-popup-inner{
        margin:0;
        border-radius:0;
        height: 100%;
    }
    .product-results{
        max-height: 500px;
    }
    .attribute-popup-overlay .close-popups,
    .popup-close{
        top:70px;
    }
}
@media (max-width: 650px) {
    body.woocommerce-checkout .woocommerce .checkout .order-wrapper {
        margin: 0 0 16px;
        padding: 20px 15px !important;
    }
}

.reset-success-container-wp {
    max-width: 530px;
    margin: 50px auto;
    text-align: center;
}
.reset-success-container {
    background: #fff;
    padding: 23px 14px;
    border-radius: 10px;
    text-align: center;
}
.reset-message {
    color: #6B7280;
    font-size: 16px;
    margin-top: 10px;
}

.login-link {
    color: #00A899;
    text-decoration: underline;
}

.back-button {
    display: inline-block;
    background: #00A899;
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
    margin-top:20px;
    text-align:center;
}
.back-button:hover{
    background:#00276F;
    color: white !important;
}
.password-field {
    position: relative;
}
.password-field input[type="password"],
.password-field input[type="text"] {
    padding-right: 36px;
}
.password-field .toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
}
.custom-bg-F6F7F9{
    background:#F6F7F9;
}
.woocommerce-form-wrapper {
    max-width: 370px;
    margin: 0 auto;
}
.woocommerce .woocommerce-form-wrapper form.login, .woocommerce .woocommerce-form-wrapper form.register {
    border: none;
    padding: 0;
}
.woocommerce .woocommerce-form-wrapper form.register { 
    background: #FFFFFF;
    border-radius: 10px;
    padding: 24px 12px;
}
.woocommerce-form-wrapper .woocommerce-LostPassword {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}
.woocommerce-form-wrapper .input-text { 
    background: #F5F5F5 !important;
}
.woocommerce-form-wrapper form .woocommerce-button {
    width: 100%;
    color: #FFFCF3 !important;
    background: #7CE8DF !important;
    border-radius: 24px 24px 24px 24px;
    line-height: 1.5;
}
.woocommerce-form-wrapper .woocommerce-button:hover {
    background: #00A899 !important;
}
.woocommerce-form-wrapper .woocommerce-toggle-form {
    text-align: center;
}
.woocommerce-form-wrapper .woocommerce-toggle-form a {
    color: #00A899;
    text-decoration: underline;
    font-weight: 600;
    text-transform: uppercase;
}
.woocommerce-form-wrapper .woocommerce-privacy-policy-text {
    margin-bottom: 20px;
}

/* Days Filter Buttons Styles */
.days-filter {
    margin: 15px 0;
    display: flex;
    gap: 10px;
    justify-content: flex-start;
}

.days-filter-btn {
    background: #fff;
    color: #00586F;
    border: 1px solid #00586F;
    padding: 0px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.days-filter-btn:hover {
    background: #f0f4ff;
}

.days-filter-btn.active {
    background: #00586F;
    color: #fff;
}

.days-filter-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(68, 114, 196, 0.3);
}

/* Days Popup Styles */
.days-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: flex-end; /* Changed to align at bottom */
    z-index: 9999;
	display: flex !important;
    opacity: 0;
	transition: all 0.3s ease-in-out;
    visibility: hidden;
}
.days-popup-overlay.show {
	opacity: 1;
    visibility: visible;
}

.days-popup-content {
    background: white;
    border-radius: 20px 20px 0 0; /* Rounded top corners only */
    width: 530px;
    height: 500px;
    position: fixed;
    bottom: 0;
	left: 50%;
    transform: translateX(-50%) translateY(100%); /* Initially hidden below */
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
	visibility: hidden;
}

.days-popup-overlay.show .days-popup-content {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
	visibility: visible;
}

.days-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 15px 20px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0; /* Prevent header from shrinking */
}

.days-popup-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.close-days-popup {
    font-size: 24px;
    cursor: pointer;
    color: #666;
    line-height: 1;
}

.close-days-popup:hover {
    color: #000;
}

.days-popup-body {
    flex: 1;
    overflow-y: auto; /* Enable scrolling */
    padding: 0 20px 20px 20px;
}

.days-options {
    display: flex;
    flex-direction: column; /* List layout - one day per row */
    gap: 10px;
 	overflow-y: auto;
    max-height: 420px;
}

.days-option-btn {
    padding: 15px 20px;
    background: white;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
	border: none;
	text-align: center;
	border-radius: 40px;
}
body.popup-open {
    overflow: hidden;
}

.days-option-btn:hover {
    border-color: #00586F;
    background-color: #f0f4ff;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .days-popup-content {
        width: 100%;
        height: 60vh;
        border-radius: 20px 20px 0 0;
    }
}

/* Skeleton loading cho package buttons */
.package-button.loading {
    pointer-events: none;
    position: relative;
    overflow: hidden;
}

.package-button.loading .badges,
.package-button.loading .package-info {
    opacity: 0;
}

.package-button.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: inherit;
    z-index: 1;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}