e106a05c4930fb1f1d4b64fc89fe4407075314b5269f4f5eb8481276ac93a81a030398a9649b49efe3078a6fb14a6a2250e69532cc1c3e4ef08cfc62ceab0d 206 B

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