.button-add-to-cart {
    display: inline-flex;
    justify-content:center;
    align-items:center;
    vertical-align: middle;
    margin: 0;
    padding: 10px 20px;
    border: 1px solid transparent;
    border-radius: 3px;
    -webkit-transition: background-color 0.25s ease-out, color 0.25s ease-out;
    transition: background-color 0.25s ease-out, color 0.25s ease-out;
    font-family: inherit;
    -webkit-appearance: none;
    line-height: 1;
    cursor: pointer;
    outline: none;
    background-color: #f1f1f1;
    color: #313131;
    font-weight: 500;
    min-width: 145px !important;
}

.js-mini-cart-count {
    position: absolute;
    top: 3px;
    right: -10px;
    background-color: #136ac3;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 20px;
    width: 20px;
    height: 20px;
    width: fit-content;
}

.header-quicklink .mini-cart-link .js-mini-cart-count {
    padding: 2px;
}

.button-add-to-cart + .button-add-to-cart {
    margin-left: 10px;
}

.button-add-to-cart .button-icon {
    margin-right: 5px;
}

.button-add-to-cart:hover {
    outline: none;
}

#cart-module-button.product-add-to-cart-box {
    margin-top: 32px;
    margin-bottom: 15px;
}

#cart-module-button .add-to-cart-btn {
    background-color: #ff5965;
    padding: 1rem 2.4rem;
    border-radius: var(--large-padding);
    color: var(--white);
}

.mini-cart-contain {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 300px;
    max-width: 380px;
    padding: 16px 0;
    display: none;
    z-index: 12;
}

.list-item-box {
    max-height: 300px;
    overflow-x: hidden;
    overflow-y: auto;
}

.mini-cart-list,
#cart-error {
    border-radius: 3px;
    box-shadow:  0 4px 8px -2px rgb(0 0 0 / 20%), 0 8px 12px 2px rgb(0 0 0 / 14%), 0 3px 15px 5px rgb(0 0 0 / 10%);
    background-color: #fff;
    min-height: 50px;
    position: relative;
}

#cart-error {
    padding: 10px 16px;
    text-align: center;
}

.mini-cart-list:after,
#cart-error::after {
    bottom: 100%;
    left: auto;
    right: 16px;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(241, 241, 241, 0);
    border-bottom-color: #fff;
    border-width: 8px;
    margin-left: -8px;
}

.mini-cart-item  {
    padding: 7px 12px;
}

.mini-cart-item:first-child {
    border-radius: 3px 3px 0 0;
}

.mini-cart-item:last-child {
    border-radius: 0 0 3px 3px;
}

.mini-cart-item + .mini-cart-item {
    border-top: 1px solid #e1e1e1;
}

.mini-cart-item img {
    width: 64px;
    height: 64px;
}

.mini-cart-item .mini-cart-content {
    width: calc(100% - 64px);
    padding-left: 12px;
}

.mini-cart-head {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-weight: 400;
}

.mini-cart-info {
    margin-top: 7px;
    width: 100%;
    font-style: 16px;
}

.mini-cart-item .new-price {
    color: #C52C29;
    margin-right: auto;
    font-weight: 500;
}

.mini-cart-item .discount-price {
    display: block;
    font-size: 13px;
    color: black;
    font-weight: 400;
}

.quantity-mini-cart {
    margin-left: 7px;
}

.mini-cart-item .old-price {
    color: var(--gray);
    margin-left: 5px;
    text-decoration: line-through;
}

#cart-error > div {
    flex-direction: column;
}

#cart-error a {
    background-color: var(--primary);
    padding: 7px 10px;
    border-radius: 3px;
    color: #fff;
    margin-top: 16px;
    display: inline-block;
    user-select: none;
}

.mini-cart-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px;
    border-top: 1px solid #e1e1e1;
}

.list-item-box {
    padding-top: 15px;
}

.checkout-btn {
    padding: 7px 20px;
    border-radius: 32px;
    text-align: center;
    color: #fff;
    background-color: #ff3945
}

.checkout-btn:hover {
    color: #fff;
    background-color: #ec0b1a;
}

.checkout-btn svg {
    margin-right: 5px;
}


.continue-btn {
    position: absolute;
    top: 0;
    right: 0;
    color: var(--black);
    cursor: pointer;
    font-size: 19px;
    padding: 3px 7px;
    background-color: transparent;
    cursor: pointer;

}

/* mini shopping cart */
.mini-shopping-wrapper {
    width: 350px;
    position: fixed;
    bottom: 32px;
    right:  32px;
    background-color: #fff;
    transition: all 350ms ease-in-out;
    box-shadow:  0 8px 10px -5px rgb(0 0 0 / 20%), 0 16px 24px 2px rgb(0 0 0 / 14%), 0 6px 30px 5px rgb(0 0 0 / 10%);
    border-radius: 4px;
    padding: 16px;
    z-index: 999999999999;
    transition: all 350ms ease-in-out;
    transform: translateY(250%);
}

.mini-shopping-wrapper.active {
    transform: translateY(0);
}

.close-mini-shopping-cart {
    border: none;
    background-color: transparent;
    outline: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.close-mini-shopping-cart:hover {
    color: var(--secondary)
}

.mini-shopping-cart-link {
    color: var(--primary);
    width: 100%;
}

.mini-shopping-cart-title div {
    font-weight: 600;
    margin-bottom: 8px;
}
.mini-shopping-cart-title span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 13px;
    width: 100%;
}

.mini-shopping-cart-title small {
    color: var(--darkness);
    font-size: 75%;
}

