.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid rgba(0, 0, 0, 0.1);
  border-top: 6px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;

  /* ✅ Centrage à l'intérieur du conteneur parent */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* NOTE: Style des containers */
[class^='livya-module-container'] {
  position: relative;
  width: 100%;
  max-height: 80dvh;
  height: 80dvh;
  overflow: hidden;
  /* border-radius: 8px; */
}

.livya-module-container-medias {
  height: 368px;
  border-radius: 8px;
}

@media (min-width: 768px) {
  .livya-module-container-plans {
    aspect-ratio: 16 / 9;
  }

  .livya-module-container-medias {
    height: 392px;
  }
}

/* NOTE: Style des iframes */
iframe.livya-integration-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  position: relative;
}
