html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

html {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: right;
  font-size: 35vw;
  line-height: 1;
  font-family: 'Work Sans', "Open Sans", sans-serif;
  background-color: black;
  color: #333333;
  text-shadow: 0 0.01em 0.01em rgba(128, 128, 128, 0.6);
}

.clock {
  display: -ms-grid;
  display: grid;
  place-items: center;
  height: 100%;
  /* margin-top: .5em; */
}

.colon {
  font-size: 0.618em;
  vertical-align: bottom;
  line-height: 1.7;
}

.sec {
  margin-right: 0.05em;
  font-size: 0.618em;
}

input[type="range"] {
  -webkit-appearance: none;
  display: block;
  margin: 1em 10%;
  height: 3em;
  width: 80%;
  cursor: pointer;
  background-color: rgba(128, 128, 128, 0.5);
  border-radius: 5em;
  -webkit-transition: -webkit-box-shadow 2s ease-in-out;
  transition: -webkit-box-shadow 2s ease-in-out;
  transition: box-shadow 2s ease-in-out;
  transition: box-shadow 2s ease-in-out, -webkit-box-shadow 2s ease-in-out;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="range"] {
    overflow: hidden;
    height: 3em;
    -webkit-appearance: none;
  }

  input[type="range"]::-webkit-slider-runnable-track {
    height: 3em;
    -webkit-appearance: none;
    color: #444;
    -webkit-transition: -webkit-box-shadow 0.2s ease-in-out;
    transition: -webkit-box-shadow 0.2s ease-in-out;
    transition: box-shadow 0.2s ease-in-out;
    transition: box-shadow 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  }

  input[type="range"]::-webkit-slider-thumb {
    width: 3em;
    -webkit-appearance: none;
    height: 3em;
    cursor: ew-resize;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: inset 0 0 0 40px #1597ff;
    box-shadow: inset 0 0 0 40px #1597ff;
    border-radius: 50%;
    -webkit-transition: -webkit-box-shadow 0.2s ease-in-out;
    transition: -webkit-box-shadow 0.2s ease-in-out;
    transition: box-shadow 0.2s ease-in-out;
    transition: box-shadow 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
    position: relative;
  }

  input[type="range"]:active::-webkit-slider-thumb {
    -webkit-box-shadow: inset 0 0 0 3px #1597ff;
    box-shadow: inset 0 0 0 3px #1597ff;
  }
}

input[type="range"]::-moz-range-progress {
  background-color: #43e5f7;
}

input[type="range"]::-moz-range-track {
  background-color: #9a905d;
}

input[type="range"]::-ms-fill-lower {
  background-color: #43e5f7;
}

input[type="range"]::-ms-fill-upper {
  background-color: #9a905d;
}

input[type="range"]:focus {
  outline: none;
}

.space {
  display: block;
  height: 15vh;
}

#range-container {
  width: 80%;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  -webkit-transition: margin-top 0.5s ease-in-out, opacity 0.25s ease-in-out;
  transition: margin-top 0.5s ease-in-out, opacity 0.25s ease-in-out;
}

#range-container #range-subcontainer {
  display: block;
  margin: 0 auto;
  padding-bottom: .25em;
  text-align: center;
  width: calc(100%);
  position: relative;
}

#range-container #range-subcontainer .range {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: -10em;
  left: 100%;
  width: 40px;
  height: 40px;
  color: #fff;
  font-size: 12px;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

#range-container #range-subcontainer .range span {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #1597ff;
  -webkit-filter: hue-rotate(-100deg);
  filter: hue-rotate(-100deg);
  border-radius: 0 50% 50% 50%;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  z-index: -1;
}

input:not(:active)+#range-container {
  opacity: 0;
  margin-top: .1em;
  pointer-events: none;
}

/*# sourceMappingURL=style.css.map */