:root {
    --nb-cart-price-and-quantity-1-old-price-font-size: var(--nb-product-old-price-font-size-xs);
    --nb-cart-price-and-quantity-1-old-price-font-weight: var(--nb-product-old-price-font-weight-xs);
    --nb-cart-price-and-quantity-1-old-price-color: var(--nb-product-old-price-color);
    --nb-cart-price-and-quantity-1-old-price-line-height: var(--nb-product-old-price-line-height-xs);
    --nb-cart-price-and-quantity-1-old-price-text-decoration: var(--nb-product-old-price-decoration);

    --nb-cart-price-and-quantity-1-active-price-font-size: var(--nb-product-active-price-font-size-s);
    --nb-cart-price-and-quantity-1-active-price-font-weight: var(--nb-product-active-price-font-weight-s);
    --nb-cart-price-and-quantity-1-active-price-color: var(--nb-product-active-price-color);
    --nb-cart-price-and-quantity-1-active-price-line-height: var(--nb-product-active-price-line-height-s);
    --nb-cart-price-and-quantity-1-active-price-text-decoration: var(--nb-product-active-price-decoration);
}

.nb-cart-price-and-quantity-1 {
    display: flex;
    align-items: end;
    justify-content: space-between;
}

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

.nb-cart-price-and-quantity-1 .nb-prices-wrapper .nb-active-price {
    font-size: var(--nb-cart-price-and-quantity-1-active-price-font-size);
    line-height: var(--nb-cart-price-and-quantity-1-active-price-line-height);
    font-weight: var(--nb-cart-price-and-quantity-1-active-price-font-weight);
    color: var(--nb-cart-price-and-quantity-1-active-price-color);
    text-decoration: var(--nb-cart-price-and-quantity-1-active-price-text-decoration);
}

.nb-cart-price-and-quantity-1 > * {
    flex-grow: 1;
    flex-shrink: 0;
}

.nb-cart-price-and-quantity-1 .nb-prices-wrapper {
    margin-bottom: 0;
}

.nb-cart-price-and-quantity-1 .nb-quantity-price-wrapper {
    text-align: end;
}