input[type=range].fader {
  width: 100%;
  margin: 33.3px 0;
  background-color: transparent;
  -webkit-appearance: none;
}
input[type=range].fader:focus {
  outline: none;
}
input[type=range].fader::-webkit-slider-runnable-track {
  background: #d2d2d2;
  border: 0;
  width: 100%;
  height: 33.4px;
  cursor: pointer;
}
input[type=range].fader::-webkit-slider-thumb {
  margin-top: -33.3px;
  width: 25px;
  height: 100px;
  background: #000000;
  border: 2.5px solid #000000;
  border-radius: 3px;
  cursor: pointer;
  -webkit-appearance: none;
}
input[type=range].fader:focus::-webkit-slider-runnable-track {
  background: #d2d2d2;
}
input[type=range].fader::-moz-range-track {
  background: #d2d2d2;
  border: 0;
  width: 100%;
  height: 33.4px;
  cursor: pointer;
}
input[type=range].fader::-moz-range-thumb {
  width: 25px;
  height: 100px;
  background: #000000;
  border: 2.5px solid #000000;
  border-radius: 3px;
  cursor: pointer;
}
input[type=range].fader::-ms-track {
  background: transparent;
  border-color: transparent;
  border-width: 34.3px 0;
  color: transparent;
  width: 100%;
  height: 33.4px;
  cursor: pointer;
}
input[type=range].fader::-ms-fill-lower {
  background: #d2d2d2;
  border: 0;
}
input[type=range].fader::-ms-fill-upper {
  background: #d2d2d2;
  border: 0;
}
input[type=range].fader::-ms-thumb {
  width: 25px;
  height: 100px;
  background: #000000;
  border: 2.5px solid #000000;
  border-radius: 3px;
  cursor: pointer;
  margin-top: 0px;
  /*Needed to keep the Edge thumb centred*/
}
input[type=range].fader:focus::-ms-fill-lower {
  background: #d2d2d2;
}
input[type=range].fader:focus::-ms-fill-upper {
  background: #d2d2d2;
}
/*TODO: Use one of the selectors from https://stackoverflow.com/a/20541859/7077589 and figure out
how to remove the virtical space around the range input in IE*/
@supports (-ms-ime-align:auto) {
  /* Pre-Chromium Edge only styles, selector taken from hhttps://stackoverflow.com/a/32202953/7077589 */
  input[type=range].fader {
    margin: 0;
    /*Edge starts the margin from the thumb, not the track as other browsers do*/
  }
}
