.search-suggestions + .catalog-search {
    margin: 20px 0px 10px;
}

.catalog-search.block-visible {
    opacity: 1;
    transition: opacity 0.175s ease-in;
}
.catalog-search {
    margin: 20px 0px 10px;
}
.catalog-search {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}
.catalog-search > h2 {
    font-family: "Druk Cyr", "Montserrat", "Basis Grotesque Pro", Arial, Helvetica, sans-serif;
    font-size: 35px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: #000;
}
.catalog-search__category-list {
    overflow-x: auto;
    padding: 15px 0 15px;
    margin: 0 0 30px 0;
    user-select: none;
}
.catalog-search__category {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    height: 77px;
}
.catalog-search__item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-bottom: 10px;
    margin-right: 20px;
    flex-shrink: 0;
    cursor: pointer;
    padding: 12px;
    border: 2px solid transparent;
    border-radius: 10px;
    transition: all 0.3s;
}
.catalog-search__picture {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}
.catalog-search__picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.catalog-search__picture img[src=""]{
    position: relative;
}
.catalog-search__picture img[src=""]::after {
    content: "";
    background-image: url(../img/no-photo.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 50px;
    width: 50px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}
.catalog-search__title {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
}
.catalog-search__counter {
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    color: #aaa;
}
@media (max-width: 970px){
    .catalog-search {
        padding: 0 20px;
    }
}
@media (max-width: 576px){
    .catalog-search {
        padding: 0 20px;
    }
}

.catalog-search .os-theme-minimal-dark > .os-scrollbar-horizontal {
    right: 16px;
    height: 6px;
}
.catalog-search .os-theme-minimal-dark > .os-scrollbar-vertical {
    bottom: 16px;
    width: 6px;
}
.catalog-search .os-theme-minimal-dark.os-host-rtl > .os-scrollbar-horizontal {
    left: 16px;
    right: 0;
}
.catalog-search .os-theme-minimal-dark > .os-scrollbar-corner {
    height: 6px;
    width: 6px;
    background-color: transparent;
}
.catalog-search__item.catalog-search__item--active, .catalog-search__item:hover {
    border: 2px solid #dc3545;
}