@media (prefers-reduced-motion: no-preference) {
  .page-content > *,
  .page-banner,
  .site-header,
  .site-footer {
    animation: rise 520ms var(--ease-out) both;
  }

  .matchItems > li,
  .top-nav a,
  .btn,
  .matchList > ul:first-child .label,
  .matchList > ul:first-child .inactivelabel {
    transition:
      transform 180ms var(--ease-out),
      background-color 180ms var(--ease-out),
      border-color 180ms var(--ease-out),
      color 180ms var(--ease-out);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
