input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    margin: 10.5px 0;
}
input[type=range]:focus {
    outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 5px;
    cursor: pointer;
    box-shadow: 0px 0px 0.4px rgba(0, 0, 0, 0), 0px 0px 0px rgba(13, 13, 13, 0);
    background: rgba(202, 202, 202, 1);
    border-radius: 25px;
    border: 0px solid rgba(0, 0, 0, 0);
}
input[type=range]::-webkit-slider-thumb {
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(13, 13, 13, 0);
    border: 0px solid #ff6984;
    height: 26px;
    width: 26px;
    border-radius: 15px;
    background: #ff6984;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -10.5px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
    background: rgba(255, 255, 255, 0);
}
input[type=range]::-moz-range-track {
    width: 100%;
    height: 5px;
    cursor: pointer;
    box-shadow: 0px 0px 0.4px rgba(0, 0, 0, 0), 0px 0px 0px rgba(13, 13, 13, 0);
    background: rgba(202, 202, 202, 1);
    border-radius: 25px;
    border: 0px solid rgba(0, 0, 0, 0);
}
input[type=range]::-moz-range-thumb {
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(13, 13, 13, 0);
    border: 0px solid #ff6984;
    height: 26px;
    width: 26px;
    border-radius: 15px;
    background: #ff6984;
    cursor: pointer;
}
input[type=range]::-ms-track {
    width: 100%;
    height: 5px;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    color: transparent;
}
input[type=range]::-ms-fill-lower {
    background: rgba(255, 255, 255, 0);
    border: 0px solid rgba(0, 0, 0, 0);
    border-radius: 50px;
    box-shadow: 0px 0px 0.4px rgba(0, 0, 0, 0), 0px 0px 0px rgba(13, 13, 13, 0);
}
input[type=range]::-ms-fill-upper {
    background: rgba(202, 202, 202, 1);
    border: 0px solid rgba(0, 0, 0, 0);
    border-radius: 50px;
    box-shadow: 0px 0px 0.4px rgba(0, 0, 0, 0), 0px 0px 0px rgba(13, 13, 13, 0);
}
input[type=range]::-ms-thumb {
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(13, 13, 13, 0);
    border: 0px solid #ff6984;
    height: 26px;
    width: 26px;
    border-radius: 15px;
    background: #ff6984;
    cursor: pointer;
    height: 5px;
}
input[type=range]:focus::-ms-fill-lower {
    background: rgba(202, 202, 202, 1);
}
input[type=range]:focus::-ms-fill-upper {
    background: rgba(255, 255, 255, 1);
}
input[type=range] {
    background-color: rgba(202, 202, 202, 1) !important;
}



