@rhtml/modifiers 0.0.109 → 0.0.112

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/README.md +26 -0
  2. package/dist/animation/animate.css.d.ts +1 -0
  3. package/dist/animation/animate.css.js +3364 -0
  4. package/dist/animation/animate.css.js.map +1 -0
  5. package/dist/animation/animation.d.ts +16 -0
  6. package/dist/animation/animation.js +55 -0
  7. package/dist/animation/animation.js.map +1 -0
  8. package/dist/animation/index.d.ts +3 -0
  9. package/dist/animation/index.js +16 -0
  10. package/dist/animation/index.js.map +1 -0
  11. package/dist/animation/interfaces.d.ts +1 -0
  12. package/dist/animation/interfaces.js +3 -0
  13. package/dist/animation/interfaces.js.map +1 -0
  14. package/dist/index.d.ts +1 -0
  15. package/dist/index.js +1 -0
  16. package/dist/index.js.map +1 -1
  17. package/dist/layout/flex-align.d.ts +6 -4
  18. package/dist/layout/flex-align.js +14 -1
  19. package/dist/layout/flex-align.js.map +1 -1
  20. package/dist/layout/flex.d.ts +6 -4
  21. package/dist/layout/flex.js +14 -1
  22. package/dist/layout/flex.js.map +1 -1
  23. package/dist/layout/layout-align.d.ts +6 -4
  24. package/dist/layout/layout-align.js +14 -1
  25. package/dist/layout/layout-align.js.map +1 -1
  26. package/dist/layout/layout-gap.d.ts +6 -4
  27. package/dist/layout/layout-gap.js +28 -3
  28. package/dist/layout/layout-gap.js.map +1 -1
  29. package/dist/layout/layout.d.ts +6 -4
  30. package/dist/layout/layout.js +19 -1
  31. package/dist/layout/layout.js.map +1 -1
  32. package/package.json +3 -3
  33. package/src/animation/animate.css.ts +3360 -0
  34. package/src/animation/animation.ts +56 -0
  35. package/src/animation/index.ts +3 -0
  36. package/src/animation/interfaces.ts +79 -0
  37. package/src/index.ts +1 -0
  38. package/src/layout/flex-align.ts +21 -4
  39. package/src/layout/flex.ts +21 -4
  40. package/src/layout/layout-align.ts +21 -4
  41. package/src/layout/layout-gap.ts +38 -6
  42. package/src/layout/layout.ts +27 -4
