@charset "utf-8";
/* CSS Document */

#splash {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
}

#splash.hasContents {
  animation: splash_out 1s 1.3s ease forwards;
}

#splash.noContents {
  animation: splash_out 1s 0s ease forwards;
}

#splash_contents {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  animation: splash_in 0.4s ease forwards;
}

#splash_svg {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%);
  animation: svg_in 1s 0.3s ease forwards;
}

@keyframes svg_in {
  0% {
    transform: translate(-50%, -30%);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}

@keyframes splash_in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes splash_out {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    height: 0;
    opacity: 0;
    pointer-events: none;
  }
}



