/* Loading - S */
body{background-color: #fff;}
.loading {
  display: flex; justify-content: center; align-items: center;
  width: 180px;
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.dots {
  display: flex; justify-content: space-between; align-items: center; column-gap: 6px;
  height: 30px;
  position: relative;
}
.dots span {
  display: inline-block;
  width: 4px; height: 4px; margin: 2px;
  border-radius: 50%; 
  animation: dots 1.2s linear infinite;
  opacity: 0;
}
.dots span:nth-child(1) {
  animation-delay: 0s;
  background-color: #C3E2EC;
}
.dots span:nth-child(2) {
  width: 4px; height: 4px;
  animation-delay: 0.2s;
  background-color: #92DEF3;
}
.dots span:nth-child(3) {
  width: 6px; height: 6px;
  animation-delay: 0.4s;
  background-color: #31C1F2;
}
.dots span:nth-child(4) {
  width: 6px; height: 6px;
  animation-delay: 0.6s;
  background-color: #0D7FE8;
}
.dots span:nth-child(5) {
  width: 8px; height: 8px;
  animation-delay: 0.8s;
  background-color: #0D7FE8;
}
.dots span:nth-child(6) {
  width: 8px; height: 8px;
  animation-delay: 1s;
  background-color: #014BB1;
}
.dots span:nth-child(7) {
  width: 10px; height: 10px;
  animation-delay: 1.2s;
  background-color: #014BB1;
}
.loading .fa-rocket {
  font-size: 20px; line-height: 30px; color: #012549;
  position: absolute; left: 0; top: -1px;
  transform: rotate(45deg);
  animation: plane 1.2s linear infinite;
}
/* Loading - E */

/* ANIMATION KEYFRAMES - S */
@keyframes dots {
  0% {
    opacity: 1;
  }
  30% {
    transform: scale(1.3);
  }
  60% {
    transform: scale(0.9);
  }
  90% {
    opacity: 0; transform: scale(1);
  }
}
@keyframes plane {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
/* ANIMATION KEYFRAMES - E */
