
.rdnH1 {
  font-size: 1.5rem;
  font-weight: 800;
}

.rdnLoading {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  background: var(--rdn-color-base-light);
}

.rdnLoading span {
  width: 0.8rem;
  height: 0.8rem;
  opacity: 0;
  background: white;
  border-radius: 50%;
  transition: var(--rdn-transition);
  animation: rdnLoadingSpan 500ms infinite ease-in-out alternate;
  animation-delay: 2s;
}

.rdnLoading span:nth-child(2) {
  animation-delay: 2.1s;
}

.rdnLoading span:nth-child(3) {
  animation-delay: 2.2s;
}

@keyframes rdnLoadingSpan {
  from {
    opacity: 0.2;
    transform: scale(0.6);
  }
  to {
    opacity: 0.8;
    transform: scale(1);
  }
}

.rdnLoading .rdnH1 {
  scale: 0;
  color: white;
  opacity: 0.9;
  animation: rdnLoadingH1 1s ease-in-out forwards;
}

@keyframes rdnLoadingH1 {
  to {
    scale: 1;
  }
}