/* Aparejo — movimiento. Corto, plano y prescindible.
   Nada se mueve más de 160 ms y nada comunica solo con movimiento. */
:root{
  --dur-instant:80ms;  /* @kind other */
  --dur-fast:120ms;    /* @kind other */
  --dur-base:160ms;    /* @kind other */
  --ease-out:cubic-bezier(.2,.6,.35,1);   /* @kind other */
  --ease-in-out:cubic-bezier(.4,0,.2,1);  /* @kind other */
  --transition-control:background-color var(--dur-fast) var(--ease-out),border-color var(--dur-fast) var(--ease-out),color 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 */}
  *,*::before,*::after{animation-duration:.001ms !important;animation-iteration-count:1 !important;transition-duration:.001ms !important;scroll-behavior:auto !important}
}
