@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.animation--fade-in{animation:fadeIn .5s forwards}.animation--fade-out{animation:fadeOut .5s forwards}@keyframes slideIn{0%{transform:translateY(16px)}to{transform:translateY(0)}}@keyframes slideOut{0%{transform:translateY(0)}to{transform:translateY(16px)}}.animation--slide-in{animation:slideIn .5s forwards}.animation--slide-out{animation:slideOut .5s forwards}