.offers-filter-form {
    margin-bottom: 30px;
}

.price-range-wrapper {
    width: 100%;
}

/* HEADER (0 ---- selected ---- MAX) */
.price-range-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    margin-bottom: 10px;
}

.price-start,
.price-end {
    color: #777;
}

.price-selected {
    font-size: 14px;
    font-weight: 600;
}

/* SLIDER */
.price-slider {
    position: relative;
    height: 6px;
}

.price-slider input[type="range"] {
    position: absolute;
    width: 100%;
    top: 0;
    pointer-events: none;
    background: none;
    -webkit-appearance: none;
}

/* TRACK */
.price-slider input[type="range"]::-webkit-slider-runnable-track {
    height: 6px;
    background: #e5e5e5;
    border-radius: 3px;
}

.price-slider input[type="range"]::-moz-range-track {
    height: 6px;
    background: #e5e5e5;
    border-radius: 3px;
}

/* THUMB */
.price-slider input[type="range"]::-webkit-slider-thumb {
    pointer-events: all;
    width: 18px;
    height: 18px;
    background: #000;
    border-radius: 50%;
    -webkit-appearance: none;
    margin-top: -6px;
}

.price-slider input[type="range"]::-moz-range-thumb {
    pointer-events: all;
    width: 18px;
    height: 18px;
    background: #000;
    border-radius: 50%;
}
