<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.carro-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    padding: 20px;
    bottom: 0;
    z-index: 3;
    width: 300px;
    background-color: #fff;
}

.carro-sidebar.abierto {
    right: 0;
}

body.noscroll { 
    overflow: hidden;
}

#colapsar-minicart {
    color: #000;
    font-size: 30px;
    position: absolute;
    top: 50%;
    left: -34px;
    margin-top: -15px;
    z-index: 1;
    background-color: #fff;
    padding: 5px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    cursor: pointer;
    display: none;
}

.carro-sidebar.abierto #colapsar-minicart {
    display: block;
}

.carro-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    height: 100vh;
    width: calc(100vw - 300px);
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
}

.carro-overlay.abierto {
    display: block;
}

.widget_shopping_cart_content ul {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: calc(100vh - 250px);
    overflow-y: scroll;
}

.widget_shopping_cart_content .cart_list .woocommerce-mini-cart-item {
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #ccc;
    padding: 10px 0;
}

.widget_shopping_cart_content .cart_list .woocommerce-mini-cart-item span.quantity {
    display: block;
}

.widget_shopping_cart_content .cart_list img {
    max-width: 50px;
    aspect-ratio: 1;
    object-fit: cover;
}

.widget_shopping_cart_content .cart_list a {
    text-decoration: none;
    color: #000;
}

.widget_shopping_cart_content .cart_list a.remove_from_cart_button {
    background-color: rgb(205, 0, 0);
    color: #fff;
    border-radius: 30px;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    line-height: 18px;
    font-weight: bold;
}

.woocommerce-mini-cart__total {
    padding: 10px 0;
    margin-top: 15px;
}

.woocommerce-mini-cart__buttons {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
}

.woocommerce-mini-cart__buttons_checkout {
    margin: 17px 0;
}

.woocommerce-mini-cart__buttons_checkout &gt; a {
    width: 100%;
    text-align: center;
    color: #fff;
}

.woocommerce-mini-cart__buttons_cart &gt; a {
    width: 100%;
    text-align: center;
    background-color: #fff;
    border: 1px solid #3b00b0;
    color: #3b00b0;
}

.woocommerce-mini-cart__buttons_cart &gt; a:hover {
    color: #333;
}</pre></body></html>