labelup_faq 0.0.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (75) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +3 -0
  4. data/Rakefile +24 -0
  5. data/app/assets/images/labelup_faq/1_1.jpg +0 -0
  6. data/app/assets/images/labelup_faq/1_2.jpg +0 -0
  7. data/app/assets/images/labelup_faq/1_3.jpg +0 -0
  8. data/app/assets/images/labelup_faq/1_4.jpg +0 -0
  9. data/app/assets/images/labelup_faq/2_1.jpg +0 -0
  10. data/app/assets/images/labelup_faq/2_10.jpg +0 -0
  11. data/app/assets/images/labelup_faq/2_11.jpg +0 -0
  12. data/app/assets/images/labelup_faq/2_12.jpg +0 -0
  13. data/app/assets/images/labelup_faq/2_2.jpg +0 -0
  14. data/app/assets/images/labelup_faq/2_3.jpg +0 -0
  15. data/app/assets/images/labelup_faq/2_4.jpg +0 -0
  16. data/app/assets/images/labelup_faq/2_5.jpg +0 -0
  17. data/app/assets/images/labelup_faq/2_6.jpg +0 -0
  18. data/app/assets/images/labelup_faq/2_7.jpg +0 -0
  19. data/app/assets/images/labelup_faq/2_8.jpg +0 -0
  20. data/app/assets/images/labelup_faq/2_9.jpg +0 -0
  21. data/app/assets/images/labelup_faq/3_1.jpg +0 -0
  22. data/app/assets/images/labelup_faq/3_2.jpg +0 -0
  23. data/app/assets/images/labelup_faq/3_3.jpg +0 -0
  24. data/app/assets/images/labelup_faq/3_4.jpg +0 -0
  25. data/app/assets/images/labelup_faq/3_5.jpg +0 -0
  26. data/app/assets/images/labelup_faq/3_6.jpg +0 -0
  27. data/app/assets/images/labelup_faq/5_1.jpg +0 -0
  28. data/app/assets/images/labelup_faq/5_2.jpg +0 -0
  29. data/app/assets/images/labelup_faq/5_3.jpg +0 -0
  30. data/app/assets/images/labelup_faq/5_4.jpg +0 -0
  31. data/app/assets/images/labelup_faq/5_5.jpg +0 -0
  32. data/app/assets/images/labelup_faq/5_6.jpg +0 -0
  33. data/app/assets/images/labelup_faq/7_1.jpg +0 -0
  34. data/app/assets/images/labelup_faq/7_2.jpg +0 -0
  35. data/app/assets/images/labelup_faq/7_3.jpg +0 -0
  36. data/app/assets/images/labelup_faq/7_4.jpg +0 -0
  37. data/app/assets/images/labelup_faq/7_5.jpg +0 -0
  38. data/app/assets/images/labelup_faq/7_6.jpg +0 -0
  39. data/app/assets/images/labelup_faq/8_1.jpg +0 -0
  40. data/app/assets/images/labelup_faq/bg_2.jpg +0 -0
  41. data/app/assets/images/labelup_faq/bg_5.jpg +0 -0
  42. data/app/assets/images/labelup_faq/bg_6.jpg +0 -0
  43. data/app/assets/images/labelup_faq/bg_6_help.jpg +0 -0
  44. data/app/assets/images/labelup_faq/help_next.svg +41 -0
  45. data/app/assets/images/labelup_faq/ico.jpg +0 -0
  46. data/app/assets/images/labelup_faq/logowh.svg +28 -0
  47. data/app/assets/javascripts/labelup_faq/browser.sniff.js +23 -0
  48. data/app/assets/javascripts/labelup_faq/main.js.erb +326 -0
  49. data/app/assets/javascripts/labelup_faq.js +13 -0
  50. data/app/assets/stylesheets/labelup_faq/animate.css +1607 -0
  51. data/app/assets/stylesheets/labelup_faq/html5boilerplate.css +282 -0
  52. data/app/assets/stylesheets/labelup_faq/normalize.css +424 -0
  53. data/app/assets/stylesheets/labelup_faq/style.scss +858 -0
  54. data/app/assets/stylesheets/labelup_faq.scss +8 -0
  55. data/app/controllers/labelup_faq/help_controller.rb +13 -0
  56. data/app/helpers/labelup_faq/help_helper.rb +51 -0
  57. data/app/views/labelup_faq/help/begin.html.erb +39 -0
  58. data/app/views/labelup_faq/help/choose_performers.html.erb +86 -0
  59. data/app/views/labelup_faq/help/conclusion.html.erb +32 -0
  60. data/app/views/labelup_faq/help/create_campaign.html.erb +97 -0
  61. data/app/views/labelup_faq/help/intro.html.erb +24 -0
  62. data/app/views/labelup_faq/help/moderation.html.erb +49 -0
  63. data/app/views/labelup_faq/help/top_up.html.erb +52 -0
  64. data/app/views/labelup_faq/shared/_header_help.html.erb +16 -0
  65. data/app/views/labelup_faq/shared/_header_mob.html.erb +11 -0
  66. data/app/views/labelup_faq/shared/_menu.slim +6 -0
  67. data/app/views/labelup_faq/shared/_mob_content.html.erb +213 -0
  68. data/app/views/layouts/labelup_faq/help.slim +47 -0
  69. data/config/routes.rb +3 -0
  70. data/labelup_faq.gemspec +26 -0
  71. data/lib/labelup_faq/engine.rb +14 -0
  72. data/lib/labelup_faq/version.rb +3 -0
  73. data/lib/labelup_faq.rb +8 -0
  74. data/lib/tasks/labelup_faq_tasks.rake +4 -0
  75. metadata +159 -0
