.tdo-skip-link {
  position: fixed;
  top: 0;
  left: 1rem;
  z-index: 1000000;
  padding: 0.8rem 1rem;
  color: #fff;
  background: #17377e;
  border: 3px solid #fff;
  border-radius: 0 0 0.25rem 0.25rem;
  font-weight: 700;
  transform: translateY(-130%);
  transition: transform 0.15s ease;
}

.tdo-skip-link:focus {
  color: #fff;
  transform: translateY(0);
}

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid #ffbf47 !important;
  outline-offset: 3px !important;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (forced-colors: active) {
  .tdo-skip-link {
    border: 2px solid ButtonText;
  }
}

