.gift-progress {
    text-align: center;
    font-family: sans-serif;
    margin-bottom: 30px;
    border-bottom: 1px solid rgb(240, 240, 240);
    border-top: 1px solid rgb(240, 240, 240);
    padding: 15px 0;
    font-size: 14px;
    font-family: inherit;
}

.gift-progress .status {
    font-weight: 500;
    margin-bottom: 10px;
}

.progress-bars {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.level {
    flex: 1;
    text-align: center;
}

.level:first-child .bar {
    border-radius: 10px 0px 0px 10px;
}

.level:last-child .bar {
    border-radius: 0px 10px 10px 0px;
}

.level:last-child .bar .bar-fill {
    border-radius: 0px 10px 10px 0px;
}

.level:first-child .bar .bar-fill {
    border-radius: 10px 0px 0px 10px;
}

.bar {
    height: 12px;
    padding: 2px;
    background-color: rgb(217, 217, 217);
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
}

.bar-fill {
    height: 100%;
    background-color: #8bc34a;
    transition: width 0.3s ease;
}

.bar-fill.partial {
    background-color: #ff9800;
}

.level-label {
    font-size: 12px;
}

.level-label strong {
    font-weight: 700;
    margin-left: 10px;
}

.popup-cart__count {
    font-size: 18px;
}

#popup-cart {
    display: none;
    position: fixed;
    z-index: 9999999999;
    background: #fff;
}

#popup-cart.mobile.open {
    bottom: 0;
}

#popup-cart.desktop.open {
    right: 0;
}

.popup-cart_overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    transition: background-color .4s ease-in-out;
    z-index: -1;
}

.popup-cart_overlay.open {
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 99998;
}

.desktop {
    position: fixed;
    width: 100%;
    max-width: 640px;
    height: 100%;
    top: 0;
    right: -100%;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    transition: right 0.4s ease-in-out;
    z-index: 9999;
    display: flex !important;
    flex-direction: column;
}

.desktop:after {
    /*  content: ""; */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2);
}

#popup-cart .product-remove {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    font-weight: 700;
    text-decoration: none;
    color: #fe5510;
    position: relative;
    top: 0;
    right: 0;
    height: 17px;
}

.popup-cart-info__top {
    margin-bottom: 15px;
}

.popup-cart-info__bottom {
    align-items: center;
}

.popup-cart-quantity {
    display: flex;
    align-items: flex-end;
}

.popup-cart-quantity .quantity input {
    height: 38px;
}

#popup-cart .products li .products__item {
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
}


#popup-cart .popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px 10px 30px;
    font-weight: bold;
}

.popup-body .cart-empty {
    margin-bottom: 40px;
}

.popup-body .cart-empty__img {
    position: relative;
    flex: 0 0 auto;
    width: 225px;
    max-width: 100%;
    margin-bottom: 35px;
}

.popup-body .cart-empty__content p {
    margin-bottom: 0;
}

.popup-body .cart-empty__content h2,.popup-body .cart-empty__content .h2 {
    margin-bottom: 35px;
    text-align: center;
}

.popup-cart__coupon {
    margin-bottom: 30px;
    margin-top: 30px;
}

.popup-cart__points{
    text-align: center;
    margin-bottom: 30px;
}
.popup-cart__points p{
     font-size: 18px;
    font-weight: 700;
    line-height: 22px;
}
.popup-cart__points strong{
    color: #fe5510;
    font-weight: 700;
}

.popup-cart__coupon .btn-secondary {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    font-size: 18px;
    line-height: 22px;
    flex: 0 0 auto;
    width: 100%;
    max-width: 196px;
    border-radius: 0px 2px 2px 0px;
    box-shadow: none;
    transition: box-shadow .2s ease-in-out;
}

.popup-cart__coupon .btn-secondary:hover {
    box-shadow: 0px 4px 7.9px 0px rgba(0, 0, 0, 0.25);
}

.popup-cart__coupon input {
    flex: 1;
    border-bottom: 1px solid #dbdbdb;
    border-left: 1px solid #dbdbdb;
    border-top: 1px solid #dbdbdb;
    border-right: none;
    border-radius: 2px 0px 0px 2px;
    outline: none;
    padding: 0 15px;
    color: #8b8b8b;
    font-size: 14px;
    border-radius: 2px 0px 0px 2px;
}

