#my-range-price {
    display: inline-block;
    position: relative;
    background: linear-gradient(0deg, #FFAC5F 0%, #FB5F01 17.19%, #FA7F00 62.07%, #FFB354 90.27%, #FA9600 95.54%);
    border-radius: var(--bar-height, 15px);
    height: var(--bar-height, 15px);
    width: calc(100% - 24px);
    --bar-height: 9px;
}

.my-range-price__input {
    border-radius: 15px;
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0px;
    appearance: none;
    display: block;
    background: none;
    pointer-events: none;
}

.my-range-price__input::-webkit-slider-thumb {
    appearance: none;
    background: linear-gradient(-0deg, #FFAC5F 0%, #FB5F01 17.19%, #FA7F00 62.07%, #FFB354 90.27%, #FA9600 95.54%);
    width: calc(var(--bar-height, 15px) + 8px);
    height: calc(var(--bar-height, 15px) + 8px);
    border: solid 0px;
    border-radius: 50%;
    pointer-events: all;
    cursor: pointer;
    background: #FB5F01;
}

.my-range-price__input::-webkit-slider-thumb:hover {
    outline: solid rgba(255, 138, 0, 0.4) 5px;
}

.my-range-price__input::-webkit-slider-runnable-track {
    appearance: none;
}

.my-range-price__input::-moz-range-thumb {
    appearance: none;
    background: linear-gradient(-0deg, #FFAC5F 0%, #FB5F01 17.19%, #FA7F00 62.07%, #FFB354 90.27%, #FA9600 95.54%);
    width: var(--bar-height, 15px);
    height: var(--bar-height, 15px);
    border: solid 0px;
    border-radius: 50%;
    pointer-events: all;
    cursor: pointer;
}

.my-range-price__input::-moz-range-thumb:hover {
    background: #FB5F01;
    outline: solid rgba(255, 138, 0, 0.28) 10px;
}

.my-range-price__input.max {
    box-sizing: border-box;
    transform: scale(-1, 1);
}

.input-price {
    border: 0;
    width: 92px;
    text-align: center;
}

.clear-filter-child, .clear-checkbox-child {
    position: relative;
}

.clear-filter-child {
    margin: 1rem;
}

.clear-filter {
    position: absolute;
    bottom: 4px;
    right: 1rem;
}
.clear-checkbox {
    top: 60px;
    left: 180px;
}

.main-search-field {
    width: 100%;
    height: 30px;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 0px 10px;
    box-sizing: border-box;
}

.filter-spoiler {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 10px 15px 10px 10px;
}

.spoiler-btn {
    display: flex;
    align-items: center;
    justify-content: right;
    appearance: none;
    border: none;
    background: none;
    margin-bottom: 1px;
}
.sectoprop-checkbox {
    display: block;
    padding-left: 5px;
    max-height: 300px;
    overflow-y: auto;
    margin-top: 1rem;
}
.expand-btn {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.067);
    padding: 5px;
    margin-top: 10px;
    border-radius: 5px;
}
.title-filter {
    width: 90%;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}
.filter-list__title {
    display: flex;
}
.filter-list__btn {
    display: flex;
    justify-content: space-between;
    width: 20%;
    height: 20px;
}

.filter-list .main-search-field {
    margin: 0;
}
.sectoprop-checkbox__checkbox {
    margin-right: 4px !important;
}
.sections-list__section {
    font-family: "Roboto";
    align-items: center;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.025);
    padding: 10px;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 25px 1fr 30px;
}
.section-list__btn {
    display: block;
    font-size: 15px;
    border: solid #0001 1px;
    padding: 7px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.02);
    font-family: 'Roboto';
}
.sections-list__section::before {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background: white;
    border: solid #ccc 1px;
    border-radius: 3px;
}
.sections-list__section.selected::before {
    background: #0007;
    outline: solid white 2px;
    outline-offset: -3px;
}

@keyframes slidein {
    from {
        opacity: .1;
    }
    to {
        opacity: 1;
    }
}