.slidecontainer {
    width: 100%; /* Width of the outside container */
}

/* Mouse-over effects */
.slider:hover {
    opacity: 1; /* Fully shown on mouse-over */
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    border-radius: 5px;
/*     background: #E9E9E9 !important; */
    background: linear-gradient(to right, #E33232 4%, #E9E9E9 4%);
	outline: none;
    opacity: 1;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #E33232 !important;
    cursor: pointer;
	border: 2px solid #FFFFFF;
	position: relative;

}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #E33232 !important;
    cursor: pointer;
	border: 2px solid #FFFFFF;
	position: relative;
}