.range-slider{
    padding: 18px 60px 15px 10px;
    margin: 0 0 20px 0;
    position: relative;
}

.range-slider input[type="range"]{
    background: rgba(0,0,0,0.1);
    width: 100%;
    height: 5px;
    outline: none;
    -webkit-appearance: none;
}

.range-slider input[type="range"]::-webkit-slider-thumb{
    background: radial-gradient(transparent,#e74c3c,#c0392b);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.15s ease-in-out 0s;
    clip-path: polygon(0% 15%, 30% 30%, 15% 0%, 85% 0%, 70% 30%, 100% 15%, 100% 85%, 70% 70%, 85% 100%, 15% 100%, 30% 70%, 0% 85%);
    -webkit-appearance: none;
    appearance: none;
}

.range-slider input[type="range"]::-moz-range-thumb{
    background: radial-gradient(transparent,#e74c3c,#c0392b);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.15s ease-in-out 0s;
    clip-path: polygon(0% 15%, 30% 30%, 15% 0%, 85% 0%, 70% 30%, 100% 15%, 100% 85%, 70% 70%, 85% 100%, 15% 100%, 30% 70%, 0% 85%);
}

.range-slider .range-value{
    color: #fff;
    background-color: #e74c3c;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    width: 55px;
    padding: 5px 5px;
    border-radius: 40%;
    transform: translateY(50%);
    position: absolute;
    bottom: 43%;
    right: 0;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

::-moz-range-track{
    background: transparent;
    border: 0;
}
