input[type=range] {
  pointer-events: none;
  -webkit-appearance: none;
  height: 6px;
}

input[type=range]::-webkit-slider-thumb {
  pointer-events: auto;
  -webkit-appearance: none;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: #00387A;
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #00387A20;
}

input[type=range]::-moz-range-thumb {
  pointer-events: auto;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: #00387A;
  cursor: pointer;
}