.loading_wrapper_animation_closing {
  animation: loadingWrapperAnimation 650ms cubic-bezier(0, 0.08, 1, 0.33) forwards;
}

@keyframes loadingWrapperAnimation {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-200%);
  }
}
.loading_section_wrapper {
  position: relative;
  z-index: 8500;
}
.loading_section_wrapper .loading_text_section {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  height: 110px;
  width: 299px;
  overflow: hidden;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 900;
}
.loading_section_wrapper .loading_text_section h1 {
  font-size: 60px;
  line-height: 110px;
  letter-spacing: 0.25px;
  font-family: var(--bold);
  transition: all 0.5s ease;
  color: var(--white);
}
.loading_section_wrapper .loading_text_section .loading_anim_text_layer {
  margin-left: 12px;
  transform: translateY(0);
  transition: all 0.5s ease;
}
.loading_section_wrapper .loading_wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 200%;
  z-index: 2;
  overflow: hidden;
  transform: translateY(0);
  display: flex;
  flex-direction: column;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 650ms cubic-bezier(0, 0.08, 1, 0.33);
}
.loading_section_wrapper .loading_wrapper .loading_section {
  width: 100%;
  height: 100%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading_section_wrapper .loading_wrapper .loading_shadow_layer {
  width: 100%;
  height: 100%;
  transform: translateY(-10px);
  background: linear-gradient(to bottom, var(--black) 35%, rgba(255, 255, 255, 0));
}/*# sourceMappingURL=loading.css.map */