#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgb(var(--twc-primary) / 1);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loading-spinner {
  width: 32px;
  height: 32px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top: 4px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loading-logo {
  height: 80px;
  width: auto;
}

@media (min-width: 768px) {
  .loading-logo {
    height: 64px;
  }
}

@media (min-width: 1024px) {
  .loading-logo {
    height: 72px;
  }
}

@media (min-width: 1536px) {
  .loading-logo {
    height: 80px;
  }
}
