/* ===== Pace: barra superior aislada ===== */

:root {
  --theme-primary: #004437;
}

.pace {
  pointer-events: none;
  user-select: none;
}

.pace-inactive {
  display: none;
}

.pace .pace-progress {
  position: fixed;
  top: 0;
  right: 100%;
  width: 100%;
  height: 3px;
  background: var(--theme-primary, #004437);
  box-shadow: 0 0 8px rgba(0, 68, 55, .35);
  z-index: 2147483647;
  transition: right .18s ease-out, opacity .18s ease;
}

.pace .pace-activity {
  display: none;
}

body.pace-done .pace .pace-progress {
  opacity: 0;
}

/* sin spinner */

