@keyframes bounce-slow{0%,to{transform:translateY(0)}50%{transform:translateY(-10px)}}.animate-bounce-slow{animation:bounce-slow 3s infinite}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.animate-fadeIn{animation:fadeIn .5s ease-in-out}@keyframes slideInFromLeft{0%{transform:translateX(-10px);opacity:0}to{transform:translateX(0);opacity:1}}.animate-slide-in-from-left{animation:slideInFromLeft .3s ease-in-out}@keyframes slideInFromBottom{0%{transform:translateY(10px);opacity:0}to{transform:translateY(0);opacity:1}}.animate-slide-in-from-bottom{animation:slideInFromBottom .3s ease-in-out}