/* mini basket */

.addedtocart {
    width: 550px;
}

.cart-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.cart-notice {
    display: flex;
    justify-content: space-between;
    width: 442px;
    flex-shrink: 0;
}

.cart-notice__text {
    color: #333132;
    font-size: 18.5px;
    font-weight: 500;
    font-family: "Montserrat", Helvetica;
    line-height: 22px;
    margin-bottom: 26px;
    padding-top: 25px;
}

.cart-notice__close {
    cursor: pointer;
}

.cart-notice__delete {
    cursor: pointer;
}

.cart-list {
    display: flex;
    gap: 22px;
    flex-direction: column;
    width: 437px;
    margin-bottom: 19px;
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}

.cart-list::-webkit-scrollbar-track {
    background: #fff;
}

.cart-list::-webkit-scrollbar {
    width: 4px;
}

.cart-list::-webkit-scrollbar-thumb {
    background: #D9D9D9;
    height: 392px;
}

.cart-item {
    display: flex;
    gap: 18px;
    width: 422px;
}

.cart-item__img {
    width: 130px;
    height: 148px;
    background: #F7F5F6;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 130px;
}

.cart-item__info {
    display: flex;
    flex-direction: column;
    flex: 1 0 213px;
    gap: 6px 10px;
}

.cart-item__info-name a {
    color: #333132;
    font-size: 15px;
    font-weight: 600;
    font-family: "Montserrat", Helvetica;
    text-decoration: none;
}

.cart-item__info-props ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.cart-item__info-props ul li {
    font-family: "Montserrat", Helvetica;
    font-weight: 600;
    font-size: 10px;
    line-height: 15.52px;
    color: #33313280;
}

.cart-item__info-price {
    font-family: "Montserrat", Helvetica;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.3;
    color: #333132;
}

.cart-item__info-old_price {
    font-family: "Montserrat", Helvetica;
    font-size: 10px;
    font-weight: 600;
    color: #888888;
    text-decoration: line-through;
    text-align: right;
}

.cart-item__info-quantity {
    flex: 1 0 auto;
    align-items: end;
    display: flex;
    justify-content: space-between !important;
}

.cart-item__info-quantity-content {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
}

.cart-item__info-quantity div.minus,
.cart-item__info-quantity div.plus {
    font-family: "Montserrat", Helvetica;
    font-weight: 600;
    font-size: 15px;
    color: #333132;
    cursor: pointer;
    width: 26px;
    height: 26px;
    background: #F7F5F6;

    border-radius: 50%;
    line-height: 26px;
    text-align: center;
}

.cart-item__info-quantity div.count {
    font-family: "Montserrat", Helvetica;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    color: #333132;
    cursor: pointer;
    width: 22px;
}

