
    .cart-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 15px 0;
        border-bottom: 1px solid #eeeeee;
        /*flex-wrap: wrap;*/
        gap: 16px;
    }
    .cart__wrapper {
        padding-left: 32px;
    }
    .cart-item .cart-item__info-buttonsItem--remove{
        position: absolute;
        right: 0;
    }
    .card-popup .cart__products {
        max-height: calc(100vh - 280px);
        overflow-y: auto;
        overflow-x: hidden;
        padding-right: 20px;
    }
    .cart__products {
        margin-bottom: 14px;
        padding-right: 10px;
        scrollbar-color: auto;
    }
    .cart-item__image {
        /*width: 71px;*/
        /*height: 45px;*/
        /*-webkit-box-flex: 0;*/
        /*-ms-flex: 0 0 71px;*/
        /*flex: 0 0 71px;*/
    }
.cart-item__center{
    gap: 8px;
}
.cart-item__product-price{
    color: #404040;
    font-family: "Gotham Pro", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.cart-item__product-counter{
    display: flex;
    height: 48px;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    border-radius: 24px;
    background: #E4E6E9;
}
.cart-item__product-counter{
    box-sizing: border-box;
}
.cart-item__product-counter button{
    padding: 0;
}
.cart-item__product-counterInput{
    background: #E4E6E9;
    border: 1px solid #eeeeee;
    border-radius: 0;
    text-align: center;
    padding: 0;
    margin: 0;
    font-size: 14px;
    width: 2.6em;
    height: 1.9em;
    outline: transparent;
    box-sizing: border-box;
}
    .cart-empty-inner {
        font-size: 16px;
        margin-top: 37px;
    }
    .cart__total-head {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    ;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-bottom: 0.9em;
        font-size: 18px;
        font-weight: 600;
    }
    .cart__total-head__old {
        font-weight: 400;
        font-size: 12px;
        line-height: 14px;
        -webkit-text-decoration-line: line-through;
        text-decoration-line: line-through;
        color: #7E7E7E;
        margin-left: auto;
        margin-right: 10px;
    }
    .cart__total-head__price {
        line-height: 1.2;
        color: var(--background-color-blue);
    }
    .cart__total-buttons .cart__total-buttonsBuy {
        font-size: 16px;
        color: var(--color-orange);
        border-radius: 24px;
        border: 1px solid var(--color-orange, #FF6E51);
        padding: 12px 24px;
        display: flex;
        justify-content: center;
    }
    .cart__total-buttons .cart__total-buttonsBuy {
        color: var(--color-white);
        background: var(--color-orange);
    }

    @media (hover:hover) {
        .main .cart__total-buttonsBuy:hover{
            color: var(--color-white);
        }
    }