.mini-shopping-cart-image-box {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.mini-shopping-cart-image {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.mini-shopping-cart-check {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 16px;
    height: 16px;
    border-radius: 16px;
    color: #fff;
    display: flex;
    background-color: #47cccc
}

.mini-shopping-cart-title {
    padding-left: 8px;
    padding-right: 8px;
    line-height: 1.3;
    width: calc(100% - 160px);
}

.view-cart-button {
    width: 100px;
    padding: 8px 0;
    text-align: center;
    margin-left: auto;
    color: #ff596f;
    font-size: 14px;
    border-radius: 25px;
    font-weight: 600;
}

.view-cart-button:hover {
    background-color: #f1f1f1
}

.mini-shopping-cart-bottom {
    background-color: #e7e4f7;
    color: #6551CC;
    font-size: 18px;
    border-radius: 5px;
    margin: 15px 0 0;
    padding: 8px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.loading-content {
    display: none;
}

.is-waiting:not(.is-initing) {
    opacity: .6;
}

.is-waiting:not(.is-initing) .js-add-to-cart-icon-loaded {
    display: none;
}

.is-waiting:not(.is-initing) .loading-content {
    display: inline!important;
    padding: 0 4px;
}

.added-to-cart-content {
    display: none;
}

.add2basket-wrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: flex-start;
    background-color: rgba(11, 11, 11, 0.7);
    z-index: 123;
}

.add2basket-wrapper.active {
    display: flex;
}

.add2basket-content {
    background-color: #fff;
    border-radius: 5px;
    padding: 0;
    max-width: 1000px;
    width: 100%;
    margin: 40px auto 0;
    max-height: 660px !important;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 8px 10px -5px rgb(0 0 0 / 20%), 0 16px 24px 2px rgb(0 0 0 / 14%), 0 6px 30px 5px rgb(0 0 0 / 10%);
    position: relative;
}

.md-add2basket-heading {
    font-size: 23px;
    font-weight: 500;
    padding: 16px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.2;
}

.md-add2basket-heading svg {
    min-width: 20px;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    color: #198754
}

.md-add2basket-slide {
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e1e1e1;
    padding-top: 16px;
    padding-bottom: 8px;
    margin-top: 16px;
}

.md-add2basket-slide-head {
    font-size: 19px;
    font-weight: 500;
    padding: 0 16px;
}

.md-add2basket-list {
    display: flex;
    padding: 0 16px;
    transition: transform 0.6s ease;
}

.md-product-title {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    white-space: nowrap;
    -webkit-box-orient: vertical;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
}
.md-add2basket-price {
    font-weight: 500;
    display: flex;
    align-items: center;
    margin-top: 8px;
    justify-content: flex-start;
    flex-wrap: wrap;
    color: #C52C29;
}

.md-add2basket-price span {
    margin-right: 8px;
}

.md-add2basket-image {
    height: 170px;
    width: 100%;
    object-fit: contain;
}
.image-add-to-cart {
    height: 100%;
}

.md-add2basket-slider-control {
    position: absolute;
    display: none;
    align-items: center;
    justify-content: center;
    color: #313131;
    text-align: center;
    width: 36px;
    height: 36px;
    top: calc(50% - 18px);
    border-radius: 36px;
    background-color: #fff;
    box-shadow: 0 3px 4px -1px rgb(0 0 0 / 20%), 0 5px 10px 0px rgb(0 0 0 / 14%), 0 1px 12px 0px rgb(0 0 0 / 10%);
    cursor: pointer;
}

.md-add2basket-item {
    padding: 0 12px;
}

.md-add2basket-link {
    display: block;
    position: relative;
    margin-bottom: 8px;
    overflow: hidden;
}

.md-add2basket-link:before {
    content: "";
    padding-top: 100%;
    display: block;
}

.md-add2basket-link img {
    width: 100%;
    height: 100%;
    display: block;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: contain;
    object-position: center;
    transition: transform 250ms ease-in-out;
}


.add2basket-item-box {
    --thumb: calc(120px + (240 - 120) * ((100vw - 300px) / (1920 - 300)));
    justify-content: center;
    display: flex;
    max-width: 660px;
    margin: 0 auto;
    width: 92%;
}

.add2basket-link {
    width: var(--thumb);
    position: relative;
    display: block;
    overflow: hidden;
}

.add2basket-link:before {
    content: "";
    display: block;
    padding-top: 100%;
}

.add2basket-link img {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: contain;
    object-position: center;
    transition: 250ms ease-in-out;
}

.add2basket-item-detail {
    width: calc(100% - var(--thumb));
    padding-left: 16px;
    font-weight: 500;
}

.add2basket-price {
    display: block;
    font-size: 19px;
    color: #C52C29;
}

.add2basket-item-footer {
    margin-top: 16px;
}

.viewcart-button {
    border-radius: 32px;
    padding-top: 8px;
    padding-bottom: 8px;
    background: var(--pr-color-light); 
    color: var(--pr-color-primary);
    transition: none;
}

.checkout-button {
    border-radius: 32px;
    background-color: #ff5965;
    color: #fff;
    padding-top: 8px;
    padding-bottom: 8px;
}


.viewcart-button:hover {
    background-color: var(--pr-color-primary);
    color: #fff;
}

.checkout-button:hover {
    background-color: #d6303c;
    color: #fff;
}



#mini-cart-header .mini-cart-action a.button {
    flex: 0 0 48%;
}

#add2basket-close {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 29px;
    cursor: pointer;
    user-select: none;
}

#add2basket-close:hover {
    color: #ff5965
}
.add2basket-wrapper .buymore-button {
    border-radius: 32px;
    background-color: #fff;
    color: var(--pr-color-dodgerblue);
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 32px;
    padding-right: 32px;
    line-height: 24px;
    border: 2px solid var(--pr-color-dodgerblue);
    margin-left: 10px;
}
.add2basket-wrapper .buymore-button:hover {
    background: var(--pr-color-dodgerblue);
    color: #fff;
}