.popup-cart__coupon-messages span {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 17px;
    padding: 5px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
}

.popup-cart__coupon-messages.success span {
    background-color: rgb(144, 187, 3);
}

.popup-cart__coupon-messages.error span {
    background-color: rgb(254, 85, 16);
}

.popup-footer .remove-coupon {
    background-color: transparent;
    color: #fe5510;
    padding: 0 !important;
    box-shadow: none !important;
    border: none;
    text-decoration: underline;
    cursor: pointer;
    outline: none;
}

.cart-empty__icons {
    padding: 30px 40px;
    border-bottom: 1px solid rgb(240, 240, 240);
    border-top: 1px solid rgb(240, 240, 240);
}

.close-btn svg {
    margin-right: 0 !important;
}

.cart-empty__icons-item img {
    margin-bottom: 15px;
}

.cart-empty__icons-item span {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
}

#popup-cart .popup-body {
    padding: 15px;
}

#popup-cart .popup-footer {
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

#popup-cart .popup-footer button.continue-shopping {
    border: none;
    cursor: pointer;
    border-radius: 2px;
    box-shadow: 0px 4px 7.9px 0px rgba(0, 0, 0, 0.25);
    font-size: 22px;
    height: 45px;
    flex: 0 0 auto;
    width: calc(50% - 8px);
    max-width: calc(50% - 8px);
    display: flex;
    justify-content: center;
    align-items: center;
}

#popup-cart .popup-footer {
    padding: 30px;
    box-shadow: 0px -4px 10px 0px rgba(0, 0, 0, 0.25);
    position: relative;
}

#popup-cart .popup-footer.hidden {
    display: none;
}

.related-products-slider .product {
    flex: 0 0 auto;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 0;
    padding: 0;
    border: none !important;

}



#popup-cart.open.desktop {
    right: 0;
}

#popup-cart .popup-body {
    padding: 15px 30px;
    flex: 1;
}

#popup-cart .popup-body-scroll {
    display: flex;
    overflow: auto;
    flex: 1;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

#popup-cart .popup-body-scroll::-webkit-scrollbar {
    display: none;
}

.related-products-carousel {
    max-width: calc(100% - 60px);
    overflow: hidden;
    margin: 0 auto;
    padding: 25px 40px 40px;
}

.related-products-carousel h3,.related-products-carousel .h3 {
    text-align: center;
    margin-bottom: 30px;
    line-height: 1;
    font-weight: 600;
}

.owl-carousel .owl-item img {
    max-width: 99%;
    height: 180px;
    width: initial !important;
}

.owl-nav {
    display: flex;
    justify-content: space-between;
    position:static;
    /* pointer-events: none; */

}



.owl-nav button {
    pointer-events: all;
    font-size: 20px;
    border: none;
    color: #000;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.owl-nav button:hover {
    color: #7fc420;
}

.owl-nav button svg {
    fill: currentColor;
    transition: all .3s ease-in-out;
}

.owl-nav button:hover svg {
    color: #7fc420;
}

.owl-stage {
    display: flex;
    justify-content: center;
}

.owl-nav button.disabled {
    cursor: default !important;
    pointer-events: none !important;
}

.owl-nav button.disabled svg {
    fill: #8b8b8b !important;
}

.owl-carousel .owl-item {
    display: flex;
    flex: 1 0 auto;
    height: auto;
}

.owl-carousel .owl-item>* {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.owl-prev {
    left: -30px;
}

.owl-next {
    right: -30px;
}

.owl-nav button:hover {
    background: #eee;
}

.popup-cart-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border: 1px solid #F0F0F0;
    margin: 15px 0px;
}

.popup-cart-img img {
    width: 86px;
    height: auto;
    margin-right: 15px;
    margin-left: 15px;

}

.popup-cart-info {
    flex: 1;
    padding: 0 12px;
}

.popup-cart-title {
    font-size: 15px;
    font-weight: bold;
}

.popup-cart-link {
    color: #90BB03;
    font-size: 18px;
    text-decoration: underline;
    font-family: 'Abel';
    font-weight: 600;
}

.popup-cart-meta {
    font-size: 14px;
}

.popup-cart-meta>div {
    margin-bottom: 12px;
}
.popup-cart-meta strong{
    text-transform: capitalize;
}

#popup-cart .quantity {
    margin-right: 0px !important;
}

