.row-checkout-cart {
    display: grid;
    border: solid 1px var(--color-general-border);
    grid-template-columns: auto 12fr auto;
    padding: 10px;
    gap: 12px;
    margin-bottom: 32px;
    border-radius: var(--radius);
}
.caption-cart-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}
.row-opt-price-procent {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 10px;
}
.caption-cart-priceold {
    color: red;
    font-size: 12px;
}
.caption-cart-procent {
    color: #23ba29;
    font-size: 12px;
    font-weight: 600;
}
.caption-cart-option {
    font-size: 12px;
    font-weight: 600;
}
.row-checkout-cart-qty-del {
    display: grid;
    grid-template-columns: 130px 40px;
    gap: 20px;
    margin-top: 20px;
}
.row-checkout-cart-qty-del .btn {
    padding: 4px 10px;
}
.row-checkout-cart-qty-del .input-group-btn:first-of-type .btn {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}
.row-checkout-cart-qty-del .input-group-btn:last-of-type .btn {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}
.checkout-cart-price {
    font-size: 16px;
    font-weight: 600;
    text-align: right;
}
.checkout-cart-quantity {
    font-size: 16px;
    font-weight: 300;
    text-align: right;
}
.row-cart-win {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    color: #23ba29;
    font-size: 16px;
    font-weight: 500;
    background: var(--color-grey-white);
    padding: 10px;
    border-radius: var(--radius);
}