.range-slider{
padding: 15px 60px 7px 0;
margin: 20px 0 0 0;
position: relative;
}
.range-slider input[type="range"]{
background: #e7e7e7;
width: 100%;
height: 20px;
border: 5px solid #d1d1d1;
outline: none;
-webkit-appearance: none;
}
.range-slider input[type="range"]::-webkit-slider-thumb{
background: #b71540;
width: 30px;
height: 30px;
transform: rotate(-45deg);
cursor: pointer;
transition: all 0.15s ease-in-out 0s;
clip-path: polygon(0 0, 85% 0%, 50% 50%, 100% 15%, 100% 100%, 15% 100%, 50% 50%, 0% 85%);
-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 4px #999 inset,0 0 0 7px #fff inset;
}
.range-slider input[type="range"]::-moz-range-thumb{
background: #b71540;
width: 30px;
height: 30px;
border-radius: 0;
border: none;
transform: rotate(-45deg);
cursor: pointer;
transition: all 0.15s ease-in-out 0s;
clip-path: polygon(0 0, 85% 0%, 50% 50%, 100% 15%, 100% 100%, 15% 100%, 50% 50%, 0% 85%);
}
.range-slider input[type="range"]::-moz-range-thumb:hover,
.range-slider input[type="range"]:active::-moz-range-thumb{
box-shadow: 0 0 4px #999 inset,0 0 0 7px #fff inset;
}
.range-slider .range-value{
color: #fff;
background-color: #b71540;
font-size: 18px;
font-weight: 600;
text-align: center;
width: 50px;
padding: 5px 5px 5px 0;
position: absolute;
bottom: 4px;
right: 0;
clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
}
::-moz-range-track{
background: transparent;
border: 0;
}