<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.wishlist-container {
    max-width: 1440px;
    padding: 0 50px;

    &amp; h1 {
        line-height: 52px;
        font-size: 46px;
        color: #413936;
        font-family: "Prata", serif;
    }

    &amp; .wishlist-header {
        visibility: hidden;
        opacity: 0;
        width: 0;
        height: 0;
    }

    &amp; .wh-grid-layout {
        &amp; .wishlist-row {
            margin: 0;

            &amp; .wishlist-column {
                width: calc(33.33% - ((20px * 2) / 3));
                max-width: calc(33.33% - ((20px * 2) / 3));
                margin-right: 20px;
                margin-bottom: 20px;
                padding: 0;
                background-color: #F6F5F2;
                
                &amp;:nth-of-type(3n+3) {
                    margin-right: 0;
                }

                &amp; .wishlist-top {
                    padding-bottom: 250px;

                    &amp; .wishlist-remove {
                        background-color: #D5CAA5;
                        padding: 10px;
                        right: 0;
                    }
                }
                &amp; .wihslist-meta {
                    padding: 10px 24px 20px;

                    &amp; h3 {
                        font-size: 23px;
                        line-height: 33px;
                        font-family: "Prata", serif;
                        color: #413936;
                    }

                    &amp; .wishlist-price {
                        font-size: 25px;
                        line-height: 32px;
                        color: #6B7264;
                        font-weight: 500;
                        margin-bottom: 20px;
                    }
                    &amp; .wishlist-variant {
                        font-size: 17px;
                        color: #413936;
                        line-height: 27px;
                        font-weight: 300;
                        margin-bottom: 20px;
                    }

                    &amp; .wishlist-cart {
                        display: flex;
                        justify-content: center;
                        width: 100%;
                        min-height: 48px;
                        line-height: 24px;
                        font-size: 17px;
                        letter-spacing: 1px;
                        color: #6B7264 !important;
                        font-weight: 600;
                        border: 1px solid #D5CAA5 !important;
                        border-radius: 13px;
                        text-decoration: none;
                        padding: 12px;
                        margin-top: auto;
                        background-color: transparent;
                        z-index: 1;
                        transition: border-color 0.12s linear, background-color 0.12s linear, color 0.12s linear;
                        background-color: transparent !important;
                        text-transform: capitalize;

                        &amp;:not(.wishlist-move-cart) {
                            opacity: 0.6;
                            cursor: default
                        }

                        &amp;:hover {
                            border-color: #5F675A !important;
                            color: #FFFFFF !important;
                            background-color: #5F675A !important;
                        }
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 1100px) {
    .wishlist-container {
        padding: 0 30px;
        
        &amp; .wh-grid-layout {
            &amp; .wishlist-row {
                &amp; .wishlist-column {
                    width: 100%;
                    max-width: 100%;
                }
            }
        }
    }
}</pre></body></html>