/**
 cookies not accepted
 */
.operations-map {
  background: black;
}
/**
 * Simple loading spinner (e.g. the Cookiebot declaration placeholder).
 * Inherits the current text colour; the inner text is kept for assistive tech.
 */

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-spinner {
  display: block;
  width: 2rem;
  height: 2rem;
  margin: 2rem auto;
  border: 3px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  opacity: 0.4;
  font-size: 0;
  animation: spin 0.8s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .loading-spinner {animation: none;}
}

/**
 * Placeholder shown over iframes that Cookiebot auto-blocks before consent.
 */
.cookie-blocked {
  position: relative;
  aspect-ratio: 16 / 9; /* fallback when the iframe has no width/height attrs */
  overflow: hidden;
}

.cookie-blocked iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.cookie-blocked__message {
  background: var(--light, #f8f9fa);
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px 40px;
  text-align: center;
}

.cookie-blocked__message p {
  margin: 0;
  max-width: 36em;
}

/* Inline text button that opens the cookie settings dialog. */
button.toggle-cookie-settings-link {
  appearance: none;
  background-color: inherit;
  border: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
  text-decoration: inherit;
}

button.toggle-cookie-settings-link:hover {
  text-decoration: underline;
}