.loading-mask {
  z-index: 8;
  display: block;
  background-color: #f9fafc;
}
.loading-mask .loading-bg2 {
  display: none;
  z-index: 2;
}
.loading-mask .loading-bg, .loading-mask img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

#loading-wrap {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 1920px;
  height: 1080px;
  z-index: 11;
  transform-origin: 0 0;
  pointer-events: none;
  opacity: 0;
  position: fixed;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  #loading-wrap {
    transform: translateX(-50%);
    left: 50%;
  }
}

#background-loading {
  background: url("");
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
}
#background-loading #text-logo-loading {
  font-family: "Genos", sans-serif;
  color: #CBA567;
  font-size: 5vw;
  font-weight: bold;
  top: calc(50vh + 135px);
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  white-space: pre;
  animation: fadeIn 1s linear;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media screen and (max-width: 740px) {
  #background-loading #text-logo-loading {
    font-size: 7vw;
  }
}
@media screen and (max-width: 666px) {
  #background-loading #text-logo-loading {
    font-size: 50px;
  }
}

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