.cart-cards { list-style: none; padding: 0; margin-top: 12px; }

.cart-cards__item { display: flex; justify-content: space-between; min-height: 160px; margin-bottom: 12px; padding-top: 0; padding-bottom: 0; }

.cart-cards__item:not(.cart-cards__item__no-before)::before { content: url("/Vkostume/images/compilations/cards-plus.svg"); position: absolute; top: -3px; left: 50%; transform: translateX(-50%) translateY(-20px); width: 32px; height: 32px; }

.cart-cards__item:first-child::before { display: none; }

.cart-cards__info { display: flex; align-items: center; }

.cart-cards__desc { margin-left: 10px; }

.cart-cards__title { margin-bottom: 10px; font-size: 15px; line-height: 20px; }

.cart-cards__title a { color: inherit; }

.cart-cards__size { margin-bottom: 15px; font-size: 14px; line-height: 12px; color: #868B91; }

.cart-cards__box { display: flex; flex-direction: column; align-items: flex-end; }

.cart-cards__total { display: flex; flex-direction: column; align-items: flex-end; }

.cart-cards__amount { margin-bottom: 10px; font-size: 10px; line-height: 16px; color: #666666; }

.cart-cards__cost { display: flex; }

.cart-cards__price { margin-bottom: 5px; font-weight: bold; font-size: 20px; line-height: 27px; }

.cart-cards__price_old { -webkit-text-decoration-line: line-through; text-decoration-line: line-through; font-size: 14px; color: #868B91; }

.cart-cards__price_new { margin-left: 10px; color: #E31E64; }

.cart-cards__save { display: flex; flex-direction: column; align-items: flex-end; }

.cart-cards__discount { font-size: 13px; line-height: 18px; text-align: right; color: #E31E64; }

.cart-cards__del { display: flex; align-items: center; margin-top: auto; font-size: 13px; line-height: 18px; color: #868B91; cursor: pointer; }

.cart-cards__del span { font-size: 16px; margin-left: 5px; }

.cart-cards__del:hover { color: #E31E64; }

/*Заказ в сайдбаре*/
.cart-order { color: #000000; }

.cart-order__total { margin-top: 26px; }

.cart-order__amount { font-size: 15px; line-height: 20px; }

.cart-order__price { margin-top: 5px; font-weight: bold; font-size: 30px; line-height: 41px; }

.cart-order__save { margin-top: 10px; font-size: 13px; line-height: 18px; color: #E31E64; }

.order-list { padding: 0; list-style: none; }

.order-list__item { margin-bottom: 18px; padding-bottom: 20px; border-bottom: 1px solid #E4E4E4; }

.order-list__title { font-size: 13px; line-height: 18px; }

.order-list__size { margin-top: 5px; font-size: 13px; line-height: 18px; color: #868B91; }

.order-list__total { display: flex; justify-content: space-between; margin-top: 10px; }

.order-list__cost { display: flex; }

.order-list__price { font-weight: bold; font-size: 16px; line-height: 22px; }

.order-list__price_new { margin-left: 5px; color: #E31E64; }

.order-list__price_old { -webkit-text-decoration-line: line-through; text-decoration-line: line-through; }

.order-list__amount { font-size: 13px; line-height: 18px; color: #868B91; }

/*********************************************************************************************************************/

.cart-cards__del {
    display: none;
}

.cart-cards__box {
    position: relative;
}

.cart-cards__del-quantity, .cart-cards__del-info {display: none;}

/***************************************************************************************************************/
.cart-cards__item.item-is-not-allowed::after {
    content: '';
    background-color:rgba(255, 255, 255, 0.6);
    width: 100%;
    height: 100%;
    left: 0;
    position: absolute;
}

.cart-cards__item.item-is-not-allowed .cart-cards__del-quantity {
    color: black;
    z-index: 100;
}

/***************************************************************************************************************/

@media (min-width: 640px) {
    .cart-cards__del-quantity, .cart-cards__del-info {
        display: block;

        font-size: 13px;
        color: #868B91;
        cursor: pointer;
    }

    .cart-cards__del-info {
        position: absolute;
        bottom: 10px;
    }

    .cart-cards__del-quantity {
        text-align: center;
        margin-top: 15px;
    }

    .cart-card-quantity {
        position: absolute;
        left: 45%;
        bottom: 20%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .cart-card-quantity.item-not-allowed-block {
        left: 42%;
    }

    .cart-cards__box {
        justify-content: center;
        padding-bottom: 15px;
    }

    .cart-cards__info {
        width: 300px;
    }

    .cart-cards__cost {
        flex-direction: column-reverse;
    }

    .cart-cards__price_old {
        padding-left: 30px;
    }

    .cart-cards__box-has-discount {
        padding-bottom: 0;
        padding-top: 20px;
    }
}

/*********************************************************************************************************************/
@media (max-width: 640px) { .cart-cards__item { flex-direction: column; padding-bottom: 15px; }
    .cart-cards__info { justify-content: space-between; }
    .cart-cards__desc { margin-left: 0; order: -1; }
    .cart-cards__box { margin-top: 25px; flex-direction: row; justify-content: space-between; }
    .cart-cards__total { align-items: flex-start; }
    .cart-cards__save { align-items: flex-start; }
    .cart-cards__discount { text-align: left; }

    .cart-cards__del {
        display: block;
        right: 0;
        position: absolute;
        bottom: 10px;
    }

    .cart-cards__item.item-is-not-allowed .cart-cards__del{
        z-index: 100;
        color: black;
    }

    .cart-card-quantity {
        margin-top: -25px;
    }

    .cart-card-quantity.item-not-allowed-block {
        text-align: center;
        z-index: 100;
    }

    .cart-cards__amount {margin-bottom: 0;}
}