.cart-footer {
    padding: 28px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.cart-footer_products {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-footer_products_title,
.cart-footer_products_price {
    font-size: 15px;
    font-family: "Montserrat", Helvetica;
    color: #333132;
    font-weight: 600;
}

.cart-footer_products:nth-child(2) .cart-footer_products_title,
.cart-footer_products:nth-child(2) .cart-footer_products_price {
    color: #ED6857;
}

.cart-footer_products:nth-child(3) .cart-footer_products_title,
.cart-footer_products:nth-child(3) .cart-footer_products_price {
    font-size: 20px;
}

.cart-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.cart-notice__favorite {
    cursor: pointer;
}

.cart-notice__favorite.active svg {
    fill: #ed6857;
}

.checkout-button {
    background: #333132;
    color: #ffffff !important;
    width: 100%;
    border-radius: 30px;
    height: 47px;
    line-height: 47px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.checkout-button:hover {
    background: #f37160;
}

.bold {
    color: rgba(51, 49, 50, 1);
    font-weight: 600;
    font-family: "Montserrat", Helvetica;
}

.cart-notification {
    border: 1px solid rgba(214, 214, 214, 1);
    border-radius: 10px;
    min-height: 72px;
    margin-top: 8px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 75px;
}

.cart-notification__icon {
    background: rgba(248, 245, 246, 1);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    margin-top: 16px;
    margin-left: 16px;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-notification__item {
    margin-left: 16px;
    align-content: center;
}

.cart-notification__item-title {
    font-weight: 500;
    font-family: "Montserrat", Helvetica;
    font-size: 14px;
    color: rgba(51, 49, 50, 1);
}

.cart-notification__item-text {
    margin-top: 6px;
    font-weight: 500;
    font-family: "Montserrat", Helvetica;
    font-size: 12px;
    color: rgba(51, 49, 50, 0.5);
}

.cart-notification__period {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(86, 142, 159, 0.1);
    border-radius: 10px;
    height: 32px;
    width: 136px;
    margin-right: 24px;
    margin-top: 28px;
    margin-bottom: 28px;
    font-weight: 600;
    font-family: "Montserrat", Helvetica;
    font-size: 10px;
    color: rgba(86, 142, 159, 1);
    float: right;
    margin-left: auto;
    text-align: right;
}

.hidden {
    visibility: hidden;
}


.cart-footer_buttons {
    width: 100%;
    margin: 18px 0 20px;
    display: flex;
    justify-content: space-between;
}

.cart-footer_agree {
    width: 437px;
    font-family: "Montserrat", Helvetica;
    font-weight: 500;
    font-size: 12.9px;
    line-height: 18.1px;
    vertical-align: middle;
    color: #2E2D2CCC;
}

.cart-footer_agree a {
    font-family: "Montserrat", Helvetica;
    font-weight: 500;
    font-size: 12.9px;
    line-height: 18.1px;
    vertical-align: middle;
    color: #2E2D2CCC;
}

.cart-item {
    flex-direction: row;
}

.cart-item__data {
    flex: 1 1 278px;
    display: flex;
    flex-direction: column;
}

.cart-item__row:first-child {
    display: flex;
    margin-top: 9px;
}

.cart-item__row:nth-child(2) {
    flex: 1 0 auto;
    align-items: end;
    display: flex;
    padding-bottom: 6px;
}

.discount {
    color: rgba(243, 113, 96, 1);
}

.searchprod__content {
    padding-right: 15px;
}

.bx-soa-cart-total-ghost{
    display: none;
}

@media (max-width: 486px) {
    .addedtocart {
        width: 100%;
        padding: 30px 5px 20px 15px;
    }

    .cart-notice {
        width: 100%;
    }

    .cart-notice__text {
        padding-top: 0;
        font-size: 15px;
        line-height: 18px;
    }

    .cart-list {
        width: 100%;
        margin-right: 5px;
    }

    .cart-item {
        width: 100%;
        padding-right: 3px;
    }

    .cart-item__img {
        width: 97px;
        height: 111px;
        flex: 0 0 97px;
    }

    .cart-item {
        gap: 15px;
    }

    .cart-item__info-name a {
        font-size: 12px;
        line-height: 14.4px;
    }

    .cart-item__info-props ul li {
        font-size: 9px;
        line-height: 12.6px;
    }

    .cart-item__info-price {
        font-size: 12px;
        line-height: 16.8px;
    }

    .cart-item__info {
        flex: 1 1 172px;
    }

    .cart-footer_agree {
        width: 100%;
    }

    .cart-notice__delete {
        width: 22px;
    }

    .cart-footer {
        margin-right: 10px;
    }

    .cart-notice__close {
        padding-right: 27px;
    }

    .cart-footer_buttons {
        margin: 32px 0 24px;
        gap: 12px;
    }

    .cart-footer_agree {
        font-size: 10.5px;
        line-height: 14.7px;
    }

    .cart-footer_agree a {
        font-size: 10.5px;
        line-height: 14.7px;
    }

    .cart-notice__favorite {
        width: 19px;
    }

    .cart-item__data {
        flex: 1 1 225px;
    }
}

@media (max-width: 992px) {
    .addedtocart {
        max-width: 550px;
    }

    .cart-list {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .cartlist-item {
        flex-wrap: wrap;
        justify-content: start;
        gap: 20px 10px;
    }

    .cartlist-item__left {
        flex-basis: 100%;
    }

    .cartlist-item__center {
        flex: 1 0 70%;
        gap: 20px;

    }

    .cartlist-item__right {
        flex: 1 0 15%;
        min-width: unset;
    }

    .cartlist-item__count {
        margin: 0;
    }

    .cartlist-item__controls {
        display: flex;
        gap: 10px;
    }

    .cartlist-item__featured {
        margin-right: 0;
    }

    .cart-notification__icon {
        width: 20px;
        height: 20px;
        margin-top: 18px;
        margin-bottom: 18px;
        margin-left: 12px;
    }

    .cart-notification__item-title {
        font-size: 12px;
        margin-top: 0;
    }

    .cart-notification__item {
        margin-left: 8px;
        margin-right: 8px;
        margin-top: 4px;
    }

    .cart-notification__period {
        margin-top: 14px;
        margin-right: 12px;
        margin-bottom: 14px;
        width: 103px;
        height: 28px;
        font-size: 10px;
    }

    .cart-notification-group {
        margin-right: 1px;
    }

    .cart-notification {
        align-items: center;
    }

    .cart-item__info-quantity div.minus, .cart-item__info-quantity div.plus {
        width: 26px;
        height: 26px;
        line-height: 26px;
    }

    .cart-item__row:nth-child(2) {
        padding-bottom: 0;
    }

    .cart-item__info-quantity-content {
        gap: 10px;
    }
}