#blockcart-modal {
    .modal-body {
        .divide-right {
            .product-name {
                color: black;
            }

            .product-prices {
                display: flex;
                align-items: center;
                flex-direction: row;
                height: 24px;
                margin-bottom: 1.25rem;

                .product-price {
                    font-weight: 700;
                    font-size: 20px;
                    height: inherit;
                    align-content: center;
                }
                .regular-price {
                    font-size: 11px;
                    color: #211F1F;
                    font-weight: 400;
                    margin-left: 10px;
                    text-decoration: line-through;
                    height: inherit;
                    align-content: center;
                }
                .discount-percentage,
                .discount-product,
                .discount-amount{
                    margin-left: 10px;
                    background-color: #D0111A;
                    color: white;
                    padding: 2px 10px 2px 10px;
                    border-radius: 4px;
                    font-size: 12px;
                }
            }
        }
        .cart-content {
            .cart-content-btn {
                .btn-primary {
                    background-color: black;
                    border-radius: 8px;
                }
            }
        }
    }
}