<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.cart-icon{
    padding:13px 12px 13px 0;
    position:relative;
}

#cart_amount{
    width:22px;
    height:22px;
    border-radius:30px;
    position:absolute;
    right:0;
    top:4px;
    color:#fff;
    background-color:#000;
    text-align:center;
    line-height:22px;
    font-size:12px;
    font-weight:bold;
}
#partial-cart-message{
    transition: all .2s ease-in-out;
    position:absolute;
    right:calc(-50vw + 250px);
    top:65px;
    &amp;.active{
        right:0;
    }
}
.cart-message-block{
    width:400px;
    height:auto;
    text-align:center;
    color:#000;
    padding:30px;
    background-color:#fff;
    border-radius:10px;
    box-shadow: 0px 6px 24px -7px rgba(0, 0, 0, 0.5);

    /*transition-timing-function: ease-in;*/
    /*transition: all .5s;*/
    &amp;.active{
        margin-top:10px;
    }
    .icon-close{
        position:absolute;
        width:40px;
        right:10px;
        top:10px;
        cursor:pointer;
        img{
            width:24px;
            height:24px;
        }
    }

    .button{
        width:100%;
        border:1px solid #00000090;
        line-height:45px;
        border-radius:30px;
        margin:15px 0;
        &amp;.but_show_checkout{
            border:0;
            background-color:#000;
            color:#fff;
        }
        &amp;.but_back_to_shop{
            border:0;
            text-decoration: underline;
        }
    }

}

.cart-message-product-block{
    grid-gap:10px;
    padding:15px 0;
}
.cart-message-text{
    padding-top:20px;
}
.cart-message-product-image{
    width:120px;
    height:120px;
    background-position:center center;
    background-repeat: no-repeat;
    background-size:cover;
}
.cart-message-product-text{
    padding:10px;
    line-height:1.1;
    text-align:left;
}
.cart-message-brand{
    font-size:smaller;
}
.cart-message-product-name{
    font-weight:700;
}
.cart-message-option{
    text-transform: lowercase;
    color:#666;
    font-size:smaller;
}
.cart-message-value{
    font-size:smaller;
}
.shop_cart{
    .cart-block{
        height:auto;
        padding:50px;
    }
    .cart-message-product-block{
        padding:0;
    }
    .cart-list{
        table{
            width:100%;
            .cart-table-row-total{
                td{
                    border-top:1px solid #fff;
                    padding-top:60px;
                }
            }
            .total_price_text{
                font-size:14px;
            }
            td, th{
                padding:20px 10px  20px 0;
                vertical-align: top;
                &amp;.text-align-right{
                    text-align:right;
                }
            }

            th{
                font-size:14px;
                font-weight:500;
                text-transform: uppercase;
                border-bottom:1px solid #fff;

            }
        }
    }
}

</pre></body></html>