.slider-container {
  display: inline-block;
  position: relative;
  width: 360px;
  height: 28px;
}
.slider-track {
  width: 100%;
  height: 5px;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  border-radius: 5px;
}
.slider-container>input[type="range"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  width: 100%;
  outline: none;
  background-color: transparent;
  pointer-events: none;
}
.slider-container>input[type="range"]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  height: 5px;
}
.slider-container>input[type="range"]::-moz-range-track {
  -moz-appearance: none;
  height: 5px;
}
.slider-container>input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  margin-top: -9px;
  height: 1.7em;
  width: 1.7em;
  background-color: #3264fe;
  cursor: pointer;
  pointer-events: auto;
  border-radius: 50%;
}
.slider-container>input[type="range"]::-moz-range-thumb {
  -moz-appearance: none;
  height: 1.7em;
  width: 1.7em;
  cursor: pointer;
  border: none;
  border-radius: 50%;
  background-color: #3264fe;
  pointer-events: auto;
}
.slider-container>input[type="range"]:active::-webkit-slider-thumb {
  background-color: #ffffff;
  border: 3px solid #3264fe;
}
