lone-wolf-theme 1.0.3

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