 
 
.range-slider input[type="range"] {
  position: absolute;
  width: 100%;
  height: 5px;
  -webkit-appearance: none;
  pointer-events: none;
  background: none;
  outline: none;
}
.range-slider .range-min::-webkit-slider-thumb {
  pointer-events: auto;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 5px solid #6DA9E4;
  border-radius: 20px;
  opacity: 1;
}
.range-slider .range-max::-webkit-slider-thumb {
  pointer-events: auto;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 5px solid #6DA9E4;
  border-radius: 20px;
  opacity: 1;
}
