

/* Start:/local/templates/idistribute/components/bitrix/catalog.section.list/section/style.css?17793976261265*/
:root {
    --gap: 24px;
    --border-radius: 4px;
}

.section__grid {
    margin: 1rem 0;
    display: grid;

    /* максимум 4 в ряд */
    grid-template-columns: repeat(
        auto-fit,
        minmax(min(100%, 260px), 1fr)
    );

    gap: var(--gap);
}

.section__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;

    padding: 16px;

    background-color: #fff;
    border: 1px solid var(--Secondary-Light);
    border-radius: var(--border-radius);

    text-decoration: none;
    color: inherit;

    transition:
        border-color .2s ease,
        color .2s ease,
        box-shadow .2s ease;

    min-width: 0;
    font-weight: 500;
    word-break: break-word;
    hyphens: auto;
}

.section__item:hover {
    border-color: var(--Primary-Light);
    color: var(--Primary-blue);
    box-shadow: 0 4px 16px rgba(0,0,0,.06);
    /*background-color: var(--Primary-Light);*/
}

.section__item img {
    width: 90px;
    height: 90px;

    object-fit: cover;
    flex-shrink: 0;

    border-radius: var(--border-radius);
}

.section__item span {
    min-width: 0;

    font-size: 16px;
    line-height: 1.4;
    word-break: break-word;
}

.section__item sup {
    margin-left: 4px;

    font-size: 12px;
    line-height: 1;
}
/* End */


/* Start:/local/templates/idistribute/components/bitrix/catalog.item/table/style.css?1725980363166*/
.products__row .text-center svg {
    margin: 0 auto;
}

@media screen and (max-width: 1024px) {
    .products__item-image img {
        height: revert-layer;
    }
}
/* End */
/* /local/templates/idistribute/components/bitrix/catalog.section.list/section/style.css?17793976261265 */
/* /local/templates/idistribute/components/bitrix/catalog.item/table/style.css?1725980363166 */
