#countdownWrapper,
#readyGoWrapper {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

#readyGo {
  background: white;
  margin: 5vh auto;
}

.countdown {
  background: lightgray;
  display: block;
  width: 66vmin;
  height: 66vmin;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 25vmin;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  transition: width, height, border-radius, font-size;
  transition-duration: 0.2s;
}
.countdown--ended {
  animation: buzz 0.5s;
}
.countdown:active {
  transform: scale(1.02);
}
@keyframes buzz {
  0% {
    transform: rotate(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: rotate(6deg);
  }
  20%, 40%, 60%, 80% {
    transform: rotate(-6deg);
  }
  100% {
    transform: rotate(0);
  }
}
.countdown--wide {
  width: 100%;
  height: 100%;
  font-size: 50vmin;
  border-radius: 0;
}
.countdown--low {
  font-size: 7.8vmin;
  margin: 0 15px;
  border-radius: 5px;
}
@media (max-width: 575px) {
  .countdown--low {
    font-size: 6.8vmin;
  }
}
.countdown__fill {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: darkslategray;
  opacity: 1;
}
.countdown__digit {
  padding: 0 5px;
  color: darkslategray;
  text-align: center;
  mix-blend-mode: multiply;
  pointer-events: none;
  user-select: none;
}

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