/* loader */

.main-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, #00a8b4 0%, #003597 60%),
    radial-gradient(circle at 80% 20%, #003597 0%, #00a8b4 60%);
  background-blend-mode: overlay;
  z-index: 9999;
  transition: all 0.3s ease;
  opacity: 1;
}

.main-loader img {
  width: 250px;
  max-width: 250px;
}

/* loader */

#initial-loader.fade-out,
#mainLoader.fade-out {
  opacity: 0;
  pointer-events: none;
}
