.open-add2basket {
    height: 100vh;
    overflow-y: hidden;
}

.addtocard-wrapper {
    --iw: calc(120px + (240 - 120) * ((100vw - 300px) / (1920 - 300)));
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    z-index: 999999;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 250ms ease-in-out;
}

.addtocard-wrapper.active {
    opacity: 1;
    pointer-events: all
}

.addtocart-background {
    background-color: rgba(11 11 11 / 47%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
}

.addtocart-content {
    position: absolute;
    top: 30%;
    left: 50%;
    z-index: 2;
    background-color: #fff;
    border-radius: 7px;
    max-width: 640px;
    min-height: 260px;
    width: 94%;
    box-shadow: 0 0 14px rgba(11 11 11 / 11%);
    margin: 0 auto;
    transform: translate(-50%, 350px) scale(0.3);
    transition: transform 250ms ease-in-out;
    -webkit-transform: translate(-50%, 350px) scale(0.3);
    -moz-transform: translate(-50%, 350px) scale(0.3);
    -ms-transform: translate(-50%, 350px) scale(0.3);
    -o-transform: translate(-50%, 350px) scale(0.3);
}

.addtocard-wrapper.active .addtocart-content {
    transform: translate(-50%, -30%) scale(1);
}

.add2basket-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 10px;
    user-select: none;
    color: #333;
    user-select: none;
}

.recommendation-box .add2basket-heading {
    justify-content: flex-start;
    margin-top: 0;
    margin-bottom: calc(10px + (16 - 10) * ((100vw - 300px) / (1920 - 300)));
    font-size: calc(17px + (21 - 17) * ((100vw - 300px) / (1920 - 300)));
    color: #333;
}

.add2basket-body+.add2basket-heading {
    border-top: 1px solid #e1e1e1;
    padding-top: 10px;
}

.add2basket-heading-content,
#recommend-onpop .category-title {
    font-size: calc(17px + (21 - 17) * ((100vw - 300px) / (1920 - 300)));
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.add2basket-heading-content svg {
    min-width: 20px;
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.close-add2basket-popup {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 29px;
    cursor: pointer;
    user-select: none;
    color: #777;
    font-weight: 500;
}

.add2basket-body {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin: 0;
    grid-gap: calc(10px + (20 - 10) * ((100vw - 300px) / (1920 - 300)));
}

.add2basket-content .add2basket-title {
    font-size: calc(17px + (19 - 17) * ((100vw - 300px) / (1920 - 300))) !important;
    margin-bottom: calc(4px + (8 - 4) * ((100vw - 300px) / (1920 - 300)));
    display: block;
    /* font-weight: 600; */
    user-select: none;
    color: #333;
    line-height: 1.3;
}

.add2basket-title:hover {
    cursor: context-menu;
}

.add2basket-image {
    width: var(--iw);
    position: relative;
}

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

.add2basket-image img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: contain;
    object-position: center;
    width: 94%;
    height: 94%;
}

.icon-addtocart svg {
    pointer-events: none;
}

.icon-addtocart-loading {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    border: 2px solid rgba(255 255 255 / 40%);
    position: relative;
    margin: 0 4px 0 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
}

.load-popup {
    background-color: #42c0e4;
    border-radius: 5px;
}

.load-popup .icon-addtocart-loading {
    opacity: 1;
    display: block !important;
}

.load-popup svg {
    opacity: 0;
    display: none !important;
}

.icon-addtocart-loading::before {
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    border-radius: 20px;
    border-top: 2px solid rgba(255 255 255 / 60%);
    border-left: 2px solid rgba(255 255 255 / 60%);
    position: absolute;
    top: -2px;
    left: -2px;
    animation: lds-ring 700ms cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

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

    100% {
        transform: rotate(360deg);
    }
}

.add2basket-content {
    width: calc(100% - var(--iw));
    padding-right: calc(10px + (20 - 10) * ((100vw - 300px) / (1920 - 300)));
    font-size: calc(16px + (18 - 16) * ((100vw - 300px) / (1920 - 300)));
}

.add2basket-quatity {
    font-size: 14px;
}

.add2basket-price {
    display: flex;
    margin: 0;
    flex-wrap: wrap;
    align-items: center;
    padding: 0;
}

.add2basket-price small {
    font-size: 14px;
}

