/* Shown until Angular bootstrap completes (see main.ts). */
#global-loader {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222222;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#global-loader .loading-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

#global-loader .loading-favicon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  animation: cropmap-loader-pulse 1.2s ease-in-out infinite;
}

@keyframes cropmap-loader-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.08);
  }
}
