.catalogSectionList__list {
    --col-size: 250px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(var(--col-size), 1fr));
    row-gap: 5px;
    column-gap: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}
.catalogSectionList_mobile .catalogSectionList__btn {
    opacity: 1;
}
.catalogSectionList__btn {
    text-align: center !important;
    opacity: 0;
    margin: 10px auto 0;
}
.catalogSectionList .catalogSectionListElement {
    background: #FFF;
    border-radius: 15px;
    color: var(--color-gray-80);
    text-decoration: none;
    padding: 10px;
    box-sizing: border-box;
    transition: box-shadow 0.2s linear;
    display: flex;
}
.catalogSectionList .catalogSectionListElement:hover {
    box-shadow: var(--accent-shadow-sm);
    -webkit-box-shadow: var(--accent-shadow-sm);
    -moz-box-shadow: var(--accent-shadow-sm);
    background: #ecebed;/*var(--color-white);*/
}
.catalogSectionList .catalogSectionListElement .catalogSectionListElement__info svg:hover,
.catalogSectionList .catalogSectionListElement:hover .catalogSectionListElement__info svg,
.catalogSectionList .catalogSectionListElement:hover .catalogSectionListElement__split .btn-no-bg,
.catalogSectionList .catalogSectionListElement:hover .catalogSectionListElement__title {
    color: var(--main-color);
}
.catalogSectionList .catalogSectionListElement .catalogSectionListElement__title {
    transition: color 0.2s linear;
    margin-bottom: 8px;
    font-size: var(--text-base);
    font-weight: var(--weight-bold);
    line-height: 1;
    letter-spacing: 0;
    text-align: left;
}
.catalogSectionList .catalogSectionListElement .catalogSectionListElement__preview {
    width: 36px;
    aspect-ratio: 1/1;
    margin: 0 12px 0 0;
    display: flex;
    align-items: center;
}
.catalogSectionList .catalogSectionListElement .catalogSectionListElement__preview img,
.catalogSectionList .catalogSectionListElement .catalogSectionListElement__preview x-image {
    width: inherit;
    mix-blend-mode: multiply;
}
.catalogSectionList .catalogSectionListElement .catalogSectionListElement__info {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.catalogSectionList .catalogSectionListElement .catalogSectionListElement__info .catalogSectionListElement__info-wrap {
    flex: 1;
}
.catalogSectionList .catalogSectionListElement .catalogSectionListElement__info svg {
    display: none;
    width: 12px;
    aspect-ratio: 1/1;
    transition: color 0.2s linear;
}
.catalogSectionList .catalogSectionListElement .catalogSectionListElement__info svg path {
    fill: currentColor;
}
.catalogSectionList .catalogSectionListElement .catalogSectionListElement__split {
    color: var(--color-light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}
.catalogSectionList .catalogSectionListElement .catalogSectionListElement__split .btn-no-bg {
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 0;
    font-size: var(--text-sm);
}
.catalogSectionList .catalogSectionListElement .catalogSectionListElement__split .btn-no-bg:hover {
    color: var(--main-color);
    background: var(--color-white);
    box-shadow: none;
}
.search_input {
    width: 300px;
    padding: 5px;
    margin: 0 10px 20px 0;
}