.ss-price-slider-wrap {
    position: relative;
    width: 100%;
    height: 8px;
    margin: 20px 0;
}

.slider-track {
    position: absolute;
    width: 100%;
    height: 8px;
    background: #121212;
    border-radius: 0;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
}

.slider-track::before {
    content: '';
    position: absolute;
    height: 8px;
    background: #f96418;
    border-radius: 0px;
    top: 0;
    left: 0;
    right: 0;
}

.ss-price-slider-wrap input[type="range"] {
    position: absolute;
    width: 100%;
    height: 5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.ss-price-slider-wrap input[type="range"]::-webkit-slider-thumb {
    pointer-events: auto;
    -webkit-appearance: none;
    appearance: none;
    height: 20px;
    width: 20px;
    background: white;
    border: 5px solid #121212;
    box-sizing: border-box;
    cursor: pointer;
    margin-top: -5px
}

.ss-price-slider-wrap input[type="range"]::-moz-range-thumb {
    pointer-events: auto;
    -webkit-appearance: none;
    appearance: none;
    height: 20px;
    width: 20px;
    background: white;
    border: 5px solid #121212;
    box-sizing: border-box;
    cursor: pointer;
}

/* Active track color */
#ss-price-min::-webkit-slider-thumb {
    z-index: 1;
}

#ss-price-max::-webkit-slider-thumb {
    z-index: 2;
}

/* Update track color between thumbs */
.ss-price-slider-wrap input[type="range"]::-webkit-slider-runnable-track {
    height: 8px;
    background: transparent;
}

.ss-price-slider-wrap input[type="range"]::-moz-range-track {
    height: 8px;
    background: transparent;
}

/* Active track color */
.slider-track::before {
    background: #f96418;
    left: var(--min-thumb-position, 0%);
    right: calc(100% - var(--max-thumb-position, 100%));
}