/* Styling for the range inputs */
input[type=range] {
    width: 100%;
    margin: 7.5px 0;
    background-color: transparent;
    -webkit-appearance: none;
  }
  input[type=range]:focus {
    outline: none;
  }
  input[type=range]::-webkit-slider-runnable-track {
    background: #e8edf1;
    border: 0.5px solid rgba(1, 1, 1, 0.5);
    border-radius: 25px;
    width: 100%;
    height: 8px;
    cursor: pointer;
  }
  input[type=range]::-webkit-slider-thumb {
    margin-top: -8px;
    width: 41px;
    height: 23px;
    background: #d6191b;
    border: 1.1px solid #d6191b;
    border-radius: 50px;
    cursor: pointer;
    -webkit-appearance: none;
  }
  input[type=range]:focus::-webkit-slider-runnable-track {
    background: #e8edf1;
  }
  input[type=range]::-moz-range-track {
    background: #e8edf1;
    border: 0.5px solid rgba(1, 1, 1, 0.5);
    border-radius: 25px;
    width: 100%;
    height: 8px;
    cursor: pointer;
  }
  input[type=range]::-moz-range-thumb {
    width: 41px;
    height: 23px;
    background: #ffffff;
    border: 1.1px solid #000000;
    border-radius: 50px;
    cursor: pointer;
  }
  input[type=range]::-ms-track {
    background: transparent;
    border-color: transparent;
    border-width: 8.5px 0;
    color: transparent;
    width: 100%;
    height: 8px;
    cursor: pointer;
  }
  input[type=range]::-ms-fill-lower {
    background: #e8edf1;
    border: 0.5px solid rgba(1, 1, 1, 0.5);
    border-radius: 50px;
  }
  input[type=range]::-ms-fill-upper {
    background: #e8edf1;
    border: 0.5px solid rgba(1, 1, 1, 0.5);
    border-radius: 50px;
  }
  input[type=range]::-ms-thumb {
    width: 41px;
    height: 23px;
    background: #ffffff;
    border: 1.1px solid #000000;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 0px;
    /*Needed to keep the Edge thumb centred*/
  }
  input[type=range]:focus::-ms-fill-lower {
    background: #e8edf1;
  }
  input[type=range]:focus::-ms-fill-upper {
    background: #e8edf1;
  }
  /*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] {
      margin: 0;
      /*Edge starts the margin from the thumb, not the track as other browsers do*/
    }
  }
