@keyframes lds-rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes lds-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.app-loading {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 10em;
}

.app-loading p {
  display: block;
  font-size: 1.17em;
  margin-inline-start: 0;
  margin-inline-end: 0;
  font-weight: normal;
  color: #333;
}

.app-loading .lds-pacman {
  position: relative;
  margin: auto;
  width: 120px;
  height: 80px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.app-loading .lds-pacman > div {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #bbcedd;
  animation: lds-pulse 0.8s infinite ease-in-out;
  margin: 4px;
}

.app-loading .lds-pacman > div:nth-child(1) {
  animation-delay: 0s;
}
.app-loading .lds-pacman > div:nth-child(2) {
  animation-delay: 0.2s;
}
.app-loading .lds-pacman > div:nth-child(3) {
  animation-delay: 0.4s;
}
.app-loading .lds-pacman > div:nth-child(4) {
  animation-delay: 0.6s;
}
.app-loading .lds-pacman > div:nth-child(5) {
  animation-delay: 0.8s;
}
.app-loading .lds-pacman > div:nth-child(6) {
  animation-delay: 1s;
}
