.sections-list__item {
    background: #fff;
    background: var(--card_bg_black);
}


.sections-list__item-link {
    padding: 18px 28px 18px 24px;
    max-width: 320px;
    display: block;
}

.sections-list__item-image-wrapper {
    --section-image-width: 40px;
    --section-image-height: 40px;
    --section-image-offset: 24px;

    width: var(--section-image-width);
    height: var(--section-image-height);
    margin-right: var(--section-image-offset);

    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sections-list__item-image {
    max-width: 100%;
    max-height: 100%;
}

.sections-list__item-image-wrapper--ICONS svg {
    width: var(--section-image-width);
    height: var(--section-image-height);
}

.sections-list__item-image-wrapper--LINK {
    background-color: rgba(136, 136, 136, 0.1);
}

.sections-list__item-link:hover .arrow * {
    stroke: #fff;
}

.sections-list__item-text {
    text-overflow: ellipsis;
    overflow: hidden;
}

.links-block .line-block__item.non-active {
    display: none;
}

.links-block .line-block__item {
    width: calc((100% - 48px) / 5);
}

@media (max-width: 1280px) {
    .links-block .line-block__item {
        width: calc((100% - 36px) / 4);
    }
}

@media (max-width: 1000px) {
    .links-block .line-block__item {
        width: calc((100% - 24px) / 3);
    }
}

@media (max-width: 800px) {
    .links-block .line-block__item {
        width: calc((100% - 12px) / 2);
    }
}

@media (max-width: 600px) {
    .links-block .line-block__item {
        width: 100%;
    }

    .sections-list__wrapper {
        flex-basis: 100%;
    }

    .mobile-scrolled .sections-list__wrapper {
        flex-basis: auto;
    }

    .sections-list__item-link {
        padding: 16px 20px 16px 20px;
    }

    .sections-list__item-image-wrapper {
        --section-image-width: 32px;
        --section-image-height: 32px;
        --section-image-offset: 18px;
    }
}

@media only screen and (max-width: 600px) {

    #catalog-list-more .sections-list__item {
        border-color: #1a9859;
    }

    .sections-list__item-text {
        /*text-align: center;*/
    }

    .sections-list__item-inner {
        /*justify-content: center;*/
    }
}