@keyframes slideIn{0%{transform:translateX(100%);opacity:0}20%{opacity:1}to{transform:translateX(0);opacity:1}}@keyframes slideOutLeft{0%{transform:translateX(0);opacity:1}80%{opacity:1}to{transform:translateX(-100%);opacity:0}}.animate-slideIn{animation:slideIn 3s cubic-bezier(.65,0,.35,1) forwards}.animate-slideIn,.animate-slideOutLeft{position:absolute;top:0;left:0;width:100%}.animate-slideOutLeft{animation:slideOutLeft 3s cubic-bezier(.65,0,.35,1) forwards}