input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  cursor: pointer;
  outline: none;
  border-radius: 10px;
  height: 6px;
  background: rgba(228, 228, 228, 1);
}

/* Thumb: webkit */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  height: 10px;
  width: 10px;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 50%;
  border: none;
  transition: 0.1s ease-in-out;
}

/* Thumb: Firefox */
input[type="range"]::-moz-range-thumb {
  height: 10px;
  width: 10px;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 50%;
  border: none;
  transition: 0.1s ease-in-out;
}

/* Hover, active & focus Thumb: Webkit */
input[type="range"]:active::-webkit-slider-thumb {
  transform: scale(2);
}

/* Hover, active & focus Thumb: Firfox */
input[type="range"]:active::-moz-range-thumb {
  transform: scale(2);
}
