/**,*/
/**:before,*/
/**:after{*/
/*    padding: 0;*/
/*    margin: 0;*/
/*    box-sizing: border-box;*/
/*    font-family: "Poppins",sans-serif;*/
/*}*/
/*body{*/
/*    height: 100vh;*/
/*    display: -ms-grid;*/
/*    display: grid;*/
/*    background-color: #3264fe;*/
/*    place-items: center;*/
/*}*/
.wrapper{
    position: relative;
    width: 30vw;
    height: 20px;
    background-color: #aaaaaa;
    padding: 0px 10px 0px 10px;
    border-radius: 10px;
}
.container{
    position: relative;
    width: 100%;
    height: 100%;
    margin-top: 0px;
}
input[type="range"]{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    outline: none;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    background-color: transparent;
    pointer-events: none;
}
.slider-track{
    width: 100%;
    height: 5px;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    border-radius: 5px;
}
input[type="range"]::-webkit-slider-runnable-track{
    -webkit-appearance: none;
    height: 2px;
}
input[type="range"]::-moz-range-track{
    -moz-appearance: none;
    height: 2px;
}
input[type="range"]::-ms-track{
    appearance: none;
    height: 2px;
}
input[type="range"]::-webkit-slider-thumb{
    -webkit-appearance: none;
    height: 1.2em;
    width: 1.2em;
    background-color: #3264fe;
    cursor: pointer;
    margin-top: -7px;
    pointer-events: auto;
    border-radius: 50%;
}
input[type="range"]::-moz-range-thumb{
    -webkit-appearance: none;
    height: 1.2em;
    width: 1.2em;
    cursor: pointer;
    border-radius: 50%;
    background-color: #3264fe;
    pointer-events: auto;
}
input[type="range"]::-ms-thumb{
    appearance: none;
    height: 1.2em;
    width: 1.2em;
    cursor: pointer;
    border-radius: 50%;
    background-color: #3264fe;
    pointer-events: auto;
}
input[type="range"]:active::-webkit-slider-thumb{
    background-color: #ffffff;
    border: 3px solid #3264fe;
}
/*.values{*/
/*    background-color: #3264fe;*/
/*    width: 32%;*/
/*    position: relative;*/
/*    margin: auto;*/
/*    padding: 10px 0;*/
/*    border-radius: 5px;*/
/*    text-align: center;*/
/*    font-weight: 500;*/
/*    font-size: 25px;*/
/*    color: #ffffff;*/
/*}*/
/*.values:before{*/
/*    content: "";*/
/*    position: absolute;*/
/*    height: 0;*/
/*    width: 0;*/
/*    border-top: 15px solid #3264fe;*/
/*    border-left: 15px solid transparent;*/
/*    border-right: 15px solid transparent;*/
/*    margin: auto;*/
/*    bottom: -14px;*/
/*    left: 0;*/
/*    right: 0;*/
/*}*/

/*https://codingartistweb.com/2021/06/double-range-slider-html-css-javascript/*/
