<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.main_category .category_item img {
    height: auto !important;
    width: 100%;
}

.sale-item {
    position: relative;
    font-size: 14px;
    color: #2C180B;
    padding: 0;
    margin: 0;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all .15s ease-out;
}

.sale-item:hover {
    border-color: #DEDAD7;
}
.sale-item * {
    color: inherit;
}
.sale-item__image {
    overflow: hidden;
    position: relative;
    width: 100%;
}
.sale-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover!important;
    object-position: center;
}
.sale-item__content {
    width: 100%;
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.sale-item__title {
    font-size: 18px;
    line-height: 24px;
    font-family: "MinionPro-Regular", sans-serif;
    font-weight: normal;
    color: inherit;
    margin: 0 0 16px 0;
    flex: 1;
}
.sale-item__date {
    font-size: 12px;
    line-height: 20px;
    color: #666666;
    margin: 0 0 8px 0;
    min-height: 20px;
}
.sale-item a {
    text-decoration: underline;
    color: inherit;
    font-size: 14px;
    line-height: 20px;
    font-family: "MuseoSansCyrl-100", sans-serif;
}
.sale-item .link-absolute {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    padding: 0;
    margin: 0;
    z-index: 2;
}
.sales-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 5px;
    margin-bottom: 70px;
}

.sale-item__title &gt; *, .sale-item__title &gt; a {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
}

@media screen and (min-width: 1440px) {
    .sales-list {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media screen and (max-width: 1023px) {
    .sales-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 550px) {
    .sales-list {
        grid-template-columns: 1fr;
    }
    .sale-item__date {
        min-height: initial;
    }
}
</pre></body></html>