@import url("https://fonts.googleapis.com/css?family=Asar");
@import url("https://fonts.googleapis.com/css?family=NTR");

html,
body {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgb(0 9 16);
  overflow: hidden;
}

@media (min-width: 1200px) {
  body {
    background: linear-gradient(0deg, rgb(0 9 16) 0%, rgb(0 25 54) 100%);
  }
}

.share-instructions {
  position: absolute;
  bottom: 80px;
  left: 50%;
  color: rgba(255, 255, 255, 0.5);
  width: 220px;
  margin-left: -110px;
  text-align: center;
  font-family: "NTR", sans-serif;
}

@media (max-width: 800px) {
  .sr-sb-hl {
    left: 0;
    transform: none;
  }

  .share-instructions {
    left: 0;
    margin-left: 7px;
    text-align: left;
  }
}

#content {
  width: 100%;
  height: 100%;
}

.sr-sb-bottom {
  bottom: 40px;
}

input[type="range"].slider {
  width: 100%;
  margin: 0;
  background-color: transparent;
  -webkit-appearance: none;
}
input[type="range"].slider:focus {
  outline: none;
}
input[type="range"].slider::-webkit-slider-runnable-track {
  background: #e9e9e9;
  border: 0;
  border-radius: 25px;
  width: 100%;
  height: 6.1px;
  cursor: pointer;
}
input[type="range"].slider::-webkit-slider-thumb {
  margin-top: -5.95px;
  width: 18px;
  height: 18px;
  background: rgba(255, 14, 47, 0.93);
  border: 0;
  border-radius: 26px;
  cursor: pointer;
  -webkit-appearance: none;
}
input[type="range"].slider:focus::-webkit-slider-runnable-track {
  background: #f6f6f6;
}
input[type="range"].slider::-moz-range-track {
  background: #e9e9e9;
  border: 0;
  border-radius: 25px;
  width: 100%;
  height: 6.1px;
  cursor: pointer;
}
input[type="range"].slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: rgba(255, 14, 47, 0.93);
  border: 0;
  border-radius: 26px;
  cursor: pointer;
}
input[type="range"].slider::-ms-track {
  background: transparent;
  border-color: transparent;
  border-width: 5.95px 0;
  color: transparent;
  width: 100%;
  height: 6.1px;
  cursor: pointer;
}
input[type="range"].slider::-ms-fill-lower {
  background: #dcdcdc;
  border: 0;
  border-radius: 50px;
}
input[type="range"].slider::-ms-fill-upper {
  background: #e9e9e9;
  border: 0;
  border-radius: 50px;
}
input[type="range"].slider::-ms-thumb {
  width: 18px;
  height: 18px;
  background: rgba(255, 14, 47, 0.93);
  border: 0;
  border-radius: 26px;
  cursor: pointer;
  margin-top: 0px;
  /*Needed to keep the Edge thumb centred*/
}
input[type="range"].slider:focus::-ms-fill-lower {
  background: #e9e9e9;
}
input[type="range"].slider:focus::-ms-fill-upper {
  background: #f6f6f6;
}
/*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"].slider {
    margin: 0;
    /*Edge starts the margin from the thumb, not the track as other browsers do*/
  }
}
