:root {
    --nb-cart-price-and-quantity-2-old-price-font-size: var(--nb-font-size-12);
    --nb-cart-price-and-quantity-2-old-price-font-weight: var(--nb-font-regular);
    --nb-cart-price-and-quantity-2-old-price-color: var(--nb-price-prev-color);
    --nb-cart-price-and-quantity-2-old-price-text-decoration: var(--nb-price-prev-text-decoration);

    --nb-cart-price-and-quantity-2-active-price-font-size: var(--nb-font-size-12);
    --nb-cart-price-and-quantity-2-active-price-font-weight: var(--nb-font-regular);
    --nb-cart-price-and-quantity-2-active-price-color: var(--nb-text-color-primary);

    --nb-cart-price-and-quantity-2-total-price-font-size: var(--nb-font-size-16);
    --nb-cart-price-and-quantity-2-total-price-font-weight: var(--nb-font-bold);
    --nb-cart-price-and-quantity-2-total-price-color: var(--nb-text-color-primary);
}

.nb-cart-price-and-quantity-2 .nb-old-prices-wrapper{
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 5px;
}

.nb-cart-price-and-quantity-2 .nb-old-prices-wrapper > * {
    position: relative;
    line-height: 1;
}

.nb-cart-price-and-quantity-2 .nb-old-prices-wrapper > *:not(:last-child) {
    border-right: var(--nb-border-width) var(--nb-border-style) var(--nb-cart-price-and-quantity-2-old-price-color);
    padding-right: 7px;
}

.nb-cart-price-and-quantity-2 .nb-prices-wrapper .nb-price-prev {
    font-size: var(--nb-cart-price-and-quantity-2-old-price-font-size);
    font-weight: var(--nb-cart-price-and-quantity-2-old-price-font-weight);
    color: var(--nb-cart-price-and-quantity-2-old-price-color);
    text-decoration: var(--nb-cart-price-and-quantity-2-old-price-text-decoration);
}

.nb-cart-price-and-quantity-2 .nb-prices-wrapper .nb-price-cart-total-1 {
    font-size: var(--nb-cart-price-and-quantity-2-total-price-font-size);
    font-weight: var(--nb-cart-price-and-quantity-2-total-price-font-weight);
    color: var(--nb-cart-price-and-quantity-2-total-price-color);
}

.nb-cart-price-and-quantity-2 .nb-prices-wrapper .nb-quantity-price-wrapper,
.nb-cart-price-and-quantity-2 .nb-prices-wrapper .nb-active-price {
    font-size: var(--nb-cart-price-and-quantity-2-active-price-font-size);
    font-weight: var(--nb-cart-price-and-quantity-2-active-price-font-weight);
    color: var(--nb-cart-price-and-quantity-2-active-price-color);
}