.cart-items-item {
    display: flex;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--color-foreground-primary);
    height: 206px;
}

.cart-items-item-about {
    display: flex;
    gap: 16px;
}

.cart-items-item-choice-img {
    display: flex;
}

.cart-items-item-choice-img .checkbox-label {
    padding-left: calc(24px + 12px);
    gap: 15px;
}

.cart-items-item-choice-img .checkmark {
    width: 24px;
    height: 24px;
}

.cart-items-item-choice-img .checkbox-label input {
    width: 24px;
    height: 24px;
}

.cart-items-item-choice-img .checkmark-svg {
    width: 11.41px;
    height: 8.42px;
}

.cart-items-item-choice-img-img {
    width: 220px;
    height: 100%;
}

.cart-items-item-choice-img-img img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.cart-items-item-choice-img-img.scheme img {
    object-fit: contain;
}

.cart-items-item-about-t {
    display: flex;
    flex-direction: column;
    gap: 16px;

    font-size: 16px;
    line-height: 110%;
    font-weight: 500;

    color: var(--color-foreground-opacity);
    text-transform: lowercase;
}

.cart-items-item-about-t-name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 52px;

    font-size: 24px;
    line-height: 110%;
    letter-spacing: -0.3px;
    color: var(--color-foreground-primary);
    width: 593px;
}

.cart-items-item-about-t-t {
    display: flex;
    gap: 8px;
}

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

.cart-items-item-dop-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-items-item-dop-info-price {
    font-size: 24px;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -0.3px;
    color: var(--color-foreground-primary);
    width: fit-content;
}

.change-cnt {
    display: flex;
    gap: 8px;

    width: 101px;
    height: 38px;

    border: .8px solid var(--color-foreground-primary);
    border-radius: 24px;

    justify-content: center;
    align-items: center;
    align-self: end;
}

.change-cnt-icon {
    height: 13px;
    width: 13px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.change-cnt-icon.less {
    background-image: url(../../img/cart/less-icon.svg);
}

.change-cnt-icon.less.dis {
    opacity: 50%;
}

.change-cnt-icon.more {
    background-image: url(../../img/cart/more-icon.svg);
}

.change-cnt-ind {
    width: 20px;
    display: flex;
    justify-content: center;

    font-size: 16px;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -0.2px;
    color: var(--color-foreground-primary);
}

.cart-items-item-dop-actions {
    display: flex;
    justify-content: center;
    gap: 21px;
}

.to-icon {
    height: 24px;
    width: 24px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.to-icon.favourites {
    width: 27px;

    background-image: url(../../img/general/favourites-icon.svg);
}

.to-icon.favourites.added {
    background-image: url(../../img/general/favourites-dark-icon.svg);
}

.to-icon.favourites.animate {
    animation: like-bounce 0.6s ease-in-out;
}

.to-icon.trash {
    background-image: url(../../img/cart/trash-icon.svg);
}


/* Адаптация на маленькие экраны (< 1920)*/
/* 1440 */
@media screen and (max-width: 1615px) {
    .cart-items-item-about-t-name {
        height: 44px;

        font-size: 20px;
        line-height: 110%;
        width: 433px;
    }

    .cart-items-item-dop-info-price {
        font-size: 20px;
        line-height: 110%;
    }
}

/* 1280 */
@media screen and (max-width: 1390px) {
    .cart-items-item-about-t {
        font-size: 14px;
        line-height: 110%;
    }

    .cart-items-item-about-t-name {
        height: 40px;

        font-size: 18px;
        line-height: 110%;
        width: 310px;
    }

    .cart-items-item-dop-info-price {
        font-size: 18px;
        line-height: 110%;
    }
}

/* 768 */
@media screen and (max-width: 1200px) {
    .cart-items-item-about-t-name {
        width: 310px;
    }
}

/* 375 */
@media screen and (max-width: 725px) {
    .cart-items-item {
        padding-top: 16px;
        height: fit-content;

        position: relative;
    }

    .cart-items-item-about {
        flex-direction: column;
    }

    .cart-items-item-choice-img {
        flex-direction: column;
    }

    .cart-items-item-choice-img .checkbox-label {
        padding-left: 18px;
        padding-bottom: calc(18px + 12px);
        gap: 12px;
    }

    .cart-items-item-choice-img .checkmark {
        width: 18px;
        height: 18px;
    }

    .cart-items-item-choice-img .checkbox-label input {
        width: 18px;
        height: 18px;
    }

    .cart-items-item-choice-img .checkmark-svg {
        width: 8px;
        height: 6px;
    }

    .cart-items-item-choice-img-img {
        height: 174px;
        width: 58.667vw;
        max-width: 280px;
    }

    .cart-items-item-about-t-name {
        max-width: 310px;
        width: 82.667vw;
    }

    .cart-items-item-dop {
        gap: 16px;
        justify-content: start;

        position: absolute;
        top: 46px;
        right: 0;
    }

    .change-cnt {
        gap: 6.4px;

        width: 80.8px;
        height: 30.4px;

        border-radius: 19.2px;
    }

    .change-cnt-icon {
        height: 11px;
        width: 11px;
    }

    .change-cnt-ind {
        width: 16px;
        display: flex;
        justify-content: center;

        font-size: 13px;
        line-height: 110%;
    }
}