/* HTML: <div class="app-loader"></div> */
.app-loader-wrapper {
  background-color: var(--bj_1, #E5EBF6);
  width: 100%;
  /* height: 100%; */
  position: absolute;
  z-index: 9999;
  top: 0;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.app-loader-wrapper .app-text {
  font-family: system-ui;
  position: absolute;
  top: 50%;
  color: var(--white_1, #fff);
  font-size: 14px;
}

.app-loader {
  width: 108px;
  height: 60px;
  color: var(--brand_5, #407FFF);
  --c: radial-gradient(farthest-side, currentColor 96%, #0000);
  background:
    var(--c) 100% 100% /30% 60%,
    var(--c) 70% 0 /50% 100%,
    var(--c) 0 100% /36% 68%,
    var(--c) 27% 18% /26% 40%,
    linear-gradient(currentColor 0 0) bottom/67% 58%;
  background-repeat: no-repeat;
  position: relative;
}

.app-loader:after {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  opacity: 0.4;
  animation: l7 1s infinite;
}

@keyframes l7 {
  to {
    transform: scale(1.8);
    opacity: 0
  }
}