/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 13 2026 | 09:20:29 */
/*
 * Loader della mappa in Homepage. 
 */

/* The Loader Container */
.map-loader-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  width: 100%;
}

/* The Spinner */
.map-spinner {
  width: 40px;
  height: 40px;
  border: 5px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top-color: #ED7657;
  animation: spin 1s ease-in-out infinite;
  margin-bottom: 10px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Optional text fade */
.loading-text {
  font-family: sans-serif;
  font-size: 14px;
  color: #666;
  letter-spacing: 1px;
  text-transform: uppercase;
}