.first-loading-wrp {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 90vh;
  min-height: 90vh;
}

.first-loading-wrp > h1 {
  font-size: 30px;
  font-weight: bolder;
}

.first-loading-wrp .loading-wrp {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.loading-style-1 .dot {
  position: relative;
  box-sizing: border-box;
  display: inline-block;
  width: 64px;
  height: 64px;
  font-size: 64px;
  transform: rotate(45deg);
  animation: antRotate 1.2s infinite linear;
}

.loading-style-1 .dot i {
  position: absolute;
  display: block;
  width: 28px;
  height: 28px;
  background-color: #1890ff;
  border-radius: 100%;
  opacity: 0.3;
  transform: scale(0.75);
  transform-origin: 50% 50%;
  animation: antSpinMove 1s infinite linear alternate;
}

.loading-style-1 .dot i:nth-child(1) {
  top: 0;
  left: 0;
}

.loading-style-1 .dot i:nth-child(2) {
  top: 0;
  right: 0;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.loading-style-1 .dot i:nth-child(3) {
  right: 0;
  bottom: 0;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.loading-style-1 .dot i:nth-child(4) {
  bottom: 0;
  left: 0;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

@keyframes antRotate {
  to {
    -webkit-transform: rotate(405deg);
    transform: rotate(405deg);
  }
}

@-webkit-keyframes antRotate {
  to {
    -webkit-transform: rotate(405deg);
    transform: rotate(405deg);
  }
}

@keyframes antSpinMove {
  to {
    opacity: 1;
  }
}

@-webkit-keyframes antSpinMove {
  to {
    opacity: 1;
  }
}

figure.loading-style-2,
figure.loading-style-3 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 160px;
  left: 0;
  width: 6.25em;
  height: 6.25em;
  margin: auto;
  animation: rotate2 2.4s linear infinite;
}

.loading-style-3 .white,
.loading-style-2 .white {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: white;
  opacity: 0;
  animation: flash2 2.4s linear infinite;
}

.loading-style-3 .dot,
.loading-style-2 .dot {
  position: absolute;
  width: 2.4em;
  height: 2.4em;
  margin: auto;
  border-radius: 100%;
  transition: all 1s ease;
}

.loading-style-3 .dot:nth-child(2),
.loading-style-2 .dot:nth-child(2) {
  top: 0;
  bottom: 0;
  left: 0;
  background: #f44;
  animation: dotsY2 2.4s linear infinite;
}

.loading-style-3 .dot:nth-child(3),
.loading-style-2 .dot:nth-child(3) {
  top: 0;
  right: 0;
  left: 0;
  background: #fb3;
  animation: dotsX2 2.4s linear infinite;
}

.loading-style-3 .dot:nth-child(4),
.loading-style-2 .dot:nth-child(4) {
  top: 0;
  right: 0;
  bottom: 0;
  background: #9c0;
  animation: dotsY2 2.4s linear infinite;
}

.loading-style-3 .dot:nth-child(5),
.loading-style-2 .dot:nth-child(5) {
  right: 0;
  bottom: 0;
  left: 0;
  background: #33b5e5;
  animation: dotsX2 2.4s linear infinite;
}

figure.loading-style-3 {
  animation: rotate 2.4s linear infinite;
}

@keyframes rotate2 {
  0% {
    transform: rotate(0);
  }

  10% {
    width: 6.25em;
    height: 6.25em;
  }

  66% {
    width: 2.4em;
    height: 2.4em;
  }

  100% {
    width: 6.25em;
    height: 6.25em;
    transform: rotate(360deg);
  }
}

@keyframes dotsY2 {
  66% {
    width: 2.4em;
    opacity: 0.1;
  }

  77% {
    width: 0;
    opacity: 1;
  }
}

@keyframes dotsX2 {
  66% {
    height: 2.4em;
    opacity: 0.1;
  }

  77% {
    height: 0;
    opacity: 1;
  }
}

@keyframes flash2 {
  33% {
    border-radius: 0;
    opacity: 0;
  }

  55% {
    border-radius: 100%;
    opacity: 0.6;
  }

  66% {
    opacity: 0;
  }
}
