.smart-filter-slider {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    z-index: var(--z-index-max);
    pointer-events: none;
}

.smart-filter-slider._active {
    pointer-events: auto;
}

.smart-filter-slider .bx-ui-slider-track-container {
    display: none;
}

.smart-filter-slider__blocker {
    width: 100%;
    height: 100%;
    background: var(--color-black-07);
    transition: var(--transition);
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.smart-filter-slider._active .smart-filter-slider__blocker{
    opacity: 1;
}

.smart-filter-slider__content {
    z-index: 2;
    height: 100%;
    width: 430px;
    background: white;
    transform: translateX(-100%);
    transition: var(--transition);
    display: flex;
    flex-direction: column;

}

.smart-filter-slider._active .smart-filter-slider__content {
    transform: translateX(0%);
}

.smart-filter-slider__header {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 15px;
    box-shadow: 0px 3px 11px 0px rgb(0 0 0 / 8%);
}
.smart-filter-slider__title {
    font-weight: bold;
    font-size: var(--font-size-s5);
}
.smart-filter-slider__close {
    margin-left: auto;
}
.smart-filter-slider__body {
    height: 100%;
    overflow-y: auto;
    padding: 15px;
    overflow-x: hidden;
}
.smart-filter-slider__footer {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 15px;
    box-shadow: 0px -3px 11px 0px rgb(0 0 0 / 8%);
    justify-content: space-between;
}

@media screen and (max-width: 440px) {
    .smart-filter-slider__content {
        width: 100%;
    }
}


