.range-slider{
padding: 15px 60px 10px 7px;
margin: 0 0 30px;
position: relative;
}
.range-slider input[type="range"]{
background: #81B0B9;
width: 100%;
height: 15px;
border-radius: 10px;
box-shadow: 0 2px 4px rgba(0,0,0,0.3) inset;
outline: none;
-webkit-appearance: none;
}
.range-slider input[type="range"]::-webkit-slider-thumb{
background: transparent;
width: 28px;
height: 28px;
border-radius: 50%;
border: 2px solid rgba(255,255,255,0.3);
box-shadow: 0 0 5px rgba(0,0,0,0.4);
cursor: pointer;
transition: all 0.15s ease-in-out 0s;
-webkit-appearance: none;
appearance: none;
}
.range-slider input[type="range"]:active::-webkit-slider-thumb,
.range-slider input[type="range"]::-webkit-slider-thumb:hover{
height: 18px;
width: 18px;
}
.range-slider input[type="range"]::-moz-range-thumb{
background: transparent;
width: 28px;
height: 28px;
border: none;
border-radius: 50%;
border: 2px solid rgba(255,255,255,0.3);
box-shadow: 0 0 5px rgba(0,0,0,0.4);
cursor: pointer;
transition: all 0.15s ease-in-out 0s;
}
.range-slider input[type="range"]:active::-moz-range-thumb,
.range-slider input[type="range"]::-moz-range-thumb:hover{
height: 18px;
width: 18px;
}
.range-slider .range-value{
border: 2px solid rgba(255,255,255,0.7);
color: rgba(255,255,255,0.7);
font-size: 18px;
font-weight: 600;
text-align: center;
line-height: 43px;
width: 45px;
height: 45px;
border-radius: 50%;
box-shadow: 0 2px 4px rgba(0,0,0,0.3) inset;
transform: translateY(50%);
position: absolute;
bottom: 50%;
right: 6px;
}
::-moz-range-track{
background: transparent;
border: 0;
}