@media (min-width: 1179px) {
    .great-taste {
        font-size: 14px;
        line-height: 1.2;
        text-align: center;
        margin-top: 15px;
    }

    .cart-right-wrapper .footer-payments-list {
        margin-top: 10px;
    }
}

@media (max-width: 760px) {
    .add2basket-wrapper .buymore-button {
        width: 100%!important;
        text-align: center;
        padding-left: 12px;
        padding-right: 12px;
        font-size: 15px;
        margin-top: 10px;
        margin-left: 0;
    }
}
@media (min-width: 1181px) {
    .md-add2basket-link:hover img,
    .add2basket-link:hover img {
        transform: scale(1.45);
    }
}
@media (max-width: 1025px) {
    .md-add2basket-list {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .add2basket-content {
        width: 90%;
    }

    .add2basket-top {
        padding: 0 16px
    }

    .md-add2basket-heading {
        padding: 16px 0;
        font-size:18px;
    }
}

@media (max-width: 992px) {
    .mini-cart-contain {
        max-width: 280px;
    }

    .mini-shopping-wrapper {
        width: calc(100% - 64px);
        max-width: 360px;
    }


    .md-add2basket-heading {
        margin-bottom: 0;
    }
}

@media (max-width: 760px) {
    .mini-cart {
        position: static;
    }

    .mini-cart-contain {
        max-width: 300px;
        left: calc((100vw - 300px) / 2)
    }

    .addtocart-action-wrapper {
        position: sticky;
        top: 0;
        left: 0;
        right: 0;
        box-shadow: 0 1px 1px -1px rgb(0 0 0 / 15%), 0 1px 2px 0px rgb(0 0 0 / 15%), 0 1px 4px 0px rgb(0 0 0 / 15%);
    }

    .product-info-content-wrapper {
        position: relative;
        z-index: auto;
    }

    .mini-shopping-wrapper {
        width: 320px;
        left: calc(50% - 160px);
        right: auto;
        top: -1000px;
        bottom: auto;
        padding-left: 8px;
        padding-right: 8px;
    }

    .mini-shopping-wrapper.active {
        top: 75px;
        bottom: auto;
    }

    .view-cart-button {
        width: 70px;
        font-weight: 500 !important;
    }

    .mini-shopping-cart-title {
        width: calc(100% - 130px)
    }

    .mini-shopping-cart-title div {
        font-weight: 500 !important;
    }

    .product-gallery-item {
        height: calc(100vw - 30px)
    }


    .md-add2basket-image {
        height: 150px
    }

    .add2basket-top .md-add2basket-image {
        height: 100%
    }

    .add2basket-item-box {
        width: 100%;
    }

    .add2basket-item-footer .checkout-button {
        width: 100% !important;
        text-align: center;
        padding-left: 12px;
        padding-right: 12px;
        font-size: 15px;
    }

    .md-add2basket-item {
        min-width: 170px;
        width: 170px;
    }
}

@media (min-width: 767px) {
    .addtocart-action-wrapper {
        padding-left: 0;
        padding-right: 0;
    }

    .product-right-wrapper {
        border-left: 5px solid #f2f2f6;
    }
}

@media (max-width: 480px) {
    #cart-module-content.checkout-page .shopcart-content .shopcart-name {
        grid-gap: 14px;
    }

    .shopping-save-price {
        color: #258635;
        font-size: 15px;
        line-height: 1;
        transform: translateY(-2px);
        -webkit-transform: translateY(-2px);
        -moz-transform: translateY(-2px);
        -ms-transform: translateY(-2px);
        -o-transform: translateY(-2px);
}
    
    #cart-module-content.checkout-page .shopcart-item-link {
        padding-right: 0;
    }

    #cart-module-content.checkout-page .shopcart-content .shopcart-name {
        margin-top: 0;
    }

    #cart-module-content .shopcart-info {
        width: calc(100% - 75px);
        padding: 0;
    }

    #cart-module-content .shopcart-content .shopcart-price,
    #cart-module-content .shopcart-content .shopcart-qty {
        padding-left: 0;
    }

    #cart-module-content .shopcart-content .shopcart-qty {
        margin-left: auto;
    }

    #cart-module-content .shopcart-action {
        width: 30px;
    }
}

@media (max-width: 860px) and (orientation:landscape) {
    .add2basket-content {
        max-height: 320px;
    }


    .addtocart-action-wrapper .button-add-to-cart {
        border-radius: 32px;;
    }

    .addtocart-action-wrapper {
        padding: 16px
    }
}
@media (width: 768px) {

    .mini-shopping-wrapper {
        width: 350px;
        top: -1000px;
        bottom: auto;
    }

    .mini-shopping-wrapper.active {
        top: 35px;
        bottom: auto;
    }
}
#mini-cart-header {
    display: block !important;
}
/*Sidebar Mini cart*/
#mini-cart-header .mini-cart-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    pointer-events: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    overflow: hidden !important;
    justify-content: center;
    align-items: flex-end;
    z-index: 1000000000;    
    transition: var(--pr-trans-standard);
}
#mini-cart-header .overlay-mini-cart-wrapper {
    position: fixed;
    background-color: rgba(140, 149, 165, 0.6);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9;
}

.overlay-mini-cart-wrapper-input {
    position: fixed;
    background-color: transparent;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
}

