.range-slider{
padding: 18px 60px 15px 10px;
margin: 0 0 20px 0;
position: relative;
}
.range-slider input[type="range"]{
background: #ffc9c9;
width: 100%;
height: 13px;
outline: none;
-webkit-appearance: none;
}
.range-slider input[type="range"]::-webkit-slider-thumb{
background: #d63031;
width: 30px;
height: 20px;
cursor: pointer;
transition: all 0.15s ease-in-out 0s;
-webkit-appearance: none;
appearance: none;
clip-path: polygon(100% 0, 100% 70%, 50% 100%, 0 70%, 0 0, 50% 30%);
}
.range-slider input[type="range"]::-webkit-slider-thumb:hover,
.range-slider input[type="range"]:active::-webkit-slider-thumb{
transform: rotate(-90deg);
}
.range-slider input[type="range"]::-moz-range-thumb{
background: #d63031;
width: 30px;
height: 20px;
border: none;
border-radius: 0;
cursor: pointer;
transition: all 0.15s ease-in-out 0s;
clip-path: polygon(100% 0, 100% 70%, 50% 100%, 0 70%, 0 0, 50% 30%);
}
.range-slider input[type="range"]::-moz-range-thumb:hover,
.range-slider input[type="range"]:active::-moz-range-thumb{
transform: rotate(-90deg);
}
.range-slider .range-value{
color: #fff;
background-color: #d63031;
font-size: 18px;
font-weight: 600;
text-align: center;
line-height: 35px;
height: 35px;
width: 60px;
transform: translateY(50%);
position: absolute;
bottom: 50%;
right: 0;
clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 20% 50%, 0% 0%);
}
::-moz-range-track{
background: transparent;
border: 0;
}