@keyframes dot-keyframes {
  0% {
    opacity: 0.4;
    transform: scale(1, 1);
  }

  50% {
    opacity: 1;
    transform: scale(1.2, 1.2);
  }

  100% {
    opacity: 0.4;
    transform: scale(1, 1);
  }
}

.loading-dots.page {
  text-align: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.page .loading-dots--dot {
  animation: dot-keyframes 2s infinite ease-in-out;
  background-color: #ffc107;
  border-radius: 50%;
  display: inline-block;
  height: 0.7rem;
  width: 0.7rem;
  margin: 0 0.175rem;
}

.page .loading-dots--dot:nth-child(2) {
  animation-delay: 0.5s;
}

.page .loading-dots--dot:nth-child(3) {
  animation-delay: 1s;
}

.page .loading-dots--dot:nth-child(4) {
  animation-delay: 1.5s;
}
