/*--------------------------------------------------------------
This is your custom stylesheet.

Add your own styles here to make theme updates easier.
To override any styles from other stylesheets, simply copy them into here and edit away.

Make sure to respect the media queries! Otherwise you may
accidentally add desktop styles to the mobile layout.
https://www.w3schools.com/css/css_rwd_mediaqueries.asp
--------------------------------------------------------------*/
/* Spinner FS LOOP – Ajustes visuales móviles y tipografía */

/* General para móvil y tablet (≤768px) */
@media screen and (max-width: 768px) {
  #fsloopSpinner,
  #fsloopSpinnerDestino {
    padding: 2rem;
  }

  .spinner-loader svg.fsloop-loader {
    width: 48px;
    height: 48px;
  }

  #fsloopSpinnerMsg,
  #fsloopSpinnerDestinoMsg {
    font-size: 1.35rem;
    line-height: 1.5;
    max-width: 90vw;
    padding-inline: 0.5rem;
  }
}

/* Móviles más estrechos (≤480px) */
@media screen and (max-width: 480px) {
  #fsloopSpinnerMsg,
  #fsloopSpinnerDestinoMsg {
    max-width: 85vw;
    padding-inline: 1rem;
  }
}

/* Animación suave de entrada */
#fsloopSpinner,
#fsloopSpinnerDestino {
  animation: fadeInOverlay 0.3s ease-in-out;
}

@keyframes fadeInOverlay {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* Tipografía unificada para ambos mensajes */
#fsloopSpinnerMsg,
#fsloopSpinnerDestinoMsg {
  font-family: var(--e-global-typography-text-font-family, "Montserrat", sans-serif);
}

