body._dash-loading-callback::after,
body:has([data-dash-is-loading="true"])::after {
  content: "Actualizando datos…";
  position: fixed;
  top: 14px;
  right: 18px;
  z-index: 2147482000;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px 7px 34px;
  border: 1px solid rgba(145, 232, 242, .42);
  border-radius: 999px;
  background:
    radial-gradient(circle at 17px 50%, #91e8f2 0 4px, rgba(145, 232, 242, .28) 5px 9px, transparent 10px),
    rgba(3, 49, 60, .96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .28);
  color: #effcff;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  pointer-events: none;
  animation: pac-native-loading-pulse-v1940 1.2s ease-in-out infinite;
}
@keyframes pac-native-loading-pulse-v1940 {
  0%, 100% { opacity: .78; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-1px); }
}
@media (prefers-reduced-motion: reduce) {
  body._dash-loading-callback::after,
  body:has([data-dash-is-loading="true"])::after {
    animation: none;
  }
}