@@ -0,0 +1,3360 @@
1
+ export const Animations = `
2
+ @charset "UTF-8";
3
+
4
+ /*!
5
+ * animate.css -https://daneden.github.io/animate.css/
6
+ * Version - 3.7.2
7
+ * Licensed under the MIT license - http://opensource.org/licenses/MIT
8
+ *
9
+ * Copyright (c) 2019 Daniel Eden
10
+ */
11
+
12
+ @-webkit-keyframes bounce {
13
+ 0%,
14
+ 20%,
15
+ 53%,
16
+ 80%,
17
+ to {
18
+ -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
19
+ animation-timing-function: cubic-bezier(.215, .61, .355, 1);
20
+ -webkit-transform: translateZ(0);
21
+ transform: translateZ(0)
22
+ }
23
+ 40%,
24
+ 43% {
25
+ -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
26
+ animation-timing-function: cubic-bezier(.755, .05, .855, .06);
27
+ -webkit-transform: translate3d(0, -30px, 0);
28
+ transform: translate3d(0, -30px, 0)
29
+ }
30
+ 70% {
31
+ -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
32
+ animation-timing-function: cubic-bezier(.755, .05, .855, .06);
33
+ -webkit-transform: translate3d(0, -15px, 0);
34
+ transform: translate3d(0, -15px, 0)
35
+ }
36
+ 90% {
37
+ -webkit-transform: translate3d(0, -4px, 0);
38
+ transform: translate3d(0, -4px, 0)
39
+ }
40
+ }
41
+
42
+ @keyframes bounce {
43
+ 0%,
44
+ 20%,
45
+ 53%,
46
+ 80%,
47
+ to {
48
+ -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
49
+ animation-timing-function: cubic-bezier(.215, .61, .355, 1);
50
+ -webkit-transform: translateZ(0);
51
+ transform: translateZ(0)
52
+ }
53
+ 40%,
54
+ 43% {
55
+ -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
56
+ animation-timing-function: cubic-bezier(.755, .05, .855, .06);
57
+ -webkit-transform: translate3d(0, -30px, 0);
58
+ transform: translate3d(0, -30px, 0)
59
+ }
60
+ 70% {
61
+ -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
62
+ animation-timing-function: cubic-bezier(.755, .05, .855, .06);
63
+ -webkit-transform: translate3d(0, -15px, 0);
64
+ transform: translate3d(0, -15px, 0)
65
+ }
66
+ 90% {
67
+ -webkit-transform: translate3d(0, -4px, 0);
68
+ transform: translate3d(0, -4px, 0)
69
+ }
70
+ }
71
+
72
+ .bounce {
73
+ -webkit-animation-name: bounce;
74
+ animation-name: bounce;
75
+ -webkit-transform-origin: center bottom;
76
+ transform-origin: center bottom
77
+ }
78
+
79
+ @-webkit-keyframes flash {
80
+ 0%,
81
+ 50%,
82
+ to {
83
+ opacity: 1
84
+ }
85
+ 25%,
86
+ 75% {
87
+ opacity: 0
88
+ }
89
+ }
90
+
91
+ @keyframes flash {
92
+ 0%,
93
+ 50%,
94
+ to {
95
+ opacity: 1
96
+ }
97
+ 25%,
98
+ 75% {
99
+ opacity: 0
100
+ }
101
+ }
102
+
103
+ .flash {
104
+ -webkit-animation-name: flash;
105
+ animation-name: flash
106
+ }
107
+
108
+ @-webkit-keyframes pulse {
109
+ 0% {
110
+ -webkit-transform: scaleX(1);
111
+ transform: scaleX(1)
112
+ }
113
+ 50% {
114
+ -webkit-transform: scale3d(1.05, 1.05, 1.05);
115
+ transform: scale3d(1.05, 1.05, 1.05)
116
+ }
117
+ to {
118
+ -webkit-transform: scaleX(1);
119
+ transform: scaleX(1)
120
+ }
121
+ }
122
+
123
+ @keyframes pulse {
124
+ 0% {
125
+ -webkit-transform: scaleX(1);
126
+ transform: scaleX(1)
127
+ }
128
+ 50% {
129
+ -webkit-transform: scale3d(1.05, 1.05, 1.05);
130
+ transform: scale3d(1.05, 1.05, 1.05)
131
+ }
132
+ to {
133
+ -webkit-transform: scaleX(1);
134
+ transform: scaleX(1)
135
+ }
136
+ }
137
+
138
+ .pulse {
139
+ -webkit-animation-name: pulse;
140
+ animation-name: pulse
141
+ }
142
+
143
+ @-webkit-keyframes rubberBand {
144
+ 0% {
145
+ -webkit-transform: scaleX(1);
146
+ transform: scaleX(1)
147
+ }
148
+ 30% {
149
+ -webkit-transform: scale3d(1.25, .75, 1);
150
+ transform: scale3d(1.25, .75, 1)
151
+ }
152
+ 40% {
153
+ -webkit-transform: scale3d(.75, 1.25, 1);
154
+ transform: scale3d(.75, 1.25, 1)
155
+ }
156
+ 50% {
157
+ -webkit-transform: scale3d(1.15, .85, 1);
158
+ transform: scale3d(1.15, .85, 1)
159
+ }
160
+ 65% {
161
+ -webkit-transform: scale3d(.95, 1.05, 1);
162
+ transform: scale3d(.95, 1.05, 1)
163
+ }
164
+ 75% {
165
+ -webkit-transform: scale3d(1.05, .95, 1);
166
+ transform: scale3d(1.05, .95, 1)
167
+ }
168
+ to {
169
+ -webkit-transform: scaleX(1);
170
+ transform: scaleX(1)
171
+ }
172
+ }
173
+
174
+ @keyframes rubberBand {
175
+ 0% {
176
+ -webkit-transform: scaleX(1);
177
+ transform: scaleX(1)
178
+ }
179
+ 30% {
180
+ -webkit-transform: scale3d(1.25, .75, 1);
181
+ transform: scale3d(1.25, .75, 1)
182
+ }
183
+ 40% {
184
+ -webkit-transform: scale3d(.75, 1.25, 1);
185
+ transform: scale3d(.75, 1.25, 1)
186
+ }
187
+ 50% {
188
+ -webkit-transform: scale3d(1.15, .85, 1);
189
+ transform: scale3d(1.15, .85, 1)
190
+ }
191
+ 65% {
192
+ -webkit-transform: scale3d(.95, 1.05, 1);
193
+ transform: scale3d(.95, 1.05, 1)
194
+ }
195
+ 75% {
196
+ -webkit-transform: scale3d(1.05, .95, 1);
197
+ transform: scale3d(1.05, .95, 1)
198
+ }
199
+ to {
200
+ -webkit-transform: scaleX(1);
201
+ transform: scaleX(1)
202
+ }
203
+ }
204
+
205
+ .rubberBand {
206
+ -webkit-animation-name: rubberBand;
207
+ animation-name: rubberBand
208
+ }
209
+
210
+ @-webkit-keyframes shake {
211
+ 0%,
212
+ to {
213
+ -webkit-transform: translateZ(0);
214
+ transform: translateZ(0)
215
+ }
216
+ 10%,
217
+ 30%,
218
+ 50%,
219
+ 70%,
220
+ 90% {
221
+ -webkit-transform: translate3d(-10px, 0, 0);
222
+ transform: translate3d(-10px, 0, 0)
223
+ }
224
+ 20%,
225
+ 40%,
226
+ 60%,
227
+ 80% {
228
+ -webkit-transform: translate3d(10px, 0, 0);
229
+ transform: translate3d(10px, 0, 0)
230
+ }
231
+ }
232
+
233
+ @keyframes shake {
234
+ 0%,
235
+ to {
236
+ -webkit-transform: translateZ(0);
237
+ transform: translateZ(0)
238
+ }
239
+ 10%,
240
+ 30%,
241
+ 50%,
242
+ 70%,
243
+ 90% {
244
+ -webkit-transform: translate3d(-10px, 0, 0);
245
+ transform: translate3d(-10px, 0, 0)
246
+ }
247
+ 20%,
248
+ 40%,
249
+ 60%,
250
+ 80% {
251
+ -webkit-transform: translate3d(10px, 0, 0);
252
+ transform: translate3d(10px, 0, 0)
253
+ }
254
+ }
255
+
256
+ .shake {
257
+ -webkit-animation-name: shake;
258
+ animation-name: shake
259
+ }
260
+
261
+ @-webkit-keyframes headShake {
262
+ 0% {
263
+ -webkit-transform: translateX(0);
264
+ transform: translateX(0)
265
+ }
266
+ 6.5% {
267
+ -webkit-transform: translateX(-6px) rotateY(-9deg);
268
+ transform: translateX(-6px) rotateY(-9deg)
269
+ }
270
+ 18.5% {
271
+ -webkit-transform: translateX(5px) rotateY(7deg);
272
+ transform: translateX(5px) rotateY(7deg)
273
+ }
274
+ 31.5% {
275
+ -webkit-transform: translateX(-3px) rotateY(-5deg);
276
+ transform: translateX(-3px) rotateY(-5deg)
277
+ }
278
+ 43.5% {
279
+ -webkit-transform: translateX(2px) rotateY(3deg);
280
+ transform: translateX(2px) rotateY(3deg)
281
+ }
282
+ 50% {
283
+ -webkit-transform: translateX(0);
284
+ transform: translateX(0)
285
+ }
286
+ }
287
+
288
+ @keyframes headShake {
289
+ 0% {
290
+ -webkit-transform: translateX(0);
291
+ transform: translateX(0)
292
+ }
293
+ 6.5% {
294
+ -webkit-transform: translateX(-6px) rotateY(-9deg);
295
+ transform: translateX(-6px) rotateY(-9deg)
296
+ }
297
+ 18.5% {
298
+ -webkit-transform: translateX(5px) rotateY(7deg);
299
+ transform: translateX(5px) rotateY(7deg)
300
+ }
301
+ 31.5% {
302
+ -webkit-transform: translateX(-3px) rotateY(-5deg);
303
+ transform: translateX(-3px) rotateY(-5deg)
304
+ }
305
+ 43.5% {
306
+ -webkit-transform: translateX(2px) rotateY(3deg);
307
+ transform: translateX(2px) rotateY(3deg)
308
+ }
309
+ 50% {
310
+ -webkit-transform: translateX(0);
311
+ transform: translateX(0)
312
+ }
313
+ }
314
+
315
+ .headShake {
316
+ -webkit-animation-timing-function: ease-in-out;
317
+ animation-timing-function: ease-in-out;
318
+ -webkit-animation-name: headShake;
319
+ animation-name: headShake
320
+ }
321
+
322
+ @-webkit-keyframes swing {
323
+ 20% {
324
+ -webkit-transform: rotate(15deg);
325
+ transform: rotate(15deg)
326
+ }
327
+ 40% {
328
+ -webkit-transform: rotate(-10deg);
329
+ transform: rotate(-10deg)
330
+ }
331
+ 60% {
332
+ -webkit-transform: rotate(5deg);
333
+ transform: rotate(5deg)
334
+ }
335
+ 80% {
336
+ -webkit-transform: rotate(-5deg);
337
+ transform: rotate(-5deg)
338
+ }
339
+ to {
340
+ -webkit-transform: rotate(0deg);
341
+ transform: rotate(0deg)
342
+ }
343
+ }
344
+
345
+ @keyframes swing {
346
+ 20% {
347
+ -webkit-transform: rotate(15deg);
348
+ transform: rotate(15deg)
349
+ }
350
+ 40% {
351
+ -webkit-transform: rotate(-10deg);
352
+ transform: rotate(-10deg)
353
+ }
354
+ 60% {
355
+ -webkit-transform: rotate(5deg);
356
+ transform: rotate(5deg)
357
+ }
358
+ 80% {
359
+ -webkit-transform: rotate(-5deg);
360
+ transform: rotate(-5deg)
361
+ }
362
+ to {
363
+ -webkit-transform: rotate(0deg);
364
+ transform: rotate(0deg)
365
+ }
366
+ }
367
+
368
+ .swing {
369
+ -webkit-transform-origin: top center;
370
+ transform-origin: top center;
371
+ -webkit-animation-name: swing;
372
+ animation-name: swing
373
+ }
374
+
375
+ @-webkit-keyframes tada {
376
+ 0% {
377
+ -webkit-transform: scaleX(1);
378
+ transform: scaleX(1)
379
+ }
380
+ 10%,
381
+ 20% {
382
+ -webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
383
+ transform: scale3d(.9, .9, .9) rotate(-3deg)
384
+ }
385
+ 30%,
386
+ 50%,
387
+ 70%,
388
+ 90% {
389
+ -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
390
+ transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
391
+ }
392
+ 40%,
393
+ 60%,
394
+ 80% {
395
+ -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
396
+ transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
397
+ }
398
+ to {
399
+ -webkit-transform: scaleX(1);
400
+ transform: scaleX(1)
401
+ }
402
+ }
403
+
404
+ @keyframes tada {
405
+ 0% {
406
+ -webkit-transform: scaleX(1);
407
+ transform: scaleX(1)
408
+ }
409
+ 10%,
410
+ 20% {
411
+ -webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
412
+ transform: scale3d(.9, .9, .9) rotate(-3deg)
413
+ }
414
+ 30%,
415
+ 50%,
416
+ 70%,
417
+ 90% {
418
+ -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
419
+ transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
420
+ }
421
+ 40%,
422
+ 60%,
423
+ 80% {
424
+ -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
425
+ transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
426
+ }
427
+ to {
428
+ -webkit-transform: scaleX(1);
429
+ transform: scaleX(1)
430
+ }
431
+ }
432
+
433
+ .tada {
434
+ -webkit-animation-name: tada;
435
+ animation-name: tada
436
+ }
437
+
438
+ @-webkit-keyframes wobble {
439
+ 0% {
440
+ -webkit-transform: translateZ(0);
441
+ transform: translateZ(0)
442
+ }
443
+ 15% {
444
+ -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
445
+ transform: translate3d(-25%, 0, 0) rotate(-5deg)
446
+ }
447
+ 30% {
448
+ -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
449
+ transform: translate3d(20%, 0, 0) rotate(3deg)
450
+ }
451
+ 45% {
452
+ -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
453
+ transform: translate3d(-15%, 0, 0) rotate(-3deg)
454
+ }
455
+ 60% {
456
+ -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
457
+ transform: translate3d(10%, 0, 0) rotate(2deg)
458
+ }
459
+ 75% {
460
+ -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
461
+ transform: translate3d(-5%, 0, 0) rotate(-1deg)
462
+ }
463
+ to {
464
+ -webkit-transform: translateZ(0);
465
+ transform: translateZ(0)
466
+ }
467
+ }
468
+
469
+ @keyframes wobble {
470
+ 0% {
471
+ -webkit-transform: translateZ(0);
472
+ transform: translateZ(0)
473
+ }
474
+ 15% {
475
+ -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
476
+ transform: translate3d(-25%, 0, 0) rotate(-5deg)
477
+ }
478
+ 30% {
479
+ -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
480
+ transform: translate3d(20%, 0, 0) rotate(3deg)
481
+ }
482
+ 45% {
483
+ -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
484
+ transform: translate3d(-15%, 0, 0) rotate(-3deg)
485
+ }
486
+ 60% {
487
+ -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
488
+ transform: translate3d(10%, 0, 0) rotate(2deg)
489
+ }
490
+ 75% {
491
+ -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
492
+ transform: translate3d(-5%, 0, 0) rotate(-1deg)
493
+ }
494
+ to {
495
+ -webkit-transform: translateZ(0);
496
+ transform: translateZ(0)
497
+ }
498
+ }
499
+
500
+ .wobble {
501
+ -webkit-animation-name: wobble;
502
+ animation-name: wobble
503
+ }
504
+
505
+ @-webkit-keyframes jello {
506
+ 0%,
507
+ 11.1%,
508
+ to {
509
+ -webkit-transform: translateZ(0);
510
+ transform: translateZ(0)
511
+ }
512
+ 22.2% {
513
+ -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
514
+ transform: skewX(-12.5deg) skewY(-12.5deg)
515
+ }
516
+ 33.3% {
517
+ -webkit-transform: skewX(6.25deg) skewY(6.25deg);
518
+ transform: skewX(6.25deg) skewY(6.25deg)
519
+ }
520
+ 44.4% {
521
+ -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
522
+ transform: skewX(-3.125deg) skewY(-3.125deg)
523
+ }
524
+ 55.5% {
525
+ -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
526
+ transform: skewX(1.5625deg) skewY(1.5625deg)
527
+ }
528
+ 66.6% {
529
+ -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
530
+ transform: skewX(-.78125deg) skewY(-.78125deg)
531
+ }
532
+ 77.7% {
533
+ -webkit-transform: skewX(.390625deg) skewY(.390625deg);
534
+ transform: skewX(.390625deg) skewY(.390625deg)
535
+ }
536
+ 88.8% {
537
+ -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
538
+ transform: skewX(-.1953125deg) skewY(-.1953125deg)
539
+ }
540
+ }
541
+
542
+ @keyframes jello {
543
+ 0%,
544
+ 11.1%,
545
+ to {
546
+ -webkit-transform: translateZ(0);
547
+ transform: translateZ(0)
548
+ }
549
+ 22.2% {
550
+ -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
551
+ transform: skewX(-12.5deg) skewY(-12.5deg)
552
+ }
553
+ 33.3% {
554
+ -webkit-transform: skewX(6.25deg) skewY(6.25deg);
555
+ transform: skewX(6.25deg) skewY(6.25deg)
556
+ }
557
+ 44.4% {
558
+ -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
559
+ transform: skewX(-3.125deg) skewY(-3.125deg)
560
+ }
561
+ 55.5% {
562
+ -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
563
+ transform: skewX(1.5625deg) skewY(1.5625deg)
564
+ }
565
+ 66.6% {
566
+ -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
567
+ transform: skewX(-.78125deg) skewY(-.78125deg)
568
+ }
569
+ 77.7% {
570
+ -webkit-transform: skewX(.390625deg) skewY(.390625deg);
571
+ transform: skewX(.390625deg) skewY(.390625deg)
572
+ }
573
+ 88.8% {
574
+ -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
575
+ transform: skewX(-.1953125deg) skewY(-.1953125deg)
576
+ }
577
+ }
578
+
579
+ .jello {
580
+ -webkit-animation-name: jello;
581
+ animation-name: jello;
582
+ -webkit-transform-origin: center;
583
+ transform-origin: center
584
+ }
585
+
586
+ @-webkit-keyframes heartBeat {
587
+ 0% {
588
+ -webkit-transform: scale(1);
589
+ transform: scale(1)
590
+ }
591
+ 14% {
592
+ -webkit-transform: scale(1.3);
593
+ transform: scale(1.3)
594
+ }
595
+ 28% {
596
+ -webkit-transform: scale(1);
597
+ transform: scale(1)
598
+ }
599
+ 42% {
600
+ -webkit-transform: scale(1.3);
601
+ transform: scale(1.3)
602
+ }
603
+ 70% {
604
+ -webkit-transform: scale(1);
605
+ transform: scale(1)
606
+ }
607
+ }
608
+
609
+ @keyframes heartBeat {
610
+ 0% {
611
+ -webkit-transform: scale(1);
612
+ transform: scale(1)
613
+ }
614
+ 14% {
615
+ -webkit-transform: scale(1.3);
616
+ transform: scale(1.3)
617
+ }
618
+ 28% {
619
+ -webkit-transform: scale(1);
620
+ transform: scale(1)
621
+ }
622
+ 42% {
623
+ -webkit-transform: scale(1.3);
624
+ transform: scale(1.3)
625
+ }
626
+ 70% {
627
+ -webkit-transform: scale(1);
628
+ transform: scale(1)
629
+ }
630
+ }
631
+
632
+ .heartBeat {
633
+ -webkit-animation-name: heartBeat;
634
+ animation-name: heartBeat;
635
+ -webkit-animation-duration: 1.3s;
636
+ animation-duration: 1.3s;
637
+ -webkit-animation-timing-function: ease-in-out;
638
+ animation-timing-function: ease-in-out
639
+ }
640
+
641
+ @-webkit-keyframes bounceIn {
642
+ 0%,
643
+ 20%,
644
+ 40%,
645
+ 60%,
646
+ 80%,
647
+ to {
648
+ -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
649
+ animation-timing-function: cubic-bezier(.215, .61, .355, 1)
650
+ }
651
+ 0% {
652
+ opacity: 0;
653
+ -webkit-transform: scale3d(.3, .3, .3);
654
+ transform: scale3d(.3, .3, .3)
655
+ }
656
+ 20% {
657
+ -webkit-transform: scale3d(1.1, 1.1, 1.1);
658
+ transform: scale3d(1.1, 1.1, 1.1)
659
+ }
660
+ 40% {
661
+ -webkit-transform: scale3d(.9, .9, .9);
662
+ transform: scale3d(.9, .9, .9)
663
+ }
664
+ 60% {
665
+ opacity: 1;
666
+ -webkit-transform: scale3d(1.03, 1.03, 1.03);
667
+ transform: scale3d(1.03, 1.03, 1.03)
668
+ }
669
+ 80% {
670
+ -webkit-transform: scale3d(.97, .97, .97);
671
+ transform: scale3d(.97, .97, .97)
672
+ }
673
+ to {
674
+ opacity: 1;
675
+ -webkit-transform: scaleX(1);
676
+ transform: scaleX(1)
677
+ }
678
+ }
679
+
680
+ @keyframes bounceIn {
681
+ 0%,
682
+ 20%,
683
+ 40%,
684
+ 60%,
685
+ 80%,
686
+ to {
687
+ -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
688
+ animation-timing-function: cubic-bezier(.215, .61, .355, 1)
689
+ }
690
+ 0% {
691
+ opacity: 0;
692
+ -webkit-transform: scale3d(.3, .3, .3);
693
+ transform: scale3d(.3, .3, .3)
694
+ }
695
+ 20% {
696
+ -webkit-transform: scale3d(1.1, 1.1, 1.1);
697
+ transform: scale3d(1.1, 1.1, 1.1)
698
+ }
699
+ 40% {
700
+ -webkit-transform: scale3d(.9, .9, .9);
701
+ transform: scale3d(.9, .9, .9)
702
+ }
703
+ 60% {
704
+ opacity: 1;
705
+ -webkit-transform: scale3d(1.03, 1.03, 1.03);
706
+ transform: scale3d(1.03, 1.03, 1.03)
707
+ }
708
+ 80% {
709
+ -webkit-transform: scale3d(.97, .97, .97);
710
+ transform: scale3d(.97, .97, .97)
711
+ }
712
+ to {
713
+ opacity: 1;
714
+ -webkit-transform: scaleX(1);
715
+ transform: scaleX(1)
716
+ }
717
+ }
718
+
719
+ .bounceIn {
720
+ -webkit-animation-duration: .75s;
721
+ animation-duration: .75s;
722
+ -webkit-animation-name: bounceIn;
723
+ animation-name: bounceIn
724
+ }
725
+
726
+ @-webkit-keyframes bounceInDown {
727
+ 0%,
728
+ 60%,
729
+ 75%,
730
+ 90%,
731
+ to {
732
+ -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
733
+ animation-timing-function: cubic-bezier(.215, .61, .355, 1)
734
+ }
735
+ 0% {
736
+ opacity: 0;
737
+ -webkit-transform: translate3d(0, -3000px, 0);
738
+ transform: translate3d(0, -3000px, 0)
739
+ }
740
+ 60% {
741
+ opacity: 1;
742
+ -webkit-transform: translate3d(0, 25px, 0);
743
+ transform: translate3d(0, 25px, 0)
744
+ }
745
+ 75% {
746
+ -webkit-transform: translate3d(0, -10px, 0);
747
+ transform: translate3d(0, -10px, 0)
748
+ }
749
+ 90% {
750
+ -webkit-transform: translate3d(0, 5px, 0);
751
+ transform: translate3d(0, 5px, 0)
752
+ }
753
+ to {
754
+ -webkit-transform: translateZ(0);
755
+ transform: translateZ(0)
756
+ }
757
+ }
758
+
759
+ @keyframes bounceInDown {
760
+ 0%,
761
+ 60%,
762
+ 75%,
763
+ 90%,
764
+ to {
765
+ -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
766
+ animation-timing-function: cubic-bezier(.215, .61, .355, 1)
767
+ }
768
+ 0% {
769
+ opacity: 0;
770
+ -webkit-transform: translate3d(0, -3000px, 0);
771
+ transform: translate3d(0, -3000px, 0)
772
+ }
773
+ 60% {
774
+ opacity: 1;
775
+ -webkit-transform: translate3d(0, 25px, 0);
776
+ transform: translate3d(0, 25px, 0)
777
+ }
778
+ 75% {
779
+ -webkit-transform: translate3d(0, -10px, 0);
780
+ transform: translate3d(0, -10px, 0)
781
+ }
782
+ 90% {
783
+ -webkit-transform: translate3d(0, 5px, 0);
784
+ transform: translate3d(0, 5px, 0)
785
+ }
786
+ to {
787
+ -webkit-transform: translateZ(0);
788
+ transform: translateZ(0)
789
+ }
790
+ }
791
+
792
+ .bounceInDown {
793
+ -webkit-animation-name: bounceInDown;
794
+ animation-name: bounceInDown
795
+ }
796
+
797
+ @-webkit-keyframes bounceInLeft {
798
+ 0%,
799
+ 60%,
800
+ 75%,
801
+ 90%,
802
+ to {
803
+ -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
804
+ animation-timing-function: cubic-bezier(.215, .61, .355, 1)
805
+ }
806
+ 0% {
807
+ opacity: 0;
808
+ -webkit-transform: translate3d(-3000px, 0, 0);
809
+ transform: translate3d(-3000px, 0, 0)
810
+ }
811
+ 60% {
812
+ opacity: 1;
813
+ -webkit-transform: translate3d(25px, 0, 0);
814
+ transform: translate3d(25px, 0, 0)
815
+ }
816
+ 75% {
817
+ -webkit-transform: translate3d(-10px, 0, 0);
818
+ transform: translate3d(-10px, 0, 0)
819
+ }
820
+ 90% {
821
+ -webkit-transform: translate3d(5px, 0, 0);
822
+ transform: translate3d(5px, 0, 0)
823
+ }
824
+ to {
825
+ -webkit-transform: translateZ(0);
826
+ transform: translateZ(0)
827
+ }
828
+ }
829
+
830
+ @keyframes bounceInLeft {
831
+ 0%,
832
+ 60%,
833
+ 75%,
834
+ 90%,
835
+ to {
836
+ -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
837
+ animation-timing-function: cubic-bezier(.215, .61, .355, 1)
838
+ }
839
+ 0% {
840
+ opacity: 0;
841
+ -webkit-transform: translate3d(-3000px, 0, 0);
842
+ transform: translate3d(-3000px, 0, 0)
843
+ }
844
+ 60% {
845
+ opacity: 1;
846
+ -webkit-transform: translate3d(25px, 0, 0);
847
+ transform: translate3d(25px, 0, 0)
848
+ }
849
+ 75% {
850
+ -webkit-transform: translate3d(-10px, 0, 0);
851
+ transform: translate3d(-10px, 0, 0)
852
+ }
853
+ 90% {
854
+ -webkit-transform: translate3d(5px, 0, 0);
855
+ transform: translate3d(5px, 0, 0)
856
+ }
857
+ to {
858
+ -webkit-transform: translateZ(0);
859
+ transform: translateZ(0)
860
+ }
861
+ }
862
+
863
+ .bounceInLeft {
864
+ -webkit-animation-name: bounceInLeft;
865
+ animation-name: bounceInLeft
866
+ }
867
+
868
+ @-webkit-keyframes bounceInRight {
869
+ 0%,
870
+ 60%,
871
+ 75%,
872
+ 90%,
873
+ to {
874
+ -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
875
+ animation-timing-function: cubic-bezier(.215, .61, .355, 1)
876
+ }
877
+ 0% {
878
+ opacity: 0;
879
+ -webkit-transform: translate3d(3000px, 0, 0);
880
+ transform: translate3d(3000px, 0, 0)
881
+ }
882
+ 60% {
883
+ opacity: 1;
884
+ -webkit-transform: translate3d(-25px, 0, 0);
885
+ transform: translate3d(-25px, 0, 0)
886
+ }
887
+ 75% {
888
+ -webkit-transform: translate3d(10px, 0, 0);
889
+ transform: translate3d(10px, 0, 0)
890
+ }
891
+ 90% {
892
+ -webkit-transform: translate3d(-5px, 0, 0);
893
+ transform: translate3d(-5px, 0, 0)
894
+ }
895
+ to {
896
+ -webkit-transform: translateZ(0);
897
+ transform: translateZ(0)
898
+ }
899
+ }
900
+
901
+ @keyframes bounceInRight {
902
+ 0%,
903
+ 60%,
904
+ 75%,
905
+ 90%,
906
+ to {
907
+ -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
908
+ animation-timing-function: cubic-bezier(.215, .61, .355, 1)
909
+ }
910
+ 0% {
911
+ opacity: 0;
912
+ -webkit-transform: translate3d(3000px, 0, 0);
913
+ transform: translate3d(3000px, 0, 0)
914
+ }
915
+ 60% {
916
+ opacity: 1;
917
+ -webkit-transform: translate3d(-25px, 0, 0);
918
+ transform: translate3d(-25px, 0, 0)
919
+ }
920
+ 75% {
921
+ -webkit-transform: translate3d(10px, 0, 0);
922
+ transform: translate3d(10px, 0, 0)
923
+ }
924
+ 90% {
925
+ -webkit-transform: translate3d(-5px, 0, 0);
926
+ transform: translate3d(-5px, 0, 0)
927
+ }
928
+ to {
929
+ -webkit-transform: translateZ(0);
930
+ transform: translateZ(0)
931
+ }
932
+ }
933
+
934
+ .bounceInRight {
935
+ -webkit-animation-name: bounceInRight;
936
+ animation-name: bounceInRight
937
+ }
938
+
939
+ @-webkit-keyframes bounceInUp {
940
+ 0%,
941
+ 60%,
942
+ 75%,
943
+ 90%,
944
+ to {
945
+ -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
946
+ animation-timing-function: cubic-bezier(.215, .61, .355, 1)
947
+ }
948
+ 0% {
949
+ opacity: 0;
950
+ -webkit-transform: translate3d(0, 3000px, 0);
951
+ transform: translate3d(0, 3000px, 0)
952
+ }
953
+ 60% {
954
+ opacity: 1;
955
+ -webkit-transform: translate3d(0, -20px, 0);
956
+ transform: translate3d(0, -20px, 0)
957
+ }
958
+ 75% {
959
+ -webkit-transform: translate3d(0, 10px, 0);
960
+ transform: translate3d(0, 10px, 0)
961
+ }
962
+ 90% {
963
+ -webkit-transform: translate3d(0, -5px, 0);
964
+ transform: translate3d(0, -5px, 0)
965
+ }
966
+ to {
967
+ -webkit-transform: translateZ(0);
968
+ transform: translateZ(0)
969
+ }
970
+ }
971
+
972
+ @keyframes bounceInUp {
973
+ 0%,
974
+ 60%,
975
+ 75%,
976
+ 90%,
977
+ to {
978
+ -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
979
+ animation-timing-function: cubic-bezier(.215, .61, .355, 1)
980
+ }
981
+ 0% {
982
+ opacity: 0;
983
+ -webkit-transform: translate3d(0, 3000px, 0);
984
+ transform: translate3d(0, 3000px, 0)
985
+ }
986
+ 60% {
987
+ opacity: 1;
988
+ -webkit-transform: translate3d(0, -20px, 0);
989
+ transform: translate3d(0, -20px, 0)
990
+ }
991
+ 75% {
992
+ -webkit-transform: translate3d(0, 10px, 0);
993
+ transform: translate3d(0, 10px, 0)
994
+ }
995
+ 90% {
996
+ -webkit-transform: translate3d(0, -5px, 0);
997
+ transform: translate3d(0, -5px, 0)
998
+ }
999
+ to {
1000
+ -webkit-transform: translateZ(0);
1001
+ transform: translateZ(0)
1002
+ }
1003
+ }
1004
+
1005
+ .bounceInUp {
1006
+ -webkit-animation-name: bounceInUp;
1007
+ animation-name: bounceInUp
1008
+ }
1009
+
1010
+ @-webkit-keyframes bounceOut {
1011
+ 20% {
1012
+ -webkit-transform: scale3d(.9, .9, .9);
1013
+ transform: scale3d(.9, .9, .9)
1014
+ }
1015
+ 50%,
1016
+ 55% {
1017
+ opacity: 1;
1018
+ -webkit-transform: scale3d(1.1, 1.1, 1.1);
1019
+ transform: scale3d(1.1, 1.1, 1.1)
1020
+ }
1021
+ to {
1022
+ opacity: 0;
1023
+ -webkit-transform: scale3d(.3, .3, .3);
1024
+ transform: scale3d(.3, .3, .3)
1025
+ }
1026
+ }
1027
+
1028
+ @keyframes bounceOut {
1029
+ 20% {
1030
+ -webkit-transform: scale3d(.9, .9, .9);
1031
+ transform: scale3d(.9, .9, .9)
1032
+ }
1033
+ 50%,
1034
+ 55% {
1035
+ opacity: 1;
1036
+ -webkit-transform: scale3d(1.1, 1.1, 1.1);
1037
+ transform: scale3d(1.1, 1.1, 1.1)
1038
+ }
1039
+ to {
1040
+ opacity: 0;
1041
+ -webkit-transform: scale3d(.3, .3, .3);
1042
+ transform: scale3d(.3, .3, .3)
1043
+ }
1044
+ }
1045
+
1046
+ .bounceOut {
1047
+ -webkit-animation-duration: .75s;
1048
+ animation-duration: .75s;
1049
+ -webkit-animation-name: bounceOut;
1050
+ animation-name: bounceOut
1051
+ }
1052
+
1053
+ @-webkit-keyframes bounceOutDown {
1054
+ 20% {
1055
+ -webkit-transform: translate3d(0, 10px, 0);
1056
+ transform: translate3d(0, 10px, 0)
1057
+ }
1058
+ 40%,
1059
+ 45% {
1060
+ opacity: 1;
1061
+ -webkit-transform: translate3d(0, -20px, 0);
1062
+ transform: translate3d(0, -20px, 0)
1063
+ }
1064
+ to {
1065
+ opacity: 0;
1066
+ -webkit-transform: translate3d(0, 2000px, 0);
1067
+ transform: translate3d(0, 2000px, 0)
1068
+ }
1069
+ }
1070
+
1071
+ @keyframes bounceOutDown {
1072
+ 20% {
1073
+ -webkit-transform: translate3d(0, 10px, 0);
1074
+ transform: translate3d(0, 10px, 0)
1075
+ }
1076
+ 40%,
1077
+ 45% {
1078
+ opacity: 1;
1079
+ -webkit-transform: translate3d(0, -20px, 0);
1080
+ transform: translate3d(0, -20px, 0)
1081
+ }
1082
+ to {
1083
+ opacity: 0;
1084
+ -webkit-transform: translate3d(0, 2000px, 0);
1085
+ transform: translate3d(0, 2000px, 0)
1086
+ }
1087
+ }
1088
+
1089
+ .bounceOutDown {
1090
+ -webkit-animation-name: bounceOutDown;
1091
+ animation-name: bounceOutDown
1092
+ }
1093
+
1094
+ @-webkit-keyframes bounceOutLeft {
1095
+ 20% {
1096
+ opacity: 1;
1097
+ -webkit-transform: translate3d(20px, 0, 0);
1098
+ transform: translate3d(20px, 0, 0)
1099
+ }
1100
+ to {
1101
+ opacity: 0;
1102
+ -webkit-transform: translate3d(-2000px, 0, 0);
1103
+ transform: translate3d(-2000px, 0, 0)
1104
+ }
1105
+ }
1106
+
1107
+ @keyframes bounceOutLeft {
1108
+ 20% {
1109
+ opacity: 1;
1110
+ -webkit-transform: translate3d(20px, 0, 0);
1111
+ transform: translate3d(20px, 0, 0)
1112
+ }
1113
+ to {
1114
+ opacity: 0;
1115
+ -webkit-transform: translate3d(-2000px, 0, 0);
1116
+ transform: translate3d(-2000px, 0, 0)
1117
+ }
1118
+ }
1119
+
1120
+ .bounceOutLeft {
1121
+ -webkit-animation-name: bounceOutLeft;
1122
+ animation-name: bounceOutLeft
1123
+ }
1124
+
1125
+ @-webkit-keyframes bounceOutRight {
1126
+ 20% {
1127
+ opacity: 1;
1128
+ -webkit-transform: translate3d(-20px, 0, 0);
1129
+ transform: translate3d(-20px, 0, 0)
1130
+ }
1131
+ to {
1132
+ opacity: 0;
1133
+ -webkit-transform: translate3d(2000px, 0, 0);
1134
+ transform: translate3d(2000px, 0, 0)
1135
+ }
1136
+ }
1137
+
1138
+ @keyframes bounceOutRight {
1139
+ 20% {
1140
+ opacity: 1;
1141
+ -webkit-transform: translate3d(-20px, 0, 0);
1142
+ transform: translate3d(-20px, 0, 0)
1143
+ }
1144
+ to {
1145
+ opacity: 0;
1146
+ -webkit-transform: translate3d(2000px, 0, 0);
1147
+ transform: translate3d(2000px, 0, 0)
1148
+ }
1149
+ }
1150
+
1151
+ .bounceOutRight {
1152
+ -webkit-animation-name: bounceOutRight;
1153
+ animation-name: bounceOutRight
1154
+ }
1155
+
1156
+ @-webkit-keyframes bounceOutUp {
1157
+ 20% {
1158
+ -webkit-transform: translate3d(0, -10px, 0);
1159
+ transform: translate3d(0, -10px, 0)
1160
+ }
1161
+ 40%,
1162
+ 45% {
1163
+ opacity: 1;
1164
+ -webkit-transform: translate3d(0, 20px, 0);
1165
+ transform: translate3d(0, 20px, 0)
1166
+ }
1167
+ to {
1168
+ opacity: 0;
1169
+ -webkit-transform: translate3d(0, -2000px, 0);
1170
+ transform: translate3d(0, -2000px, 0)
1171
+ }
1172
+ }
1173
+
1174
+ @keyframes bounceOutUp {
1175
+ 20% {
1176
+ -webkit-transform: translate3d(0, -10px, 0);
1177
+ transform: translate3d(0, -10px, 0)
1178
+ }
1179
+ 40%,
1180
+ 45% {
1181
+ opacity: 1;
1182
+ -webkit-transform: translate3d(0, 20px, 0);
1183
+ transform: translate3d(0, 20px, 0)
1184
+ }
1185
+ to {
1186
+ opacity: 0;
1187
+ -webkit-transform: translate3d(0, -2000px, 0);
1188
+ transform: translate3d(0, -2000px, 0)
1189
+ }
1190
+ }
1191
+
1192
+ .bounceOutUp {
1193
+ -webkit-animation-name: bounceOutUp;
1194
+ animation-name: bounceOutUp
1195
+ }
1196
+
1197
+ @-webkit-keyframes fadeIn {
1198
+ 0% {
1199
+ opacity: 0
1200
+ }
1201
+ to {
1202
+ opacity: 1
1203
+ }
1204
+ }
1205
+
1206
+ @keyframes fadeIn {
1207
+ 0% {
1208
+ opacity: 0
1209
+ }
1210
+ to {
1211
+ opacity: 1
1212
+ }
1213
+ }
1214
+
1215
+ .fadeIn {
1216
+ -webkit-animation-name: fadeIn;
1217
+ animation-name: fadeIn
1218
+ }
1219
+
1220
+ @-webkit-keyframes fadeInDown {
1221
+ 0% {
1222
+ opacity: 0;
1223
+ -webkit-transform: translate3d(0, -100%, 0);
1224
+ transform: translate3d(0, -100%, 0)
1225
+ }
1226
+ to {
1227
+ opacity: 1;
1228
+ -webkit-transform: translateZ(0);
1229
+ transform: translateZ(0)
1230
+ }
1231
+ }
1232
+
1233
+ @keyframes fadeInDown {
1234
+ 0% {
1235
+ opacity: 0;
1236
+ -webkit-transform: translate3d(0, -100%, 0);
1237
+ transform: translate3d(0, -100%, 0)
1238
+ }
1239
+ to {
1240
+ opacity: 1;
1241
+ -webkit-transform: translateZ(0);
1242
+ transform: translateZ(0)
1243
+ }
1244
+ }
1245
+
1246
+ .fadeInDown {
1247
+ -webkit-animation-name: fadeInDown;
1248
+ animation-name: fadeInDown
1249
+ }
1250
+
1251
+ @-webkit-keyframes fadeInDownBig {
1252
+ 0% {
1253
+ opacity: 0;
1254
+ -webkit-transform: translate3d(0, -2000px, 0);
1255
+ transform: translate3d(0, -2000px, 0)
1256
+ }
1257
+ to {
1258
+ opacity: 1;
1259
+ -webkit-transform: translateZ(0);
1260
+ transform: translateZ(0)
1261
+ }
1262
+ }
1263
+
1264
+ @keyframes fadeInDownBig {
1265
+ 0% {
1266
+ opacity: 0;
1267
+ -webkit-transform: translate3d(0, -2000px, 0);
1268
+ transform: translate3d(0, -2000px, 0)
1269
+ }
1270
+ to {
1271
+ opacity: 1;
1272
+ -webkit-transform: translateZ(0);
1273
+ transform: translateZ(0)
1274
+ }
1275
+ }
1276
+
1277
+ .fadeInDownBig {
1278
+ -webkit-animation-name: fadeInDownBig;
1279
+ animation-name: fadeInDownBig
1280
+ }
1281
+
1282
+ @-webkit-keyframes fadeInLeft {
1283
+ 0% {
1284
+ opacity: 0;
1285
+ -webkit-transform: translate3d(-100%, 0, 0);
1286
+ transform: translate3d(-100%, 0, 0)
1287
+ }
1288
+ to {
1289
+ opacity: 1;
1290
+ -webkit-transform: translateZ(0);
1291
+ transform: translateZ(0)
1292
+ }
1293
+ }
1294
+
1295
+ @keyframes fadeInLeft {
1296
+ 0% {
1297
+ opacity: 0;
1298
+ -webkit-transform: translate3d(-100%, 0, 0);
1299
+ transform: translate3d(-100%, 0, 0)
1300
+ }
1301
+ to {
1302
+ opacity: 1;
1303
+ -webkit-transform: translateZ(0);
1304
+ transform: translateZ(0)
1305
+ }
1306
+ }
1307
+
1308
+ .fadeInLeft {
1309
+ -webkit-animation-name: fadeInLeft;
1310
+ animation-name: fadeInLeft
1311
+ }
1312
+
1313
+ @-webkit-keyframes fadeInLeftBig {
1314
+ 0% {
1315
+ opacity: 0;
1316
+ -webkit-transform: translate3d(-2000px, 0, 0);
1317
+ transform: translate3d(-2000px, 0, 0)
1318
+ }
1319
+ to {
1320
+ opacity: 1;
1321
+ -webkit-transform: translateZ(0);
1322
+ transform: translateZ(0)
1323
+ }
1324
+ }
1325
+
1326
+ @keyframes fadeInLeftBig {
1327
+ 0% {
1328
+ opacity: 0;
1329
+ -webkit-transform: translate3d(-2000px, 0, 0);
1330
+ transform: translate3d(-2000px, 0, 0)
1331
+ }
1332
+ to {
1333
+ opacity: 1;
1334
+ -webkit-transform: translateZ(0);
1335
+ transform: translateZ(0)
1336
+ }
1337
+ }
1338
+
1339
+ .fadeInLeftBig {
1340
+ -webkit-animation-name: fadeInLeftBig;
1341
+ animation-name: fadeInLeftBig
1342
+ }
1343
+
1344
+ @-webkit-keyframes fadeInRight {
1345
+ 0% {
1346
+ opacity: 0;
1347
+ -webkit-transform: translate3d(100%, 0, 0);
1348
+ transform: translate3d(100%, 0, 0)
1349
+ }
1350
+ to {
1351
+ opacity: 1;
1352
+ -webkit-transform: translateZ(0);
1353
+ transform: translateZ(0)
1354
+ }
1355
+ }
1356
+
1357
+ @keyframes fadeInRight {
1358
+ 0% {
1359
+ opacity: 0;
1360
+ -webkit-transform: translate3d(100%, 0, 0);
1361
+ transform: translate3d(100%, 0, 0)
1362
+ }
1363
+ to {
1364
+ opacity: 1;
1365
+ -webkit-transform: translateZ(0);
1366
+ transform: translateZ(0)
1367
+ }
1368
+ }
1369
+
1370
+ .fadeInRight {
1371
+ -webkit-animation-name: fadeInRight;
1372
+ animation-name: fadeInRight
1373
+ }
1374
+
1375
+ @-webkit-keyframes fadeInRightBig {
1376
+ 0% {
1377
+ opacity: 0;
1378
+ -webkit-transform: translate3d(2000px, 0, 0);
1379
+ transform: translate3d(2000px, 0, 0)
1380
+ }
1381
+ to {
1382
+ opacity: 1;
1383
+ -webkit-transform: translateZ(0);
1384
+ transform: translateZ(0)
1385
+ }
1386
+ }
1387
+
1388
+ @keyframes fadeInRightBig {
1389
+ 0% {
1390
+ opacity: 0;
1391
+ -webkit-transform: translate3d(2000px, 0, 0);
1392
+ transform: translate3d(2000px, 0, 0)
1393
+ }
1394
+ to {
1395
+ opacity: 1;
1396
+ -webkit-transform: translateZ(0);
1397
+ transform: translateZ(0)
1398
+ }
1399
+ }
1400
+
1401
+ .fadeInRightBig {
1402
+ -webkit-animation-name: fadeInRightBig;
1403
+ animation-name: fadeInRightBig
1404
+ }
1405
+
1406
+ @-webkit-keyframes fadeInUp {
1407
+ 0% {
1408
+ opacity: 0;
1409
+ -webkit-transform: translate3d(0, 100%, 0);
1410
+ transform: translate3d(0, 100%, 0)
1411
+ }
1412
+ to {
1413
+ opacity: 1;
1414
+ -webkit-transform: translateZ(0);
1415
+ transform: translateZ(0)
1416
+ }
1417
+ }
1418
+
1419
+ @keyframes fadeInUp {
1420
+ 0% {
1421
+ opacity: 0;
1422
+ -webkit-transform: translate3d(0, 100%, 0);
1423
+ transform: translate3d(0, 100%, 0)
1424
+ }
1425
+ to {
1426
+ opacity: 1;
1427
+ -webkit-transform: translateZ(0);
1428
+ transform: translateZ(0)
1429
+ }
1430
+ }
1431
+
1432
+ .fadeInUp {
1433
+ -webkit-animation-name: fadeInUp;
1434
+ animation-name: fadeInUp
1435
+ }
1436
+
1437
+ @-webkit-keyframes fadeInUpBig {
1438
+ 0% {
1439
+ opacity: 0;
1440
+ -webkit-transform: translate3d(0, 2000px, 0);
1441
+ transform: translate3d(0, 2000px, 0)
1442
+ }
1443
+ to {
1444
+ opacity: 1;
1445
+ -webkit-transform: translateZ(0);
1446
+ transform: translateZ(0)
1447
+ }
1448
+ }
1449
+
1450
+ @keyframes fadeInUpBig {
1451
+ 0% {
1452
+ opacity: 0;
1453
+ -webkit-transform: translate3d(0, 2000px, 0);
1454
+ transform: translate3d(0, 2000px, 0)
1455
+ }
1456
+ to {
1457
+ opacity: 1;
1458
+ -webkit-transform: translateZ(0);
1459
+ transform: translateZ(0)
1460
+ }
1461
+ }
1462
+
1463
+ .fadeInUpBig {
1464
+ -webkit-animation-name: fadeInUpBig;
1465
+ animation-name: fadeInUpBig
1466
+ }
1467
+
1468
+ @-webkit-keyframes fadeOut {
1469
+ 0% {
1470
+ opacity: 1
1471
+ }
1472
+ to {
1473
+ opacity: 0
1474
+ }
1475
+ }
1476
+
1477
+ @keyframes fadeOut {
1478
+ 0% {
1479
+ opacity: 1
1480
+ }
1481
+ to {
1482
+ opacity: 0
1483
+ }
1484
+ }
1485
+
1486
+ .fadeOut {
1487
+ -webkit-animation-name: fadeOut;
1488
+ animation-name: fadeOut
1489
+ }
1490
+
1491
+ @-webkit-keyframes fadeOutDown {
1492
+ 0% {
1493
+ opacity: 1
1494
+ }
1495
+ to {
1496
+ opacity: 0;
1497
+ -webkit-transform: translate3d(0, 100%, 0);
1498
+ transform: translate3d(0, 100%, 0)
1499
+ }
1500
+ }
1501
+
1502
+ @keyframes fadeOutDown {
1503
+ 0% {
1504
+ opacity: 1
1505
+ }
1506
+ to {
1507
+ opacity: 0;
1508
+ -webkit-transform: translate3d(0, 100%, 0);
1509
+ transform: translate3d(0, 100%, 0)
1510
+ }
1511
+ }
1512
+
1513
+ .fadeOutDown {
1514
+ -webkit-animation-name: fadeOutDown;
1515
+ animation-name: fadeOutDown
1516
+ }
1517
+
1518
+ @-webkit-keyframes fadeOutDownBig {
1519
+ 0% {
1520
+ opacity: 1
1521
+ }
1522
+ to {
1523
+ opacity: 0;
1524
+ -webkit-transform: translate3d(0, 2000px, 0);
1525
+ transform: translate3d(0, 2000px, 0)
1526
+ }
1527
+ }
1528
+
1529
+ @keyframes fadeOutDownBig {
1530
+ 0% {
1531
+ opacity: 1
1532
+ }
1533
+ to {
1534
+ opacity: 0;
1535
+ -webkit-transform: translate3d(0, 2000px, 0);
1536
+ transform: translate3d(0, 2000px, 0)
1537
+ }
1538
+ }
1539
+
1540
+ .fadeOutDownBig {
1541
+ -webkit-animation-name: fadeOutDownBig;
1542
+ animation-name: fadeOutDownBig
1543
+ }
1544
+
1545
+ @-webkit-keyframes fadeOutLeft {
1546
+ 0% {
1547
+ opacity: 1
1548
+ }
1549
+ to {
1550
+ opacity: 0;
1551
+ -webkit-transform: translate3d(-100%, 0, 0);
1552
+ transform: translate3d(-100%, 0, 0)
1553
+ }
1554
+ }
1555
+
1556
+ @keyframes fadeOutLeft {
1557
+ 0% {
1558
+ opacity: 1
1559
+ }
1560
+ to {
1561
+ opacity: 0;
1562
+ -webkit-transform: translate3d(-100%, 0, 0);
1563
+ transform: translate3d(-100%, 0, 0)
1564
+ }
1565
+ }
1566
+
1567
+ .fadeOutLeft {
1568
+ -webkit-animation-name: fadeOutLeft;
1569
+ animation-name: fadeOutLeft
1570
+ }
1571
+
1572
+ @-webkit-keyframes fadeOutLeftBig {
1573
+ 0% {
1574
+ opacity: 1
1575
+ }
1576
+ to {
1577
+ opacity: 0;
1578
+ -webkit-transform: translate3d(-2000px, 0, 0);
1579
+ transform: translate3d(-2000px, 0, 0)
1580
+ }
1581
+ }
1582
+
1583
+ @keyframes fadeOutLeftBig {
1584
+ 0% {
1585
+ opacity: 1
1586
+ }
1587
+ to {
1588
+ opacity: 0;
1589
+ -webkit-transform: translate3d(-2000px, 0, 0);
1590
+ transform: translate3d(-2000px, 0, 0)
1591
+ }
1592
+ }
1593
+
1594
+ .fadeOutLeftBig {
1595
+ -webkit-animation-name: fadeOutLeftBig;
1596
+ animation-name: fadeOutLeftBig
1597
+ }
1598
+
1599
+ @-webkit-keyframes fadeOutRight {
1600
+ 0% {
1601
+ opacity: 1
1602
+ }
1603
+ to {
1604
+ opacity: 0;
1605
+ -webkit-transform: translate3d(100%, 0, 0);
1606
+ transform: translate3d(100%, 0, 0)
1607
+ }
1608
+ }
1609
+
1610
+ @keyframes fadeOutRight {
1611
+ 0% {
1612
+ opacity: 1
1613
+ }
1614
+ to {
1615
+ opacity: 0;
1616
+ -webkit-transform: translate3d(100%, 0, 0);
1617
+ transform: translate3d(100%, 0, 0)
1618
+ }
1619
+ }
1620
+
1621
+ .fadeOutRight {
1622
+ -webkit-animation-name: fadeOutRight;
1623
+ animation-name: fadeOutRight
1624
+ }
1625
+
1626
+ @-webkit-keyframes fadeOutRightBig {
1627
+ 0% {
1628
+ opacity: 1
1629
+ }
1630
+ to {
1631
+ opacity: 0;
1632
+ -webkit-transform: translate3d(2000px, 0, 0);
1633
+ transform: translate3d(2000px, 0, 0)
1634
+ }
1635
+ }
1636
+
1637
+ @keyframes fadeOutRightBig {
1638
+ 0% {
1639
+ opacity: 1
1640
+ }
1641
+ to {
1642
+ opacity: 0;
1643
+ -webkit-transform: translate3d(2000px, 0, 0);
1644
+ transform: translate3d(2000px, 0, 0)
1645
+ }
1646
+ }
1647
+
1648
+ .fadeOutRightBig {
1649
+ -webkit-animation-name: fadeOutRightBig;
1650
+ animation-name: fadeOutRightBig
1651
+ }
1652
+
1653
+ @-webkit-keyframes fadeOutUp {
1654
+ 0% {
1655
+ opacity: 1
1656
+ }
1657
+ to {
1658
+ opacity: 0;
1659
+ -webkit-transform: translate3d(0, -100%, 0);
1660
+ transform: translate3d(0, -100%, 0)
1661
+ }
1662
+ }
1663
+
1664
+ @keyframes fadeOutUp {
1665
+ 0% {
1666
+ opacity: 1
1667
+ }
1668
+ to {
1669
+ opacity: 0;
1670
+ -webkit-transform: translate3d(0, -100%, 0);
1671
+ transform: translate3d(0, -100%, 0)
1672
+ }
1673
+ }
1674
+
1675
+ .fadeOutUp {
1676
+ -webkit-animation-name: fadeOutUp;
1677
+ animation-name: fadeOutUp
1678
+ }
1679
+
1680
+ @-webkit-keyframes fadeOutUpBig {
1681
+ 0% {
1682
+ opacity: 1
1683
+ }
1684
+ to {
1685
+ opacity: 0;
1686
+ -webkit-transform: translate3d(0, -2000px, 0);
1687
+ transform: translate3d(0, -2000px, 0)
1688
+ }
1689
+ }
1690
+
1691
+ @keyframes fadeOutUpBig {
1692
+ 0% {
1693
+ opacity: 1
1694
+ }
1695
+ to {
1696
+ opacity: 0;
1697
+ -webkit-transform: translate3d(0, -2000px, 0);
1698
+ transform: translate3d(0, -2000px, 0)
1699
+ }
1700
+ }
1701
+
1702
+ .fadeOutUpBig {
1703
+ -webkit-animation-name: fadeOutUpBig;
1704
+ animation-name: fadeOutUpBig
1705
+ }
1706
+
1707
+ @-webkit-keyframes flip {
1708
+ 0% {
1709
+ -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
1710
+ transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
1711
+ -webkit-animation-timing-function: ease-out;
1712
+ animation-timing-function: ease-out
1713
+ }
1714
+ 40% {
1715
+ -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
1716
+ transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
1717
+ -webkit-animation-timing-function: ease-out;
1718
+ animation-timing-function: ease-out
1719
+ }
1720
+ 50% {
1721
+ -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
1722
+ transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
1723
+ -webkit-animation-timing-function: ease-in;
1724
+ animation-timing-function: ease-in
1725
+ }
1726
+ 80% {
1727
+ -webkit-transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg);
1728
+ transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg);
1729
+ -webkit-animation-timing-function: ease-in;
1730
+ animation-timing-function: ease-in
1731
+ }
1732
+ to {
1733
+ -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
1734
+ transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
1735
+ -webkit-animation-timing-function: ease-in;
1736
+ animation-timing-function: ease-in
1737
+ }
1738
+ }
1739
+
1740
+ @keyframes flip {
1741
+ 0% {
1742
+ -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
1743
+ transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
1744
+ -webkit-animation-timing-function: ease-out;
1745
+ animation-timing-function: ease-out
1746
+ }
1747
+ 40% {
1748
+ -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
1749
+ transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
1750
+ -webkit-animation-timing-function: ease-out;
1751
+ animation-timing-function: ease-out
1752
+ }
1753
+ 50% {
1754
+ -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
1755
+ transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
1756
+ -webkit-animation-timing-function: ease-in;
1757
+ animation-timing-function: ease-in
1758
+ }
1759
+ 80% {
1760
+ -webkit-transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg);
1761
+ transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg);
1762
+ -webkit-animation-timing-function: ease-in;
1763
+ animation-timing-function: ease-in
1764
+ }
1765
+ to {
1766
+ -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
1767
+ transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
1768
+ -webkit-animation-timing-function: ease-in;
1769
+ animation-timing-function: ease-in
1770
+ }
1771
+ }
1772
+
1773
+ .animated.flip {
1774
+ -webkit-backface-visibility: visible;
1775
+ backface-visibility: visible;
1776
+ -webkit-animation-name: flip;
1777
+ animation-name: flip
1778
+ }
1779
+
1780
+ @-webkit-keyframes flipInX {
1781
+ 0% {
1782
+ -webkit-transform: perspective(400px) rotateX(90deg);
1783
+ transform: perspective(400px) rotateX(90deg);
1784
+ -webkit-animation-timing-function: ease-in;
1785
+ animation-timing-function: ease-in;
1786
+ opacity: 0
1787
+ }
1788
+ 40% {
1789
+ -webkit-transform: perspective(400px) rotateX(-20deg);
1790
+ transform: perspective(400px) rotateX(-20deg);
1791
+ -webkit-animation-timing-function: ease-in;
1792
+ animation-timing-function: ease-in
1793
+ }
1794
+ 60% {
1795
+ -webkit-transform: perspective(400px) rotateX(10deg);
1796
+ transform: perspective(400px) rotateX(10deg);
1797
+ opacity: 1
1798
+ }
1799
+ 80% {
1800
+ -webkit-transform: perspective(400px) rotateX(-5deg);
1801
+ transform: perspective(400px) rotateX(-5deg)
1802
+ }
1803
+ to {
1804
+ -webkit-transform: perspective(400px);
1805
+ transform: perspective(400px)
1806
+ }
1807
+ }
1808
+
1809
+ @keyframes flipInX {
1810
+ 0% {
1811
+ -webkit-transform: perspective(400px) rotateX(90deg);
1812
+ transform: perspective(400px) rotateX(90deg);
1813
+ -webkit-animation-timing-function: ease-in;
1814
+ animation-timing-function: ease-in;
1815
+ opacity: 0
1816
+ }
1817
+ 40% {
1818
+ -webkit-transform: perspective(400px) rotateX(-20deg);
1819
+ transform: perspective(400px) rotateX(-20deg);
1820
+ -webkit-animation-timing-function: ease-in;
1821
+ animation-timing-function: ease-in
1822
+ }
1823
+ 60% {
1824
+ -webkit-transform: perspective(400px) rotateX(10deg);
1825
+ transform: perspective(400px) rotateX(10deg);
1826
+ opacity: 1
1827
+ }
1828
+ 80% {
1829
+ -webkit-transform: perspective(400px) rotateX(-5deg);
1830
+ transform: perspective(400px) rotateX(-5deg)
1831
+ }
1832
+ to {
1833
+ -webkit-transform: perspective(400px);
1834
+ transform: perspective(400px)
1835
+ }
1836
+ }
1837
+
1838
+ .flipInX {
1839
+ -webkit-backface-visibility: visible!important;
1840
+ backface-visibility: visible!important;
1841
+ -webkit-animation-name: flipInX;
1842
+ animation-name: flipInX
1843
+ }
1844
+
1845
+ @-webkit-keyframes flipInY {
1846
+ 0% {
1847
+ -webkit-transform: perspective(400px) rotateY(90deg);
1848
+ transform: perspective(400px) rotateY(90deg);
1849
+ -webkit-animation-timing-function: ease-in;
1850
+ animation-timing-function: ease-in;
1851
+ opacity: 0
1852
+ }
1853
+ 40% {
1854
+ -webkit-transform: perspective(400px) rotateY(-20deg);
1855
+ transform: perspective(400px) rotateY(-20deg);
1856
+ -webkit-animation-timing-function: ease-in;
1857
+ animation-timing-function: ease-in
1858
+ }
1859
+ 60% {
1860
+ -webkit-transform: perspective(400px) rotateY(10deg);
1861
+ transform: perspective(400px) rotateY(10deg);
1862
+ opacity: 1
1863
+ }
1864
+ 80% {
1865
+ -webkit-transform: perspective(400px) rotateY(-5deg);
1866
+ transform: perspective(400px) rotateY(-5deg)
1867
+ }
1868
+ to {
1869
+ -webkit-transform: perspective(400px);
1870
+ transform: perspective(400px)
1871
+ }
1872
+ }
1873
+
1874
+ @keyframes flipInY {
1875
+ 0% {
1876
+ -webkit-transform: perspective(400px) rotateY(90deg);
1877
+ transform: perspective(400px) rotateY(90deg);
1878
+ -webkit-animation-timing-function: ease-in;
1879
+ animation-timing-function: ease-in;
1880
+ opacity: 0
1881
+ }
1882
+ 40% {
1883
+ -webkit-transform: perspective(400px) rotateY(-20deg);
1884
+ transform: perspective(400px) rotateY(-20deg);
1885
+ -webkit-animation-timing-function: ease-in;
1886
+ animation-timing-function: ease-in
1887
+ }
1888
+ 60% {
1889
+ -webkit-transform: perspective(400px) rotateY(10deg);
1890
+ transform: perspective(400px) rotateY(10deg);
1891
+ opacity: 1
1892
+ }
1893
+ 80% {
1894
+ -webkit-transform: perspective(400px) rotateY(-5deg);
1895
+ transform: perspective(400px) rotateY(-5deg)
1896
+ }
1897
+ to {
1898
+ -webkit-transform: perspective(400px);
1899
+ transform: perspective(400px)
1900
+ }
1901
+ }
1902
+
1903
+ .flipInY {
1904
+ -webkit-backface-visibility: visible!important;
1905
+ backface-visibility: visible!important;
1906
+ -webkit-animation-name: flipInY;
1907
+ animation-name: flipInY
1908
+ }
1909
+
1910
+ @-webkit-keyframes flipOutX {
1911
+ 0% {
1912
+ -webkit-transform: perspective(400px);
1913
+ transform: perspective(400px)
1914
+ }
1915
+ 30% {
1916
+ -webkit-transform: perspective(400px) rotateX(-20deg);
1917
+ transform: perspective(400px) rotateX(-20deg);
1918
+ opacity: 1
1919
+ }
1920
+ to {
1921
+ -webkit-transform: perspective(400px) rotateX(90deg);
1922
+ transform: perspective(400px) rotateX(90deg);
1923
+ opacity: 0
1924
+ }
1925
+ }
1926
+
1927
+ @keyframes flipOutX {
1928
+ 0% {
1929
+ -webkit-transform: perspective(400px);
1930
+ transform: perspective(400px)
1931
+ }
1932
+ 30% {
1933
+ -webkit-transform: perspective(400px) rotateX(-20deg);
1934
+ transform: perspective(400px) rotateX(-20deg);
1935
+ opacity: 1
1936
+ }
1937
+ to {
1938
+ -webkit-transform: perspective(400px) rotateX(90deg);
1939
+ transform: perspective(400px) rotateX(90deg);
1940
+ opacity: 0
1941
+ }
1942
+ }
1943
+
1944
+ .flipOutX {
1945
+ -webkit-animation-duration: .75s;
1946
+ animation-duration: .75s;
1947
+ -webkit-animation-name: flipOutX;
1948
+ animation-name: flipOutX;
1949
+ -webkit-backface-visibility: visible!important;
1950
+ backface-visibility: visible!important
1951
+ }
1952
+
1953
+ @-webkit-keyframes flipOutY {
1954
+ 0% {
1955
+ -webkit-transform: perspective(400px);
1956
+ transform: perspective(400px)
1957
+ }
1958
+ 30% {
1959
+ -webkit-transform: perspective(400px) rotateY(-15deg);
1960
+ transform: perspective(400px) rotateY(-15deg);
1961
+ opacity: 1
1962
+ }
1963
+ to {
1964
+ -webkit-transform: perspective(400px) rotateY(90deg);
1965
+ transform: perspective(400px) rotateY(90deg);
1966
+ opacity: 0
1967
+ }
1968
+ }
1969
+
1970
+ @keyframes flipOutY {
1971
+ 0% {
1972
+ -webkit-transform: perspective(400px);
1973
+ transform: perspective(400px)
1974
+ }
1975
+ 30% {
1976
+ -webkit-transform: perspective(400px) rotateY(-15deg);
1977
+ transform: perspective(400px) rotateY(-15deg);
1978
+ opacity: 1
1979
+ }
1980
+ to {
1981
+ -webkit-transform: perspective(400px) rotateY(90deg);
1982
+ transform: perspective(400px) rotateY(90deg);
1983
+ opacity: 0
1984
+ }
1985
+ }
1986
+
1987
+ .flipOutY {
1988
+ -webkit-animation-duration: .75s;
1989
+ animation-duration: .75s;
1990
+ -webkit-backface-visibility: visible!important;
1991
+ backface-visibility: visible!important;
1992
+ -webkit-animation-name: flipOutY;
1993
+ animation-name: flipOutY
1994
+ }
1995
+
1996
+ @-webkit-keyframes lightSpeedIn {
1997
+ 0% {
1998
+ -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
1999
+ transform: translate3d(100%, 0, 0) skewX(-30deg);
2000
+ opacity: 0
2001
+ }
2002
+ 60% {
2003
+ -webkit-transform: skewX(20deg);
2004
+ transform: skewX(20deg);
2005
+ opacity: 1
2006
+ }
2007
+ 80% {
2008
+ -webkit-transform: skewX(-5deg);
2009
+ transform: skewX(-5deg)
2010
+ }
2011
+ to {
2012
+ -webkit-transform: translateZ(0);
2013
+ transform: translateZ(0)
2014
+ }
2015
+ }
2016
+
2017
+ @keyframes lightSpeedIn {
2018
+ 0% {
2019
+ -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
2020
+ transform: translate3d(100%, 0, 0) skewX(-30deg);
2021
+ opacity: 0
2022
+ }
2023
+ 60% {
2024
+ -webkit-transform: skewX(20deg);
2025
+ transform: skewX(20deg);
2026
+ opacity: 1
2027
+ }
2028
+ 80% {
2029
+ -webkit-transform: skewX(-5deg);
2030
+ transform: skewX(-5deg)
2031
+ }
2032
+ to {
2033
+ -webkit-transform: translateZ(0);
2034
+ transform: translateZ(0)
2035
+ }
2036
+ }
2037
+
2038
+ .lightSpeedIn {
2039
+ -webkit-animation-name: lightSpeedIn;
2040
+ animation-name: lightSpeedIn;
2041
+ -webkit-animation-timing-function: ease-out;
2042
+ animation-timing-function: ease-out
2043
+ }
2044
+
2045
+ @-webkit-keyframes lightSpeedOut {
2046
+ 0% {
2047
+ opacity: 1
2048
+ }
2049
+ to {
2050
+ -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
2051
+ transform: translate3d(100%, 0, 0) skewX(30deg);
2052
+ opacity: 0
2053
+ }
2054
+ }
2055
+
2056
+ @keyframes lightSpeedOut {
2057
+ 0% {
2058
+ opacity: 1
2059
+ }
2060
+ to {
2061
+ -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
2062
+ transform: translate3d(100%, 0, 0) skewX(30deg);
2063
+ opacity: 0
2064
+ }
2065
+ }
2066
+
2067
+ .lightSpeedOut {
2068
+ -webkit-animation-name: lightSpeedOut;
2069
+ animation-name: lightSpeedOut;
2070
+ -webkit-animation-timing-function: ease-in;
2071
+ animation-timing-function: ease-in
2072
+ }
2073
+
2074
+ @-webkit-keyframes rotateIn {
2075
+ 0% {
2076
+ -webkit-transform-origin: center;
2077
+ transform-origin: center;
2078
+ -webkit-transform: rotate(-200deg);
2079
+ transform: rotate(-200deg);
2080
+ opacity: 0
2081
+ }
2082
+ to {
2083
+ -webkit-transform-origin: center;
2084
+ transform-origin: center;
2085
+ -webkit-transform: translateZ(0);
2086
+ transform: translateZ(0);
2087
+ opacity: 1
2088
+ }
2089
+ }
2090
+
2091
+ @keyframes rotateIn {
2092
+ 0% {
2093
+ -webkit-transform-origin: center;
2094
+ transform-origin: center;
2095
+ -webkit-transform: rotate(-200deg);
2096
+ transform: rotate(-200deg);
2097
+ opacity: 0
2098
+ }
2099
+ to {
2100
+ -webkit-transform-origin: center;
2101
+ transform-origin: center;
2102
+ -webkit-transform: translateZ(0);
2103
+ transform: translateZ(0);
2104
+ opacity: 1
2105
+ }
2106
+ }
2107
+
2108
+ .rotateIn {
2109
+ -webkit-animation-name: rotateIn;
2110
+ animation-name: rotateIn
2111
+ }
2112
+
2113
+ @-webkit-keyframes rotateInDownLeft {
2114
+ 0% {
2115
+ -webkit-transform-origin: left bottom;
2116
+ transform-origin: left bottom;
2117
+ -webkit-transform: rotate(-45deg);
2118
+ transform: rotate(-45deg);
2119
+ opacity: 0
2120
+ }
2121
+ to {
2122
+ -webkit-transform-origin: left bottom;
2123
+ transform-origin: left bottom;
2124
+ -webkit-transform: translateZ(0);
2125
+ transform: translateZ(0);
2126
+ opacity: 1
2127
+ }
2128
+ }
2129
+
2130
+ @keyframes rotateInDownLeft {
2131
+ 0% {
2132
+ -webkit-transform-origin: left bottom;
2133
+ transform-origin: left bottom;
2134
+ -webkit-transform: rotate(-45deg);
2135
+ transform: rotate(-45deg);
2136
+ opacity: 0
2137
+ }
2138
+ to {
2139
+ -webkit-transform-origin: left bottom;
2140
+ transform-origin: left bottom;
2141
+ -webkit-transform: translateZ(0);
2142
+ transform: translateZ(0);
2143
+ opacity: 1
2144
+ }
2145
+ }
2146
+
2147
+ .rotateInDownLeft {
2148
+ -webkit-animation-name: rotateInDownLeft;
2149
+ animation-name: rotateInDownLeft
2150
+ }
2151
+
2152
+ @-webkit-keyframes rotateInDownRight {
2153
+ 0% {
2154
+ -webkit-transform-origin: right bottom;
2155
+ transform-origin: right bottom;
2156
+ -webkit-transform: rotate(45deg);
2157
+ transform: rotate(45deg);
2158
+ opacity: 0
2159
+ }
2160
+ to {
2161
+ -webkit-transform-origin: right bottom;
2162
+ transform-origin: right bottom;
2163
+ -webkit-transform: translateZ(0);
2164
+ transform: translateZ(0);
2165
+ opacity: 1
2166
+ }
2167
+ }
2168
+
2169
+ @keyframes rotateInDownRight {
2170
+ 0% {
2171
+ -webkit-transform-origin: right bottom;
2172
+ transform-origin: right bottom;
2173
+ -webkit-transform: rotate(45deg);
2174
+ transform: rotate(45deg);
2175
+ opacity: 0
2176
+ }
2177
+ to {
2178
+ -webkit-transform-origin: right bottom;
2179
+ transform-origin: right bottom;
2180
+ -webkit-transform: translateZ(0);
2181
+ transform: translateZ(0);
2182
+ opacity: 1
2183
+ }
2184
+ }
2185
+
2186
+ .rotateInDownRight {
2187
+ -webkit-animation-name: rotateInDownRight;
2188
+ animation-name: rotateInDownRight
2189
+ }
2190
+
2191
+ @-webkit-keyframes rotateInUpLeft {
2192
+ 0% {
2193
+ -webkit-transform-origin: left bottom;
2194
+ transform-origin: left bottom;
2195
+ -webkit-transform: rotate(45deg);
2196
+ transform: rotate(45deg);
2197
+ opacity: 0
2198
+ }
2199
+ to {
2200
+ -webkit-transform-origin: left bottom;
2201
+ transform-origin: left bottom;
2202
+ -webkit-transform: translateZ(0);
2203
+ transform: translateZ(0);
2204
+ opacity: 1
2205
+ }
2206
+ }
2207
+
2208
+ @keyframes rotateInUpLeft {
2209
+ 0% {
2210
+ -webkit-transform-origin: left bottom;
2211
+ transform-origin: left bottom;
2212
+ -webkit-transform: rotate(45deg);
2213
+ transform: rotate(45deg);
2214
+ opacity: 0
2215
+ }
2216
+ to {
2217
+ -webkit-transform-origin: left bottom;
2218
+ transform-origin: left bottom;
2219
+ -webkit-transform: translateZ(0);
2220
+ transform: translateZ(0);
2221
+ opacity: 1
2222
+ }
2223
+ }
2224
+
2225
+ .rotateInUpLeft {
2226
+ -webkit-animation-name: rotateInUpLeft;
2227
+ animation-name: rotateInUpLeft
2228
+ }
2229
+
2230
+ @-webkit-keyframes rotateInUpRight {
2231
+ 0% {
2232
+ -webkit-transform-origin: right bottom;
2233
+ transform-origin: right bottom;
2234
+ -webkit-transform: rotate(-90deg);
2235
+ transform: rotate(-90deg);
2236
+ opacity: 0
2237
+ }
2238
+ to {
2239
+ -webkit-transform-origin: right bottom;
2240
+ transform-origin: right bottom;
2241
+ -webkit-transform: translateZ(0);
2242
+ transform: translateZ(0);
2243
+ opacity: 1
2244
+ }
2245
+ }
2246
+
2247
+ @keyframes rotateInUpRight {
2248
+ 0% {
2249
+ -webkit-transform-origin: right bottom;
2250
+ transform-origin: right bottom;
2251
+ -webkit-transform: rotate(-90deg);
2252
+ transform: rotate(-90deg);
2253
+ opacity: 0
2254
+ }
2255
+ to {
2256
+ -webkit-transform-origin: right bottom;
2257
+ transform-origin: right bottom;
2258
+ -webkit-transform: translateZ(0);
2259
+ transform: translateZ(0);
2260
+ opacity: 1
2261
+ }
2262
+ }
2263
+
2264
+ .rotateInUpRight {
2265
+ -webkit-animation-name: rotateInUpRight;
2266
+ animation-name: rotateInUpRight
2267
+ }
2268
+
2269
+ @-webkit-keyframes rotateOut {
2270
+ 0% {
2271
+ -webkit-transform-origin: center;
2272
+ transform-origin: center;
2273
+ opacity: 1
2274
+ }
2275
+ to {
2276
+ -webkit-transform-origin: center;
2277
+ transform-origin: center;
2278
+ -webkit-transform: rotate(200deg);
2279
+ transform: rotate(200deg);
2280
+ opacity: 0
2281
+ }
2282
+ }
2283
+
2284
+ @keyframes rotateOut {
2285
+ 0% {
2286
+ -webkit-transform-origin: center;
2287
+ transform-origin: center;
2288
+ opacity: 1
2289
+ }
2290
+ to {
2291
+ -webkit-transform-origin: center;
2292
+ transform-origin: center;
2293
+ -webkit-transform: rotate(200deg);
2294
+ transform: rotate(200deg);
2295
+ opacity: 0
2296
+ }
2297
+ }
2298
+
2299
+ .rotateOut {
2300
+ -webkit-animation-name: rotateOut;
2301
+ animation-name: rotateOut
2302
+ }
2303
+
2304
+ @-webkit-keyframes rotateOutDownLeft {
2305
+ 0% {
2306
+ -webkit-transform-origin: left bottom;
2307
+ transform-origin: left bottom;
2308
+ opacity: 1
2309
+ }
2310
+ to {
2311
+ -webkit-transform-origin: left bottom;
2312
+ transform-origin: left bottom;
2313
+ -webkit-transform: rotate(45deg);
2314
+ transform: rotate(45deg);
2315
+ opacity: 0
2316
+ }
2317
+ }
2318
+
2319
+ @keyframes rotateOutDownLeft {
2320
+ 0% {
2321
+ -webkit-transform-origin: left bottom;
2322
+ transform-origin: left bottom;
2323
+ opacity: 1
2324
+ }
2325
+ to {
2326
+ -webkit-transform-origin: left bottom;
2327
+ transform-origin: left bottom;
2328
+ -webkit-transform: rotate(45deg);
2329
+ transform: rotate(45deg);
2330
+ opacity: 0
2331
+ }
2332
+ }
2333
+
2334
+ .rotateOutDownLeft {
2335
+ -webkit-animation-name: rotateOutDownLeft;
2336
+ animation-name: rotateOutDownLeft
2337
+ }
2338
+
2339
+ @-webkit-keyframes rotateOutDownRight {
2340
+ 0% {
2341
+ -webkit-transform-origin: right bottom;
2342
+ transform-origin: right bottom;
2343
+ opacity: 1
2344
+ }
2345
+ to {
2346
+ -webkit-transform-origin: right bottom;
2347
+ transform-origin: right bottom;
2348
+ -webkit-transform: rotate(-45deg);
2349
+ transform: rotate(-45deg);
2350
+ opacity: 0
2351
+ }
2352
+ }
2353
+
2354
+ @keyframes rotateOutDownRight {
2355
+ 0% {
2356
+ -webkit-transform-origin: right bottom;
2357
+ transform-origin: right bottom;
2358
+ opacity: 1
2359
+ }
2360
+ to {
2361
+ -webkit-transform-origin: right bottom;
2362
+ transform-origin: right bottom;
2363
+ -webkit-transform: rotate(-45deg);
2364
+ transform: rotate(-45deg);
2365
+ opacity: 0
2366
+ }
2367
+ }
2368
+
2369
+ .rotateOutDownRight {
2370
+ -webkit-animation-name: rotateOutDownRight;
2371
+ animation-name: rotateOutDownRight
2372
+ }
2373
+
2374
+ @-webkit-keyframes rotateOutUpLeft {
2375
+ 0% {
2376
+ -webkit-transform-origin: left bottom;
2377
+ transform-origin: left bottom;
2378
+ opacity: 1
2379
+ }
2380
+ to {
2381
+ -webkit-transform-origin: left bottom;
2382
+ transform-origin: left bottom;
2383
+ -webkit-transform: rotate(-45deg);
2384
+ transform: rotate(-45deg);
2385
+ opacity: 0
2386
+ }
2387
+ }
2388
+
2389
+ @keyframes rotateOutUpLeft {
2390
+ 0% {
2391
+ -webkit-transform-origin: left bottom;
2392
+ transform-origin: left bottom;
2393
+ opacity: 1
2394
+ }
2395
+ to {
2396
+ -webkit-transform-origin: left bottom;
2397
+ transform-origin: left bottom;
2398
+ -webkit-transform: rotate(-45deg);
2399
+ transform: rotate(-45deg);
2400
+ opacity: 0
2401
+ }
2402
+ }
2403
+
2404
+ .rotateOutUpLeft {
2405
+ -webkit-animation-name: rotateOutUpLeft;
2406
+ animation-name: rotateOutUpLeft
2407
+ }
2408
+
2409
+ @-webkit-keyframes rotateOutUpRight {
2410
+ 0% {
2411
+ -webkit-transform-origin: right bottom;
2412
+ transform-origin: right bottom;
2413
+ opacity: 1
2414
+ }
2415
+ to {
2416
+ -webkit-transform-origin: right bottom;
2417
+ transform-origin: right bottom;
2418
+ -webkit-transform: rotate(90deg);
2419
+ transform: rotate(90deg);
2420
+ opacity: 0
2421
+ }
2422
+ }
2423
+
2424
+ @keyframes rotateOutUpRight {
2425
+ 0% {
2426
+ -webkit-transform-origin: right bottom;
2427
+ transform-origin: right bottom;
2428
+ opacity: 1
2429
+ }
2430
+ to {
2431
+ -webkit-transform-origin: right bottom;
2432
+ transform-origin: right bottom;
2433
+ -webkit-transform: rotate(90deg);
2434
+ transform: rotate(90deg);
2435
+ opacity: 0
2436
+ }
2437
+ }
2438
+
2439
+ .rotateOutUpRight {
2440
+ -webkit-animation-name: rotateOutUpRight;
2441
+ animation-name: rotateOutUpRight
2442
+ }
2443
+
2444
+ @-webkit-keyframes hinge {
2445
+ 0% {
2446
+ -webkit-transform-origin: top left;
2447
+ transform-origin: top left;
2448
+ -webkit-animation-timing-function: ease-in-out;
2449
+ animation-timing-function: ease-in-out
2450
+ }
2451
+ 20%,
2452
+ 60% {
2453
+ -webkit-transform: rotate(80deg);
2454
+ transform: rotate(80deg);
2455
+ -webkit-transform-origin: top left;
2456
+ transform-origin: top left;
2457
+ -webkit-animation-timing-function: ease-in-out;
2458
+ animation-timing-function: ease-in-out
2459
+ }
2460
+ 40%,
2461
+ 80% {
2462
+ -webkit-transform: rotate(60deg);
2463
+ transform: rotate(60deg);
2464
+ -webkit-transform-origin: top left;
2465
+ transform-origin: top left;
2466
+ -webkit-animation-timing-function: ease-in-out;
2467
+ animation-timing-function: ease-in-out;
2468
+ opacity: 1
2469
+ }
2470
+ to {
2471
+ -webkit-transform: translate3d(0, 700px, 0);
2472
+ transform: translate3d(0, 700px, 0);
2473
+ opacity: 0
2474
+ }
2475
+ }
2476
+
2477
+ @keyframes hinge {
2478
+ 0% {
2479
+ -webkit-transform-origin: top left;
2480
+ transform-origin: top left;
2481
+ -webkit-animation-timing-function: ease-in-out;
2482
+ animation-timing-function: ease-in-out
2483
+ }
2484
+ 20%,
2485
+ 60% {
2486
+ -webkit-transform: rotate(80deg);
2487
+ transform: rotate(80deg);
2488
+ -webkit-transform-origin: top left;
2489
+ transform-origin: top left;
2490
+ -webkit-animation-timing-function: ease-in-out;
2491
+ animation-timing-function: ease-in-out
2492
+ }
2493
+ 40%,
2494
+ 80% {
2495
+ -webkit-transform: rotate(60deg);
2496
+ transform: rotate(60deg);
2497
+ -webkit-transform-origin: top left;
2498
+ transform-origin: top left;
2499
+ -webkit-animation-timing-function: ease-in-out;
2500
+ animation-timing-function: ease-in-out;
2501
+ opacity: 1
2502
+ }
2503
+ to {
2504
+ -webkit-transform: translate3d(0, 700px, 0);
2505
+ transform: translate3d(0, 700px, 0);
2506
+ opacity: 0
2507
+ }
2508
+ }
2509
+
2510
+ .hinge {
2511
+ -webkit-animation-duration: 2s;
2512
+ animation-duration: 2s;
2513
+ -webkit-animation-name: hinge;
2514
+ animation-name: hinge
2515
+ }
2516
+
2517
+ @-webkit-keyframes jackInTheBox {
2518
+ 0% {
2519
+ opacity: 0;
2520
+ -webkit-transform: scale(.1) rotate(30deg);
2521
+ transform: scale(.1) rotate(30deg);
2522
+ -webkit-transform-origin: center bottom;
2523
+ transform-origin: center bottom
2524
+ }
2525
+ 50% {
2526
+ -webkit-transform: rotate(-10deg);
2527
+ transform: rotate(-10deg)
2528
+ }
2529
+ 70% {
2530
+ -webkit-transform: rotate(3deg);
2531
+ transform: rotate(3deg)
2532
+ }
2533
+ to {
2534
+ opacity: 1;
2535
+ -webkit-transform: scale(1);
2536
+ transform: scale(1)
2537
+ }
2538
+ }
2539
+
2540
+ @keyframes jackInTheBox {
2541
+ 0% {
2542
+ opacity: 0;
2543
+ -webkit-transform: scale(.1) rotate(30deg);
2544
+ transform: scale(.1) rotate(30deg);
2545
+ -webkit-transform-origin: center bottom;
2546
+ transform-origin: center bottom
2547
+ }
2548
+ 50% {
2549
+ -webkit-transform: rotate(-10deg);
2550
+ transform: rotate(-10deg)
2551
+ }
2552
+ 70% {
2553
+ -webkit-transform: rotate(3deg);
2554
+ transform: rotate(3deg)
2555
+ }
2556
+ to {
2557
+ opacity: 1;
2558
+ -webkit-transform: scale(1);
2559
+ transform: scale(1)
2560
+ }
2561
+ }
2562
+
2563
+ .jackInTheBox {
2564
+ -webkit-animation-name: jackInTheBox;
2565
+ animation-name: jackInTheBox
2566
+ }
2567
+
2568
+ @-webkit-keyframes rollIn {
2569
+ 0% {
2570
+ opacity: 0;
2571
+ -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
2572
+ transform: translate3d(-100%, 0, 0) rotate(-120deg)
2573
+ }
2574
+ to {
2575
+ opacity: 1;
2576
+ -webkit-transform: translateZ(0);
2577
+ transform: translateZ(0)
2578
+ }
2579
+ }
2580
+
2581
+ @keyframes rollIn {
2582
+ 0% {
2583
+ opacity: 0;
2584
+ -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
2585
+ transform: translate3d(-100%, 0, 0) rotate(-120deg)
2586
+ }
2587
+ to {
2588
+ opacity: 1;
2589
+ -webkit-transform: translateZ(0);
2590
+ transform: translateZ(0)
2591
+ }
2592
+ }
2593
+
2594
+ .rollIn {
2595
+ -webkit-animation-name: rollIn;
2596
+ animation-name: rollIn
2597
+ }
2598
+
2599
+ @-webkit-keyframes rollOut {
2600
+ 0% {
2601
+ opacity: 1
2602
+ }
2603
+ to {
2604
+ opacity: 0;
2605
+ -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
2606
+ transform: translate3d(100%, 0, 0) rotate(120deg)
2607
+ }
2608
+ }
2609
+
2610
+ @keyframes rollOut {
2611
+ 0% {
2612
+ opacity: 1
2613
+ }
2614
+ to {
2615
+ opacity: 0;
2616
+ -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
2617
+ transform: translate3d(100%, 0, 0) rotate(120deg)
2618
+ }
2619
+ }
2620
+
2621
+ .rollOut {
2622
+ -webkit-animation-name: rollOut;
2623
+ animation-name: rollOut
2624
+ }
2625
+
2626
+ @-webkit-keyframes zoomIn {
2627
+ 0% {
2628
+ opacity: 0;
2629
+ -webkit-transform: scale3d(.3, .3, .3);
2630
+ transform: scale3d(.3, .3, .3)
2631
+ }
2632
+ 50% {
2633
+ opacity: 1
2634
+ }
2635
+ }
2636
+
2637
+ @keyframes zoomIn {
2638
+ 0% {
2639
+ opacity: 0;
2640
+ -webkit-transform: scale3d(.3, .3, .3);
2641
+ transform: scale3d(.3, .3, .3)
2642
+ }
2643
+ 50% {
2644
+ opacity: 1
2645
+ }
2646
+ }
2647
+
2648
+ .zoomIn {
2649
+ -webkit-animation-name: zoomIn;
2650
+ animation-name: zoomIn
2651
+ }
2652
+
2653
+ @-webkit-keyframes zoomInDown {
2654
+ 0% {
2655
+ opacity: 0;
2656
+ -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
2657
+ transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
2658
+ -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
2659
+ animation-timing-function: cubic-bezier(.55, .055, .675, .19)
2660
+ }
2661
+ 60% {
2662
+ opacity: 1;
2663
+ -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
2664
+ transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
2665
+ -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
2666
+ animation-timing-function: cubic-bezier(.175, .885, .32, 1)
2667
+ }
2668
+ }
2669
+
2670
+ @keyframes zoomInDown {
2671
+ 0% {
2672
+ opacity: 0;
2673
+ -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
2674
+ transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
2675
+ -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
2676
+ animation-timing-function: cubic-bezier(.55, .055, .675, .19)
2677
+ }
2678
+ 60% {
2679
+ opacity: 1;
2680
+ -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
2681
+ transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
2682
+ -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
2683
+ animation-timing-function: cubic-bezier(.175, .885, .32, 1)
2684
+ }
2685
+ }
2686
+
2687
+ .zoomInDown {
2688
+ -webkit-animation-name: zoomInDown;
2689
+ animation-name: zoomInDown
2690
+ }
2691
+
2692
+ @-webkit-keyframes zoomInLeft {
2693
+ 0% {
2694
+ opacity: 0;
2695
+ -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
2696
+ transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
2697
+ -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
2698
+ animation-timing-function: cubic-bezier(.55, .055, .675, .19)
2699
+ }
2700
+ 60% {
2701
+ opacity: 1;
2702
+ -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
2703
+ transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
2704
+ -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
2705
+ animation-timing-function: cubic-bezier(.175, .885, .32, 1)
2706
+ }
2707
+ }
2708
+
2709
+ @keyframes zoomInLeft {
2710
+ 0% {
2711
+ opacity: 0;
2712
+ -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
2713
+ transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
2714
+ -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
2715
+ animation-timing-function: cubic-bezier(.55, .055, .675, .19)
2716
+ }
2717
+ 60% {
2718
+ opacity: 1;
2719
+ -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
2720
+ transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
2721
+ -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
2722
+ animation-timing-function: cubic-bezier(.175, .885, .32, 1)
2723
+ }
2724
+ }
2725
+
2726
+ .zoomInLeft {
2727
+ -webkit-animation-name: zoomInLeft;
2728
+ animation-name: zoomInLeft
2729
+ }
2730
+
2731
+ @-webkit-keyframes zoomInRight {
2732
+ 0% {
2733
+ opacity: 0;
2734
+ -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
2735
+ transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
2736
+ -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
2737
+ animation-timing-function: cubic-bezier(.55, .055, .675, .19)
2738
+ }
2739
+ 60% {
2740
+ opacity: 1;
2741
+ -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
2742
+ transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
2743
+ -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
2744
+ animation-timing-function: cubic-bezier(.175, .885, .32, 1)
2745
+ }
2746
+ }
2747
+
2748
+ @keyframes zoomInRight {
2749
+ 0% {
2750
+ opacity: 0;
2751
+ -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
2752
+ transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
2753
+ -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
2754
+ animation-timing-function: cubic-bezier(.55, .055, .675, .19)
2755
+ }
2756
+ 60% {
2757
+ opacity: 1;
2758
+ -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
2759
+ transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
2760
+ -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
2761
+ animation-timing-function: cubic-bezier(.175, .885, .32, 1)
2762
+ }
2763
+ }
2764
+
2765
+ .zoomInRight {
2766
+ -webkit-animation-name: zoomInRight;
2767
+ animation-name: zoomInRight
2768
+ }
2769
+
2770
+ @-webkit-keyframes zoomInUp {
2771
+ 0% {
2772
+ opacity: 0;
2773
+ -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
2774
+ transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
2775
+ -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
2776
+ animation-timing-function: cubic-bezier(.55, .055, .675, .19)
2777
+ }
2778
+ 60% {
2779
+ opacity: 1;
2780
+ -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
2781
+ transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
2782
+ -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
2783
+ animation-timing-function: cubic-bezier(.175, .885, .32, 1)
2784
+ }
2785
+ }
2786
+
2787
+ @keyframes zoomInUp {
2788
+ 0% {
2789
+ opacity: 0;
2790
+ -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
2791
+ transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
2792
+ -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
2793
+ animation-timing-function: cubic-bezier(.55, .055, .675, .19)
2794
+ }
2795
+ 60% {
2796
+ opacity: 1;
2797
+ -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
2798
+ transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
2799
+ -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
2800
+ animation-timing-function: cubic-bezier(.175, .885, .32, 1)
2801
+ }
2802
+ }
2803
+
2804
+ .zoomInUp {
2805
+ -webkit-animation-name: zoomInUp;
2806
+ animation-name: zoomInUp
2807
+ }
2808
+
2809
+ @-webkit-keyframes zoomOut {
2810
+ 0% {
2811
+ opacity: 1
2812
+ }
2813
+ 50% {
2814
+ opacity: 0;
2815
+ -webkit-transform: scale3d(.3, .3, .3);
2816
+ transform: scale3d(.3, .3, .3)
2817
+ }
2818
+ to {
2819
+ opacity: 0
2820
+ }
2821
+ }
2822
+
2823
+ @keyframes zoomOut {
2824
+ 0% {
2825
+ opacity: 1
2826
+ }
2827
+ 50% {
2828
+ opacity: 0;
2829
+ -webkit-transform: scale3d(.3, .3, .3);
2830
+ transform: scale3d(.3, .3, .3)
2831
+ }
2832
+ to {
2833
+ opacity: 0
2834
+ }
2835
+ }
2836
+
2837
+ .zoomOut {
2838
+ -webkit-animation-name: zoomOut;
2839
+ animation-name: zoomOut
2840
+ }
2841
+
2842
+ @-webkit-keyframes zoomOutDown {
2843
+ 40% {
2844
+ opacity: 1;
2845
+ -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
2846
+ transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
2847
+ -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
2848
+ animation-timing-function: cubic-bezier(.55, .055, .675, .19)
2849
+ }
2850
+ to {
2851
+ opacity: 0;
2852
+ -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
2853
+ transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
2854
+ -webkit-transform-origin: center bottom;
2855
+ transform-origin: center bottom;
2856
+ -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
2857
+ animation-timing-function: cubic-bezier(.175, .885, .32, 1)
2858
+ }
2859
+ }
2860
+
2861
+ @keyframes zoomOutDown {
2862
+ 40% {
2863
+ opacity: 1;
2864
+ -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
2865
+ transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
2866
+ -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
2867
+ animation-timing-function: cubic-bezier(.55, .055, .675, .19)
2868
+ }
2869
+ to {
2870
+ opacity: 0;
2871
+ -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
2872
+ transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
2873
+ -webkit-transform-origin: center bottom;
2874
+ transform-origin: center bottom;
2875
+ -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
2876
+ animation-timing-function: cubic-bezier(.175, .885, .32, 1)
2877
+ }
2878
+ }
2879
+
2880
+ .zoomOutDown {
2881
+ -webkit-animation-name: zoomOutDown;
2882
+ animation-name: zoomOutDown
2883
+ }
2884
+
2885
+ @-webkit-keyframes zoomOutLeft {
2886
+ 40% {
2887
+ opacity: 1;
2888
+ -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
2889
+ transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
2890
+ }
2891
+ to {
2892
+ opacity: 0;
2893
+ -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
2894
+ transform: scale(.1) translate3d(-2000px, 0, 0);
2895
+ -webkit-transform-origin: left center;
2896
+ transform-origin: left center
2897
+ }
2898
+ }
2899
+
2900
+ @keyframes zoomOutLeft {
2901
+ 40% {
2902
+ opacity: 1;
2903
+ -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
2904
+ transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
2905
+ }
2906
+ to {
2907
+ opacity: 0;
2908
+ -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
2909
+ transform: scale(.1) translate3d(-2000px, 0, 0);
2910
+ -webkit-transform-origin: left center;
2911
+ transform-origin: left center
2912
+ }
2913
+ }
2914
+
2915
+ .zoomOutLeft {
2916
+ -webkit-animation-name: zoomOutLeft;
2917
+ animation-name: zoomOutLeft
2918
+ }
2919
+
2920
+ @-webkit-keyframes zoomOutRight {
2921
+ 40% {
2922
+ opacity: 1;
2923
+ -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
2924
+ transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
2925
+ }
2926
+ to {
2927
+ opacity: 0;
2928
+ -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
2929
+ transform: scale(.1) translate3d(2000px, 0, 0);
2930
+ -webkit-transform-origin: right center;
2931
+ transform-origin: right center
2932
+ }
2933
+ }
2934
+
2935
+ @keyframes zoomOutRight {
2936
+ 40% {
2937
+ opacity: 1;
2938
+ -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
2939
+ transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
2940
+ }
2941
+ to {
2942
+ opacity: 0;
2943
+ -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
2944
+ transform: scale(.1) translate3d(2000px, 0, 0);
2945
+ -webkit-transform-origin: right center;
2946
+ transform-origin: right center
2947
+ }
2948
+ }
2949
+
2950
+ .zoomOutRight {
2951
+ -webkit-animation-name: zoomOutRight;
2952
+ animation-name: zoomOutRight
2953
+ }
2954
+
2955
+ @-webkit-keyframes zoomOutUp {
2956
+ 40% {
2957
+ opacity: 1;
2958
+ -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
2959
+ transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
2960
+ -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
2961
+ animation-timing-function: cubic-bezier(.55, .055, .675, .19)
2962
+ }
2963
+ to {
2964
+ opacity: 0;
2965
+ -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
2966
+ transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
2967
+ -webkit-transform-origin: center bottom;
2968
+ transform-origin: center bottom;
2969
+ -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
2970
+ animation-timing-function: cubic-bezier(.175, .885, .32, 1)
2971
+ }
2972
+ }
2973
+
2974
+ @keyframes zoomOutUp {
2975
+ 40% {
2976
+ opacity: 1;
2977
+ -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
2978
+ transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
2979
+ -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
2980
+ animation-timing-function: cubic-bezier(.55, .055, .675, .19)
2981
+ }
2982
+ to {
2983
+ opacity: 0;
2984
+ -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
2985
+ transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
2986
+ -webkit-transform-origin: center bottom;
2987
+ transform-origin: center bottom;
2988
+ -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
2989
+ animation-timing-function: cubic-bezier(.175, .885, .32, 1)
2990
+ }
2991
+ }
2992
+
2993
+ .zoomOutUp {
2994
+ -webkit-animation-name: zoomOutUp;
2995
+ animation-name: zoomOutUp
2996
+ }
2997
+
2998
+ @-webkit-keyframes slideInDown {
2999
+ 0% {
3000
+ -webkit-transform: translate3d(0, -100%, 0);
3001
+ transform: translate3d(0, -100%, 0);
3002
+ visibility: visible
3003
+ }
3004
+ to {
3005
+ -webkit-transform: translateZ(0);
3006
+ transform: translateZ(0)
3007
+ }
3008
+ }
3009
+
3010
+ @keyframes slideInDown {
3011
+ 0% {
3012
+ -webkit-transform: translate3d(0, -100%, 0);
3013
+ transform: translate3d(0, -100%, 0);
3014
+ visibility: visible
3015
+ }
3016
+ to {
3017
+ -webkit-transform: translateZ(0);
3018
+ transform: translateZ(0)
3019
+ }
3020
+ }
3021
+
3022
+ .slideInDown {
3023
+ -webkit-animation-name: slideInDown;
3024
+ animation-name: slideInDown
3025
+ }
3026
+
3027
+ @-webkit-keyframes slideInLeft {
3028
+ 0% {
3029
+ -webkit-transform: translate3d(-100%, 0, 0);
3030
+ transform: translate3d(-100%, 0, 0);
3031
+ visibility: visible
3032
+ }
3033
+ to {
3034
+ -webkit-transform: translateZ(0);
3035
+ transform: translateZ(0)
3036
+ }
3037
+ }
3038
+
3039
+ @keyframes slideInLeft {
3040
+ 0% {
3041
+ -webkit-transform: translate3d(-100%, 0, 0);
3042
+ transform: translate3d(-100%, 0, 0);
3043
+ visibility: visible
3044
+ }
3045
+ to {
3046
+ -webkit-transform: translateZ(0);
3047
+ transform: translateZ(0)
3048
+ }
3049
+ }
3050
+
3051
+ .slideInLeft {
3052
+ -webkit-animation-name: slideInLeft;
3053
+ animation-name: slideInLeft
3054
+ }
3055
+
3056
+ @-webkit-keyframes slideInRight {
3057
+ 0% {
3058
+ -webkit-transform: translate3d(100%, 0, 0);
3059
+ transform: translate3d(100%, 0, 0);
3060
+ visibility: visible
3061
+ }
3062
+ to {
3063
+ -webkit-transform: translateZ(0);
3064
+ transform: translateZ(0)
3065
+ }
3066
+ }
3067
+
3068
+ @keyframes slideInRight {
3069
+ 0% {
3070
+ -webkit-transform: translate3d(100%, 0, 0);
3071
+ transform: translate3d(100%, 0, 0);
3072
+ visibility: visible
3073
+ }
3074
+ to {
3075
+ -webkit-transform: translateZ(0);
3076
+ transform: translateZ(0)
3077
+ }
3078
+ }
3079
+
3080
+ .slideInRight {
3081
+ -webkit-animation-name: slideInRight;
3082
+ animation-name: slideInRight
3083
+ }
3084
+
3085
+ @-webkit-keyframes slideInUp {
3086
+ 0% {
3087
+ -webkit-transform: translate3d(0, 100%, 0);
3088
+ transform: translate3d(0, 100%, 0);
3089
+ visibility: visible
3090
+ }
3091
+ to {
3092
+ -webkit-transform: translateZ(0);
3093
+ transform: translateZ(0)
3094
+ }
3095
+ }
3096
+
3097
+ @keyframes slideInUp {
3098
+ 0% {
3099
+ -webkit-transform: translate3d(0, 100%, 0);
3100
+ transform: translate3d(0, 100%, 0);
3101
+ visibility: visible
3102
+ }
3103
+ to {
3104
+ -webkit-transform: translateZ(0);
3105
+ transform: translateZ(0)
3106
+ }
3107
+ }
3108
+
3109
+ .slideInUp {
3110
+ -webkit-animation-name: slideInUp;
3111
+ animation-name: slideInUp
3112
+ }
3113
+
3114
+ @-webkit-keyframes slideOutDown {
3115
+ 0% {
3116
+ -webkit-transform: translateZ(0);
3117
+ transform: translateZ(0)
3118
+ }
3119
+ to {
3120
+ visibility: hidden;
3121
+ -webkit-transform: translate3d(0, 100%, 0);
3122
+ transform: translate3d(0, 100%, 0)
3123
+ }
3124
+ }
3125
+
3126
+ @keyframes slideOutDown {
3127
+ 0% {
3128
+ -webkit-transform: translateZ(0);
3129
+ transform: translateZ(0)
3130
+ }
3131
+ to {
3132
+ visibility: hidden;
3133
+ -webkit-transform: translate3d(0, 100%, 0);
3134
+ transform: translate3d(0, 100%, 0)
3135
+ }
3136
+ }
3137
+
3138
+ .slideOutDown {
3139
+ -webkit-animation-name: slideOutDown;
3140
+ animation-name: slideOutDown
3141
+ }
3142
+
3143
+ @-webkit-keyframes slideOutLeft {
3144
+ 0% {
3145
+ -webkit-transform: translateZ(0);
3146
+ transform: translateZ(0)
3147
+ }
3148
+ to {
3149
+ visibility: hidden;
3150
+ -webkit-transform: translate3d(-100%, 0, 0);
3151
+ transform: translate3d(-100%, 0, 0)
3152
+ }
3153
+ }
3154
+
3155
+ @keyframes slideOutLeft {
3156
+ 0% {
3157
+ -webkit-transform: translateZ(0);
3158
+ transform: translateZ(0)
3159
+ }
3160
+ to {
3161
+ visibility: hidden;
3162
+ -webkit-transform: translate3d(-100%, 0, 0);
3163
+ transform: translate3d(-100%, 0, 0)
3164
+ }
3165
+ }
3166
+
3167
+ .slideOutLeft {
3168
+ -webkit-animation-name: slideOutLeft;
3169
+ animation-name: slideOutLeft
3170
+ }
3171
+
3172
+ @-webkit-keyframes slideOutRight {
3173
+ 0% {
3174
+ -webkit-transform: translateZ(0);
3175
+ transform: translateZ(0)
3176
+ }
3177
+ to {
3178
+ visibility: hidden;
3179
+ -webkit-transform: translate3d(100%, 0, 0);
3180
+ transform: translate3d(100%, 0, 0)
3181
+ }
3182
+ }
3183
+
3184
+ @keyframes slideOutRight {
3185
+ 0% {
3186
+ -webkit-transform: translateZ(0);
3187
+ transform: translateZ(0)
3188
+ }
3189
+ to {
3190
+ visibility: hidden;
3191
+ -webkit-transform: translate3d(100%, 0, 0);
3192
+ transform: translate3d(100%, 0, 0)
3193
+ }
3194
+ }
3195
+
3196
+ .slideOutRight {
3197
+ -webkit-animation-name: slideOutRight;
3198
+ animation-name: slideOutRight
3199
+ }
3200
+
3201
+ @-webkit-keyframes slideOutUp {
3202
+ 0% {
3203
+ -webkit-transform: translateZ(0);
3204
+ transform: translateZ(0)
3205
+ }
3206
+ to {
3207
+ visibility: hidden;
3208
+ -webkit-transform: translate3d(0, -100%, 0);
3209
+ transform: translate3d(0, -100%, 0)
3210
+ }
3211
+ }
3212
+
3213
+ @keyframes slideOutUp {
3214
+ 0% {
3215
+ -webkit-transform: translateZ(0);
3216
+ transform: translateZ(0)
3217
+ }
3218
+ to {
3219
+ visibility: hidden;
3220
+ -webkit-transform: translate3d(0, -100%, 0);
3221
+ transform: translate3d(0, -100%, 0)
3222
+ }
3223
+ }
3224
+
3225
+ .slideOutUp {
3226
+ -webkit-animation-name: slideOutUp;
3227
+ animation-name: slideOutUp
3228
+ }
3229
+
3230
+ .animated {
3231
+ -webkit-animation-duration: 1s;
3232
+ animation-duration: 1s;
3233
+ -webkit-animation-fill-mode: both;
3234
+ animation-fill-mode: both
3235
+ }
3236
+
3237
+ .animated.infinite {
3238
+ -webkit-animation-iteration-count: infinite;
3239
+ animation-iteration-count: infinite
3240
+ }
3241
+
3242
+ .animated.delay-1s {
3243
+ -webkit-animation-delay: 1s;
3244
+ animation-delay: 1s
3245
+ }
3246
+
3247
+ .animated.delay-2s {
3248
+ -webkit-animation-delay: 2s;
3249
+ animation-delay: 2s
3250
+ }
3251
+
3252
+ .animated.delay-3s {
3253
+ -webkit-animation-delay: 3s;
3254
+ animation-delay: 3s
3255
+ }
3256
+
3257
+ .animated.delay-4s {
3258
+ -webkit-animation-delay: 4s;
3259
+ animation-delay: 4s
3260
+ }
3261
+
3262
+ .animated.delay-5s {
3263
+ -webkit-animation-delay: 5s;
3264
+ animation-delay: 5s
3265
+ }
3266
+
3267
+ .animated.duration-0 {
3268
+ -webkit-animation-duration: 0ms;
3269
+ animation-duration: 0ms
3270
+ }
3271
+ .animated.duration-100 {
3272
+ -webkit-animation-duration: 100ms;
3273
+ animation-duration: 100ms
3274
+ }
3275
+ .animated.duration-200 {
3276
+ -webkit-animation-duration: 200ms;
3277
+ animation-duration: 200ms
3278
+ }
3279
+ .animated.duration-300 {
3280
+ -webkit-animation-duration: 300ms;
3281
+ animation-duration: 300ms
3282
+ }
3283
+ .animated.duration-400 {
3284
+ -webkit-animation-duration: 400ms;
3285
+ animation-duration: 400ms
3286
+ }
3287
+ .animated.duration-500 {
3288
+ -webkit-animation-duration: 500ms;
3289
+ animation-duration: 500ms
3290
+ }
3291
+
3292
+ .animated.duration-600 {
3293
+ -webkit-animation-duration: 600ms;
3294
+ animation-duration: 600ms
3295
+ }
3296
+
3297
+ .animated.duration-700 {
3298
+ -webkit-animation-duration: 700ms;
3299
+ animation-duration: 700ms
3300
+ }
3301
+
3302
+ .animated.duration-800 {
3303
+ -webkit-animation-duration: 800ms;
3304
+ animation-duration: 800ms
3305
+ }
3306
+
3307
+ .animated.duration-1000 {
3308
+ -webkit-animation-duration: 1s;
3309
+ animation-duration: 1s;
3310
+ }
3311
+
3312
+ .animated.duration-2000 {
3313
+ -webkit-animation-duration: 2s;
3314
+ animation-duration: 2s;
3315
+ }
3316
+
3317
+
3318
+ .animated.duration-3000 {
3319
+ -webkit-animation-duration: 3s;
3320
+ animation-duration: 3s;
3321
+ }
3322
+
3323
+ .animated.duration-4000 {
3324
+ -webkit-animation-duration: 4s;
3325
+ animation-duration: 4s;
3326
+ }
3327
+
3328
+ .animated.duration-5000 {
3329
+ -webkit-animation-duration: 5s;
3330
+ animation-duration: 5s;
3331
+ }
3332
+
3333
+
3334
+ .animated.stop {
3335
+ -webkit-animation-duration: 0s;
3336
+ animation-duration: 0s
3337
+ }
3338
+
3339
+ .animated.slow {
3340
+ -webkit-animation-duration: 2s;
3341
+ animation-duration: 2s
3342
+ }
3343
+
3344
+ .animated.slower {
3345
+ -webkit-animation-duration: 3s;
3346
+ animation-duration: 3s
3347
+ }
3348
+ /*
3349
+ @media (prefers-reduced-motion:reduce),
3350
+ (print) {
3351
+ .animated {
3352
+ -webkit-animation-duration: 1ms!important;
3353
+ animation-duration: 1ms!important;
3354
+ -webkit-transition-duration: 1ms!important;
3355
+ transition-duration: 1ms!important;
3356
+ -webkit-animation-iteration-count: 1!important;
3357
+ animation-iteration-count: 1!important
3358
+ }
3359
+ } */
3360
+ `;