:root{
--ease-standard:cubic-bezier(0.2,0,0,1); /* @kind other */
--dur-instant:90ms;  /* @kind other */
--dur-fast:140ms;    /* @kind other */
--dur-base:200ms;    /* @kind other */
--dur-slow:280ms;    /* @kind other */
}
@keyframes riseIn{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:none}}
@keyframes urgentFlash{0%,100%{background:var(--urg-vencido)}50%{background:var(--urg-5)}}
.animate-rise{animation:riseIn var(--dur-slow) var(--ease-standard) both}
.animate-urgent{animation:urgentFlash 1.6s infinite ease-in-out}