#show-mini-cart-wrapper:checked ~ #mini-cart-header .mini-cart-wrapper {
    pointer-events: all;
    opacity: 1;
    transition: var(--pr-trans-standard);
}
#mini-cart-header .mini-cart-wrapper.mini-cart-wrapper-not-add .mini-cart-drawer{
    --minicart: 67px;
}
#mini-cart-header .mini-cart-wrapper.mini-cart-wrapper-not-add .mini-cart-top .mini-cart-action {
    display: none;
}
#mini-cart-header .mini-cart-wrapper.mini-cart-wrapper-not-add .mini-cart-top {
    padding-top: 27px;
}
#mini-cart-header .mini-cart-wrapper.mini-cart-wrapper-not-add .mini-cart-top .mini-cart-title {
    display: none;
}
#mini-cart-header .mini-cart-drawer {
    --minicart: 370px;
    --multiItem: calc(var(--minicart) * 1.5);
    box-shadow: var(--pr-shadow-700);
    background: var(--pr-color-white);
    -webkit-overflow-scrolling: touch;
    min-height: 100%;
    height: 100%;
    max-width: 100%;
    width: auto;
    color: var(--pr-color-primary);
    max-width: 33%; 
    transform: translateX(100%);
    transition: var(--pr-trans-standard);
    z-index: 99;
}


#show-mini-cart-wrapper:checked ~ #mini-cart-header .mini-cart-wrapper .mini-cart-drawer {
    transform: translateX(0);
    transition: var(--pr-trans-standard);
}

#mini-cart-header .mini-cart-padding {
    width: 480px;
    max-width: 100%;
    transform: translateZ(0);
    position: relative;
    height: 100%;
    padding: var(--pr-spacing-05) 0;
    display: flex;
    flex-direction: column;
    gap: var(--pr-spacing-07);
}
#mini-cart-header .mini-cart-close {
    position: absolute;
    top: 0;
    right: 18px;
    z-index: 1;
    padding: var(--pr-spacing-05);
}
#mini-cart-header .mini-cart-close label {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 50%;
    padding: 0;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    color: var(--pr-color-primary);
    background: var(--pr-color-flash);   
    cursor: pointer; 
    padding: 4px;
}
#mini-cart-header .mini-cart-close label svg {
    max-height: 100%;
    max-width: 100%;
    overflow: hidden;
    pointer-events: none;
    vertical-align: bottom;
    width: 32px;
    height: 32px;
}
#mini-cart-header .mini-cart-close label:hover {
    background: #f0f0f0;
    color: var(--pr-color-secondary);
}
#mini-cart-header .mini-cart-title span {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    display: inline;
    max-width: 100%;
    font-size: var(--pr-font-size-display2);
    line-height: var(--pr-line-height-display2);
    font-weight: var(--pr-font-weight-display3);
    color: var(--pr-color-primary);
    padding: 0 var(--pr-spacing-07);
}
#mini-cart-header .item-summary .item-summary-product {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
#mini-cart-header .mini-cart-top .item-summary .item-summary-product {
    padding: 0 var(--pr-spacing-07);
}
#mini-cart-header .mini-cart-top .mini-cart-action {
    padding: 0 var(--pr-spacing-07);

}
#mini-cart-header .mini-cart-top .item-summary .item-summary-product {
    padding: var(--pr-spacing-03) var(--pr-spacing-07);
}

#mini-cart-header .item-summary .item-summary-image {
    margin-right: var(--pr-spacing-05);
    position: relative;
}
#mini-cart-header .item-summary .item-summary-image span {
    position: absolute;
    top: 0px;
    left: 0px;
    color: #47cccc !important;
}
#mini-cart-header .item-summary .item-summary-image span svg {
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 100%;
}
#mini-cart-header .item-summary .item-summary-image img {
    width: 80px;
    height: 80px;
    border-radius: var(--pr-radius-small);
}
#mini-cart-header .item-summary-info .title-product {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: var(--pr-font-size-body);
    line-height: var(--pr-line-height-body);
    font-weight: var(--pr-font-weight-heading);
    display: block;
}
#mini-cart-header .item-summary-info .variant-product {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: var(--pr-font-size-display6);
    line-height: var(--pr-line-height-display7);
    font-weight: var(--pr-font-weight-body);
    display: block;
}
#mini-cart-header .item-summary-info .price-product {
    display: block;
}
#mini-cart-header .item-summary-info .price-product b {
    font-size: var(--pr-font-size-body);
    line-height: var(--pr-line-height-body);
    font-weight: var(--pr-font-weight-heading);
    color: var(--pr-color-price);
}

#mini-cart-header .item-summary-info .price-product del {
    margin-left: 5px;
    font-size: var(--pr-font-size-display6);
    line-height: var(--pr-line-height-display6);
    font-weight: var(--pr-font-weight-body);
    color: var(--pr-color-price-compare);
}
#mini-cart-header .item-summary-info .qty-product {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: var(--pr-font-size-display6);
    line-height: var(--pr-line-height-display7);
    font-weight: var(--pr-font-weight-body);
    display: block;
}
#mini-cart-header .mini-cart-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    gap: 12px;
    margin-top: auto;
    flex-wrap: wrap;
}
#mini-cart-header .mini-cart-action a {
    text-align: center;
    text-transform: capitalize;
    font-weight: var(--pr-font-weight-heading);
    padding: 8px 10px;
    line-height: 24px;
    width: 100%;
}

