input[type=range] {
  -webkit-appearance: none;
  margin: 1.5vh 0;
  background-color: rgba(0,0,0,0);
  width: 100%;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  height: 5px;
  cursor: pointer;
  animate: 0.2s;
  background: rgba(0, 255, 65, 0.3);
  border-radius: 2.5px;
  box-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
}
input[type=range]::-webkit-slider-thumb {
  height: 36px;
  width: 36px;
  border-radius: 18px;
  background: #00ff41;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -16px;
  box-shadow: 0 0 15px rgba(0, 255, 65, 0.8);
  border: 2px solid #000;
}



input[type=range]:focus::-webkit-slider-runnable-track {
    background: rgba(0, 255, 65, 0.5);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.8);
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  animate: 0.2s;
  background: rgba(0, 255, 65, 0.3);
  border-radius: 1.3px;
}
input[type=range]::-moz-range-thumb {
  height: 36px;
  width: 16px;
  border-radius: 3px;
  background: #00ff41;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(0, 255, 65, 0.8);
}
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(0, 255, 65, 0.3);
  border-radius: 2.6px;
}
input[type=range]::-ms-fill-upper {
    background: rgba(0, 255, 65, 0.3);
  border: 0.2px solid #010101;
  border-radius: 2.6px;
}
input[type=range]::-ms-thumb {
  height: 36px;
  width: 16px;
  border-radius: 3px;
  background: #00ff41;
  cursor: pointer;
}
input[type=range]:focus::-ms-fill-lower {
    background: rgba(0, 255, 65, 0.5);
}
input[type=range]:focus::-ms-fill-upper {
    background: rgba(0, 255, 65, 0.5);
}