@@ -0,0 +1,1607 @@
1
+ @charset "UTF-8";
2
+
3
+ /*!
4
+ * animate.css -http://daneden.me/animate
5
+ * Version - 3.5.2
6
+ * Licensed under the MIT license - http://opensource.org/licenses/MIT
7
+ *
8
+ * Copyright (c) 2017 Daniel Eden
9
+ */
10
+
11
+ .animated {
12
+ animation-duration: 0.5s;
13
+ animation-fill-mode: both;
14
+ opacity: 1;
15
+ }
16
+ .op0{opacity: 0;}
17
+ .animated.infinite {
18
+ animation-iteration-count: infinite;
19
+ }
20
+
21
+ .animated.hinge {
22
+ animation-duration: 2s;
23
+ }
24
+
25
+ .animated.flipOutX,
26
+ .animated.flipOutY,
27
+ .animated.bounceIn,
28
+ .animated.bounceOut {
29
+ animation-duration: .75s;
30
+ }
31
+ .del1{
32
+ animation-delay: 0.1s;
33
+ }
34
+ .del2{
35
+ animation-delay: 0.2s;
36
+ }
37
+ .del3{
38
+ animation-delay: 0.3s;
39
+ }
40
+ .del4{
41
+ animation-delay: 0.4s;
42
+ }
43
+ .del5{
44
+ animation-delay: 0.5s;
45
+ }
46
+ .del6{
47
+ animation-delay: 0.5s;
48
+ }
49
+ .del7{
50
+ animation-delay: 0.5s;
51
+ }
52
+ .del8{
53
+ animation-delay: 0.5s;
54
+ }
55
+ .del9{
56
+ animation-delay: 0.6s;
57
+ }
58
+ @keyframes bounce {
59
+ from, 20%, 53%, 80%, to {
60
+ animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
61
+ transform: translate3d(0,0,0);
62
+ }
63
+
64
+ 40%, 43% {
65
+ animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
66
+ transform: translate3d(0, -30px, 0);
67
+ }
68
+
69
+ 70% {
70
+ animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
71
+ transform: translate3d(0, -15px, 0);
72
+ }
73
+
74
+ 90% {
75
+ transform: translate3d(0,-4px,0);
76
+ }
77
+ }
78
+
79
+ .bounce {
80
+ animation-name: bounce;
81
+ transform-origin: center bottom;
82
+ }
83
+
84
+ @keyframes flash {
85
+ from, 50%, to {
86
+ opacity: 1;
87
+ }
88
+
89
+ 25%, 75% {
90
+ opacity: 0;
91
+ }
92
+ }
93
+
94
+ .flash {
95
+ animation-name: flash;
96
+ }
97
+
98
+ /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
99
+
100
+ @keyframes pulse {
101
+ from {
102
+ transform: scale3d(1, 1, 1);
103
+ }
104
+
105
+ 50% {
106
+ transform: scale3d(1.05, 1.05, 1.05);
107
+ }
108
+
109
+ to {
110
+ transform: scale3d(1, 1, 1);
111
+ }
112
+ }
113
+
114
+ .pulse {
115
+ animation-name: pulse;
116
+ }
117
+
118
+ @keyframes rubberBand {
119
+ from {
120
+ transform: scale3d(1, 1, 1);
121
+ }
122
+
123
+ 30% {
124
+ transform: scale3d(1.25, 0.75, 1);
125
+ }
126
+
127
+ 40% {
128
+ transform: scale3d(0.75, 1.25, 1);
129
+ }
130
+
131
+ 50% {
132
+ transform: scale3d(1.15, 0.85, 1);
133
+ }
134
+
135
+ 65% {
136
+ transform: scale3d(.95, 1.05, 1);
137
+ }
138
+
139
+ 75% {
140
+ transform: scale3d(1.05, .95, 1);
141
+ }
142
+
143
+ to {
144
+ transform: scale3d(1, 1, 1);
145
+ }
146
+ }
147
+
148
+ .rubberBand {
149
+ animation-name: rubberBand;
150
+ }
151
+
152
+ @keyframes shake {
153
+ from, to {
154
+ transform: translate3d(0, 0, 0);
155
+ }
156
+
157
+ 10%, 30%, 50%, 70%, 90% {
158
+ transform: translate3d(-10px, 0, 0);
159
+ }
160
+
161
+ 20%, 40%, 60%, 80% {
162
+ transform: translate3d(10px, 0, 0);
163
+ }
164
+ }
165
+
166
+ .shake {
167
+ animation-name: shake;
168
+ }
169
+
170
+ @keyframes headShake {
171
+ 0% {
172
+ transform: translateX(0);
173
+ }
174
+
175
+ 6.5% {
176
+ transform: translateX(-6px) rotateY(-9deg);
177
+ }
178
+
179
+ 18.5% {
180
+ transform: translateX(5px) rotateY(7deg);
181
+ }
182
+
183
+ 31.5% {
184
+ transform: translateX(-3px) rotateY(-5deg);
185
+ }
186
+
187
+ 43.5% {
188
+ transform: translateX(2px) rotateY(3deg);
189
+ }
190
+
191
+ 50% {
192
+ transform: translateX(0);
193
+ }
194
+ }
195
+
196
+ .headShake {
197
+ animation-timing-function: ease-in-out;
198
+ animation-name: headShake;
199
+ }
200
+
201
+ @keyframes swing {
202
+ 20% {
203
+ transform: rotate3d(0, 0, 1, 15deg);
204
+ }
205
+
206
+ 40% {
207
+ transform: rotate3d(0, 0, 1, -10deg);
208
+ }
209
+
210
+ 60% {
211
+ transform: rotate3d(0, 0, 1, 5deg);
212
+ }
213
+
214
+ 80% {
215
+ transform: rotate3d(0, 0, 1, -5deg);
216
+ }
217
+
218
+ to {
219
+ transform: rotate3d(0, 0, 1, 0deg);
220
+ }
221
+ }
222
+
223
+ .swing {
224
+ transform-origin: top center;
225
+ animation-name: swing;
226
+ }
227
+
228
+ @keyframes tada {
229
+ from {
230
+ transform: scale3d(1, 1, 1);
231
+ }
232
+
233
+ 10%, 20% {
234
+ transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
235
+ }
236
+
237
+ 30%, 50%, 70%, 90% {
238
+ transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
239
+ }
240
+
241
+ 40%, 60%, 80% {
242
+ transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
243
+ }
244
+
245
+ to {
246
+ transform: scale3d(1, 1, 1);
247
+ }
248
+ }
249
+
250
+ .tada {
251
+ animation-name: tada;
252
+ }
253
+
254
+ /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
255
+
256
+ @keyframes wobble {
257
+ from {
258
+ transform: none;
259
+ }
260
+
261
+ 15% {
262
+ transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
263
+ }
264
+
265
+ 30% {
266
+ transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
267
+ }
268
+
269
+ 45% {
270
+ transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
271
+ }
272
+
273
+ 60% {
274
+ transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
275
+ }
276
+
277
+ 75% {
278
+ transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
279
+ }
280
+
281
+ to {
282
+ transform: none;
283
+ }
284
+ }
285
+
286
+ .wobble {
287
+ animation-name: wobble;
288
+ }
289
+
290
+ @keyframes jello {
291
+ from, 11.1%, to {
292
+ transform: none;
293
+ }
294
+
295
+ 22.2% {
296
+ transform: skewX(-12.5deg) skewY(-12.5deg);
297
+ }
298
+
299
+ 33.3% {
300
+ transform: skewX(6.25deg) skewY(6.25deg);
301
+ }
302
+
303
+ 44.4% {
304
+ transform: skewX(-3.125deg) skewY(-3.125deg);
305
+ }
306
+
307
+ 55.5% {
308
+ transform: skewX(1.5625deg) skewY(1.5625deg);
309
+ }
310
+
311
+ 66.6% {
312
+ transform: skewX(-0.78125deg) skewY(-0.78125deg);
313
+ }
314
+
315
+ 77.7% {
316
+ transform: skewX(0.390625deg) skewY(0.390625deg);
317
+ }
318
+
319
+ 88.8% {
320
+ transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
321
+ }
322
+ }
323
+
324
+ .jello {
325
+ animation-name: jello;
326
+ transform-origin: center;
327
+ }
328
+
329
+ @keyframes bounceIn {
330
+ from, 20%, 40%, 60%, 80%, to {
331
+ animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
332
+ }
333
+
334
+ 0% {
335
+ opacity: 0;
336
+ transform: scale3d(.3, .3, .3);
337
+ }
338
+
339
+ 20% {
340
+ transform: scale3d(1.1, 1.1, 1.1);
341
+ }
342
+
343
+ 40% {
344
+ transform: scale3d(.9, .9, .9);
345
+ }
346
+
347
+ 60% {
348
+ opacity: 1;
349
+ transform: scale3d(1.03, 1.03, 1.03);
350
+ }
351
+
352
+ 80% {
353
+ transform: scale3d(.97, .97, .97);
354
+ }
355
+
356
+ to {
357
+ opacity: 1;
358
+ transform: scale3d(1, 1, 1);
359
+ }
360
+ }
361
+
362
+ .bounceIn {
363
+ animation-name: bounceIn;
364
+ }
365
+
366
+ @keyframes bounceInDown {
367
+ from, 60%, 75%, 90%, to {
368
+ animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
369
+ }
370
+
371
+ 0% {
372
+ opacity: 0;
373
+ transform: translate3d(0, -3000px, 0);
374
+ }
375
+
376
+ 60% {
377
+ opacity: 1;
378
+ transform: translate3d(0, 25px, 0);
379
+ }
380
+
381
+ 75% {
382
+ transform: translate3d(0, -10px, 0);
383
+ }
384
+
385
+ 90% {
386
+ transform: translate3d(0, 5px, 0);
387
+ }
388
+
389
+ to {
390
+ transform: none;
391
+ }
392
+ }
393
+
394
+ .bounceInDown {
395
+ animation-name: bounceInDown;
396
+ }
397
+
398
+ @keyframes bounceInLeft {
399
+ from, 60%, 75%, 90%, to {
400
+ animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
401
+ }
402
+
403
+ 0% {
404
+ opacity: 0;
405
+ transform: translate3d(-3000px, 0, 0);
406
+ }
407
+
408
+ 60% {
409
+ opacity: 1;
410
+ transform: translate3d(25px, 0, 0);
411
+ }
412
+
413
+ 75% {
414
+ transform: translate3d(-10px, 0, 0);
415
+ }
416
+
417
+ 90% {
418
+ transform: translate3d(5px, 0, 0);
419
+ }
420
+
421
+ to {
422
+ transform: none;
423
+ }
424
+ }
425
+
426
+ .bounceInLeft {
427
+ animation-name: bounceInLeft;
428
+ }
429
+
430
+ @keyframes bounceInRight {
431
+ from, 60%, 75%, 90%, to {
432
+ animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
433
+ }
434
+
435
+ from {
436
+ opacity: 0;
437
+ transform: translate3d(3000px, 0, 0);
438
+ }
439
+
440
+ 60% {
441
+ opacity: 1;
442
+ transform: translate3d(-25px, 0, 0);
443
+ }
444
+
445
+ 75% {
446
+ transform: translate3d(10px, 0, 0);
447
+ }
448
+
449
+ 90% {
450
+ transform: translate3d(-5px, 0, 0);
451
+ }
452
+
453
+ to {
454
+ transform: none;
455
+ }
456
+ }
457
+
458
+ .bounceInRight {
459
+ animation-name: bounceInRight;
460
+ }
461
+
462
+ @keyframes bounceInUp {
463
+ from, 60%, 75%, 90%, to {
464
+ animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
465
+ }
466
+
467
+ from {
468
+ opacity: 0;
469
+ transform: translate3d(0, 3000px, 0);
470
+ }
471
+
472
+ 60% {
473
+ opacity: 1;
474
+ transform: translate3d(0, -20px, 0);
475
+ }
476
+
477
+ 75% {
478
+ transform: translate3d(0, 10px, 0);
479
+ }
480
+
481
+ 90% {
482
+ transform: translate3d(0, -5px, 0);
483
+ }
484
+
485
+ to {
486
+ transform: translate3d(0, 0, 0);
487
+ }
488
+ }
489
+
490
+ .bounceInUp {
491
+ animation-name: bounceInUp;
492
+ opacity: 1;
493
+ }
494
+
495
+ @keyframes bounceOut {
496
+ 20% {
497
+ transform: scale3d(.9, .9, .9);
498
+ }
499
+
500
+ 50%, 55% {
501
+ opacity: 1;
502
+ transform: scale3d(1.1, 1.1, 1.1);
503
+ }
504
+
505
+ to {
506
+ opacity: 0;
507
+ transform: scale3d(.3, .3, .3);
508
+ }
509
+ }
510
+
511
+ .bounceOut {
512
+ animation-name: bounceOut;
513
+ }
514
+
515
+ @keyframes bounceOutDown {
516
+ 20% {
517
+ transform: translate3d(0, 10px, 0);
518
+ }
519
+
520
+ 40%, 45% {
521
+ opacity: 1;
522
+ transform: translate3d(0, -20px, 0);
523
+ }
524
+
525
+ to {
526
+ opacity: 0;
527
+ transform: translate3d(0, 2000px, 0);
528
+ }
529
+ }
530
+
531
+ .bounceOutDown {
532
+ animation-name: bounceOutDown;
533
+ }
534
+
535
+ @keyframes bounceOutLeft {
536
+ 20% {
537
+ opacity: 1;
538
+ transform: translate3d(20px, 0, 0);
539
+ }
540
+
541
+ to {
542
+ opacity: 0;
543
+ transform: translate3d(-2000px, 0, 0);
544
+ }
545
+ }
546
+
547
+ .bounceOutLeft {
548
+ animation-name: bounceOutLeft;
549
+ }
550
+
551
+ @keyframes bounceOutRight {
552
+ 20% {
553
+ opacity: 1;
554
+ transform: translate3d(-20px, 0, 0);
555
+ }
556
+
557
+ to {
558
+ opacity: 0;
559
+ transform: translate3d(2000px, 0, 0);
560
+ }
561
+ }
562
+
563
+ .bounceOutRight {
564
+ animation-name: bounceOutRight;
565
+ }
566
+
567
+ @keyframes bounceOutUp {
568
+ 20% {
569
+ transform: translate3d(0, -10px, 0);
570
+ }
571
+
572
+ 40%, 45% {
573
+ opacity: 1;
574
+ transform: translate3d(0, 20px, 0);
575
+ }
576
+
577
+ to {
578
+ opacity: 0;
579
+ transform: translate3d(0, -2000px, 0);
580
+ }
581
+ }
582
+
583
+ .bounceOutUp {
584
+ animation-name: bounceOutUp;
585
+ }
586
+
587
+ @keyframes fadeIn {
588
+ from {
589
+ opacity: 0;
590
+ }
591
+
592
+ to {
593
+ opacity: 1;
594
+ }
595
+ }
596
+
597
+ .fadeIn {
598
+ animation-name: fadeIn;
599
+ }
600
+
601
+ @keyframes fadeInDown {
602
+ from {
603
+ opacity: 0;
604
+ transform: translate3d(0, -100%, 0);
605
+ }
606
+
607
+ to {
608
+ opacity: 1;
609
+ transform: none;
610
+ }
611
+ }
612
+
613
+ .fadeInDown {
614
+ animation-name: fadeInDown;
615
+ }
616
+
617
+ @keyframes fadeInDownBig {
618
+ from {
619
+ opacity: 0;
620
+ transform: translate3d(0, -2000px, 0);
621
+ }
622
+
623
+ to {
624
+ opacity: 1;
625
+ transform: none;
626
+ }
627
+ }
628
+
629
+ .fadeInDownBig {
630
+ animation-name: fadeInDownBig;
631
+ }
632
+
633
+ @keyframes fadeInLeft {
634
+ from {
635
+ opacity: 0;
636
+ transform: translate3d(-100%, 0, 0);
637
+ }
638
+
639
+ to {
640
+ opacity: 1;
641
+ transform: none;
642
+ }
643
+ }
644
+
645
+ .fadeInLeft {
646
+ animation-name: fadeInLeft;
647
+ }
648
+
649
+ @keyframes fadeInLeftBig {
650
+ from {
651
+ opacity: 0;
652
+ transform: translate3d(-2000px, 0, 0);
653
+ }
654
+
655
+ to {
656
+ opacity: 1;
657
+ transform: none;
658
+ }
659
+ }
660
+
661
+ .fadeInLeftBig {
662
+ animation-name: fadeInLeftBig;
663
+ }
664
+
665
+ @keyframes fadeInRight {
666
+ from {
667
+ opacity: 0;
668
+ transform: translate3d(100%, 0, 0);
669
+ }
670
+
671
+ to {
672
+ opacity: 1;
673
+ transform: none;
674
+ }
675
+ }
676
+
677
+ .fadeInRight {
678
+ animation-name: fadeInRight;
679
+ }
680
+
681
+ @keyframes fadeInRightBig {
682
+ from {
683
+ opacity: 0;
684
+ transform: translate3d(2000px, 0, 0);
685
+ }
686
+
687
+ to {
688
+ opacity: 1;
689
+ transform: none;
690
+ }
691
+ }
692
+
693
+ .fadeInRightBig {
694
+ animation-name: fadeInRightBig;
695
+ }
696
+
697
+ @keyframes fadeInUp {
698
+ from {
699
+ opacity: 0;
700
+ transform: translate3d(0, 100%, 0);
701
+ }
702
+
703
+ to {
704
+ opacity: 1;
705
+ transform: none;
706
+ }
707
+ }
708
+
709
+ .fadeInUp {
710
+ animation-name: fadeInUp;
711
+ }
712
+
713
+ @keyframes fadeInUpBig {
714
+ from {
715
+ opacity: 0;
716
+ transform: translate3d(0, 2000px, 0);
717
+ }
718
+
719
+ to {
720
+ opacity: 1;
721
+ transform: none;
722
+ }
723
+ }
724
+
725
+ .fadeInUpBig {
726
+ animation-name: fadeInUpBig;
727
+ }
728
+
729
+ @keyframes fadeOut {
730
+ from {
731
+ opacity: 1;
732
+ }
733
+
734
+ to {
735
+ opacity: 0;
736
+ }
737
+ }
738
+
739
+ .fadeOut {
740
+ animation-name: fadeOut;
741
+ }
742
+
743
+ @keyframes fadeOutDown {
744
+ from {
745
+ opacity: 1;
746
+ }
747
+
748
+ to {
749
+ opacity: 0;
750
+ transform: translate3d(0, 100%, 0);
751
+ }
752
+ }
753
+
754
+ .fadeOutDown {
755
+ animation-name: fadeOutDown;
756
+ }
757
+
758
+ @keyframes fadeOutDownBig {
759
+ from {
760
+ opacity: 1;
761
+ }
762
+
763
+ to {
764
+ opacity: 0;
765
+ transform: translate3d(0, 2000px, 0);
766
+ }
767
+ }
768
+
769
+ .fadeOutDownBig {
770
+ animation-name: fadeOutDownBig;
771
+ }
772
+
773
+ @keyframes fadeOutLeft {
774
+ from {
775
+ opacity: 1;
776
+ }
777
+
778
+ to {
779
+ opacity: 0;
780
+ transform: translate3d(-100%, 0, 0);
781
+ }
782
+ }
783
+
784
+ .fadeOutLeft {
785
+ animation-name: fadeOutLeft;
786
+ }
787
+
788
+ @keyframes fadeOutLeftBig {
789
+ from {
790
+ opacity: 1;
791
+ }
792
+
793
+ to {
794
+ opacity: 0;
795
+ transform: translate3d(-2000px, 0, 0);
796
+ }
797
+ }
798
+
799
+ .fadeOutLeftBig {
800
+ animation-name: fadeOutLeftBig;
801
+ }
802
+
803
+ @keyframes fadeOutRight {
804
+ from {
805
+ opacity: 1;
806
+ }
807
+
808
+ to {
809
+ opacity: 0;
810
+ transform: translate3d(100%, 0, 0);
811
+ }
812
+ }
813
+
814
+ .fadeOutRight {
815
+ animation-name: fadeOutRight;
816
+ }
817
+
818
+ @keyframes fadeOutRightBig {
819
+ from {
820
+ opacity: 1;
821
+ }
822
+
823
+ to {
824
+ opacity: 0;
825
+ transform: translate3d(2000px, 0, 0);
826
+ }
827
+ }
828
+
829
+ .fadeOutRightBig {
830
+ animation-name: fadeOutRightBig;
831
+ }
832
+
833
+ @keyframes fadeOutUp {
834
+ from {
835
+ opacity: 1;
836
+ }
837
+
838
+ to {
839
+ opacity: 0;
840
+ transform: translate3d(0, -100%, 0);
841
+ }
842
+ }
843
+
844
+ .fadeOutUp {
845
+ animation-name: fadeOutUp;
846
+ }
847
+
848
+ @keyframes fadeOutUpBig {
849
+ from {
850
+ opacity: 1;
851
+ }
852
+
853
+ to {
854
+ opacity: 0;
855
+ transform: translate3d(0, -2000px, 0);
856
+ }
857
+ }
858
+
859
+ .fadeOutUpBig {
860
+ animation-name: fadeOutUpBig;
861
+ }
862
+
863
+ @keyframes flip {
864
+ from {
865
+ transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
866
+ animation-timing-function: ease-out;
867
+ }
868
+
869
+ 40% {
870
+ transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
871
+ animation-timing-function: ease-out;
872
+ }
873
+
874
+ 50% {
875
+ transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
876
+ animation-timing-function: ease-in;
877
+ }
878
+
879
+ 80% {
880
+ transform: perspective(400px) scale3d(.95, .95, .95);
881
+ animation-timing-function: ease-in;
882
+ }
883
+
884
+ to {
885
+ transform: perspective(400px);
886
+ animation-timing-function: ease-in;
887
+ }
888
+ }
889
+
890
+ .animated.flip {
891
+ -webkit-backface-visibility: visible;
892
+ backface-visibility: visible;
893
+ animation-name: flip;
894
+ }
895
+
896
+ @keyframes flipInX {
897
+ from {
898
+ transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
899
+ animation-timing-function: ease-in;
900
+ opacity: 0;
901
+ }
902
+
903
+ 40% {
904
+ transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
905
+ animation-timing-function: ease-in;
906
+ }
907
+
908
+ 60% {
909
+ transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
910
+ opacity: 1;
911
+ }
912
+
913
+ 80% {
914
+ transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
915
+ }
916
+
917
+ to {
918
+ transform: perspective(400px);
919
+ }
920
+ }
921
+
922
+ .flipInX {
923
+ -webkit-backface-visibility: visible !important;
924
+ backface-visibility: visible !important;
925
+ animation-name: flipInX;
926
+ }
927
+
928
+ @keyframes flipInY {
929
+ from {
930
+ transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
931
+ animation-timing-function: ease-in;
932
+ opacity: 0;
933
+ }
934
+
935
+ 40% {
936
+ transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
937
+ animation-timing-function: ease-in;
938
+ }
939
+
940
+ 60% {
941
+ transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
942
+ opacity: 1;
943
+ }
944
+
945
+ 80% {
946
+ transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
947
+ }
948
+
949
+ to {
950
+ transform: perspective(400px);
951
+ }
952
+ }
953
+
954
+ .flipInY {
955
+ -webkit-backface-visibility: visible !important;
956
+ backface-visibility: visible !important;
957
+ animation-name: flipInY;
958
+ }
959
+
960
+ @keyframes flipOutX {
961
+ from {
962
+ transform: perspective(400px);
963
+ }
964
+
965
+ 30% {
966
+ transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
967
+ opacity: 1;
968
+ }
969
+
970
+ to {
971
+ transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
972
+ opacity: 0;
973
+ }
974
+ }
975
+
976
+ .flipOutX {
977
+ animation-name: flipOutX;
978
+ -webkit-backface-visibility: visible !important;
979
+ backface-visibility: visible !important;
980
+ }
981
+
982
+ @keyframes flipOutY {
983
+ from {
984
+ transform: perspective(400px);
985
+ }
986
+
987
+ 30% {
988
+ transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
989
+ opacity: 1;
990
+ }
991
+
992
+ to {
993
+ transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
994
+ opacity: 0;
995
+ }
996
+ }
997
+
998
+ .flipOutY {
999
+ -webkit-backface-visibility: visible !important;
1000
+ backface-visibility: visible !important;
1001
+ animation-name: flipOutY;
1002
+ }
1003
+
1004
+ @keyframes lightSpeedIn {
1005
+ from {
1006
+ transform: translate3d(100%, 0, 0) skewX(-30deg);
1007
+ opacity: 0;
1008
+ }
1009
+
1010
+ 60% {
1011
+ transform: skewX(20deg);
1012
+ opacity: 1;
1013
+ }
1014
+
1015
+ 80% {
1016
+ transform: skewX(-5deg);
1017
+ opacity: 1;
1018
+ }
1019
+
1020
+ to {
1021
+ transform: none;
1022
+ opacity: 1;
1023
+ }
1024
+ }
1025
+
1026
+ .lightSpeedIn {
1027
+ animation-name: lightSpeedIn;
1028
+ animation-timing-function: ease-out;
1029
+ }
1030
+
1031
+ @keyframes lightSpeedOut {
1032
+ from {
1033
+ opacity: 1;
1034
+ }
1035
+
1036
+ to {
1037
+ transform: translate3d(100%, 0, 0) skewX(30deg);
1038
+ opacity: 0;
1039
+ }
1040
+ }
1041
+
1042
+ .lightSpeedOut {
1043
+ animation-name: lightSpeedOut;
1044
+ animation-timing-function: ease-in;
1045
+ }
1046
+
1047
+ @keyframes rotateIn {
1048
+ from {
1049
+ transform-origin: center;
1050
+ transform: rotate3d(0, 0, 1, -200deg);
1051
+ opacity: 0;
1052
+ }
1053
+
1054
+ to {
1055
+ transform-origin: center;
1056
+ transform: none;
1057
+ opacity: 1;
1058
+ }
1059
+ }
1060
+
1061
+ .rotateIn {
1062
+ animation-name: rotateIn;
1063
+ }
1064
+
1065
+ @keyframes rotateInDownLeft {
1066
+ from {
1067
+ transform-origin: left bottom;
1068
+ transform: rotate3d(0, 0, 1, -45deg);
1069
+ opacity: 0;
1070
+ }
1071
+
1072
+ to {
1073
+ transform-origin: left bottom;
1074
+ transform: none;
1075
+ opacity: 1;
1076
+ }
1077
+ }
1078
+
1079
+ .rotateInDownLeft {
1080
+ animation-name: rotateInDownLeft;
1081
+ }
1082
+
1083
+ @keyframes rotateInDownRight {
1084
+ from {
1085
+ transform-origin: right bottom;
1086
+ transform: rotate3d(0, 0, 1, 45deg);
1087
+ opacity: 0;
1088
+ }
1089
+
1090
+ to {
1091
+ transform-origin: right bottom;
1092
+ transform: none;
1093
+ opacity: 1;
1094
+ }
1095
+ }
1096
+
1097
+ .rotateInDownRight {
1098
+ animation-name: rotateInDownRight;
1099
+ }
1100
+
1101
+ @keyframes rotateInUpLeft {
1102
+ from {
1103
+ transform-origin: left bottom;
1104
+ transform: rotate3d(0, 0, 1, 45deg);
1105
+ opacity: 0;
1106
+ }
1107
+
1108
+ to {
1109
+ transform-origin: left bottom;
1110
+ transform: none;
1111
+ opacity: 1;
1112
+ }
1113
+ }
1114
+
1115
+ .rotateInUpLeft {
1116
+ animation-name: rotateInUpLeft;
1117
+ }
1118
+
1119
+ @keyframes rotateInUpRight {
1120
+ from {
1121
+ transform-origin: right bottom;
1122
+ transform: rotate3d(0, 0, 1, -90deg);
1123
+ opacity: 0;
1124
+ }
1125
+
1126
+ to {
1127
+ transform-origin: right bottom;
1128
+ transform: none;
1129
+ opacity: 1;
1130
+ }
1131
+ }
1132
+
1133
+ .rotateInUpRight {
1134
+ animation-name: rotateInUpRight;
1135
+ }
1136
+
1137
+ @keyframes rotateOut {
1138
+ from {
1139
+ transform-origin: center;
1140
+ opacity: 1;
1141
+ }
1142
+
1143
+ to {
1144
+ transform-origin: center;
1145
+ transform: rotate3d(0, 0, 1, 200deg);
1146
+ opacity: 0;
1147
+ }
1148
+ }
1149
+
1150
+ .rotateOut {
1151
+ animation-name: rotateOut;
1152
+ }
1153
+
1154
+ @keyframes rotateOutDownLeft {
1155
+ from {
1156
+ transform-origin: left bottom;
1157
+ opacity: 1;
1158
+ }
1159
+
1160
+ to {
1161
+ transform-origin: left bottom;
1162
+ transform: rotate3d(0, 0, 1, 45deg);
1163
+ opacity: 0;
1164
+ }
1165
+ }
1166
+
1167
+ .rotateOutDownLeft {
1168
+ animation-name: rotateOutDownLeft;
1169
+ }
1170
+
1171
+ @keyframes rotateOutDownRight {
1172
+ from {
1173
+ transform-origin: right bottom;
1174
+ opacity: 1;
1175
+ }
1176
+
1177
+ to {
1178
+ transform-origin: right bottom;
1179
+ transform: rotate3d(0, 0, 1, -45deg);
1180
+ opacity: 0;
1181
+ }
1182
+ }
1183
+
1184
+ .rotateOutDownRight {
1185
+ animation-name: rotateOutDownRight;
1186
+ }
1187
+
1188
+ @keyframes rotateOutUpLeft {
1189
+ from {
1190
+ transform-origin: left bottom;
1191
+ opacity: 1;
1192
+ }
1193
+
1194
+ to {
1195
+ transform-origin: left bottom;
1196
+ transform: rotate3d(0, 0, 1, -45deg);
1197
+ opacity: 0;
1198
+ }
1199
+ }
1200
+
1201
+ .rotateOutUpLeft {
1202
+ animation-name: rotateOutUpLeft;
1203
+ }
1204
+
1205
+ @keyframes rotateOutUpRight {
1206
+ from {
1207
+ transform-origin: right bottom;
1208
+ opacity: 1;
1209
+ }
1210
+
1211
+ to {
1212
+ transform-origin: right bottom;
1213
+ transform: rotate3d(0, 0, 1, 90deg);
1214
+ opacity: 0;
1215
+ }
1216
+ }
1217
+
1218
+ .rotateOutUpRight {
1219
+ animation-name: rotateOutUpRight;
1220
+ }
1221
+
1222
+ @keyframes hinge {
1223
+ 0% {
1224
+ transform-origin: top left;
1225
+ animation-timing-function: ease-in-out;
1226
+ }
1227
+
1228
+ 20%, 60% {
1229
+ transform: rotate3d(0, 0, 1, 80deg);
1230
+ transform-origin: top left;
1231
+ animation-timing-function: ease-in-out;
1232
+ }
1233
+
1234
+ 40%, 80% {
1235
+ transform: rotate3d(0, 0, 1, 60deg);
1236
+ transform-origin: top left;
1237
+ animation-timing-function: ease-in-out;
1238
+ opacity: 1;
1239
+ }
1240
+
1241
+ to {
1242
+ transform: translate3d(0, 700px, 0);
1243
+ opacity: 0;
1244
+ }
1245
+ }
1246
+
1247
+ .hinge {
1248
+ animation-name: hinge;
1249
+ }
1250
+
1251
+ @keyframes jackInTheBox {
1252
+ from {
1253
+ opacity: 0;
1254
+ transform: scale(0.1) rotate(30deg);
1255
+ transform-origin: center bottom;
1256
+ }
1257
+
1258
+ 50% {
1259
+ transform: rotate(-10deg);
1260
+ }
1261
+
1262
+ 70% {
1263
+ transform: rotate(3deg);
1264
+ }
1265
+
1266
+ to {
1267
+ opacity: 1;
1268
+ transform: scale(1);
1269
+ }
1270
+ }
1271
+
1272
+ .jackInTheBox {
1273
+ animation-name: jackInTheBox;
1274
+ }
1275
+
1276
+ /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
1277
+
1278
+ @keyframes rollIn {
1279
+ from {
1280
+ opacity: 0;
1281
+ transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
1282
+ }
1283
+
1284
+ to {
1285
+ opacity: 1;
1286
+ transform: none;
1287
+ }
1288
+ }
1289
+
1290
+ .rollIn {
1291
+ animation-name: rollIn;
1292
+ }
1293
+
1294
+ /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
1295
+
1296
+ @keyframes rollOut {
1297
+ from {
1298
+ opacity: 1;
1299
+ }
1300
+
1301
+ to {
1302
+ opacity: 0;
1303
+ transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
1304
+ }
1305
+ }
1306
+
1307
+ .rollOut {
1308
+ animation-name: rollOut;
1309
+ }
1310
+
1311
+ @keyframes zoomIn {
1312
+ from {
1313
+ opacity: 0;
1314
+ transform: scale3d(.3, .3, .3);
1315
+ }
1316
+
1317
+ 50% {
1318
+ opacity: 1;
1319
+ }
1320
+ }
1321
+
1322
+ .zoomIn {
1323
+ animation-name: zoomIn;
1324
+ }
1325
+
1326
+ @keyframes zoomInDown {
1327
+ from {
1328
+ opacity: 0;
1329
+ transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
1330
+ animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
1331
+ }
1332
+
1333
+ 60% {
1334
+ opacity: 1;
1335
+ transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
1336
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
1337
+ }
1338
+ }
1339
+
1340
+ .zoomInDown {
1341
+ animation-name: zoomInDown;
1342
+ }
1343
+
1344
+ @keyframes zoomInLeft {
1345
+ from {
1346
+ opacity: 0;
1347
+ transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
1348
+ animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
1349
+ }
1350
+
1351
+ 60% {
1352
+ opacity: 1;
1353
+ transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
1354
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
1355
+ }
1356
+ }
1357
+
1358
+ .zoomInLeft {
1359
+ animation-name: zoomInLeft;
1360
+ }
1361
+
1362
+ @keyframes zoomInRight {
1363
+ from {
1364
+ opacity: 0;
1365
+ transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
1366
+ animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
1367
+ }
1368
+
1369
+ 60% {
1370
+ opacity: 1;
1371
+ transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
1372
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
1373
+ }
1374
+ }
1375
+
1376
+ .zoomInRight {
1377
+ animation-name: zoomInRight;
1378
+ }
1379
+
1380
+ @keyframes zoomInUp {
1381
+ from {
1382
+ opacity: 0;
1383
+ transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
1384
+ animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
1385
+ }
1386
+
1387
+ 60% {
1388
+ opacity: 1;
1389
+ transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
1390
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
1391
+ }
1392
+ }
1393
+
1394
+ .zoomInUp {
1395
+ animation-name: zoomInUp;
1396
+ }
1397
+
1398
+ @keyframes zoomOut {
1399
+ from {
1400
+ opacity: 1;
1401
+ }
1402
+
1403
+ 50% {
1404
+ opacity: 0;
1405
+ transform: scale3d(.3, .3, .3);
1406
+ }
1407
+
1408
+ to {
1409
+ opacity: 0;
1410
+ }
1411
+ }
1412
+
1413
+ .zoomOut {
1414
+ animation-name: zoomOut;
1415
+ }
1416
+
1417
+ @keyframes zoomOutDown {
1418
+ 40% {
1419
+ opacity: 1;
1420
+ transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
1421
+ animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
1422
+ }
1423
+
1424
+ to {
1425
+ opacity: 0;
1426
+ transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
1427
+ transform-origin: center bottom;
1428
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
1429
+ }
1430
+ }
1431
+
1432
+ .zoomOutDown {
1433
+ animation-name: zoomOutDown;
1434
+ }
1435
+
1436
+ @keyframes zoomOutLeft {
1437
+ 40% {
1438
+ opacity: 1;
1439
+ transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
1440
+ }
1441
+
1442
+ to {
1443
+ opacity: 0;
1444
+ transform: scale(.1) translate3d(-2000px, 0, 0);
1445
+ transform-origin: left center;
1446
+ }
1447
+ }
1448
+
1449
+ .zoomOutLeft {
1450
+ animation-name: zoomOutLeft;
1451
+ }
1452
+
1453
+ @keyframes zoomOutRight {
1454
+ 40% {
1455
+ opacity: 1;
1456
+ transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
1457
+ }
1458
+
1459
+ to {
1460
+ opacity: 0;
1461
+ transform: scale(.1) translate3d(2000px, 0, 0);
1462
+ transform-origin: right center;
1463
+ }
1464
+ }
1465
+
1466
+ .zoomOutRight {
1467
+ animation-name: zoomOutRight;
1468
+ }
1469
+
1470
+ @keyframes zoomOutUp {
1471
+ 40% {
1472
+ opacity: 1;
1473
+ transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
1474
+ animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
1475
+ }
1476
+
1477
+ to {
1478
+ opacity: 0;
1479
+ transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
1480
+ transform-origin: center bottom;
1481
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
1482
+ }
1483
+ }
1484
+
1485
+ .zoomOutUp {
1486
+ animation-name: zoomOutUp;
1487
+ }
1488
+
1489
+ @keyframes slideInDown {
1490
+ from {
1491
+ transform: translate3d(0, -100%, 0);
1492
+ visibility: visible;
1493
+ }
1494
+
1495
+ to {
1496
+ transform: translate3d(0, 0, 0);
1497
+ }
1498
+ }
1499
+
1500
+ .slideInDown {
1501
+ animation-name: slideInDown;
1502
+ }
1503
+
1504
+ @keyframes slideInLeft {
1505
+ from {
1506
+ transform: translate3d(-100%, 0, 0);
1507
+ visibility: visible;
1508
+ }
1509
+
1510
+ to {
1511
+ transform: translate3d(0, 0, 0);
1512
+ }
1513
+ }
1514
+
1515
+ .slideInLeft {
1516
+ animation-name: slideInLeft;
1517
+ }
1518
+
1519
+ @keyframes slideInRight {
1520
+ from {
1521
+ transform: translate3d(100%, 0, 0);
1522
+ visibility: visible;
1523
+ }
1524
+
1525
+ to {
1526
+ transform: translate3d(0, 0, 0);
1527
+ }
1528
+ }
1529
+
1530
+ .slideInRight {
1531
+ animation-name: slideInRight;
1532
+ }
1533
+
1534
+ @keyframes slideInUp {
1535
+ from {
1536
+ transform: translate3d(0, 100%, 0);
1537
+ visibility: visible;
1538
+ }
1539
+
1540
+ to {
1541
+ transform: translate3d(0, 0, 0);
1542
+ }
1543
+ }
1544
+
1545
+ .slideInUp {
1546
+ animation-name: slideInUp;
1547
+ }
1548
+
1549
+ @keyframes slideOutDown {
1550
+ from {
1551
+ transform: translate3d(0, 0, 0);
1552
+ }
1553
+
1554
+ to {
1555
+ visibility: hidden;
1556
+ transform: translate3d(0, 100%, 0);
1557
+ }
1558
+ }
1559
+
1560
+ .slideOutDown {
1561
+ animation-name: slideOutDown;
1562
+ }
1563
+
1564
+ @keyframes slideOutLeft {
1565
+ from {
1566
+ transform: translate3d(0, 0, 0);
1567
+ }
1568
+
1569
+ to {
1570
+ visibility: hidden;
1571
+ transform: translate3d(-100%, 0, 0);
1572
+ }
1573
+ }
1574
+
1575
+ .slideOutLeft {
1576
+ animation-name: slideOutLeft;
1577
+ }
1578
+
1579
+ @keyframes slideOutRight {
1580
+ from {
1581
+ transform: translate3d(0, 0, 0);
1582
+ }
1583
+
1584
+ to {
1585
+ visibility: hidden;
1586
+ transform: translate3d(100%, 0, 0);
1587
+ }
1588
+ }
1589
+
1590
+ .slideOutRight {
1591
+ animation-name: slideOutRight;
1592
+ }
1593
+
1594
+ @keyframes slideOutUp {
1595
+ from {
1596
+ transform: translate3d(0, 0, 0);
1597
+ }
1598
+
1599
+ to {
1600
+ visibility: hidden;
1601
+ transform: translate3d(0, -100%, 0);
1602
+ }
1603
+ }
1604
+
1605
+ .slideOutUp {
1606
+ animation-name: slideOutUp;
1607
+ }