@charset "UTF-8";
#loadingWrapper{
    position: fixed;
    transform: translate(-50%,-50%);
    left: 50vw;
    top: 50vh;
    width: 100vw;
    height: 100vh;
    background-color: #000000;
    z-index: 110;
    overflow: hidden;
    will-change: height;
}
.load {
    color: rgb(220, 220, 220);
    font-size: 20px;
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    margin: 0 auto;
}
#loadingLogo {
  width: 200px;
  height: auto;
}
.standby{
  animation: flash 1s linear infinite;
}
@keyframes flash {
  0%,100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}