/* Skip the slide animation on drawers for users with reduced motion enabled.
   VoiceOver on iOS reads elements as they slide under the virtual cursor,
   causing spurious announcements ("0", "null", etc) */
@media (prefers-reduced-motion: reduce) {
    [data-scope='dialog'][data-part='content'][data-state='open'] {
        animation-name: fade-in !important;
        animation-duration: 0.01s !important;
    }

    [data-scope='dialog'][data-part='content'][data-state='closed'] {
        animation-name: fade-out !important;
        animation-duration: 0.01s !important;
    }

    [data-scope='dialog'][data-part='backdrop'][data-state='open'] {
        animation-duration: 0.01s !important;
    }

    [data-scope='dialog'][data-part='backdrop'][data-state='closed'] {
        animation-duration: 0.01s !important;
    }
}
