<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    margin: 0;
    padding: 0;
    background: #fff;
    font: 14px/24px "Open Sans", Arial, Helvetica, sans-serif;
    color: #000;
    -webkit-text-size-adjust: none;
}

.container {
    max-width: 1256px;
    margin: 0 auto;
    position: relative;
    zoom: 1;
    padding-right: 15px;
    padding-left: 15px;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 1,
    'wght' 300,
    'GRAD' 0,
    'opsz' 24
}

h2 {
    font-weight: bold;
    font-size: 19px;
    text-transform: uppercase;
    margin: 25px 0;
    text-align: center;
}

h4 {
    font-size: 16px;
    margin: 0;
    font-weight: normal;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    white-space: nowrap;
    color: #000;
    text-decoration: none;
    padding: 16px 30px;
    border-radius: 5px;
    background: #ffd65e;
    background: linear-gradient(to bottom, #ffd65e 0%, #febf05 100%);
    line-height: 1;
    cursor: pointer;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: bold;
}

.btn-violet {
    background: linear-gradient(90deg, #9508f6 0%, #e63edf 100%);
    color: white;
}

.btn-orange {
    background: linear-gradient(90deg, #fed32b 0%, #ffd55d 100%);
    color: black;
}

.btn-blue {
    background: linear-gradient(90deg, #015aff 0%, #2672ff 100%);
    color: white;
}

.marketplace_lists {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 80px;
    border: 1px dashed #c3c3c3;
    padding: 30px;
}

.marketplace__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    text-align: center;
}

.item_img {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 60px;
    justify-content: center;
}

.item_img img {
    max-width: 180px;
}

.item_desc {
    line-height: 1.3;
}

.item_rating {
    font-size: 19px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.item_rating span {
    color: #febf05;
}

.item_link {
    margin-top: 10px;
}

.right_marketplace {
    margin-top: 20px;
}

.border {
    border-radius: 3px;
    box-shadow: 2px 2px 2px 2px rgba(239, 239, 239, 0.95);
    padding: 20px;
    margin: 0px 0px 20px 0px;
    width: 240px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.catalog_lists {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 140px;
}

.catalog_lists .btn {
    padding: 10px 20px;
    font-size: 11px;
}


@media (max-width: 999px) {
    .marketplace_lists {
        grid-template-columns: 1fr;
    }

    .border {
        width: 100%;
        box-sizing: border-box;
    }

    .catalog_lists {
        max-width: initial;
    }
}</pre></body></html>