.popup-cart-side {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
    min-width: 120px;
    margin-right: 15px;
}

.popup-cart-prices {
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-cart-old-price {
    font-size: 15px;
    color: #aaa;
    text-decoration: line-through;
    margin-right: 5px;
}

.popup-cart-new-price {
    font-size: 18px;
    font-weight: bold;
    color: rgba(144, 187, 3, 1);
}

#popup-cart-total {
    font-size: 28px;
    font-weight: 700;
    padding-top: 20px;
    color: #90BB03;
    display: flex;
    align-items: center;
}

#popup-cart-total span {
    margin-left: 3px;
}

#popup-cart-total b {
    font-size: 18px;
    color: #000000;
    margin-left: 5px;
}

.popup-header span {
    font-size: 28px;
    font-weight: 700;
    display: flex;
}

.popup-header svg {
    fill: #8ec243;
    margin-right: 15px;
}

.popup-header>div {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    max-width: calc(100% - 28px);
}

.popup-body button {
    cursor: pointer;
}

.single_add_to_cart_button.loading,
.btn-green.loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.single_add_to_cart_button.loading::after,
.btn-green.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    margin: -9px 0 0 -9px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.popup-body.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.5;
}

.popup-body.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 26px;
    height: 26px;
    margin: -13px 0 0 -13px;
    border: 3px solid #7fc420;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spinner 0.6s linear infinite;
    z-index: 999;
}

.popup-footer {
    display: flex;
    flex-direction: column;
}

.popup-footer__top-item {
    font-size: 20px;
    margin-bottom: 15px;
}

.popup-footer__top-item>span:first-child {
    font-weight: 700;
}

.popup-footer__top-item-total {
    font-size: 28px;
    font-weight: 700;
    color: #7fc420;
}

