<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.view {
    position: relative;
    display: flex;
    align-items: center;
    left: -5px;
}

.view__button {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 4.6rem;
    height: 4.6rem;
    background: var(--main-background-color);
    border-radius: 5px;
    color: #C7C7D6;
    margin: 0 0.5rem 0 0;
    cursor: pointer;
    transition: color 0.25s;
}
.view__button:last-child {
    margin: 0;
}

.view__button_list {
    padding: 10px 8px;
}




.view__button svg {
    transition: all .3s ease;
    color: #C7C7D6;
}
.view__button._active:hover svg,
.view__button._active svg {
    color: var(--accent-color);
}

.view__button:hover svg {
    color: var(--main-text-color);
}

.view__button svg {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 14px;
    height: 14px;
}

.view__button.view__button_list svg {
    height: 10px;
    width: 14px;
}



.c-goods--grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(33rem, 1fr));
    gap: 1.5rem;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .view {
        display: none;
    }
}

@media (max-width: 430px) {
    .c-goods--grid-3 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
</pre></body></html>