/**
 * ACCESSIBILITY
 * 
 * Contains general accessibility fixes.
 */

/* Reduced motion
---------------------------------------------------------*/

@media (prefers-reduced-motion: reduce) {
    :root body {
        --env-collapse-toggle-duration: 1ms;
    }
   
    *,
    :after,
    :before {
        transition-duration: 1ms !important; /* We still have a small duration so transition events run in client scripts. */
    }
}