.filter-btn-block {
    display: none;
    padding: 0 10px;
}

.btn-filter {
    border: 1px solid #78909c;
    text-align: center;
    width: 100%;
    height: 40px;
    line-height: 40px;
    color: #455a64;
    border-radius: 2px;
    margin-bottom: 15px;
    box-sizing: border-box;
    font-size: 15px;
    display: block;
}

.atp-layer-filter {
    margin: 0;
    float: none;
    width: 245px;
    padding: 0 20px 0 0;
    transition: .4s;
}

.slide__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slide__title {
    font-size: 24px;
    font-weight: 700;
}

.close-icon {
    background: url('/image/close-icon.svg') center no-repeat;
    height: 22px;
    vertical-align: top;
    max-width: 100%;
    width: 22px;
}

.atp-block-filter.mobile-only {
    display: none;
    padding-bottom: 0;
}

.btn-apply-filters {
    visibility: hidden;
    opacity: 0;
}

@media screen and (max-width: 768px) {
    .atp-block-filter {
        padding: 10px;
    }

    .atp-block-filter .element label,
    .atp-block-filter .caption {
        font-size: 14px;
    }

    .atp-block-filter .element {
        margin: 10px 0 0 0;
    }
}

@media screen and (max-width: 736px) {
    .filter-btn-block {
        display: block;
    }

    .atp-layer-filter {
        position: fixed;
        left: -310px;
        display: block;
        background: #fff;
        top: 0;
        z-index: 1000;
        overflow-y: auto;
        border: none;
        border-radius: 0;
        box-shadow: none;
        height: calc(100% + 70px);
        border-bottom: 70px solid #fff;
        padding: 0;
    }

    .atp-layer-filter.open {
        left: 0;
        width: 310px;
    }

    .atp-block-filter {
        width: 100%;
    }

    .atp-block-filter.mobile-only {
        display: block;
    }

    .btn-apply-filters .btn-filter {
        position: fixed;
        background: #fff;
        bottom: 15px;
        left: 15px;
        width: 280px;
        margin: 0;
        transition: .2s;
        z-index: 1;
    }

    .btn-apply-filters.show {
        visibility: visible;
        opacity: 1;
    }

    .btn-apply-filters.show + .atp-block-filter {
        padding-bottom: 60px;
    }

    .atp-block-filter .caption {
        background: transparent url('/image/arrow_down.png') 249px center no-repeat;
        text-transform: initial;
    }

    .atp-block-filter .caption.show-params {
        background: transparent url('/image/arrow_up.png') 249px center no-repeat;
    }
}