/*! 
 */
figure {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  width: 5.25em;
  height: 5.25em;
  margin: auto;
  /*animation: rotate 2.4s linear infinite;*/
}
figure .f-loading {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-items: center;
}

.f-loading div {
  width: 5px;
  height: 15px;
  background-color: #1890ff;
  animation: wq_scaleY 1.2s ease-in-out infinite;
}

.f-loading div:nth-child(2) {
  animation-delay: 0.1s;
}

.f-loading div:nth-child(3) {
  animation-delay: 0.2s;
}

.f-loading div:nth-child(4) {
  animation-delay: 0.3s;
}

.f-loading div:nth-child(5) {
  animation-delay: 0.4s;
}

@keyframes wq_scaleY {
  0%,
  40%,
  100% {
    transform: scaleY(1);
  }

  20% {
    transform: scaleY(2.5);
  }
}