:root{
  --duration-fast:150ms; /* @kind other */
  --duration-standard:300ms; /* @kind other */
  --duration-slow:500ms; /* @kind other */
  --ease-standard:ease; /* @kind other */
  --ease-out:cubic-bezier(.22,.61,.36,1); /* @kind other */
  --ease-in-out:ease-in-out; /* @kind other */
  --transition-control:all var(--duration-slow) var(--ease-standard); /* @kind other */
  --transition-surface:all var(--duration-slow) var(--ease-in-out); /* @kind other */
  --transition-quick:all var(--duration-fast) var(--ease-out); /* @kind other */
}
@media (prefers-reduced-motion:reduce){
  :root{--duration-fast:1ms; /* @kind other */
  --duration-standard:1ms; /* @kind other */
  --duration-slow:1ms; /* @kind other */}
}
