664ff817ccb2a4868af1be70fef9db4c0b85690a68e2e46c1996c958fb58d846be5e93dbd53cc80d675ef21f2c2605167012d38dbbf8e892ec02c47af6afed 233 B

1234567891011121314
  1. @keyframes fadeOutBottomRight {
  2. from {
  3. opacity: 1;
  4. transform: translate3d(0, 0, 0);
  5. }
  6. to {
  7. opacity: 0;
  8. transform: translate3d(100%, 100%, 0);
  9. }
  10. }
  11. .fadeOutBottomRight {
  12. animation-name: fadeOutBottomRight;
  13. }