.loading {
  position: fixed;
  inset: 0 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  background: #fff;
}
.loading__bg {
  position: fixed;
  bottom: 0;
  z-index: 1;
  transform-origin: center;
  transform: scale(1.5);
  -ms-filter: blur(30px);
  filter: blur(30px);
  animation: loading_bg 8s ease-in;
}
.loading__inner {
  text-align: center;
  z-index: 2;
}
.loading__txt {
  opacity: 0;
}
.loading__catch {
  display: flex;
  justify-content: center;
}
.loading__logo {
  opacity: 0;
  margin-bottom: 6px;
}
.loading__name {
  opacity: 0;
}

@keyframes loading_bg {
  0% {
    transform: scale(3) rotate(-30deg) translate(0, 0);
  }
  100% {
    transform: scale(4) rotate(80deg) translate(300px, 100px);
  }
}