#too-narrow-warning__wrapper {
  position: relative;
  top: 0;
  left: -100%;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 1s ease-in-out, left 0.5s ease-in-out;
}
#too-narrow-warning__wrapper #too-narrow-warning__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  height: auto;
  background: rgb(0, 0, 0);
  text-align: center;
  color: rgb(255, 255, 255);
}

@media (max-width: 899px) {
  #too-narrow-warning__wrapper {
    left: 0;
    opacity: 1;
  }
}/*# sourceMappingURL=style.css.map */