:root{
  --dur-instant:90ms;/* @kind other */
  --dur-fast:140ms;/* @kind other */
  --dur-base:220ms;/* @kind other */
  --dur-slow:380ms;/* @kind other */
  --ease-out:cubic-bezier(.22,.68,.28,1);/* @kind other */
  --ease-in-out:cubic-bezier(.5,0,.3,1);/* @kind other */
  --ease-entrance:cubic-bezier(.16,.84,.34,1);/* @kind other */
    --transition-interactive:background-color var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--ease-out);/* @kind other */
}
@media (prefers-reduced-motion:reduce){
  :root{ --dur-instant:0ms;/* @kind other */ --dur-fast:0ms;/* @kind other */ --dur-base:0ms;/* @kind other */ --dur-slow:0ms;/* @kind other */ }
}
