/*onchange="updateOutput(this.value);"*/

input[type=range] {
  height: 30px;
  width: 30%;
  margin-left: 35%;
  margin-top: 30px;
  background-color: transparent;
  -webkit-appearance: none;
  overflow: visible!important;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  background: red;
  border: 0;
  border-radius: 1.3px;
  width: 100%;
  height: 2px;
  cursor: pointer;
}
input[type=range]::-webkit-slider-thumb {
  margin-top: -14px;
  width: 15px;
  height: 30px;
  background: #d91529;
  border: 0.6px solid #d91529;
  border-radius: 17px;
  cursor: pointer;
  -webkit-appearance: none;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: red;
}
input[type=range]::-moz-range-track {
  background: red;
  border: 0;
  border-radius: 1.3px;
  width: 100%;
  height: 2px;
  cursor: pointer;
}
input[type=range]::-moz-range-thumb {
  width: 15px;
  height: 30px;
  background: #ffffff;
  border: 0.6px solid midnightblue;
  border-radius: 17px;
  cursor: pointer;
}
input[type=range]::-ms-track {
  background: transparent;
  border-color: transparent;
  border-width: 14px 0;
  color: transparent;
  width: 100%;
  height: 2px;
  cursor: pointer;
}
input[type=range]::-ms-fill-lower {
  background: red;
  border: 0;
  border-radius: 2.6px;
}
input[type=range]::-ms-fill-upper {
  background: red;
  border: 0;
  border-radius: 2.6px;
}
input[type=range]::-ms-thumb {
  width: 15px;
  height: 30px;
  background: #ffffff;
  border: 0.6px solid midnightblue;
  border-radius: 17px;
  cursor: pointer;
  margin-top: 0px;
  /*Needed to keep the Edge thumb centred*/
}
input[type=range]:focus::-ms-fill-lower {
  background: red;
}
input[type=range]:focus::-ms-fill-upper {
  background: red;
}
@supports (-ms-ime-align:auto) {
  input[type=range] {
    margin: 0;
  }
}

@media only screen and (max-width: 991px){
  input[type=range] {
    width: 40%;
    margin-left: 30%;
  }
}

@media only screen and (max-width: 600px){
  input[type=range] {
    width: 50%;
    margin-left: 25%;
  }
}
