input[type=range] {
  -webkit-appearance: none;
  margin: 15px/2 0;
  width: 100%;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  animate: 0.2s;
  background: #003091;
  border-radius: 5px;
  border: 1px solid black;
}
input[type=range]::-webkit-slider-thumb {
  height: 15px;
  width: 15px;
  border-radius: 100%;
  background: #F2711C;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -7.5px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #0038ab;
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  animate: 0.2s;
  background: #003091;
  border-radius: 5px;
  border: 1px solid black;
}
input[type=range]::-moz-range-thumb {
  height: 15px;
  width: 15px;
  border-radius: 100%;
  background: #F2711C;
  cursor: pointer;
}
input[type=range]::-ms-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  border-width: 15px 0;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #002878;
  border: 1px solid black;
  border-radius: 10px;
}
input[type=range]::-ms-fill-upper {
  background: #003091;
  border: 1px solid black;
  border-radius: 10px;
}
input[type=range]::-ms-thumb {
  height: 15px;
  width: 15px;
  border-radius: 100%;
  background: #F2711C;
  cursor: pointer;
}
input[type=range]:focus::-ms-fill-lower {
  background: #003091;
}
input[type=range]:focus::-ms-fill-upper {
  background: #0038ab;
}
