#initial-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  background: #1B2A4A;
  transition: opacity .4s ease;
  opacity: 1;
}

#initial-loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

#loader-top {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

#loader-bottom {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
}

#loader-logo {
  width: 120px;
  height: auto;
}

#initial-loader .spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, .15);
  border-top-color: #2CA6A4;
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}

#loader-fact {
  max-width: 100%;
  color: #FFF;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  transition: opacity .4s ease;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