#mini-cart-header .mini-cart-action a.buymore-button {
    text-decoration: underline;  
    border-radius: 32px;
    color: var(--pr-color-primary); 
}
#mini-cart-header .mini-cart-action a.buymore-button:hover {
    background: #fff;
    color: var(--pr-color-secondary);   
}
.mini-cart-wrapper .you-may-also-like-block .border-top,
#mini-cart-header .mini-cart-wrapper .all-item-cart-block .border-top {
    border-top: 1px solid #f2f2f6;
    margin: 0 0 var(--pr-spacing-05);
}
#mini-cart-header .mini-cart-wrapper .you-may-also-like-block .border-top {
    margin-top: var(--pr-spacing-09);
}
.mini-cart-wrapper .you-may-also-like-block .you-may-also-like-title,
#mini-cart-header .mini-cart-wrapper .all-item-cart-block .all-item-cart-title {
    font-size: var(--pr-font-size-display3);
    line-height: var(--pr-line-height-display3);
    font-weight: 500;
    margin: var(--pr-spacing-05) 0;
}
.mini-cart-wrapper .you-may-also-like-block .product-grid,
#mini-cart-header .mini-cart-wrapper .all-item-cart-block .product-grid {
    display: grid;
    justify-content: space-between;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    grid-gap: 24px;
}

.mini-cart-wrapper .you-may-also-like-block {
    padding-left: var(--pr-spacing-07);
    padding-right: var(--pr-spacing-07);
}
#mini-cart-header .product-grid.item-summary {
    gap: var(--pr-spacing-05);
    margin-bottom: var(--pr-spacing-05);
}
#mini-cart-header .product-item-wrapp .product-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    border-radius: var(--pr-radius-small);
}
.product-item-wrapp .product-image img{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    text-align: center;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.item-summary-product .item-summary-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
#mini-cart-header .product-item-wrapp .product-info {
    padding: var(--pr-spacing-04) 0;
}
#mini-cart-header .product-item-wrapp .product-info .product-title {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    width: 100%;
    font-size: var(--pr-font-size-display6);
    line-height: 1.6;
    color: var(--pr-color-primary);
    font-weight: var(--pr-font-weight-heading);
    margin-bottom: 0;
    word-break: break-all;
}
#mini-cart-header .product-item-wrapp .product-info .product-name-desgin {
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: var(--pr-font-size-display6);
    line-height: var(--pr-line-height-display6);
    font-weight: var(--pr-font-weight-body);
}
#mini-cart-header .product-item-wrapp .product-info .minicart-product-price {
    display: block;    
}
#mini-cart-header .product-item-wrapp .product-info .minicart-product-price b {
    font-size: var(--pr-font-size-body);
    line-height: var(--pr-line-height-body);
    font-weight: var(--pr-font-weight-heading);
    color: var(--pr-color-price);
}
#mini-cart-header .product-item-wrapp .product-info .minicart-product-price del {
    margin-left: 5px;
    font-size: var(--pr-font-size-display6);
    line-height: var(--pr-line-height-display6);
    font-weight: var(--pr-font-weight-body);
    color: var(--pr-color-price-compare);
}

#mini-cart-header .mini-cart-wrapper .all-item-cart-container {
    display: flex;
    overflow: hidden;
    transition: var(--pr-trans-standard);
    position: relative;
    flex-direction: column;
    padding: 0 var(--pr-spacing-07);
}
#mini-cart-header .mini-cart-wrapper .all-item-cart-container:not(.extra-content) {
    cursor: default;
    user-select: none;
    overflow: hidden;
}
#mini-cart-header .mini-cart-wrapper .all-item-cart-container.extra-content .product-grid {
    height: fit-content;
    height: -moz-fit-content;
}
#mini-cart-header #all-item-cart-product-grid:checked ~ .product-grid {
    pointer-events: all;
    opacity: 1;
    display: flex;
    height: auto;
    transition: var(--pr-trans-standard);
}


#mini-cart-header .mini-cart-wrapper .all-item-cart-container.only-item:after {
    content: none;
}
#mini-cart-header .mini-cart-wrapper .cart-more-item .cart-less-text {
    display: none;
}
#mini-cart-header .mini-cart-wrapper .cart-more-item .cart-more-text {
    display: block;
}
#mini-cart-header #all-item-cart-product-grid:checked ~ .cart-more-item {
    position: relative;
    bottom: 0;
}
#mini-cart-header #all-item-cart-product-grid:checked ~ .cart-more-item .cart-more-text {
    display: none;
}
#mini-cart-header #all-item-cart-product-grid:checked ~ .cart-more-item .cart-less-text {
    display: block;
}
/*Hidden background after only item cart*/
/* #mini-cart-header .mini-cart-wrapper .all-item-cart-container:has(.item-summary-product:only-child):after {
    display: none;
}

#mini-cart-header .mini-cart-wrapper .all-item-cart-container:has(.item-summary-product:only-child) {
    height: auto;
}
#mini-cart-header .mini-cart-wrapper .all-item-cart-container:has(.item-summary-product:only-child) ~ .cart-more-item {
    display: none;
} */

/*End*/
#mini-cart-header .mini-cart-wrapper.mini-cart-wrapper-not-add .all-item-in-cart-wrapper .mini-cart-action {
    display: flex;
}
#mini-cart-header .all-item-in-cart-wrapper .mini-cart-action {
    display: none;
}
#mini-cart-header #all-item-cart-product-grid:checked ~ .product-grid:after {
    content: none;
}
.mini-cart-wrapper .all-item-cart-block .all-item-cart-title label{
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.mini-cart-wrapper .all-item-cart-block .all-item-cart-title label .icon{
    transition: var(--pr-trans-standard);
}
#mini-cart-header .mini-cart-wrapper .all-item-cart-block:has(#all-item-cart-product-grid:checked) .all-item-cart-title label .icon {
    transform: rotate(-180deg);
    transition: var(--pr-trans-standard);
}
body:has(#show-mini-cart-wrapper:checked) {
    overflow: hidden;
}
#mini-cart-header .mini-cart-top {
    position: sticky;
    padding: 0;
    top: 0;
    left: 0;
    z-index: 9;
    height: var(--multiItem);
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: var(--pr-spacing-05);
}

