.range-slider{
padding: 15px 75px 15px 0;
margin: 0 0 30px 0;
position: relative;
}
.range-slider input[type="range"]{
background: linear-gradient(to right,#00cec9,#0984e3);
width: 100%;
height: 10px;
border-radius: 10px;
outline: none;
-webkit-appearance: none;
}
.range-slider input[type="range"]::-webkit-slider-thumb{
background: #333;
width: 30px;
height: 23px;
border-radius: 20% 50% 50% 20%;
cursor: pointer;
transition: all 0.15s ease-in-out 0s;
-webkit-appearance: none;
appearance: none;
}
.range-slider input[type="range"]::-webkit-slider-thumb:hover,
.range-slider input[type="range"]:active::-webkit-slider-thumb{
box-shadow: 0 0 5px #555,0 0 5px #000 inset;
}
.range-slider input[type="range"]::-moz-range-thumb{
background: #333;
width: 30px;
height: 23px;
border: none;
border-radius: 20% 50% 50% 20%;
cursor: pointer;
transition: all 0.15s ease-in-out 0s;
}
.range-slider input[type="range"]::-moz-range-thumb:hover,
.range-slider input[type="range"]:active::-moz-range-thumb{
box-shadow: 0 0 5px #555,0 0 5px #000 inset;
}
.range-slider .range-value{
color: #fff;
background-color: #333;
font-size: 20px;
font-weight: 600;
text-align: center;
line-height: 35px;
width: 60px;
height: 35px;
padding-left: 7px;
box-shadow: 0 0 5px #555;
border-radius: 50% 20% 20% 50%;
transform: translateY(-50%);
position: absolute;
top: 50%;
right: 0;
}
::-moz-range-track{
background: transparent;
border: 0;
}