

@-webkit-keyframes line-scale-pulse-out {
  0% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4);
  }

  50% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }

  100% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4);
  }
}

@keyframes line-scale-pulse-out {
  0% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4);
  }

  50% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }

  100% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4);
  }
}

.loaders {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.line-scale-pulse-out>div {
  float: left;
  margin: 0.2rem;
  width: 0.3rem;
  height: 3.6rem;
  border-radius: 0.2rem;
  background: linear-gradient(133deg, var(--color-ai-7) 0.43%, var(--color-ai-8) 99.56%);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: line-scale-pulse-out 0.8s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
  animation: line-scale-pulse-out 0.8s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
}

.line-scale-pulse-out>div:nth-child(2),
.line-scale-pulse-out>div:nth-child(4) {
  -webkit-animation-delay: -0.2s !important;
  animation-delay: -0.2s !important;
}

.line-scale-pulse-out>div:nth-child(1),
.line-scale-pulse-out>div:nth-child(5) {
  -webkit-animation-delay: -0.4s !important;
  animation-delay: -0.4s !important;
}

.line-scale-pulse-out,
.ball-clip-rotate {
  text-align: center;
}


.is-small .line-scale-pulse-out > div {
  width: 0.2rem;
  height: 2rem;
}