/* #mini-cart-header .mini-cart-top:has(.item-summary-product:only-child) {
    height: var(--minicart);
} */

#mini-cart-header .mini-cart-top .item-summary {
    max-height: calc(var(--multiItem) - 32px - 42px - 24px);
    position: relative;
    overflow-y: auto;
}

#mini-cart-header .mini-cart-top .list-add-item {
    display: flex;
    flex-direction: column;
    gap: var(--pr-spacing-05)
}

#mini-cart-header .mini-cart-bottom {
    height: calc(100vh - var(--multiItem));
    overflow-y: auto;
    position: relative;
    padding: 0;
}
#mini-cart-header .mini-cart-bottom > *:not(.cart-buy-more-sidebar) {
    border-top: 1px solid #f2f2f6;
    padding-top: var(--pr-spacing-05);
    position: relative;
}
#mini-cart-header .mini-cart-bottom > .cart-buy-more {
    border: none;
}

#mini-cart-header .mini-cart-bottom > *:nth-child(n + 2) {
    margin-top: var(--pr-spacing-05);
}


/* #mini-cart-header .mini-cart-top:has(.item-summary-product:only-child) + .mini-cart-bottom {
    height: calc(100vh - var(--minicart));
} */
#mini-cart-header .gift-card-box {
    background: var(--pr-color-information-100);
    padding: var(--pr-spacing-04);
    border-radius: var(--pr-radius-x-small);
    text-align: center;
    margin-bottom: var(--pr-spacing-05);
}

#mini-cart-header .gift-card-box a {
    font-weight: var(--pr-font-weight-heading);
    color: var(--pr-color-primary);
}
#mini-cart-header .gift-card-box a:hover {
    color: var(--pr-color-secondary);
}
.no-item-cart-wrapper {
    position: relative;
    width: 100%;
}
.no-item-cart-wrapper .no-items-cart {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
}
.no-item-cart-wrapper .no-items-cart p {
    margin: 0;
}
.no-item-cart-wrapper .empty-image {
    width: 80px;
    height: 80px;
    border-radius: 3px;
    margin: 0 var(--pr-spacing-05) 0 0;
}
.no-item-cart-wrapper .empty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.no-item-cart-wrapper .empty-content {
    flex: 1 1 0%;
    min-width: 0px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.no-item-cart-wrapper .empty-content > * {
    border-radius: 3px;
}

.empty-desc,
.empty-location {
    height: 18px;
}

.empty-header {
    height: 24px;
    width: 100%;
}

.empty-price {
    height: 26px;
    width: 100px;
}

.empty-loading {
    display: block;
    background: linear-gradient(45deg, rgba(209,209,209,0.35), rgba(11,11,11,0.1), rgba(209,209,209,0.1), rgba(209,209,209,0.15));
	background-size: 400% 400%;
    animation: gradient 3000ms ease infinite;
    user-select: none;
    pointer-events: none;
    border-radius: var(--borderRadius);
    overflow: hidden;
}
@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.all-item-cart-container {
    position: relative;
}
.cart-more-item {
    margin-top: 10px;
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.cart-more-item span {
    position: relative;
    z-index: 2;
    user-select: none;
    padding: var(--pr-spacing-03) var(--pr-spacing-05);
    cursor: pointer;
    user-select: none;
    font-size: var(--pr-font-size-display6);
    font-weight: var(--pr-font-weight-heading);
    color: var(--pr-color-primary);
    transition: var(--pr-trans-standard);
}

.quantity-badge {
    width: 24px;
    height: 24px;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
    color: #fff;
    background-color: var(--pr-color-secondary);
    position: absolute;
    top: -8px;
    left: -10px;
    box-shadow: 0 2px 4px rgba(11 11 11 / 22%);
    user-select: none;
    z-index: 2;
}

#mini-cart-header .related-items .product-item.preview-product-item.generating {
    pointer-events: none;
    position: relative;
}

#mini-cart-header .related-items .product-item.preview-product-item.generating::after {
    content: "";
    display: block;
    background-color: black;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    opacity: 0.25;
}

#mini-cart-header .related-items .product-item.preview-product-item .search-loading {
    display: none;
}

#mini-cart-header .related-items .product-item.preview-product-item.generating .search-loading {
    top: calc(50% - 20px);
    left: calc(50% - 20px);
    z-index: 999;
    display: block;
}

@media (max-width: 1366px) and (orientation: portrait) {
    #mini-cart-header .mini-cart-drawer {
        max-width: 50vw;
        width: 50vw;
    }
    #mini-cart-header .mini-cart-padding {
        width: 100%;
    }
}
@media (max-width: 1366px) and (orientation: landscape) {
    #mini-cart-header .mini-cart-drawer {
        max-width: 40vw;
        width: 40vw;
    }
    #mini-cart-header .mini-cart-padding {
        width: 100%;
    }
}



@media (max-width: 767px)  {
    #mini-cart-header .mini-cart-drawer {
        max-width: 90vw;
        width: 90vw;
    }
    #mini-cart-header .gift-card-box {
        font-size: var(--pr-font-size-display6);
    }
    #mini-cart-header .mini-cart-action a.button {
        flex: 0 0 47%;
        font-size: 14px;
    }
    #mini-cart-header .mini-cart-action a.buymore-button {
        font-size: 14px;
    }
    #mini-cart-header .mini-cart-action {
        gap: 0;
    }
    #mini-cart-header .mini-cart-padding {
        gap: 12px;
    }
}


