.range-slider{
background: repeating-linear-gradient(45deg, #a29bfe, #a29bfe 10px, #6c5ce7 10px, #6c5ce7 20px);
padding: 0 60px 3px 7px;
margin: 0 0 30px;
box-shadow: 0 0 15px rgba(255,255,255,0.5) inset;
border-radius: 10px;
position: relative;
}
.range-slider input[type="range"]{
background: #fff;
width: 100%;
height: 7px;
border-radius: 5px;
outline: none;
-webkit-appearance: none;
}
.range-slider input[type="range"]::-webkit-slider-thumb{
background: #6c5ce7;
width: 25px;
height: 25px;
border-radius: 50%;
box-shadow: 0 0 10px rgba(0,0,0,0.5);
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 10px rgba(0,0,0,0.5),0 0 10px rgba(0,0,0,0.5) inset;
}
.range-slider input[type="range"]::-moz-range-thumb{
background: #6c5ce7;
width: 25px;
height: 25px;
border: none;
border-radius: 50%;
box-shadow: 0 0 10px rgba(0,0,0,0.5);
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 10px rgba(0,0,0,0.5),0 0 10px rgba(0,0,0,0.5) inset;
}
.range-slider .range-value{
color: #fff;
background: #6c5ce7;
font-size: 18px;
font-weight: 600;
text-align: center;
width: 45px;
padding: 3px;
border-radius: 10px;
transform: translateY(50%);
position: absolute;
bottom: 50%;
right: 6px;
}
::-moz-range-track{
background: transparent;
border: 0;
}