.slider-container {
    position: relative;
    width: 100px;
    height: 8px;
    background: #422f14;
    border-radius: 4px;
}

.slider-input {
    -webkit-appearance: none;
    appearance: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
    padding: 16px 0;
    margin: -16px 0;
}

.slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 0;
    height: 0;
}

.slider-input::-moz-range-thumb {
    width: 0;
    height: 0;
}

.slider-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #c28939;
    border-radius: 4px;
    pointer-events: none;
}