.cart-detail .add2basket-price {
    padding: 0 6px;
}

.old-price {
    opacity: 0.6;
    font-size: 14px;
    color: #333;
    margin-left: 3px;
}

.quantity-box {
    display: block;
    margin-bottom: 4px;
}

.new-price {
    font-size: calc(19px + (23 - 19) * ((100vw - 300px) / (1920 - 300)));
    margin: 0;
    color: red;
}

.add2basket-button {
    border: 2px solid #ff0000;
    color: #fff;
    background-color: #ff0000;
    padding: 10px 24px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    width: -moz-fit-content;
    text-align: center;
    margin: 0;
    transition: background-color 250ms ease-in-out;
    text-transform: uppercase;
    font-size: 15px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    outline: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.add2basket-button:hover,
.add2basket-button:focus {
    color: #fff;
}

.add2basket-button svg {
    width: 20px;
    height: 20px;
}

.add2basket-button .icon-addtocart-loading {
    position: relative;
    opacity: 1;
    transform: none;
    top: auto;
    left: auto;
    display: none;
    margin: 0;
}

.goToCart.add2basket-button svg {
    display: none;
}

.goToCart.add2basket-button .icon-addtocart-loading {
    display: block;
}

.add2basket-button span {
    position: relative;
    z-index: 9;
    margin-left: 8px;
    user-select: none;
}

.add2basket-also-like {
    padding: 0 calc(12px + (0 - 12) * ((100vw - 300px) / (1920 - 300)));
    margin-bottom: 12px;
    min-height: 290px;
}

.also-list:not(.slick-slider),
.also-list-1:not(.slick-slider) {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}


.also-list-1:not(.slick-slider) .also-product-item,
.also-list:not(.slick-slider) .also-product-item {
    width: 50%;
}

.also-product-item {
    padding: 6px 10px;
    margin: 0;
}

.also-link {
    display: block;
    padding: 0 0 6px 0;
}


.also-link .also-image {
    width: 100%;
    height: calc(150px + (220 - 150) * ((100vw - 300px) / (1920 - 300)));
    display: block;
    margin: 0 auto 10px;
    object-fit: contain;
}

.product-view-main .also-link .also-image {
    height: 150px
}

.also-title {
    margin-top: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: calc(36px + (46 - 36) * ((100vw - 300px) / (1920 - 300)));
    width: 100%;
    font-size: calc(15px + (16 - 15) * ((100vw - 300px) / (1920 - 300)));
    color: #333;
    transition: color 250ms ease-in-out;
    text-align: left;
}

.risk-free-title {
    color: #333 !important;
}

.also-link:hover .also-title {
    color: #34b0dd
}

.slick-list::after {
    content: "";
    display: block;
    clear: both;
}

.add2basket-also-like .slick-dots,
.recommendation-box .slick-dots {
    position: relative;
    bottom: 0;
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin: 15px 0 0 0;
    padding: 0;
    width: 100%;
    list-style: none;
}

.add2basket-also-like .slick-dots li,
.recommendation-box .slick-dots li {
    width: 20px;
    height: 18px;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
}

.add2basket-also-like .slick-dots li button,
.recommendation-box .slick-dots li button {
    border: none;
    outline: none;
    box-shadow: none;
    width: 12px;
    height: 12px;
    display: block;
    font-size: 0;
    color: rgba(255 255 255 / 0);
    text-indent: -9999px;
    pointer-events: none;
    border-radius: 36px;
    background-color: #e1e1e1;
    transition: background-color 250ms ease-in-out;
}

.add2basket-also-like .slick-dots li button::before,
.recommendation-box .slick-dots li button::before {
    display: none !important
}

.add2basket-also-like .slick-dots li.slick-active button,
.recommendation-box .slick-dots li.slick-active button {
    background-color: #34b0dd
}

.add2basket-also-like .slick-arrow,
.recommendation-box .slick-arrow,
.recommendation-box .slick-arrow:focus {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 48px;
    background-color: rgba(255 255 255 / 40%);
}

.save-price {
    font-size: 14px;
    white-space: nowrap;
    line-height: 1em;
    padding: 0 0px;
    color: #444;
    width: 100%;
    display: none;
}

.shopping-cart .btn-add-to-cart {
    padding: 13px 14px;
    margin: 0 0 0 10px;
    width: 49%;
    text-align: center;
    color: #fff;
    background-color: rgb(29, 161, 242);
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.shopping-cart .btn-add-to-cart svg {
    margin-right: 6px;
}

@media (min-width: 1180px) {
    .add2basket-button::after {
        content: "";
        position: absolute;
        height: 0%;
        left: 50%;
        top: 50%;
        width: 150%;
        z-index: -1;
        -webkit-transition: all 0.75s ease 0s;
        -moz-transition: all 0.75s ease 0s;
        -o-transition: all 0.75s ease 0s;
        transition: all 0.75s ease 0s;
    }

    .add2basket-button:before {
        display: block;
        position: absolute;
        top: 0px;
        right: 0px;
        height: 100%;
        width: 0px;
        content: '';
        color: #000 !important;
        background: #cf001e;
        transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    }

    .add2basket-button::after {
        color: #000 !important;
        background-color: transparent;
    }

    .add2basket-button:focus,
    .add2basket-button:hover {
        background-color: #cf001e;
        color: #fff;
    }
}

.product-view-main .also-title {
    text-align: left;
}

.product-recommendation .new-price {
    margin-right: 4px
}

del.old-prie {
    margin-left: 4px;
    background: none;
}

#recommend-onpop {
    padding: 12px 16px;
}

#recommend-onpop .recommend-product-box:not(.slick-slider) {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

#recommend-onpop .recommend-product-box:not(.slick-slider) .recommend-item-box:nth-child(n + 6) {
    display: none;
}


