/* MetalIQ — Motion
 * Quick, subtle. No bounce.
 */
:root{
  --dur-fast:120ms;                          /* @kind other */
  --dur-base:160ms;                          /* @kind other */
  --dur-slow:200ms;                          /* @kind other */
  --ease-out:cubic-bezier(.2,.7,.3,1);       /* @kind other */
  --ease-in-out:cubic-bezier(.4,0,.2,1);     /* @kind other */

  --t-hover:all var(--dur-base) var(--ease-out);       /* @kind other */
  --t-toggle:all var(--dur-base) var(--ease-out);      /* @kind other */
  --t-drawer:transform var(--dur-slow) var(--ease-out);/* @kind other */
}

@media (prefers-reduced-motion:reduce){
  :root{
    --dur-fast:0ms;   /* @kind other */
    --dur-base:0ms;   /* @kind other */
    --dur-slow:0ms;   /* @kind other */
  }
  *,*::before,*::after{animation-duration:0.01ms!important;animation-iteration-count:1!important;transition-duration:0.01ms!important}
}
