.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: 13px;
    border-radius: 10px;
    outline: none;
    -webkit-appearance: none;
}

.range-slider input[type="range"]::-webkit-slider-thumb{
    background: linear-gradient(#16a085,#1abc9c,#16a085);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.15s ease-in-out 0s;
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
    -webkit-appearance: none;
    appearance: none;
}

.range-slider input[type="range"]::-moz-range-thumb{
    background: linear-gradient(#16a085,#1abc9c,#16a085);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.15s ease-in-out 0s;
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.range-slider .range-value{
    color: #fff;
    background-color: #1abc9c;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    width: 55px;
    padding: 8px 5px;
    transform: translateY(50%);
    position: absolute;
    bottom: 50%;
    right: 0;
    clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
}

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