/* ---------- Overlay global ---------- */
#dp-loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, .8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

#dp-loading-overlay.dp-show {
  opacity: 1;
  pointer-events: auto;
}

/* Spinner */
.dp-spinner {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 6px solid #00897B;
  border-right-color: transparent;
  animation: dp-spin 1s linear infinite;
}

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