@media (min-width: 760px) {
    .add2basket-checkout {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 16px 0
    }

    .add2basket-total-price {
        margin-top: 10px;
    }

    .save-price {
        padding-top: 3px;
        margin: 0;
    }

    .add2basket-total-price {
        grid-area: TotalPrice;
        text-align: left;
        color: red;
        line-height: 1em;
        padding: 0;
        white-space: nowrap;
        display: flex;
        align-items: center;
    }

    .add2basket-total-price span {
        color: #666;
        font-size: 15px;
        margin-right: 6px;
    }
}

@media (min-width: 1024px) {

    .also-list-1:not(.slick-slider) .also-product-item:nth-child(n + 5),
    .also-list:not(.slick-slider) .also-product-item:nth-child(n + 5) {
        display: none !important;
    }

    .also-list-1:not(.slick-slider) .also-product-item,
    .also-list:not(.slick-slider) .also-product-item {
        width: 25%;
    }

}

@media (min-width: 760px) and (max-width: 1024px) {

    .also-list-1:not(.slick-slider) .also-product-item:nth-child(n + 4),
    .also-list:not(.slick-slider) .also-product-item:nth-child(n + 4) {
        display: none !important;
    }

    .also-list-1:not(.slick-slider) .also-product-item,
    .also-list:not(.slick-slider) .also-product-item {
        width: calc(100% / 3);
    }

    .recommendation-box {
        margin-top: 32px;
    }
}

