.splash-block {
  background-color: #ffce00;
  position: fixed;
  z-index: 2000;
  display: flex;
  left: 0;
  right: 0;
  align-content: center;
  align-items: center;
  justify-content: center;
}
.splash-block * {
  box-sizing: border-box;
}
.splash-block img {
  max-height: calc(100vh - 20px);
  max-height: calc(var(--vh, 1vh) * 100 - 20px);
}
.splash-block .splash-close {
  cursor: pointer;
}
.splash-block .splash-content {
  display: flex;
  flex-direction: column;
}

#splash {
  top: -120%;
  bottom: 120%;
  transition: top 0.5s ease-in-out, bottom 0.5s ease-in-out;
  transition-delay: 0s;
}

.splashactive {
  overflow: hidden;
}
.splashactive #splash {
  transition-delay: 0.5s;
  top: 0px;
  bottom: 0px;
}/*# sourceMappingURL=splash.css.map */