<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.cart-products-box {
    --product-title-height: var(--fs-3);
    --price-title-height: var(--fs-5);
    --qty-input-background: 60, 60, 60;
    --qty-input-color: var(--primary);
    --product-title-lines: 1;
    --disabled-button-bg: 112, 112, 112;
}

.products-cart .product-addtocart-box .product-qty-group :is(.product-qty-minus, .product-qty-plus, .product-qty-delete).disabled {
    background-color: rgb(var(--disabled-button-bg));
}

.cart-button {
    right: -2px;
}

.cart-products-box {
    height: 60%;
    overflow-y: scroll;
    overflow-x: hidden;
}

@media (max-width: 1080px) {
    #cart_text {
      display: none;
    }
  }

.cart-products-box .product-price-box {
    display: flex;
    flex-direction: row;
    align-content: flex-end;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.cart-footer {
    height: 40%;
    position: relative;
}
.cart-product-image {
    object-fit: contain;
    aspect-ratio: 1;
    width: 100%;
    height: auto;
}
.cart-products-box .product-price-box {
    --price-title-height: var(--fs-4);
}
.cart-products-box::-webkit-scrollbar {
    width: 4px;
}
.cart-products-box::-webkit-scrollbar-track {
    background-color: rgb(var(--secondary));
}
.cart-products-box::-webkit-scrollbar-thumb {
    background-color: rgb(var(--secondary));
}
.products-cart .faded-end {
    width: 100%;
    height: 15px;
    position: absolute;
    z-index: 1050;
    background-color: rgb(var(--secondary));
    background: linear-gradient(0deg, rgba(var(--secondary), 1) 0%, rgba(var(--secondary), 0.75) 30%, rgba(var(--secondary), 0) 100%);
    top: 0;
    transform: translateY(-100%);
}
.products-cart .button {
    background-color: rgb(60, 60, 60);
}
.products-cart .button:hover {
    background-color: rgb(112, 112, 112);
}

.products-cart .empty-cart-button {
    background-color: red;
}
.products-cart .empty-cart-button:hover {
    background-color: red;
    opacity: 0.85;
}</pre></body></html>