@media (max-width: 760px) {

    .also-list-1:not(.slick-slider),
    .also-list:not(.slick-slider) {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .also-list-1:not(.slick-slider) .also-product-item,
    .also-list:not(.slick-slider) .also-product-item {
        width: 50%;
        min-width: 170px;
        margin-right: 10px;
    }

    .add2basket-also-like {
        width: 100%;
        position: relative;
        overflow: hidden;
    }

    .also-product-item {
        float: left;
    }

    .add2basket-also-like .slick-arrow {
        width: 48px;
        height: 48px;
        display: flex !important;
        justify-content: center;
        align-items: center;
        border-radius: 36px;
        background-color: rgba(255, 255, 255, 0.8);
    }

    .add2basket-also-like .slick-prev {
        left: -24px;
    }

    .add2basket-also-like .slick-next {
        right: -24px;
    }

    .recommendation-box .add2basket-also-like {
        padding: 0;
    }

    .add2basket-body {
        margin: 0 auto;
    }

    .add2basket-price {
        justify-content: flex-start;
        align-items: center;
        line-height: 1.2;
        margin-bottom: 6px;
    }

    .add2basket-total-price {
        margin-bottom: 4px;
        text-align: left;
        color: red;
        line-height: 1em;
        padding: 0;
        white-space: nowrap;
    }

    #cartTotalPrice {
        color: red;
        font-size: 19px;
    }

    .add2basket-total-price span {
        text-align: left;
        color: #333;
        font-size: 15px;
        padding: 0;
        margin: 0;
    }

    #cartTotalPrice {
        margin-left: 6px;

    }

    .addtocart-content-bottom .recommend-product-box {
        position: relative;
        display: grid;
        grid-template-rows: auto;
        grid-auto-flow: column;
        overflow-x: scroll;
        grid-template-columns: auto;
        grid-gap: 16px;
        padding: 0 10px 10px;
    }

    .recommend-item-box {
        position: relative;
    }

    .addtocart-content {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        z-index: 2;
        background-color: #fff;
        border-radius: 15px 15px 0 0;
        width: 100%;
        box-shadow: 0 0 14px rgba(11 11 11 / 11%);
        margin: 0 auto;
        -webkit-transform: translateY(100%);
        -moz-transform: translateY(100%);
        -ms-transform: translateY(100%);
        -o-transform: translateY(100%);
        -webkit-border-radius: 15px 15px 0 0;
        -moz-border-radius: 15px 15px 0 0;
        -ms-border-radius: 15px 15px 0 0;
        -o-border-radius: 15px 15px 0 0;
        transform: translateY(100%);
        transition: all 222ms ease-in-out;
    }


    .addtocard-wrapper.active .addtocart-content {
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }


    .goto-cart-button,
    .continue-shopping {
        color: #fff;
        padding: 8px 16px;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
        outline: none;
        border: none;
        font-weight: 500;
        font-size: 16px;
        display: flex;
        justify-content: center;
        align-items: center;
        grid-gap: 6px;
        width: 100%;
        transition: all 222ms ease-in-out;
        -webkit-transition: all 222ms ease-in-out;
        -moz-transition: all 222ms ease-in-out;
        -ms-transition: all 222ms ease-in-out;
        -o-transition: all 222ms ease-in-out;
    }

    .continue-shopping {
        background-color: rgb(29, 161, 242);
    }

    .goto-cart-button {
        background-color: #ff3945;
    }

    .continue-shopping:focus,
    .continue-shopping:active,
    .continue-shopping:hover {
        background-color: #1585c9;
        color: #fff;
    }

    .goto-cart-button:focus,
    .goto-cart-button:active,
    .goto-cart-button:hover {
        background-color: #d71e2a;
        color: #fff;
    }
}


@media (max-width: 990px) and (orientation:landscape) {
    .also-product-item {
        float: left;
    }
}


@media (min-width: 760px) and (max-width: 1180px) {
    .also-title {
        height: 38px;
        min-height: 1px;
        line-height: 1.3;
        margin-bottom: 6px;
    }

    .recommendation-box {
        margin-top: 16px;
    }
}

.also-list-tb {
    display: grid;
    grid-template-rows: auto;
    grid-auto-flow: column;
    overflow-x: scroll;
    overflow-y: hidden;
    grid-template-columns: auto;
    grid-gap: 8px;
    padding-left: 10px;
}

.also-list-tb .also-product-item {
    width: 22vw;
    min-width: 22vw;
    padding: 0;
}

.also-list-tb .also-product-item:last-child {
    margin-right: 10px;
}

@media (max-width: 760px) {
    .add2basket-button {
        width: 100%;
        padding: 8px 20px;
    }

    .add2basket-button span {
        margin: 0 6px 0 0;
    }

    .cart-footer-checkout {
        display: grid;
        grid-gap: 12px;
        margin-top: 16px;
    }

    .load-popup::after {
        content: "";
        width: 20px;
        height: 20px;
        border-radius: 20px;
        border: 2px solid rgba(56 181 223 / 60%);
        border-bottom-color: rgba(56 181 223 / 40%);
        border-left-color: transparent;
        position: relative;
        margin: 0 4px 0 0;
        position: absolute;
        top: calc(50% - 10px);
        left: calc(50% - 10px);
        transform: translate(-50%, -50%);
        pointer-events: none;
        /* opacity: 0; */
        animation: lds-ring 800ms cubic-bezier(0.5, 0, 0.5, 1) infinite;
    }

    .add2basket-image::before {
        padding-top: 100%;
    }

    .add2basket-content {
        padding-bottom: 10px;
    }
}