#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#loading-logo {
  width: 300px;
  margin-bottom: 40px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(35, 100, 136, 0.2);
  border-top-color: #236488;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

#loading.fade-out {
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
