/* Material Design motion tokens */

:root {
    --maf-duration-fast: 100ms;
    --maf-duration-normal: 200ms;
    --maf-duration-slow: 300ms;
    --maf-duration-enter: 250ms;
    --maf-duration-exit: 200ms;

    --maf-easing-standard: cubic-bezier(0.4, 0, 0.2, 1);
    --maf-easing-enter: cubic-bezier(0, 0, 0.2, 1);
    --maf-easing-exit: cubic-bezier(0.4, 0, 1, 1);
    --maf-easing-sharp: cubic-bezier(0.4, 0, 0.6, 1);
}

@media (prefers-reduced-motion: reduce) {
    :root {
        --maf-duration-fast: 0ms;
        --maf-duration-normal: 0ms;
        --maf-duration-slow: 0ms;
        --maf-duration-enter: 0ms;
        --maf-duration-exit: 0ms;
    }
}
