input[type=range] {
  -webkit-appearance: none;
  margin: 1vh 0;
  background-color: rgba(0,0,0,0);
  width: 100%;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  height: 1vh;
  cursor: pointer;
  animate: 0.2s;
  background: rgba(255,255,255,0.3);
  border-radius: 2.5px;
}
input[type=range]::-webkit-slider-thumb {
  height: 2vw;
      width: 2vw;
      border-radius: 10px;
      background: #ffffff;
      cursor: pointer;
      -webkit-appearance: none;
      margin-top: -0.5vw;
    }

#controls_right  input[type=range]::-webkit-slider-runnable-track  {
  height: 1vw;
      width: 1vw;
  border-radius: 5px;
}

#controls_right input[type=range]::-webkit-slider-thumb {
  height: 7vh;
      width: 7vh;
      border-radius: 25px;
      margin-top: -2.5vh;
      border: none;
}

input[type=range]:focus::-webkit-slider-runnable-track {
    background: rgba(255,255,255,0.3);
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  animate: 0.2s;
    background: rgba(255,255,255,0.3);
  border-radius: 1.3px;
}
input[type=range]::-moz-range-thumb {
  height: 36px;
  width: 16px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
}
input[type=range]::-ms-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
    background: rgba(255,255,255,0.3);
  border-radius: 2.6px;
}
input[type=range]::-ms-fill-upper {
    background: rgba(255,255,255,0.3);
  border: 0.2px solid #010101;
  border-radius: 2.6px;
}
input[type=range]::-ms-thumb {
  height: 36px;
  width: 16px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
}
input[type=range]:focus::-ms-fill-lower {
    background: rgba(255,255,255,0.3);
}
input[type=range]:focus::-ms-fill-upper {
    background: rgba(255,255,255,0.3);
}
