.middle{
    position: relative;
    width: 100%;
    max-width: 500%;
    padding: 2rem 0 1rem 0;
    background-color: none;
}

.slider{
    position: relative;
    z-index: 1;
    height: 0.5rem;
    margin: 0 15px;
}

.slider .track{
    position:absolute;
    left: 0;
    right: 0;
    top: 0 ;
    bottom: 0;
    border-radius: 5px;
    background-color: #9a81f5;
    z-index: 1;
}
.slider .range{
    position: absolute;
    left: 25%;
    right: 25%;
    top: 0 ;
    bottom: 0;
    border-radius: 5px;
    background-color: #1d10d5;
    z-index: 2;
}
.slider .thumb-left{
    position: absolute;
    width: 1rem;
    height: 1rem;
    left: 25%;
    border-radius: 50%;
    background-color: #1d10d5;
    transform: translate(-0.5rem,-0.2rem);
    z-index: 3;
}
.slider .thumb-right{
    position: absolute;
    width: 1rem;
    height: 1rem;
    right: 25%;
    border-radius: 50%;
    background-color: #1d10d5;
    transform: translate(0.5rem,-0.2rem);
    z-index: 3;
}
.slider .thumb-left.hover{
    box-shadow: 0 0 0 5px rgba(98,0,238,.1);
}
.slider .thumb-left.active{
    box-shadow: 0 0 0 10px rgba(98,0,238,.2);
}
.slider .thumb-right.hover{
    box-shadow: 0 0 0 5px rgba(98,0,238,.1);
}
.slider .thumb-right.active{
    box-shadow: 0 0 0 10px rgba(98,0,238,.2);
}
input[type="range"]{
    position: absolute;
    pointer-events: none;
    z-index: 2;
    height: 1rem;
    width: 100%;
    -webkit-appearance: none;
    opacity: 0;
    margin:0;
}
input[type="range"]::-webkit-slider-thumb{
    pointer-events: all;
    width: 1rem;
    height: 1rem;
    border-radius: 0;
    border: 0 none;

    -webkit-appearance: none;


}

