/* Calm, short, no bounce. Everything is a fade or a small translate. */
:root{
  --ease-standard:cubic-bezier(.2,0,0,1); /* @kind other */
  --ease-out:cubic-bezier(0,0,.2,1); /* @kind other */
  --ease-in-out:cubic-bezier(.45,0,.15,1); /* @kind other */
  --dur-instant:80ms; /* @kind other */
  --dur-fast:140ms; /* @kind other */
  --dur-base:220ms; /* @kind other */
  --dur-slow:400ms; /* @kind other */
  --dur-reveal:700ms; /* @kind other */
  --transition-ui:all var(--dur-fast) var(--ease-standard); /* @kind other */
  --transition-media:transform var(--dur-slow) var(--ease-out); /* @kind other */
}
