input[type=range] {
  -webkit-appearance: none;
  margin: 18px 0;
  width: 100%;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  animate: 0.2s;
  background: #a8a8a9;
  border-radius: 1.3px;

}
input[type=range]::-webkit-slider-thumb {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background: #0e2353;
  background: white;
  box-shadow: 1px 1px 2px 1px dimgray;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -10px;

}


input[type=range]:focus::-webkit-slider-runnable-track {
  background: #0e2353;
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  animate: 0.2s;
  background: #a8a8a9;
  border-radius: 1.3px;
}
input[type=range]::-moz-range-thumb {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background: white;
  box-shadow: 1px 1px 2px 1px dimgray;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -10px;
  border: 0;

}


input[type=range]:focus::-moz-range-track{
  background: #0e2353;
}


input[type=range]::-ms-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  border-width: 16px 0;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #a8a8a9;
  border: 0;
  border-radius: 2.6px;
  box-shadow: 0;
}
input[type=range]::-ms-fill-upper {
  background: #a8a8a9;
  border: 0;
  border-radius: 2.6px;
  box-shadow: 0;
}
input[type=range]::-ms-thumb {
 height: 30px;
  width: 30px;
  border-radius: 50%;
  background: white;
  box-shadow: 1px 1px 2px 1px dimgray;
  cursor: pointer !important;
  -webkit-appearance: none;
  margin-top: -6px;
  border: 0;

}
input[type=range]:focus::-ms-fill-lower {
  background: #0e2353;
}
input[type=range]:focus::-ms-fill-upper {
 background: #0e2353;
}