.go-to-cart {
    background: #7fc420;
    color: white;
    font-weight: bold;
    border-radius: 2px;
    box-shadow: 0px 4px 7.9px 0px rgba(0, 0, 0, 0.25);
    font-size: 22px;
    height: 45px;
    flex: 0 0 auto;
    width: calc(50% - 8px);
    max-width: calc(50% - 8px);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.continue-shopping {
    flex: 1;
    background: #ff5a1f;
    color: white;
    font-weight: bold;
    padding: 12px;
    border: none;
}

.products-view-toggle-d {
    display: none;
}

.mob_filter {
    width: 100%;
    display: flex;
}

.product-list-b {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 16px;
}

.popup-body-scroll .products li .products__item {
    /* height: 439px; */
}


@media screen and (max-width: 991px) {
     .popup-cart__points{
        margin-bottom: 20px;
     }
    .popup-cart__points p{
        font-size: 14px;
        line-height: 17px;
    }
    .products.grid li.product {
        width: calc(25% - 15px);
        margin: 7px;
        display: inline-block;
        vertical-align: top;
    }

    .popup-body-scroll .products li .products__item {
        height: auto;
    }

    .products.list li.product {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-bottom: 15px;
    }

    .products.list li.product img {
        width: 150px;
        height: auto;
        margin-right: 20px;
    }

    .products-view-toggle .view-toggle.active svg {
        color: #7fc420;
    }

    .products {
        margin-left: 0;
        display: block;
        flex-wrap: unset;
        width: 100%;
    }

    .products li {
        width: 100%;
        max-width: 100%;
    }

    .product-list-description {
        display: none;
    }

    .products__item-list-inner {
        display: flex;
        gap: 20px;
        width: 100%;
        align-items: center;
    }

    .product-list-thumb {
        flex: 0 0 80px;
        border-radius: 15px;
        overflow: hidden;
        margin: 0px 15px;
    }

    .woocommerce-loop-product__title a {
        font-size: 16px;
        margin: 0 0 10px;
        color: rgba(49, 49, 49, 1);
        text-decoration: none;
    }

    .product-list-price.has-sale del bdi {
        font-size: 12px;
        color: rgb(182 181 181);
        font-weight: 600;
        margin-right: 5px;
    }

    .product-list-price.has-sale ins bdi {
        font-size: 16px;
        color: rgba(49, 49, 49, 1);
        font-weight: 600;
    }

    .btn-filter {
        /*padding: 3px !important;*/
    }

    .stock.out-of-stock {
        color: red;
    }

    .product-list-price.has-sale bdi {
        font-size: 16px;
        color: rgba(49, 49, 49, 1);
        font-weight: 600;
    }

    .product-list-price:not(.has-sale) bdi {
        font-size: 16px;
        color: rgba(49, 49, 49, 1);
        font-weight: 600;
    }

    .product-list-button {
        background-color: rgba(144, 187, 3, 1);
        width: 25px;
        height: 25px;
        border-radius: 5px;

    }

    .product-list-button svg {
        margin: 6px 5px;
    }

    .product-list-info {
        display: flex;
        justify-content: space-between;
        width: 100%;
        margin-right: 15px;
        align-items: end;
    }

    .product-list-d {
        flex: 1;
    }

    .products__item-list {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0rem 0.25rem 0.94rem 0.31rem rgba(0, 0, 0, 0.25);
        width: 100%;
        margin-bottom: 22px;
    }

    .products__item-list-inner-head {
        background: linear-gradient(90deg, rgba(55, 60, 132, 1) 0%, rgba(108, 181, 203, 1) 100%);
        color: #fff;
        text-align: center;
        font-size: 10px;
        font-weight: 700;
        padding: 7px;
    }

    .product-list-rating {}

    .product-list-stock {}

    .stock.in-stock {
        color: #90bb03;
    }

    .woocommerce-result-count {
        /*display: none;*/
    }

    .mob_filter {
        display: flex;
        justify-content: space-between;
        width: 100%;
        align-items: center;
    }

    #mobFilter {
        /*margin-right: 11px;*/
    }

    .products-view-toggle-d {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-bottom: 20px;
    }

    .mobile {
        position: fixed;
        width: 100%;
        max-width: 100%;
        height: 80vh;
        top: unset;
        bottom: 0;
        right: unset;
        background: #fff;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
        transition: bottom 0.4s ease-in-out;
        z-index: 9999;
        display: flex !important;
        flex-direction: column;
        margin: unset;
        border-radius: 14px 14px 0px 0px;
    }

    .popup-cart-info__bottom {
        align-items: flex-end;
    }

    .popup-cart__coupon {
        margin-bottom: 20px;
        margin-top: 15px;
    }

    .cart-empty__icons {
        padding: 15px;
    }

    .cart-empty__icons-item img {
        height: 25px;
        margin-bottom: 10px;
    }

    .cart-empty__icons-item span {
        font-size: 12px;
        line-height: 15px;
    }

    .popup-body .quantity input {
        width: 20px;
        height: 21px;
        border-radius: 0;
        background: #fff;
        text-align: center;
        margin-right: 0;
        outline: none;
        border: none;
        font-family: inherit;
    }

    .popup-body .quantity button {
        flex: 0 0 auto;
        width: 21px;
        max-width: 21px;
        background: linear-gradient(180deg, #F0F0F0 0%, #D9D9D9 100%);
        border: none;
    }

    #popup-cart .popup-body {
        padding: 0px 15px;
        flex: 1;
    }

    .gift-progress {
        margin-bottom: 20px;
    }

    .progress-bars {
        gap: 3px;
    }

    .level-label {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 10px;
        text-align: center;
    }

    .level-label strong {
        font-size: 12px;
        margin-left: 0;
        margin-top: 1px;
    }

    .popup-cart__count {
        font-size: 14px;
    }

    .popup-cart__coupon .btn-secondary {
        max-width: 113px;
        font-size: 14px;
        height: 30px;
        padding: 0;
    }

    .popup-header span {
        font-size: 20px;
        font-weight: 700;
    }

    .popup-header svg {
        height: 19px;
        margin-right: 5px;
    }

    .popup-header>div {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
    }

    #popup-cart .popup-header {
        display: flex;
        justify-content: space-between;
        padding: 30px 15px 20px 15px;
        font-weight: bold;
    }

    #popup-cart-total b {
        font-size: 14px;
        color: #000000;
        margin-left: 5px;
    }

    #popup-cart-total {
        font-size: 24px;
        font-weight: 700;
        padding-top: 20px;
        color: #90BB03;
        display: flex;
        align-items: center;
    }

    .popup-cart-item {
        padding: 10px 0;
    }

    .related-products-carousel {
        margin-top: 0;
        padding: 30px 0;
    }

    .related-products-carousel h3 {
        margin-bottom: 15px;
    }

    .owl-carousel {
        /* padding: 0px 5px; */
    }

    .owl-carousel .owl-stage-outer {
        overflow: hidden;
    }

    .owl-prev {
        left: -15px;
        z-index: 10;
    }

    .owl-next {
       right: -15px;
       z-index: 10;
    }



    .owl-carousel .owl-item img {
        height: 100px;
    }

    .popup-cart__coupon-messages span {
        margin-top: 15px;
    }

    .popup-cart-img img {
        width: 45px;
        height: auto;
        margin-left: 5px;
    }

    .popup-cart-link {
        color: #90BB03;
        font-size: 14px;
        text-decoration: underline;
        max-width: calc(100% - 23px);
    }

    .popup-cart-info {
        padding: 0 5px 0 0;
    }

    #popup-cart .product-remove {
        font-size: 17px;
        height: 17px;
    }

    .popup-cart-side {
        text-align: right;
        display: flex;
        flex-direction: column;
        gap: 6px;
        align-items: flex-end;
        min-width: 94px;
        margin-right: 12px;
        height: 79px;
    }

    .related-products-carousel {
        max-width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }

    #popup-cart .popup-footer {
        padding: 15px;
    }

    .popup-footer__top-item {
        font-size: 14px;
        margin-bottom: 10px;
        display: none !important;
    }

    .popup-footer__top-item.active {
        display: flex !important;
    }

    .popup-footer__top-item-total {
        font-size: 18px;
        display: flex !important;
    }

    #popup-subtotal {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    #popup-subtotal:after {
        content: "";
        width: 0;
        height: 0;
        border-left: 3px solid transparent;
        border-right: 3px solid transparent;
        border-top: 3px solid #90BB03;
        display: block;
        margin-left: 5px;
    }

    .popup-footer__top-item.active #popup-subtotal:after {
        transform: rotate(-180deg);
    }

    #popup-cart .popup-footer button.continue-shopping,
    .go-to-cart {
        font-size: 18px;
        width: calc(50% - 5px);
        max-width: calc(50% - 5px);
        height: 35px;
    }

    .added_to_cart.wc-forward {
        display: none;
    }

    .popup-cart-prices {
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 16px !important;

    }
    .popup-cart-prices ins span{
        font-size: 16px !important;
    }
    .popup-cart-prices del span{
        font-size: 14px !important;
    }

    .popup-cart-info__top {
        margin-bottom: 10px;
    }

    .popup-cart-meta>div {
        margin-bottom: 10px;
    }

    .popup-cart-meta {
        font-size: 10px;
        line-height: 12px;
    }

    .related-products-carousel .product__header-title {
        font-size: 0.8rem !important;
    }

    .owl-nav button {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .owl-prev-arrow,
    .owl-next-arrow {
        font-size: 12px !important;
        padding: 0 !important;
        margin: 0 !important;
        display: block !important;
        height: 18px;
    }

    .summary .btn-primary:hover {
        background-color: #fff;
        color: #90bb03;
    }

    .product .mnm_button_wrap.add_to_cart_button_wrap .single_add_to_cart_button:hover,
    .mnm_reset:hover {
        background-color: #fff;
        color: #90bb03;
    }

    .mnm_table_item .product-name {
        flex: auto;
    }

    .mnm_table_item .flex-column>div:nth-child(2) {
        display: none;
    }

    .mnm_table_item .product-quantity:before {
        display: block;
        content: 'Total:';
        margin-right: 5px;
    }
}

#popup-cart .products li .products__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    box-sizing: border-box;
}

#popup-cart .products li .products__item a.woocommerce-loop-product__link {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.products__item-top {
    /* height: initial;
    width: 100%;
    max-width: 100%; */
    width: 100%;
}

.products__item-bottom {
    margin-bottom: 15px;
}

.products li .products__item-bottom .price {
    margin-bottom: 0;
}

#popup-cart .products li .products__item .product_meta,
#popup-cart .products li .products__item .price,
#popup-cart .products li .products__item .button {
    margin-top: auto;
}

.owl-carousel,
.owl-stage-outer,
.owl-stage {
    overflow: visible !important;
}

.owl-item {
    opacity: 0;
    transition: opacity .3s ease-in-out;
    pointer-events: none;
}

.owl-item.active {
    opacity: 1;
    pointer-events: all;
}
