<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.form-with-side-cart {
    position: relative;
}

.form-with-side-cart .form-with-product-container {
    width: 80%;
}

#form-side-cart-container {
    width: 20%;
    float: left;
}

.form-side-cart {
    min-height: 300px;
    transition: 0.2s ease-in-out;
    -webkit-transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
}

.form-side-cart h4 {
    margin: 5px 2px;
}

.form-with-side-cart #form-side-cart-container .form-side-cart.collapsed-cart {
    max-height: 0;
    min-height: 0;
    border: none;
}

#form-side-cart-container .form-side-cart .expand-side-cart,
#side-cart-sub-total,
.form-side-cart {
    overflow: hidden;
    border: 1px solid #4a87bc;
    border-radius: 10px;
    background-color: #eff4f9;
}

#side-cart-sub-total {
    padding: 1em;
    margin-top: 5px;
}

.form-side-cart h2 {
    font-size: 14px;
    padding: 3px;
    text-align: center;
    background-color: #4a87bc;
    color: #fff;
    padding: 8px;
    border-radius: 7px 7px 0 0;
    margin: 0;
}

#form-side-cart-container {
    position: absolute;
    float: none;
    right: 0px;
    top: 0px;
}

.side-cart-no-items {
    text-align: center;
}

#side-cart-discount-list,
#side-cart-product-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

#side-cart-discount-list li,
#side-cart-product-list li {
    overflow: hidden;
    margin: 5px 0;
}

.item-name,
.item-price,
.sub-total-text,
.sub-total-value {
    float: left;
    font-size: 12px;
    font-weight: bold;
}

.sub-total-text,
.item-name {
    color: #51565B;
    width: 60%;
    padding-right: 10px;
    box-sizing: border-box;
    margin-left: 3%;
}

.sub-total-value,
.item-price { 
    width: 35%;
    color: #72787E;
    text-align: right;
}

#form-side-cart-container .arrow-up {
    width: 0; 
    height: 0; 
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #4a87bc;
    cursor: pointer;
}

#form-side-cart-container .arrow-down {
    width: 0; 
    height: 0; 
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #eff4f9;
    cursor: pointer;
}

#form-side-cart-container .expand-side-cart .arrow-up {
    margin: 0 auto;
}

#form-side-cart-container .collapse-side-cart {
    position: absolute;
    right: 8px;
    top: 13px;
    z-index: 10;
}

#form-side-cart-container .form-side-cart .cart-product-wrapper {
    max-height: 500px;
    overflow-y: auto;
}

@media only screen and (max-width: 1024px) {
    .form-render .form-with-side-cart .form-with-product-container {
        float: none;
        width: 100%;
    }
    
    #form-side-cart-container .form-side-cart .cart-product-wrapper {
        max-height: 300px;
        overflow-y: auto;
    }
    
    .form-render .form-with-side-cart .form-with-product-container .button-row {
        margin-top: 100px; /* Extend space for the running total. */
    }
    
    #form-side-cart-container {
        position: fixed;
        left: 0;
        bottom: 50px;
        top: auto;
        right: 0;
        z-index: 10;
        width: 300px;
        margin: 0 auto;
    }

    #form-side-cart-container .collapse-side-cart {
        top: 8px;
    }

    #form-side-cart-container .arrow-up {
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        border-bottom: 20px solid #4a87bc;
    }

    #form-side-cart-container .arrow-down {
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        border-top: 20px solid #eff4f9;
    }
}

@media only screen and (max-width: 600px) {
    #form-side-cart-container {
        bottom: 5px;
    }
}</pre></body></html>