@keyframes popup-enter{0%{transform:scale(.8);opacity:0}to{transform:scale(1);opacity:1}}@keyframes popup-exit{0%{transform:scale(1);opacity:1}to{transform:scale(.8);opacity:0}}.popup-container{animation-duration:.3s;animation-fill-mode:forwards}.popup-enter{animation-name:popup-enter;animation-timing-function:ease-out}.popup-exit{animation-name:popup-exit;animation-timing-function:ease-in}@keyframes scaleAnimation{0%{transform:scale(1)}50%{transform:scale(1.1)}to{transform:scale(1)}}.popup-image img{animation:scaleAnimation 2s ease-in-out infinite}