.fadeIn{animation:fadeInAnimation .5s}@keyframes fadeInAnimation{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}.fadeOut{animation:fadeOutAnimation .5s}@keyframes fadeOutAnimation{0%{opacity:1;transform:translateY(0)}to{opacity:0;transform:translateY(20px)}}.grow{animation:growAnimation .3s}@keyframes growAnimation{0%{transform-origin:bottom right;animation-timing-function:cubic-bezier(.18,.74,.43,1.2);transform-origin:"center center";transform:scale(0)}to{transform:scale(1)}}.dot-pulse{animation:pulse 1.5s cubic-bezier(.4,0,.6,1) infinite}@keyframes pulse{0%,to{opacity:1;transform:scale(1.2)}50%{opacity:.1;transform:scale(.7)}}.dot-pulse:first-child{animation-delay:.1s}.dot-pulse:nth-child(2){animation-delay:.3s}.dot-pulse:nth-child(3){animation-delay:.5s}