@keyframes brand-loader-rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes brand-loader-dot-pulse {
  0%,
  100% {
    transform: scale(0.7);
    opacity: 0.45;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}

.app-loading {
  font-family: 'PlusJakartaSans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 8rem;
}

.app-loader {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.app-loader__spinner {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 4px solid rgba(83, 63, 3, 0.16);
  border-top-color: #533f03;
  animation: brand-loader-rotate 0.9s linear infinite;
}

.app-loader__dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.app-loader__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #bbcedd;
  animation: brand-loader-dot-pulse 1.1s ease-in-out infinite;
}

.app-loader__dot:nth-child(2) {
  animation-delay: 0.15s;
}

.app-loader__dot:nth-child(3) {
  animation-delay: 0.3s;
}
