.slider-container {
    position: relative;
    width: 80%;
    margin: 0 auto 20px;
    height: 35px;
    text-align: center;
}

.slider-container input {
    -webkit-appearance: none;
    pointer-events: none;
    position: absolute;
    left: 12%;
    right: 12%;
    top: 30px;
    background-color: #ff0000;
    width: 76%;
    outline: none;
    height: 5px;
    margin: 0;
    padding: 0;
    border-radius: 8px;
}

.slider-container span{
    position: absolute;
    top:24px;
    width: 11%;
}


.slider-container .min{
    left:0;
    
}

.slider-container .max{
    right:0;
}

.slider-container input::-webkit-slider-thumb {
    pointer-events: all;
    position: relative;
    z-index: 1;
    outline: 0;
    -webkit-appearance: none;
    height: 30px;
    width: 30px;
    border-radius: 15px;
    background-color: white;
    background-color: #ffffff;
    border: 2px solid #a7a7a7;
}

.slider-container input::-moz-range-thumb {
    width: 25px; /* Set a specific slider handle width */
    height: 25px; /* Slider handle height */
    background: #ffffff; /* Green background */
    border: 2px solid #a7a7a7;
    cursor: pointer; /* Cursor on hover */
}
