.search-filter-buttons {
    display: none!important;
}

.search-page__filter {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0;
    z-index: 149;
    bottom: 0;
    background-color: hsla(0,0%,100%,.8);
    text-align: center;
    display: none;
}

.search-page__filter-button {
    border: 0;
    cursor: pointer;
    text-align: center;
    line-height: 40px;
    color: #fff;
    background: #f69227;
    font-size: 16px;
    width: 100%;
}

.search-page__filter-button span {
    position: relative;
}

.search-page__filter-button span em {
    position: absolute;
    top: -9px;
    left: -42px;
    width: 40px;
    height: 40px;
    background: url(images/icon-filter.svg) no-repeat center center;
    background-size: cover;
}

@media (max-width: 620px) {
    .search-page__filter {
        display: block;
    }

    .search-filter_inline-button {
        display: none;
    }
}

/* Для поддержки IOS 11: чтобы кнопка не наезжала на черту внизу экрана */
@supports (-webkit-touch-callout: none) {
    .search-page__filter {
        bottom: min(14px, env(safe-area-inset-bottom, 0));
    }
}