/* FPC Wire v2.3.1a — Smooth Navigation Foundation */
.wire-nav-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 12000;
  width: 100%;
  height: 3px;
  overflow: hidden;
  background: transparent;
  pointer-events: none;
}

.wire-nav-progress::before {
  content: "";
  display: block;
  width: 34%;
  height: 100%;
  border-radius: 999px;
  background: #ef2f43;
  box-shadow: 0 0 12px rgba(239, 47, 67, .72);
  animation: wire-nav-progress 1s ease-in-out infinite;
}

@keyframes wire-nav-progress {
  0% { transform: translateX(-115%); }
  55% { transform: translateX(175%); }
  100% { transform: translateX(310%); }
}

.content-column {
  transition: opacity .12s ease, transform .12s ease;
}

.content-column.wire-content-leaving {
  opacity: .18;
  transform: translateY(4px);
}

.content-column.wire-content-entering {
  animation: wire-content-enter .18s ease both;
}

@keyframes wire-content-enter {
  from { opacity: .25; transform: translateY(5px); }
  to { opacity: 1; transform: none; }
}

html.wire-nav-busy,
body.wire-nav-busy {
  cursor: progress;
}

body.wire-nav-busy .content-column {
  pointer-events: none;
}

@media (max-width: 799px) {
  .wire-nav-progress {
    top: env(safe-area-inset-top);
  }

  body.wire-nav-busy .wire-mobile-nav-v230j {
    opacity: .94;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wire-nav-progress::before,
  .content-column,
  .content-column.wire-content-entering {
    animation: none;
    transition: none;
  }
}