@media (width: 412px) and (height: 823px) {
    .mini-cart-wrapper .you-may-also-like-block {
        padding: 0 16px !important;
    }
    .mini-cart-wrapper .you-may-also-like-block .product-grid {
        gap: 10px !important;
    }
    .mini-cart-wrapper .you-may-also-like-block .product-grid .product-item {
        min-width: 160px !important;
    }
}

/*New mini cart*/
#mini-cart-header .mini-cart-padding {
    padding: 0;
    grid-gap: 0;
    align-content: stretch;
    align-items: stretch;
    bottom: 0;
    border-radius: 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    left: auto;
    overflow: hidden;
    overflow-wrap: normal !important;
    -ms-flex-flow: column nowrap;
    -ms-flex-pack: start;
    -ms-flex-align: stretch;
    -ms-flex-line-pack: stretch;
    -moz-flex-flow: column nowrap;
    -moz-justify-content: flex-start;
    -moz-align-items: stretch;
    -moz-align-content: stretch;
    -webkit-flex-flow: column nowrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -webkit-align-items: stretch;
    -webkit-align-content: stretch;
    -webkit-box-align: stretch;
}
.minicart-title {
    flex: 0 0 auto;
    margin: 0;
    padding: 10px 20px;
    position: relative;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -moz-box-flex: 0;
    -moz-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
}
.minicart-body {
    align-items: stretch;
    align-content: stretch;
    background: #ffffff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex: 1 1 auto;
    flex-flow: column nowrap;
    justify-content: flex-start;
    margin: 0;
    overflow: hidden;
    padding: 0;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -moz-box-flex: 1;
    -moz-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    -webkit-flex-flow: column nowrap;
    -moz-flex-flow: column nowrap;
    -ms-flex-flow: column nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -webkit-align-content: stretch;
    -moz-align-content: stretch;
    -ms-flex-line-pack: stretch;
}

.layout-content {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -moz-box-flex: 1;
    -moz-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: column nowrap;
    -moz-flex-flow: column nowrap;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start;
    position: relative;
    margin: 0;
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;
}
body .layout-content {
    scrollbar-width: thin !important;
}
.footer-layout {
    flex: 0 0 auto;
    margin: 0;
    padding: 20px 20px;
    -moz-box-flex: 0;
    -moz-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    grid-gap: 8px;
    border-top: 1px solid #e1e1e1;
}
#mini-cart-header .mini-cart-close {
    padding: 6px;
}
.minicart-title {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    border-bottom: 1px solid #e1e1e1;
    padding: 12px;
}
.sticky-cart {
    width: 100%;
    position: relative;
}
.sticky-cart .item-content-variants {
    font-size: 0px;
    padding: 15px 20px;
    position: relative;
    display: grid;
    grid-template-columns: 70px calc(100% - 85px);
    grid-gap: 15px;
    align-items: normal;
    align-content: normal;
}

.item-content-variants .item-cart-image-content {
    display: block;
    position: relative;
    text-align: center;
    max-width: 70px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.item-content-variants .item-cart-image-content::after {
    content: "";
    padding-bottom: 100%;
    display: block;
}

.item-content-variants .item-cart-image-content img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.item-cart-description {
    display: flex;
    flex-direction: column;
    grid-gap: 4px;
}
.item-cart-description .item-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    grid-gap: 16px;
}
.content-product-and-variant-title {
    width: calc(100% - 40px);
}

.cart-sidebar-remove {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 30px;
    cursor: pointer;
    border-radius: 30px;
    transform: translateY(-7px);
}

.cart-sidebar-remove:hover {
    background-color: rgba(11 11 11 / 5%);
    color: var(--pr-color-primary);
}

