.loading-overlay {
  transition: all 0.5s;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  font-size: 3rem;
  color: #eeeeee;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  user-select: none;
  height: 100vh;
  height: 100dvh;
}
.loading-overlay.hidden-loading {
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}
.loading-logo {
  animation: loading-logo-spin 4s linear infinite;
  user-select: none;
  pointer-events: none;
}
@keyframes loading-logo-spin {
  100% {
    transform: rotate(360deg);
  }
}
