@media (max-width: 767px) {
    .filter__body {
        margin-bottom: 25px;
    }
}
.filter {
    padding: 25px 30px;
    width: 336px;
    background-color: #f1f7ff;
    border-radius: 32px;
}
.filter__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    font-size: 24px;
    line-height: 125%;
    color: #202732;
    padding-bottom: 24px;
    margin-bottom: 8px;
    border-bottom: 1px solid #dae2ec;
}
.filter__top-icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}
.filter__arrow svg,
.filter__top-icon svg{
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.filter__top-box {
    display: flex;
    align-items: center;
}
.filter__box {
    padding-top: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #dae2ec;
}
.filter__box-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 2px;
    cursor: pointer;
}
.filter__box.active .filter__arrow {
    transform: rotate(-180deg);
    transition: all 0.3s;
}
.filter__caption {
    font-weight: 500;
    font-size: 18px;
    line-height: 125%;
    color: #202732;
}
.filter__arrow {
    width: 16px;
    height: 16px;
    transition: all 0.3s;
}
.filter__container {
    padding-top: 16px;
    display: none;
    position: relative;
}
.filter__container .checbox_hidden {
    position: absolute;
    width: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0s;
}
.filter__container .checbox_hidden.checbox_visible {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.3s;
}
.filter__row {
    display: flex;
    justify-content: space-between;
}
.filter__coll {
    width: 100%;
}
.filter__coll_small {
    width: calc(50% - 10px);
}
.filter__field {
    padding: 16px 24px;
    height: 50px;
    background-color: #e5effe;
    border-radius: 4px;
    color: #202732;
    border: 0;
}
.filter__field::-webkit-input-placeholder {
    color: #202732;
}
.filter__field:-moz-placeholder,
.filter__field::-moz-placeholder {
    color: #202732;
}
.filter__field:-ms-input-placeholder {
    color: #202732;
}
.filter__field:focus {
    border-color: #a9ff35;
    color: #202732;
}
.filter__link {
    display: inline-flex;
    font-weight: 500;
    font-size: 14px;
    line-height: 125%;
    text-decoration: underline;
    color: #8e9297;
    margin-top: 16px;
    transition: all 0.3s;
}

.filter__link:hover {
    color: #a9ff35;
    transition: all 0.3s;
    cursor: pointer;
}

.filter__link#del_filter:not(.is-active) {
    display: none;
}
.filter__link:hover {
    color: #a9ff35;
    transition: all 0.3s;
}
.filter__link span:last-child {
    display: none;
}
.filter__link.active span:first-child {
    display: none;
}
.filter__link.active span:last-child {
    display: block;
}
.filter__bottom {
    padding-top: 24px;
    text-align: center;
    font-size: 14px;
    line-height: 145%;
    color: #8e9297;
}
.filter__value span {
    padding-left: 6px;
}
.filter__btn {
    width: 100%;
    height: 64px;
    margin-top: 24px;
    margin-bottom: 2px;
}
.filter__closed {
    width: 24px;
    height: 24px;
    display: none;
    align-items: center;
    justify-content: center;
    position: relative;
}
.filter__closed span {
    width: 100%;
    height: 2px;
    display: block;
    background-color: #1e242e;
    position: relative;
    transform: rotate(45deg);
}
.filter__closed span:last-child {
    position: absolute;
    transform: rotate(-45deg);
}
.filter .checbox + .checbox {
    margin-top: 8px;
}
.filter_text b {
    font-weight: 400;
    text-align: left;
}

.filter__container-wrap .swiper {
    max-height: 150px;
}
@media (max-width: 1600px) {
    .filter {
        padding: 24px 16px;
        width: 300px;
    }
}
@media (max-width: 1190px) {
    .filter {
        width: 320px;
        height: 100vh;
        overflow: auto;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10000;
        border-radius: 0 16px 16px 0;
        transform: translateX(-100%);
        transition: all 0.3s;
    }
    .filter.active {
        transform: translateX(0);
        transition: all 0.3s;
    }
    .filter__closed {
        display: flex;
    }
}

@media (max-width: 760px) {
    .filter__top {
        font-size: 20px;
        padding-bottom: 16px;
        margin-bottom: 5px;
    }
    .filter__top-icon {
        width: 26px;
        height: 26px;
        margin-right: 6px;
    }
    .filter__box {
        padding-top: 12px;
        padding-bottom: 12px;
    }
    .filter__caption {
        font-size: 16px;
    }
    .filter__container {
        padding-top: 10px;
    }
    .filter__link {
        font-size: 12px;
        margin-top: 12px;
    }
    .filter__bottom {
        padding-top: 16px;
        font-size: 13px;
    }
    .filter__field {
        padding: 10px 16px;
        height: 44px;
    }
    .filter__btn {
        height: 54px;
        margin-top: 16px;
        margin-bottom: 6px;
    }
    .filter .checbox {
        font-size: 12px;
    }
}