.item-cart-description .product-title {
    color: var(--pr-color-primary);
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    text-decoration: none;
    text-transform: none;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.item-cart-description .variant-title {
    color: #333;
    font-weight: normal;
    font-size: 14px;
    text-transform: none;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.item-cart-description .content-quantity-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.item-cart-description .quantity-box {
    margin: 0;
    min-width: 100px;
}


.item-cart-description .quantity-box input::-webkit-outer-spin-button,
.item-cart-description .quantity-box input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.item-cart-description .quantity-box input {
    width: 50px;
}


.cart-content-price .compare-at-price {
    font-size: var(--pr-font-size-display6);
    line-height: var(--pr-line-height-display6);
    font-weight: var(--pr-font-weight-body);
    color: var(--pr-color-price-compare);
    text-decoration: line-through;
}
.cart-content-price .price-total {
    margin-right: 8px;
    font-weight: var(--pr-font-weight-heading);
    font-size: var(--pr-font-size-display5);
    line-height: var(--pr-line-height-display5);
    color: var(--pr-color-price);
}

.container-ymsl {
    width: 100%;
}

.title-ymsl {
    background: #efefef;
    color: var(--pr-color-primary);
    padding: 15px 20px;
    font-weight: 500;
    text-align: center;
    font-size: 20px;
}

.item-ymsl {
    font-size: 14px;
    background: #f7f8f9;
    padding: 15px 20px;
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: 70px calc(100% - 85px);
    grid-gap: 15px;
    align-items: center;
    border-top: 1px solid #e1e1e1;
}
.item-ymsl:first-child {
    border-top: none;
}
.item-ymsl .product-link-image {
    display: inline-block;
    max-width: 70px;
    vertical-align: middle;
    text-align: center;
}
.item-ymsl .product-link {
    color: var(--pr-color-primary);
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    text-decoration: none;
    text-transform: none;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.item-ymsl .content-all-upsell {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.upsell-add-to-cart {
    padding: 12px 20px;
    background-color: var(--pr-color-primary);
    color: #fff;
    font-weight: 500;
    min-width: 180px;
    text-align: center;
}
.footer-layout .sub-total-cart {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    width: auto;
}

.text-subtotal {
    font-size: 18px;
    color: var(--pr-color-primary);
    font-weight: 500;
}

.subtotal_compare_at_price {
    font-size: var(--pr-font-size-display6);
    line-height: var(--pr-line-height-display6);
    font-weight: var(--pr-font-weight-body);
    color: var(--pr-color-price-compare);
    text-decoration: line-through;
    margin-right: 8px;
}
.subtotal_amount {
    font-weight: var(--pr-font-weight-heading);
    font-size: 20px;
    line-height: 1;
    color: var(--pr-color-price);
}

.finalize-purchase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 16px;
}
.finalize-purchase a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}
.finalize-purchase.only-checkout {
    grid-template-columns: repeat(1, 1fr);
}
.continue-shopping {
    font-weight: 500;
    text-align: center;
    color: var(--pr-color-primary);
    cursor: pointer;
    padding-top: 8px;
}
.continue-shopping:hover {
    color: var(--pr-color-secondary);
}
.continue-shoping-btn {
    cursor: pointer;
}

.lds-wrapper, .cart-lds-wrapper {
    text-align: center;
    position: relative;
}
.cart-lds-wrapper.show {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 3;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.sidebar-cart-loading .lds-dual-ring {
    display: inline-block;
    width: 50px;
    height: 50px;
    margin: 0 auto;
    background: transparent;
}


.sidebar-cart-loading .lds-dual-ring:after {
    content: " ";
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #fff;
    border-color: #999 transparent #999 transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*Quantity box*/
.item-content-variants .quantity-box {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--pr-color-flash);
    border-radius: var(--pr-radius-x-large);
}

.item-content-variants .quantity-box button {
    border: none;
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: var(--pr-radius-x-large);
    outline: none;
    margin: 3px;
    display: flex;
    justify-content:center;
    align-items: center;
    background: none;
    color: var(--pr-color-darkness);
    cursor: pointer;
    user-select: none;
}

.item-content-variants .quantity-box button[disabled] {
    opacity: 1;
}

.item-content-variants .quantity-box button svg {
    pointer-events: none;
    flex: 0 0 24px;
}

.item-content-variants .quantity-box button:hover {
    background-color:rgba(11 11 11 / 5%);
    color: var(--pr-color-primary)
}

.item-content-variants .quantity-input,
.item-content-variants .quantity-input:hover,
.item-content-variants .quantity-input:focus {
    border: none;
    cursor: pointer;
    user-select: none;
    padding: var(--pr-spacing-03) 0;
    border-width: 0;
    border-radius: 0;
    text-align: center;
}
@media (max-width: 767px) {
    .cart-content-price .price-total {
        display: block;
    }
    .cart-content-price .compare-at-price {
        display: block;
        line-height: 1;
    }
    .sticky-cart .item-content-variants {
        padding: 12px;
    }
    #mini-cart-header .mini-cart-close{
        right: 0;
    }
}
.action-layout {
    margin: 0;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    grid-gap: 8px;
    width: 100%;
    position: relative;
}

.action-layout.show-footer {
    position: fixed;
    display: block !important;
    bottom: 0;
    z-index: 999;
    background: #fff;
    border-top: 1px solid #e1e1e1;
    right: 0;
}

.action-layout.show-footer + .you-may-also-like-block {
    padding-bottom: 180px;
}

.action-layout .line {
    position: relative;
    text-align: center;
    padding: 8px 0;
}

.action-layout .line:before {
    content: "";
    background: #fff;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 0;
    border-bottom: 1px solid #e1e1e1;
}

.action-layout .line span {
    background: #fff;
    position: relative;
    z-index: 2;
    padding: 0 16px;
    color: #595959;
}
/*End new mini cart*/

.customily-btn {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}
.customily-action-btn {
    background-color: #2792ce; 
    border: none;
    color: black;
    padding: var(--pr-spacing-05) var(--pr-spacing-07);
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-self: center;
    align-items: center;
    gap: 4px;
    border-radius: var(--pr-spacing-09);
    color: var(--pr-color-white);
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
    min-width: fit-content;
    min-width: -moz-fit-content;
    width: 100%;
    min-width: 145px !important;
    line-height: 1;
    border: 1px solid transparent;
}
.customily-action-btn:hover,
.customily-action-btn:focus {
    background-color: #04497d; 
}
#customily-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    z-index: 1000;
    max-width: 1200px;
    width: 90%;
    height: 800px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    max-height: 90vh;
}

#customily-popup h2 {
    margin-top: 0;
    font-size: 24px;
    text-align: center;
}

#customily-popup p {
    font-size: 16px;
    line-height: 1.5;
    border: none;
}

#show_customize {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
    background-color: blue;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#show_customize:hover {
    background-color: darkblue;
}
#iframeHTML {
    border: none;
    width: 100%;
    height: 100%;
}
#customily-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 50%;
    padding: 0;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    color: #19124f;
    background: #e1e1e1;
    cursor: pointer;
    padding: 4px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 9;
}
.content-product-and-variant-title a {
    color: var(--pr-color-secondary);
}
.open-popup-customily {
    overflow: hidden;
}
@media (max-width: 992px) {
    #customily-popup {
        padding: 16px 5px;
        max-height: 85vh;
    }
    .customily-action-btn {
        font-size: 16px;
        padding: 12px 16px;
        height: auto;
    }
}
#paypal-button-container-sidebar {
    margin-top: 12px;
}

#payment-request-button-sidebar {
    margin-bottom: 12px;
}
@media(max-width: 767px){
    #paypal-button-container-cart {
        padding: 0 16px;
    }
}