<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --red: rgb(235, 51, 0);
    --black-color-text: rgb(37, 40, 42);
    --Blocks: rgba(255, 255, 255);
    --icon-color: rgba(249, 188, 172);
    --grey: #E2E2E2;
}

.bookmark_section {
    margin-top: 80px;
}

.bookmark {
    opacity: 0.5;
    position: relative;
    left: 5%;
    width: 90%;
}

.bookmark a {
    text-decoration: none;
    color: #000;
    margin-right: 5px;
}

.bookmark i {
    margin-right: 5px;
}

.productlist_section {
    margin: 40px 5% 0 5%;
}

.productlist_Title{
    font-size:18px;
    margin-bottom:60px;
}

.productlist_info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 100px;
    gap: 40px;
}

.product_info{
    position:relative;
    width:80%;
    cursor:pointer;
}

.product_name {
    font-size: 14px;
    margin-right: 10px;
}

.product_price {
    font-size: 14px;
    color: rgba(37, 40, 42, 0.75);
}


@media screen and (min-width: 992px) {
    .bookmark_section {
        margin-top: 100px;
    }

    .product_info {
        width: 30%;
        /*margin: 0 30px;*/
    }

    .productlist_info {
        width: 62.5%;
        margin: auto;
        margin-bottom: 150px;
    }

    .productlist_Title {
        font-size: 20px;
        margin-left: 18.75%;
        margin-bottom: 100px;
    }

    .bookmark {
        left: 18.75%;
        width: 50%;
    }

    .productlist_section {
        margin: 40px 0 0 0;
    }
}</pre></body></html>