/* Air theme · 80-animations.css
   Анимации входа экранов/карточек (scFade/scRise).
   Скопировано ДОСЛОВНО из шаблона css/80-animations.css. */

@keyframes scFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scRise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

