.range-slider{
padding: 15px 60px 7px 0;
margin: 10px 0 0 0;
position: relative;
}
.range-slider input[type="range"]{
background: linear-gradient(to bottom,#38ada9 49%,#079992 51%);
width: 100%;
height: 23px;
outline: none;
-webkit-appearance: none;
}
.range-slider input[type="range"]::-webkit-slider-thumb{
background: #045149;
width: 23px;
height: 23px;
cursor: pointer;
transition: all 0.15s ease-in-out 0s;
-webkit-appearance: none;
appearance: none;
clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
}
.range-slider input[type="range"]::-webkit-slider-thumb:hover,
.range-slider input[type="range"]:active::-webkit-slider-thumb{
box-shadow: 0 0 10px #000 inset;
}
.range-slider input[type="range"]::-moz-range-thumb{
background: #045149;
width: 23px;
height: 23px;
border: none;
border-radius: 0;
cursor: pointer;
transition: all 0.15s ease-in-out 0s;
clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
}
.range-slider input[type="range"]::-moz-range-thumb:hover,
.range-slider input[type="range"]:active::-moz-range-thumb{
box-shadow: 0 0 10px #000 inset;
}
.range-slider .range-value{
color: #fff;
background: #045149;
font-size: 18px;
font-weight: 600;
text-align: center;
width: 45px;
padding: 3px 3px 3px 0;
position: absolute;
bottom: 9px;
right: 8px;
clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%);
}
::-moz-range-track{
background: transparent;
border: 0;
}