.srf-range-filter {
    --srf-accent: #d8d8d8;
    --srf-track: #eeeeee;
    --srf-thumb: #d8d8d8;
    display: block;
    margin: 0 0 24px;
    color: inherit;
}

.srf-range-filter__heading {
    margin: 0 0 18px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.srf-range-filter__slider {
    position: relative;
    height: 18px;
    margin: 0 0 16px;
}

.srf-range-filter__slider::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    height: 5px;
    transform: translateY(-50%);
    border-radius: 999px;
    background: var(--srf-track);
}

.srf-range-filter__input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 18px;
    margin: 0;
    padding: 0 !important;
    border: 0 !important;
    appearance: none;
    background: transparent;
    box-shadow: none !important;
    outline: 0;
    pointer-events: none;
}

.srf-range-filter__input::-webkit-slider-thumb {
    width: 15px;
    height: 15px;
    border: 0;
    border-radius: 50%;
    appearance: none;
    background: var(--srf-thumb);
    box-shadow: none;
    cursor: pointer;
    pointer-events: auto;
}

.srf-range-filter__input::-moz-range-thumb {
    width: 15px;
    height: 15px;
    border: 0;
    border-radius: 50%;
    background: var(--srf-thumb);
    box-shadow: none;
    cursor: pointer;
    pointer-events: auto;
}

.srf-range-filter__input::-webkit-slider-runnable-track {
    height: 5px;
    border: 0;
    background: transparent;
}

.srf-range-filter__input::-moz-range-track {
    height: 5px;
    border: 0;
    background: transparent;
}

.srf-range-filter__footer {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.srf-range-filter__button {
    min-height: 28px;
    padding: 7px 18px;
    border: 0;
    border-radius: 4px;
    background: #dedede;
    color: #222222;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
}

.srf-range-filter__reset {
    color: #777777;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
}

.srf-range-filter__reset:hover,
.srf-range-filter__reset:focus {
    color: #222222;
    text-decoration: underline;
}

.srf-range-filter__values {
    color: #777777;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
}

.srf-admin-warning {
    padding: 12px;
    border-left: 4px solid #d63638;
    background: #fff5f5;
}
