/* Motion. Short, soft, never bouncy. Reduce Motion is respected everywhere. */
:root{
  --duration-fast:120ms; /* @kind other */
  --duration-default:180ms; /* @kind other */
  --duration-medium:240ms; /* @kind other */
  --duration-slow:320ms; /* @kind other */
  --easing-standard:cubic-bezier(.2,0,0,1); /* @kind other */
  --easing-enter:cubic-bezier(0,0,0,1); /* @kind other */
  --easing-exit:cubic-bezier(.3,0,1,1); /* @kind other */
  --transition-theme:background var(--duration-medium) var(--easing-standard),color var(--duration-medium) var(--easing-standard);
}
@media (prefers-reduced-motion:reduce){:root{--duration-fast:0ms; /* @kind other */ --duration-default:0ms; /* @kind other */ --duration-medium:0ms; /* @kind other */ --duration-slow:0ms /* @kind other */}}
