vgapp 0.0.1

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 (48) hide show
  1. package/.gitattributes +1 -0
  2. package/CHANGELOG.md +0 -0
  3. package/LICENSE +21 -0
  4. package/README.md +1 -0
  5. package/app/modules/base-module.js +97 -0
  6. package/app/modules/module-fn.js +119 -0
  7. package/app/modules/vgcollapse/js/vgcollapse.js +219 -0
  8. package/app/modules/vgdropdown/js/vgdropdown.js +279 -0
  9. package/app/modules/vgdropdown/scss/_variables.scss +9 -0
  10. package/app/modules/vgdropdown/scss/vgdropdown.scss +41 -0
  11. package/app/modules/vgformsender/js/vgformsender.js +400 -0
  12. package/app/modules/vgformsender/scss/vgformsender.scss +19 -0
  13. package/app/modules/vgmodal/js/vgmodal.js +346 -0
  14. package/app/modules/vgmodal/scss/_variables.scss +25 -0
  15. package/app/modules/vgmodal/scss/vgmodal.scss +111 -0
  16. package/app/modules/vgnav/js/vgnav.js +498 -0
  17. package/app/modules/vgnav/scss/_breakpoints.scss +127 -0
  18. package/app/modules/vgnav/scss/_hamburger.scss +62 -0
  19. package/app/modules/vgnav/scss/_placement.scss +70 -0
  20. package/app/modules/vgnav/scss/_toggle.scss +20 -0
  21. package/app/modules/vgnav/scss/_variables.scss +68 -0
  22. package/app/modules/vgnav/scss/vgnav.scss +150 -0
  23. package/app/modules/vgsidebar/js/vgsidebar.js +165 -0
  24. package/app/modules/vgsidebar/scss/_variables.scss +19 -0
  25. package/app/modules/vgsidebar/scss/vgsidebar.scss +90 -0
  26. package/app/utils/js/components/backdrop.js +54 -0
  27. package/app/utils/js/components/overflow.js +28 -0
  28. package/app/utils/js/components/params.js +44 -0
  29. package/app/utils/js/components/placement.js +59 -0
  30. package/app/utils/js/components/responsive.js +83 -0
  31. package/app/utils/js/components/scrollbar.js +114 -0
  32. package/app/utils/js/dom/data.js +51 -0
  33. package/app/utils/js/dom/event.js +331 -0
  34. package/app/utils/js/dom/manipulator.js +62 -0
  35. package/app/utils/js/dom/selectors.js +65 -0
  36. package/app/utils/js/functions.js +272 -0
  37. package/app/utils/scss/animate.scss +4074 -0
  38. package/app/utils/scss/default.scss +277 -0
  39. package/app/utils/scss/functions.scss +3 -0
  40. package/app/utils/scss/mixin.scss +11 -0
  41. package/app/utils/scss/variables.scss +80 -0
  42. package/build/vgapp.css +4538 -0
  43. package/build/vgapp.css.map +1 -0
  44. package/build/vgapp.js +3230 -0
  45. package/build/vgapp.js.map +1 -0
  46. package/index.js +29 -0
  47. package/package.json +43 -0
  48. package/webpack.config.js +63 -0
@@ -0,0 +1,4538 @@
1
+ /*!****************************************************************************************************************************************************************!*\
2
+ !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./app/utils/scss/default.scss ***!
3
+ \****************************************************************************************************************************************************************/
4
+ .vg-backdrop {
5
+ --vg-backdrop-bg: rgb(0, 0, 0) ;
6
+ --vg-backdrop-opacity: 0.4 ;
7
+ --vg-backdrop-z-index: 999 ;
8
+ --vg-backdrop-transition: all 0.5s ease-in-out ;
9
+ position: fixed;
10
+ top: 0;
11
+ left: 0;
12
+ width: 100vw;
13
+ height: 100vh;
14
+ background: var(--vg-backdrop-bg);
15
+ transition: var(--vg-backdrop-transition);
16
+ opacity: 0;
17
+ z-index: var(--vg-backdrop-z-index);
18
+ }
19
+ .vg-backdrop.fade {
20
+ opacity: var(--vg-backdrop-opacity);
21
+ }
22
+
23
+ .vg-btn-close {
24
+ position: absolute;
25
+ right: 1rem;
26
+ top: 1rem;
27
+ border: none;
28
+ background: transparent;
29
+ }
30
+ .vg-btn-close svg {
31
+ width: 24px;
32
+ height: 24px;
33
+ }
34
+
35
+ .vg-collapse:not(.show) {
36
+ display: none;
37
+ }
38
+
39
+ .vg-collapsing {
40
+ height: 0;
41
+ overflow: hidden;
42
+ transition: all 0.5s ease-in-out;
43
+ }
44
+
45
+ /**
46
+ * Loader
47
+ */
48
+ .vg-loader, .vg.loader:after {
49
+ border-radius: 50%;
50
+ width: 7em;
51
+ height: 7em;
52
+ }
53
+
54
+ .vg-loader {
55
+ --vg-loader-border-width: 0.75em ;
56
+ --vg-loader-border-style: solid ;
57
+ --vg-loader-border-color: rgba(0, 0, 0, 0.2) ;
58
+ --vg-loader-color: rgb(33, 37, 41) ;
59
+ --vg-loader-font-size: 10px ;
60
+ --vg-loader-margin: 30px auto ;
61
+ --vg-loader-animation: vgLoader 1.1s infinite linear ;
62
+ --vg-loader-transform: translateZ(0) ;
63
+ margin: var(--vg-loader-margin);
64
+ font-size: var(--vg-loader-font-size);
65
+ position: relative;
66
+ text-indent: -9999em;
67
+ border-top: var(--vg-loader-border-width) var(--vg-loader-border-style) var(--vg-loader-border-color);
68
+ border-right: var(--vg-loader-border-width) var(--vg-loader-border-style) var(--vg-loader-border-color);
69
+ border-bottom: var(--vg-loader-border-width) var(--vg-loader-border-style) var(--vg-loader-border-color);
70
+ border-left: var(--vg-loader-border-width) var(--vg-loader-border-style) var(--vg-loader-color);
71
+ transform: var(--vg-loader-transform);
72
+ animation: var(--vg-loader-animation);
73
+ }
74
+
75
+ /**
76
+ * Alert
77
+ */
78
+ .vg-alert {
79
+ --vg-alert-padding: 2rem ;
80
+ --vg-alert-margin: 0 0 2rem ;
81
+ --vg-alert-border-width: 1px ;
82
+ --vg-alert-border-style: solid ;
83
+ --vg-alert-border-color: transparent ;
84
+ --vg-alert-border-radius: 0.375rem ;
85
+ --vg-alert-gap: 1.5rem ;
86
+ --vg-alert-icon-width: 80px ;
87
+ --vg-alert-icon-height: 80px ;
88
+ --vg-alert-content-width: 100% ;
89
+ --vg-alert-content-align: center ;
90
+ --vg-alert-content-justify: flex-start ;
91
+ --vg-alert-success-color: rgb(135.5769230769, 208.5576923077, 94.4423076923) ;
92
+ --vg-alert-success-border-color: #A5DC86 ;
93
+ --vg-alert-success-background-color: rgba(194.4230769231, 231.4423076923, 173.5576923077, 0.15) ;
94
+ --vg-alert-success-stroke: rgba(117, 183, 152, 0.4) ;
95
+ --vg-alert-error-color: rgb(244.9076923077, 19.0923076923, 19.0923076923) ;
96
+ --vg-alert-error-border-color: #F74444 ;
97
+ --vg-alert-error-background-color: rgba(252.2307692308, 190.2692307692, 190.2692307692, 0.075) ;
98
+ --vg-alert-waiting-color: rgb(255, 205.3355704698, 55) ;
99
+ --vg-alert-waiting-border-color: #ffda6a ;
100
+ --vg-alert-waiting-background-color: rgba(255, 236.9966442953, 182.5, 0.1) ;
101
+ padding: var(--vg-alert-padding);
102
+ margin: var(--vg-alert-margin);
103
+ border: var(--vg-alert-border-width) var(--vg-alert-border-style) var(--vg-alert-border-color);
104
+ border-radius: var(--vg-alert-border-radius);
105
+ display: flex;
106
+ align-items: center;
107
+ justify-content: center;
108
+ }
109
+ .vg-alert-success {
110
+ color: var(--vg-alert-success-color);
111
+ border-color: var(--vg-alert-success-border-color);
112
+ background-color: var(--vg-alert-success-background-color);
113
+ }
114
+ .vg-alert-error {
115
+ color: var(--vg-alert-error-color);
116
+ border-color: var(--vg-alert-error-border-color);
117
+ background-color: var(--vg-alert-error-background-color);
118
+ }
119
+ .vg-alert-content {
120
+ display: flex;
121
+ align-items: var(--vg-alert-content-align);
122
+ justify-content: var(--vg-alert-content-justify);
123
+ gap: var(--vg-alert-gap);
124
+ width: var(--vg-alert-content-width);
125
+ }
126
+ .vg-alert-content--icon {
127
+ width: var(--vg-alert-icon-width);
128
+ height: var(--vg-alert-icon-height);
129
+ }
130
+ .vg-alert-content--icon svg {
131
+ width: 100%;
132
+ height: 100%;
133
+ }
134
+ .vg-alert-content--icon .ui-success-circle {
135
+ stroke: var(--vg-alert-success-stroke);
136
+ }
137
+ .vg-alert-content--icon .ui-success-path {
138
+ stroke: var(--vg-alert-success-color);
139
+ }
140
+ .vg-alert-modal {
141
+ --vg-alert-icon-width: 150px;
142
+ --vg-alert-icon-height: 150px;
143
+ --vg-alert-padding: 5rem 2rem;
144
+ --vg-alert-border-width: 0;
145
+ margin: 0;
146
+ }
147
+ .vg-alert-modal .vg-alert-content {
148
+ flex-direction: column;
149
+ text-align: center;
150
+ }
151
+
152
+ /**
153
+ * UI before Animation
154
+ */
155
+ .ui-success-circle {
156
+ stroke-dasharray: 260.752190248px, 260.752190248px;
157
+ stroke-dashoffset: 270.752190248px;
158
+ transform: rotate(0);
159
+ transform-origin: center center;
160
+ stroke-linecap: round;
161
+ animation: ani-success-circle 1s ease-in both;
162
+ }
163
+ .ui-success-path {
164
+ stroke-dasharray: 60px 64px;
165
+ stroke-dashoffset: 62px;
166
+ stroke-linecap: round;
167
+ animation: ani-success-path 0.4s 1s ease-in both;
168
+ }
169
+
170
+ .ui-error-circle {
171
+ stroke-dasharray: 260.752190248px, 260.752190248px;
172
+ stroke-dashoffset: 260.752190248px;
173
+ animation: ani-error-circle 1.2s linear;
174
+ }
175
+ .ui-error-line1 {
176
+ stroke-dasharray: 54px 55px;
177
+ stroke-dashoffset: 55px;
178
+ stroke-linecap: round;
179
+ animation: ani-error-line 0.15s 1.2s linear both;
180
+ }
181
+ .ui-error-line2 {
182
+ stroke-dasharray: 54px 55px;
183
+ stroke-dashoffset: 55px;
184
+ stroke-linecap: round;
185
+ animation: ani-error-line 0.2s 0.9s linear both;
186
+ }
187
+
188
+ .ui-waiting-circle {
189
+ stroke-dasharray: 260.752190248px, 260.752190248px;
190
+ stroke-dashoffset: 260.752190248px;
191
+ animation: ani-waiting-circle 1.2s linear;
192
+ }
193
+ .ui-waiting-line1 {
194
+ stroke-dasharray: 280.752190248px, 200.752190248px;
195
+ stroke-dashoffset: 280.752190248px;
196
+ animation: ani-waiting-line 0.8s 0.3s linear both;
197
+ transform: rotate(0);
198
+ transform-origin: center center;
199
+ }
200
+ .ui-waiting-line2 {
201
+ stroke-dasharray: 54px 55px;
202
+ stroke-dashoffset: 55px;
203
+ animation: ani-waiting-line2 0.85s 0.6s ease-in both;
204
+ transform: rotate(0) scale(0.9);
205
+ transform-origin: center center;
206
+ }
207
+
208
+ /**
209
+ * Animation Loader
210
+ */
211
+ @keyframes vgLoader {
212
+ 0% {
213
+ transform: rotate(0deg);
214
+ }
215
+ 100% {
216
+ transform: rotate(360deg);
217
+ }
218
+ }
219
+ @keyframes ani-success-circle {
220
+ to {
221
+ stroke-dashoffset: 782.2565707439px;
222
+ }
223
+ }
224
+ @keyframes ani-success-path {
225
+ 0% {
226
+ stroke-dashoffset: 62px;
227
+ }
228
+ 65% {
229
+ stroke-dashoffset: -5px;
230
+ }
231
+ 84% {
232
+ stroke-dashoffset: 4px;
233
+ }
234
+ 100% {
235
+ stroke-dashoffset: -2px;
236
+ }
237
+ }
238
+ @keyframes ani-error-line {
239
+ to {
240
+ stroke-dashoffset: 0;
241
+ }
242
+ }
243
+ @keyframes ani-error-circle {
244
+ 0% {
245
+ stroke-dasharray: 0, 260.752190248px;
246
+ stroke-dashoffset: 0;
247
+ }
248
+ 35% {
249
+ stroke-dasharray: 120px, 120px;
250
+ stroke-dashoffset: -120px;
251
+ }
252
+ 70% {
253
+ stroke-dasharray: 0, 260.752190248px;
254
+ stroke-dashoffset: -260.752190248px;
255
+ }
256
+ 100% {
257
+ stroke-dasharray: 260.752190248px, 0;
258
+ stroke-dashoffset: -260.752190248px;
259
+ }
260
+ }
261
+ @keyframes ani-waiting-circle {
262
+ to {
263
+ stroke-dashoffset: 782.2565707439px;
264
+ }
265
+ }
266
+ @keyframes ani-waiting-line {
267
+ to {
268
+ stroke-dashoffset: 0;
269
+ }
270
+ }
271
+ @keyframes ani-waiting-line2 {
272
+ to {
273
+ stroke-dashoffset: 0;
274
+ transform: rotate(360deg) scale(1);
275
+ }
276
+ }
277
+ /*!******************************************************************************************************************************************************************************!*\
278
+ !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./app/modules/vgsidebar/scss/vgsidebar.scss ***!
279
+ \******************************************************************************************************************************************************************************/
280
+ @charset "UTF-8";
281
+ /**
282
+ *--------------------------------------------------------------------------
283
+ * Модуль: VGSidebar
284
+ * Автор: Vegas DEV
285
+ * Лицензия: смотри LICENSE
286
+ *--------------------------------------------------------------------------
287
+ **/
288
+ .vg-sidebar {
289
+ --vg-sidebar-horizontal-width: 400px ;
290
+ --vg-sidebar-horizontal-height: 100vh ;
291
+ --vg-sidebar-vertical-width: 100vw ;
292
+ --vg-sidebar-vertical-height: 30vh ;
293
+ --vg-sidebar-bg-color: #fff ;
294
+ --vg-sidebar-color: #000000 ;
295
+ --vg-sidebar-box-shadow: 0 8px 14px 5px rgba(0, 0, 0, 0.2) ;
296
+ --vg-sidebar-header-height: 60px ;
297
+ --vg-sidebar-footer-height: 70px ;
298
+ --vg-sidebar-padding: 1rem ;
299
+ --vg-sidebar-border: 1px solid rgba(0, 0, 0, 0.2) ;
300
+ --vg-sidebar-z-index: 1040 ;
301
+ --vg-sidebar-transition: all 0.5s ease-in-out ;
302
+ position: fixed;
303
+ width: auto;
304
+ height: auto;
305
+ transition: var(--vg-sidebar-transition);
306
+ z-index: var(--vg-sidebar-z-index);
307
+ background: var(--vg-sidebar-bg-color);
308
+ color: var(--vg-sidebar-color);
309
+ box-shadow: var(--vg-sidebar-box-shadow);
310
+ }
311
+ .vg-sidebar.left, .vg-sidebar.right {
312
+ width: var(--vg-sidebar-horizontal-width);
313
+ height: var(--vg-sidebar-horizontal-height);
314
+ top: 0;
315
+ }
316
+ .vg-sidebar.left {
317
+ left: -105%;
318
+ }
319
+ .vg-sidebar.left.show {
320
+ left: 0;
321
+ }
322
+ .vg-sidebar.right {
323
+ right: -105%;
324
+ }
325
+ .vg-sidebar.right.show {
326
+ right: 0;
327
+ }
328
+ .vg-sidebar.top, .vg-sidebar.bottom {
329
+ height: var(--vg-sidebar-vertical-height);
330
+ width: var(--vg-sidebar-vertical-width);
331
+ left: 0;
332
+ }
333
+ .vg-sidebar.top {
334
+ top: -105%;
335
+ }
336
+ .vg-sidebar.top.show {
337
+ top: 0;
338
+ }
339
+ .vg-sidebar.bottom {
340
+ bottom: -105%;
341
+ }
342
+ .vg-sidebar.bottom.show {
343
+ bottom: 0;
344
+ }
345
+ .vg-sidebar-header {
346
+ height: var(--vg-sidebar-header-height);
347
+ z-index: 10;
348
+ position: relative;
349
+ display: flex;
350
+ align-items: center;
351
+ padding: var(--vg-sidebar-padding);
352
+ border-bottom: var(--vg-sidebar-border);
353
+ }
354
+ .vg-sidebar-body {
355
+ height: calc(100% - var(--vg-sidebar-header-height) - var(--vg-sidebar-footer-height));
356
+ overflow-y: auto;
357
+ padding: var(--vg-sidebar-padding);
358
+ }
359
+ .vg-sidebar-footer {
360
+ height: var(--vg-sidebar-footer-height);
361
+ padding: var(--vg-sidebar-padding);
362
+ border-top: var(--vg-sidebar-border);
363
+ }
364
+ /*!**********************************************************************************************************************************************************************!*\
365
+ !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./app/modules/vgnav/scss/vgnav.scss ***!
366
+ \**********************************************************************************************************************************************************************/
367
+ @charset "UTF-8";
368
+ /**
369
+ *--------------------------------------------------------------------------
370
+ * Модуль: VGNav
371
+ * Автор: Vegas DEV
372
+ * Лицензия: смотри LICENSE
373
+ *--------------------------------------------------------------------------
374
+ **/
375
+ .vg-nav {
376
+ --vg-nav-transition: all 0.2s ease-in-out ;
377
+ --vg-nav-item-margin: 0 ;
378
+ --vg-nav-item-padding: 23px 25px ;
379
+ --vg-nav-item-font-size: 1rem ;
380
+ --vg-nav-item-font-weight: 400 ;
381
+ --vg-nav-item-line-height: 1.4 ;
382
+ --vg-nav-item-color: #212529 ;
383
+ --vg-nav-item-decoration: none ;
384
+ --vg-nav-item-display: inline-block ;
385
+ --vg-nav-item-border: none ;
386
+ --vg-nav-item-border-radius: 0 ;
387
+ --vg-nav-item-white-space: nowrap ;
388
+ --vg-nav-item-position: relative ;
389
+ --vg-nav-drop-z-index: 10 ;
390
+ --vg-nav-drop-transition: all 0.2s ease-in-out ;
391
+ --vg-nav-drop-width: 200px ;
392
+ --vg-nav-drop-border-color: rgba(0, 0, 0, 0.2) ;
393
+ --vg-nav-drop-border-radius: 0 ;
394
+ --vg-nav-drop-padding: 0 ;
395
+ --vg-nav-drop-bg: #fff ;
396
+ --vg-nav-drop-mega-width: 100% ;
397
+ --vg-nav-drop-mega-min-height: 300px ;
398
+ --vg-nav-drop-mega-bg: #fff ;
399
+ --vg-nav-drop-mega-border-color: rgba(0, 0, 0, 0.2) ;
400
+ --vg-nav-drop-mega-border-radius: 0 ;
401
+ --vg-nav-drop-mega-padding: 1rem ;
402
+ --vg-nav-drop-mega-z-index: 10 ;
403
+ --vg-nav-drop-mega-transition: all 0.2s ease-in-out ;
404
+ --vg-nav-drop-item-padding: 0.75rem 1rem ;
405
+ --vg-nav-drop-item-border-color: transparent ;
406
+ --vg-nav-drop-item-border-color-hover: transparent ;
407
+ --vg-nav-drop-item-bg: transparent ;
408
+ --vg-nav-drop-item-bg-hover: transparent ;
409
+ --vg-nav-drop-item-color: inherit ;
410
+ --vg-nav-drop-item-color-hover: inherit ;
411
+ --vg-nav-drop-item-transition: all 0.2s ease-in-out ;
412
+ --vg-nav-hamburger-height: 27px ;
413
+ --vg-nav-hamburger-line-width: 35px ;
414
+ --vg-nav-hamburger-line-color: #333333 ;
415
+ --vg-nav-hamburger-line-height: 3px ;
416
+ --vg-nav-hamburger-line-indent-top: 7px ;
417
+ /** set placement **/
418
+ /** set hamburger **/
419
+ }
420
+ .vg-nav .vg-nav-wrapper {
421
+ display: flex;
422
+ padding: 0;
423
+ margin: 0;
424
+ position: relative;
425
+ }
426
+ .vg-nav .vg-nav-wrapper > li {
427
+ list-style: none;
428
+ margin: var(--vg-nav-item-margin);
429
+ /** set toggle **/
430
+ }
431
+ .vg-nav .vg-nav-wrapper > li > a {
432
+ white-space: var(--vg-nav-item-white-space);
433
+ position: var(--vg-nav-item-position);
434
+ display: var(--vg-nav-item-display);
435
+ padding: var(--vg-nav-item-padding);
436
+ font-size: var(--vg-nav-item-font-size);
437
+ font-weight: var(--vg-nav-item-font-weight);
438
+ line-height: var(--vg-nav-item-line-height);
439
+ color: var(--vg-nav-item-color);
440
+ text-decoration: var(--vg-nav-item-decoration);
441
+ border: var(--vg-nav-item-border);
442
+ border-radius: var(--vg-nav-item-border-radius);
443
+ }
444
+ .vg-nav .vg-nav-wrapper > li .toggle {
445
+ transition: var(--vg-nav-transition);
446
+ transform: rotate(0);
447
+ }
448
+ .vg-nav .vg-nav-wrapper > li .toggle span.default {
449
+ border-top: 0.3em solid;
450
+ border-right: 0.3em solid transparent;
451
+ border-bottom: 0;
452
+ border-left: 0.3em solid transparent;
453
+ width: 0;
454
+ height: 0;
455
+ transition: var(--vg-nav-transition);
456
+ transform: rotate(0);
457
+ display: inline-block;
458
+ margin-left: 0.355em;
459
+ vertical-align: 0.255em;
460
+ }
461
+ .vg-nav .vg-nav-wrapper .dropdown .dropdown-content {
462
+ transition: var(--vg-nav-drop-transition);
463
+ list-style: none;
464
+ z-index: var(--vg-nav-drop-z-index);
465
+ position: absolute;
466
+ top: 120%;
467
+ opacity: 0;
468
+ visibility: hidden;
469
+ width: var(--vg-nav-drop-width);
470
+ padding: var(--vg-nav-drop-padding);
471
+ border: 1px solid var(--vg-nav-drop-border-color);
472
+ border-radius: var(--vg-nav-drop-border-radius);
473
+ background-color: var(--vg-nav-drop-bg);
474
+ }
475
+ .vg-nav .vg-nav-wrapper .dropdown .dropdown-content:not(.show) {
476
+ display: none;
477
+ }
478
+ .vg-nav .vg-nav-wrapper .dropdown .dropdown-content.fade {
479
+ visibility: visible;
480
+ opacity: 1;
481
+ top: 100%;
482
+ }
483
+ .vg-nav .vg-nav-wrapper .dropdown .dropdown-content .dropdown-content.fade {
484
+ top: 0;
485
+ }
486
+ .vg-nav .vg-nav-wrapper .dropdown .dropdown-content li a {
487
+ display: block;
488
+ padding: var(--vg-nav-drop-item-padding);
489
+ border-top: 1px solid var(--vg-nav-drop-item-border-color);
490
+ background-color: var(--vg-nav-drop-item-bg);
491
+ transition: var(--vg-nav-drop-item-transition);
492
+ color: var(--vg-nav-drop-item-color);
493
+ }
494
+ .vg-nav .vg-nav-wrapper .dropdown .dropdown-content li a:hover {
495
+ background-color: var(--vg-nav-drop-item-bg-hover);
496
+ color: var(--vg-nav-drop-item-color-hover);
497
+ border-color: var(--vg-nav-drop-item-border-color-hover);
498
+ }
499
+ .vg-nav .vg-nav-wrapper .dropdown .dropdown-content li:first-child a {
500
+ border-top: none;
501
+ }
502
+ .vg-nav .vg-nav-wrapper .dropdown.dropdown-mega {
503
+ position: static;
504
+ }
505
+ .vg-nav .vg-nav-wrapper .dropdown.dropdown-mega .dropdown-content {
506
+ transition: var(--vg-nav-drop-mega-transition);
507
+ position: absolute;
508
+ left: 0;
509
+ width: var(--vg-nav-drop-mega-width);
510
+ min-height: var(--vg-nav-drop-mega-min-height);
511
+ padding: var(--vg-nav-drop-mega-padding);
512
+ border: 1px solid var(--vg-nav-drop-mega-border-color);
513
+ border-radius: var(--vg-nav-drop-mega-border-radius);
514
+ background-color: var(--vg-nav-drop-mega-bg);
515
+ z-index: var(--vg-nav-drop-z-index);
516
+ }
517
+ .vg-nav .vg-nav-wrapper .dropdown.dropdown-mega .dropdown-content:not(.show) {
518
+ display: none;
519
+ }
520
+ .vg-nav.vg-nav-horizontal .vg-nav-wrapper {
521
+ flex-direction: row;
522
+ }
523
+ .vg-nav.vg-nav-horizontal .vg-nav-wrapper .dropdown > ul.left, .vg-nav.vg-nav-horizontal .vg-nav-wrapper .dropdown > ul .left {
524
+ left: 0;
525
+ }
526
+ .vg-nav.vg-nav-horizontal .vg-nav-wrapper .dropdown > ul.right, .vg-nav.vg-nav-horizontal .vg-nav-wrapper .dropdown > ul .right {
527
+ right: 0;
528
+ }
529
+ .vg-nav.vg-nav-horizontal .vg-nav-wrapper .dropdown > ul .dropdown ul.left {
530
+ left: 100%;
531
+ }
532
+ .vg-nav.vg-nav-horizontal .vg-nav-wrapper .dropdown > ul .dropdown ul.right {
533
+ right: 100%;
534
+ }
535
+ .vg-nav.vg-nav-vertical .vg-nav-wrapper {
536
+ flex-direction: column;
537
+ }
538
+ .vg-nav.vg-nav-vertical .vg-nav-wrapper .dropdown > ul {
539
+ top: 100%;
540
+ }
541
+ .vg-nav.vg-nav-vertical .vg-nav-wrapper .dropdown > ul.left, .vg-nav.vg-nav-vertical .vg-nav-wrapper .dropdown > ul .left {
542
+ left: 100%;
543
+ }
544
+ .vg-nav.vg-nav-vertical .vg-nav-wrapper .dropdown > ul.right, .vg-nav.vg-nav-vertical .vg-nav-wrapper .dropdown > ul .right {
545
+ right: 100%;
546
+ }
547
+ .vg-nav.vg-nav-vertical .vg-nav-wrapper .dropdown > ul.fade {
548
+ top: 0;
549
+ }
550
+ .vg-nav.vg-nav-vertical .vg-nav-wrapper .dropdown.show > ul {
551
+ top: 0;
552
+ }
553
+ .vg-nav.vg-nav-vertical .vg-nav-wrapper .dropdown-mega {
554
+ position: relative;
555
+ }
556
+ .vg-nav.vg-nav-vertical .vg-nav-wrapper .dropdown-mega .dropdown-mega-container {
557
+ left: 100%;
558
+ top: 100%;
559
+ }
560
+ .vg-nav.vg-nav-vertical .vg-nav-wrapper .dropdown-mega .dropdown-mega-container.fade {
561
+ top: 0;
562
+ }
563
+ .vg-nav .vg-nav-hamburger {
564
+ display: none;
565
+ align-items: flex-start;
566
+ }
567
+ .vg-nav .vg-nav-hamburger--lines {
568
+ display: inline-flex;
569
+ align-items: center;
570
+ justify-content: center;
571
+ width: var(--vg-nav-hamburger-line-width);
572
+ height: calc(var(--vg-nav-hamburger-line-height) * 3 + var(--vg-nav-hamburger-line-indent-top) * 2);
573
+ position: relative;
574
+ }
575
+ .vg-nav .vg-nav-hamburger--lines span {
576
+ background-color: var(--vg-nav-hamburger-line-color);
577
+ height: var(--vg-nav-hamburger-line-height);
578
+ width: var(--vg-nav-hamburger-line-width);
579
+ right: 0;
580
+ cursor: pointer;
581
+ border-radius: 2px;
582
+ position: absolute;
583
+ display: block;
584
+ transition: all 0.4s ease;
585
+ transform: rotate(0);
586
+ opacity: 1;
587
+ }
588
+ .vg-nav .vg-nav-hamburger--lines span:first-child {
589
+ top: 0;
590
+ }
591
+ .vg-nav .vg-nav-hamburger--lines span:nth-child(2) {
592
+ top: calc(var(--vg-nav-hamburger-line-height) + var(--vg-nav-hamburger-line-indent-top));
593
+ }
594
+ .vg-nav .vg-nav-hamburger--lines span:nth-child(3) {
595
+ top: calc((var(--vg-nav-hamburger-line-height) + var(--vg-nav-hamburger-line-indent-top)) * 2);
596
+ }
597
+ .vg-nav .vg-nav-hamburger--title {
598
+ position: relative;
599
+ display: inline-block;
600
+ margin-right: 3px;
601
+ }
602
+ .vg-nav .vg-nav-hamburger.vg-nav-hamburger-active .vg-nav-hamburger--lines span:first-child {
603
+ opacity: 0;
604
+ }
605
+ .vg-nav .vg-nav-hamburger.vg-nav-hamburger-active .vg-nav-hamburger--lines span:nth-child(2) {
606
+ transform: rotate(45deg);
607
+ }
608
+ .vg-nav .vg-nav-hamburger.vg-nav-hamburger-active .vg-nav-hamburger--lines span:last-child {
609
+ transform: rotate(-45deg);
610
+ top: 10px;
611
+ }
612
+ @media (max-width: 575.98px) {
613
+ .vg-nav:not(.vg-nav-expand).vg-nav-xs .vg-nav-hamburger {
614
+ display: flex;
615
+ }
616
+ .vg-nav:not(.vg-nav-expand).vg-nav-xs > .vg-nav-wrapper {
617
+ display: none;
618
+ }
619
+ }
620
+ @media (max-width: 767.98px) {
621
+ .vg-nav:not(.vg-nav-expand).vg-nav-sm .vg-nav-hamburger {
622
+ display: flex;
623
+ }
624
+ .vg-nav:not(.vg-nav-expand).vg-nav-sm > .vg-nav-wrapper {
625
+ display: none;
626
+ }
627
+ }
628
+ @media (max-width: 991.98px) {
629
+ .vg-nav:not(.vg-nav-expand).vg-nav-md .vg-nav-hamburger {
630
+ display: flex;
631
+ }
632
+ .vg-nav:not(.vg-nav-expand).vg-nav-md > .vg-nav-wrapper {
633
+ display: none;
634
+ }
635
+ }
636
+ @media (max-width: 1199.98px) {
637
+ .vg-nav:not(.vg-nav-expand).vg-nav-lg .vg-nav-hamburger {
638
+ display: flex;
639
+ }
640
+ .vg-nav:not(.vg-nav-expand).vg-nav-lg > .vg-nav-wrapper {
641
+ display: none;
642
+ }
643
+ }
644
+ @media (max-width: 1399.98px) {
645
+ .vg-nav:not(.vg-nav-expand).vg-nav-xl .vg-nav-hamburger {
646
+ display: flex;
647
+ }
648
+ .vg-nav:not(.vg-nav-expand).vg-nav-xl > .vg-nav-wrapper {
649
+ display: none;
650
+ }
651
+ }
652
+ @media (max-width: 1599.98px) {
653
+ .vg-nav:not(.vg-nav-expand).vg-nav-xxl .vg-nav-hamburger {
654
+ display: flex;
655
+ }
656
+ .vg-nav:not(.vg-nav-expand).vg-nav-xxl > .vg-nav-wrapper {
657
+ display: none;
658
+ }
659
+ }
660
+ @media (max-width: 1799.98px) {
661
+ .vg-nav:not(.vg-nav-expand).vg-nav-xxxl .vg-nav-hamburger {
662
+ display: flex;
663
+ }
664
+ .vg-nav:not(.vg-nav-expand).vg-nav-xxxl > .vg-nav-wrapper {
665
+ display: none;
666
+ }
667
+ }
668
+ /*!********************************************************************************************************************************************************************************!*\
669
+ !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./app/modules/vgdropdown/scss/vgdropdown.scss ***!
670
+ \********************************************************************************************************************************************************************************/
671
+ @charset "UTF-8";
672
+ /**
673
+ *--------------------------------------------------------------------------
674
+ * Модуль: VGDropdown
675
+ * Автор: Vegas DEV
676
+ * Лицензия: смотри LICENSE
677
+ *--------------------------------------------------------------------------
678
+ **/
679
+ .vg-dropdown {
680
+ position: relative;
681
+ }
682
+ .vg-dropdown-content {
683
+ --vg-dropdown-bg-color: #fff ;
684
+ --vg-dropdown-color: #000000 ;
685
+ --vg-dropdown-box-shadow: 0 8px 14px 5px rgba(0, 0, 0, 0.2) ;
686
+ --vg-dropdown-border: 1px solid rgba(0, 0, 0, 0.2) ;
687
+ --vg-dropdown-z-index: 1010 ;
688
+ --vg-dropdown-transition: all 0.5s ease-in-out ;
689
+ --vg-dropdown-min-width: 300px ;
690
+ z-index: var(--vg-dropdown-z-index);
691
+ position: absolute;
692
+ opacity: 0;
693
+ transform: translateY(20%);
694
+ transition: var(--vg-dropdonw-transition);
695
+ min-width: var(--vg-dropdown-min-width);
696
+ }
697
+ .vg-dropdown-content:not(.show) {
698
+ display: none;
699
+ }
700
+ .vg-dropdown-content.fade {
701
+ opacity: 1;
702
+ transform: translateY(0);
703
+ }
704
+ .vg-dropdown-content-container {
705
+ background-color: var(--vg-dropdown-bg-color);
706
+ color: var(--vg-dropdown-color);
707
+ border: var(--vg-dropdown-border);
708
+ }
709
+ /*!**************************************************************************************************************************************************************************!*\
710
+ !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./app/modules/vgmodal/scss/vgmodal.scss ***!
711
+ \**************************************************************************************************************************************************************************/
712
+ @charset "UTF-8";
713
+ /**
714
+ *--------------------------------------------------------------------------
715
+ * Модуль: VGSidebar
716
+ * Автор: Vegas DEV
717
+ * Лицензия: смотри LICENSE.md
718
+ *--------------------------------------------------------------------------
719
+ **/
720
+ /*!
721
+ * animate.css - https://animate.style/
722
+ * Version - 4.1.1
723
+ * Licensed under the Hippocratic License 2.1 - http://firstdonoharm.dev
724
+ *
725
+ * Copyright (c) 2022 Animate.css
726
+ */
727
+ :root {
728
+ --animate-duration: 1s;
729
+ --animate-delay: 1s;
730
+ --animate-repeat: 1;
731
+ }
732
+
733
+ .animate__animated {
734
+ -webkit-animation-duration: 1s;
735
+ animation-duration: 1s;
736
+ -webkit-animation-duration: var(--animate-duration);
737
+ animation-duration: var(--animate-duration);
738
+ -webkit-animation-fill-mode: both;
739
+ animation-fill-mode: both;
740
+ }
741
+
742
+ .animate__animated.animate__infinite {
743
+ -webkit-animation-iteration-count: infinite;
744
+ animation-iteration-count: infinite;
745
+ }
746
+
747
+ .animate__animated.animate__repeat-1 {
748
+ -webkit-animation-iteration-count: 1;
749
+ animation-iteration-count: 1;
750
+ -webkit-animation-iteration-count: var(--animate-repeat);
751
+ animation-iteration-count: var(--animate-repeat);
752
+ }
753
+
754
+ .animate__animated.animate__repeat-2 {
755
+ -webkit-animation-iteration-count: 2;
756
+ animation-iteration-count: 2;
757
+ -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
758
+ animation-iteration-count: calc(var(--animate-repeat) * 2);
759
+ }
760
+
761
+ .animate__animated.animate__repeat-3 {
762
+ -webkit-animation-iteration-count: 3;
763
+ animation-iteration-count: 3;
764
+ -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
765
+ animation-iteration-count: calc(var(--animate-repeat) * 3);
766
+ }
767
+
768
+ .animate__animated.animate__delay-1s {
769
+ -webkit-animation-delay: 1s;
770
+ animation-delay: 1s;
771
+ -webkit-animation-delay: var(--animate-delay);
772
+ animation-delay: var(--animate-delay);
773
+ }
774
+
775
+ .animate__animated.animate__delay-2s {
776
+ -webkit-animation-delay: 2s;
777
+ animation-delay: 2s;
778
+ -webkit-animation-delay: calc(var(--animate-delay) * 2);
779
+ animation-delay: calc(var(--animate-delay) * 2);
780
+ }
781
+
782
+ .animate__animated.animate__delay-3s {
783
+ -webkit-animation-delay: 3s;
784
+ animation-delay: 3s;
785
+ -webkit-animation-delay: calc(var(--animate-delay) * 3);
786
+ animation-delay: calc(var(--animate-delay) * 3);
787
+ }
788
+
789
+ .animate__animated.animate__delay-4s {
790
+ -webkit-animation-delay: 4s;
791
+ animation-delay: 4s;
792
+ -webkit-animation-delay: calc(var(--animate-delay) * 4);
793
+ animation-delay: calc(var(--animate-delay) * 4);
794
+ }
795
+
796
+ .animate__animated.animate__delay-5s {
797
+ -webkit-animation-delay: 5s;
798
+ animation-delay: 5s;
799
+ -webkit-animation-delay: calc(var(--animate-delay) * 5);
800
+ animation-delay: calc(var(--animate-delay) * 5);
801
+ }
802
+
803
+ .animate__animated.animate__faster {
804
+ -webkit-animation-duration: 0.5s;
805
+ animation-duration: 0.5s;
806
+ -webkit-animation-duration: calc(var(--animate-duration) / 2);
807
+ animation-duration: calc(var(--animate-duration) / 2);
808
+ }
809
+
810
+ .animate__animated.animate__fast {
811
+ -webkit-animation-duration: 0.8s;
812
+ animation-duration: 0.8s;
813
+ -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
814
+ animation-duration: calc(var(--animate-duration) * 0.8);
815
+ }
816
+
817
+ .animate__animated.animate__slow {
818
+ -webkit-animation-duration: 2s;
819
+ animation-duration: 2s;
820
+ -webkit-animation-duration: calc(var(--animate-duration) * 2);
821
+ animation-duration: calc(var(--animate-duration) * 2);
822
+ }
823
+
824
+ .animate__animated.animate__slower {
825
+ -webkit-animation-duration: 3s;
826
+ animation-duration: 3s;
827
+ -webkit-animation-duration: calc(var(--animate-duration) * 3);
828
+ animation-duration: calc(var(--animate-duration) * 3);
829
+ }
830
+
831
+ @media print, (prefers-reduced-motion: reduce) {
832
+ .animate__animated {
833
+ -webkit-animation-duration: 1ms !important;
834
+ animation-duration: 1ms !important;
835
+ -webkit-transition-duration: 1ms !important;
836
+ transition-duration: 1ms !important;
837
+ -webkit-animation-iteration-count: 1 !important;
838
+ animation-iteration-count: 1 !important;
839
+ }
840
+ .animate__animated[class*=Out] {
841
+ opacity: 0;
842
+ }
843
+ }
844
+ /* Attention seekers */
845
+ @-webkit-keyframes bounce {
846
+ from, 20%, 53%, to {
847
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
848
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
849
+ -webkit-transform: translate3d(0, 0, 0);
850
+ transform: translate3d(0, 0, 0);
851
+ }
852
+ 40%, 43% {
853
+ -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
854
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
855
+ -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
856
+ transform: translate3d(0, -30px, 0) scaleY(1.1);
857
+ }
858
+ 70% {
859
+ -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
860
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
861
+ -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
862
+ transform: translate3d(0, -15px, 0) scaleY(1.05);
863
+ }
864
+ 80% {
865
+ -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
866
+ transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
867
+ -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
868
+ transform: translate3d(0, 0, 0) scaleY(0.95);
869
+ }
870
+ 90% {
871
+ -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
872
+ transform: translate3d(0, -4px, 0) scaleY(1.02);
873
+ }
874
+ }
875
+ @keyframes bounce {
876
+ from, 20%, 53%, to {
877
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
878
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
879
+ -webkit-transform: translate3d(0, 0, 0);
880
+ transform: translate3d(0, 0, 0);
881
+ }
882
+ 40%, 43% {
883
+ -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
884
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
885
+ -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
886
+ transform: translate3d(0, -30px, 0) scaleY(1.1);
887
+ }
888
+ 70% {
889
+ -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
890
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
891
+ -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
892
+ transform: translate3d(0, -15px, 0) scaleY(1.05);
893
+ }
894
+ 80% {
895
+ -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
896
+ transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
897
+ -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
898
+ transform: translate3d(0, 0, 0) scaleY(0.95);
899
+ }
900
+ 90% {
901
+ -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
902
+ transform: translate3d(0, -4px, 0) scaleY(1.02);
903
+ }
904
+ }
905
+ .animate__bounce {
906
+ -webkit-animation-name: bounce;
907
+ animation-name: bounce;
908
+ -webkit-transform-origin: center bottom;
909
+ transform-origin: center bottom;
910
+ }
911
+
912
+ @-webkit-keyframes flash {
913
+ from, 50%, to {
914
+ opacity: 1;
915
+ }
916
+ 25%, 75% {
917
+ opacity: 0;
918
+ }
919
+ }
920
+ @keyframes flash {
921
+ from, 50%, to {
922
+ opacity: 1;
923
+ }
924
+ 25%, 75% {
925
+ opacity: 0;
926
+ }
927
+ }
928
+ .animate__flash {
929
+ -webkit-animation-name: flash;
930
+ animation-name: flash;
931
+ }
932
+
933
+ /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
934
+ @-webkit-keyframes pulse {
935
+ from {
936
+ -webkit-transform: scale3d(1, 1, 1);
937
+ transform: scale3d(1, 1, 1);
938
+ }
939
+ 50% {
940
+ -webkit-transform: scale3d(1.05, 1.05, 1.05);
941
+ transform: scale3d(1.05, 1.05, 1.05);
942
+ }
943
+ to {
944
+ -webkit-transform: scale3d(1, 1, 1);
945
+ transform: scale3d(1, 1, 1);
946
+ }
947
+ }
948
+ @keyframes pulse {
949
+ from {
950
+ -webkit-transform: scale3d(1, 1, 1);
951
+ transform: scale3d(1, 1, 1);
952
+ }
953
+ 50% {
954
+ -webkit-transform: scale3d(1.05, 1.05, 1.05);
955
+ transform: scale3d(1.05, 1.05, 1.05);
956
+ }
957
+ to {
958
+ -webkit-transform: scale3d(1, 1, 1);
959
+ transform: scale3d(1, 1, 1);
960
+ }
961
+ }
962
+ .animate__pulse {
963
+ -webkit-animation-name: pulse;
964
+ animation-name: pulse;
965
+ -webkit-animation-timing-function: ease-in-out;
966
+ animation-timing-function: ease-in-out;
967
+ }
968
+
969
+ @-webkit-keyframes rubberBand {
970
+ from {
971
+ -webkit-transform: scale3d(1, 1, 1);
972
+ transform: scale3d(1, 1, 1);
973
+ }
974
+ 30% {
975
+ -webkit-transform: scale3d(1.25, 0.75, 1);
976
+ transform: scale3d(1.25, 0.75, 1);
977
+ }
978
+ 40% {
979
+ -webkit-transform: scale3d(0.75, 1.25, 1);
980
+ transform: scale3d(0.75, 1.25, 1);
981
+ }
982
+ 50% {
983
+ -webkit-transform: scale3d(1.15, 0.85, 1);
984
+ transform: scale3d(1.15, 0.85, 1);
985
+ }
986
+ 65% {
987
+ -webkit-transform: scale3d(0.95, 1.05, 1);
988
+ transform: scale3d(0.95, 1.05, 1);
989
+ }
990
+ 75% {
991
+ -webkit-transform: scale3d(1.05, 0.95, 1);
992
+ transform: scale3d(1.05, 0.95, 1);
993
+ }
994
+ to {
995
+ -webkit-transform: scale3d(1, 1, 1);
996
+ transform: scale3d(1, 1, 1);
997
+ }
998
+ }
999
+ @keyframes rubberBand {
1000
+ from {
1001
+ -webkit-transform: scale3d(1, 1, 1);
1002
+ transform: scale3d(1, 1, 1);
1003
+ }
1004
+ 30% {
1005
+ -webkit-transform: scale3d(1.25, 0.75, 1);
1006
+ transform: scale3d(1.25, 0.75, 1);
1007
+ }
1008
+ 40% {
1009
+ -webkit-transform: scale3d(0.75, 1.25, 1);
1010
+ transform: scale3d(0.75, 1.25, 1);
1011
+ }
1012
+ 50% {
1013
+ -webkit-transform: scale3d(1.15, 0.85, 1);
1014
+ transform: scale3d(1.15, 0.85, 1);
1015
+ }
1016
+ 65% {
1017
+ -webkit-transform: scale3d(0.95, 1.05, 1);
1018
+ transform: scale3d(0.95, 1.05, 1);
1019
+ }
1020
+ 75% {
1021
+ -webkit-transform: scale3d(1.05, 0.95, 1);
1022
+ transform: scale3d(1.05, 0.95, 1);
1023
+ }
1024
+ to {
1025
+ -webkit-transform: scale3d(1, 1, 1);
1026
+ transform: scale3d(1, 1, 1);
1027
+ }
1028
+ }
1029
+ .animate__rubberBand {
1030
+ -webkit-animation-name: rubberBand;
1031
+ animation-name: rubberBand;
1032
+ }
1033
+
1034
+ @-webkit-keyframes shakeX {
1035
+ from, to {
1036
+ -webkit-transform: translate3d(0, 0, 0);
1037
+ transform: translate3d(0, 0, 0);
1038
+ }
1039
+ 10%, 30%, 50%, 70%, 90% {
1040
+ -webkit-transform: translate3d(-10px, 0, 0);
1041
+ transform: translate3d(-10px, 0, 0);
1042
+ }
1043
+ 20%, 40%, 60%, 80% {
1044
+ -webkit-transform: translate3d(10px, 0, 0);
1045
+ transform: translate3d(10px, 0, 0);
1046
+ }
1047
+ }
1048
+ @keyframes shakeX {
1049
+ from, to {
1050
+ -webkit-transform: translate3d(0, 0, 0);
1051
+ transform: translate3d(0, 0, 0);
1052
+ }
1053
+ 10%, 30%, 50%, 70%, 90% {
1054
+ -webkit-transform: translate3d(-10px, 0, 0);
1055
+ transform: translate3d(-10px, 0, 0);
1056
+ }
1057
+ 20%, 40%, 60%, 80% {
1058
+ -webkit-transform: translate3d(10px, 0, 0);
1059
+ transform: translate3d(10px, 0, 0);
1060
+ }
1061
+ }
1062
+ .animate__shakeX {
1063
+ -webkit-animation-name: shakeX;
1064
+ animation-name: shakeX;
1065
+ }
1066
+
1067
+ @-webkit-keyframes shakeY {
1068
+ from, to {
1069
+ -webkit-transform: translate3d(0, 0, 0);
1070
+ transform: translate3d(0, 0, 0);
1071
+ }
1072
+ 10%, 30%, 50%, 70%, 90% {
1073
+ -webkit-transform: translate3d(0, -10px, 0);
1074
+ transform: translate3d(0, -10px, 0);
1075
+ }
1076
+ 20%, 40%, 60%, 80% {
1077
+ -webkit-transform: translate3d(0, 10px, 0);
1078
+ transform: translate3d(0, 10px, 0);
1079
+ }
1080
+ }
1081
+ @keyframes shakeY {
1082
+ from, to {
1083
+ -webkit-transform: translate3d(0, 0, 0);
1084
+ transform: translate3d(0, 0, 0);
1085
+ }
1086
+ 10%, 30%, 50%, 70%, 90% {
1087
+ -webkit-transform: translate3d(0, -10px, 0);
1088
+ transform: translate3d(0, -10px, 0);
1089
+ }
1090
+ 20%, 40%, 60%, 80% {
1091
+ -webkit-transform: translate3d(0, 10px, 0);
1092
+ transform: translate3d(0, 10px, 0);
1093
+ }
1094
+ }
1095
+ .animate__shakeY {
1096
+ -webkit-animation-name: shakeY;
1097
+ animation-name: shakeY;
1098
+ }
1099
+
1100
+ @-webkit-keyframes headShake {
1101
+ 0% {
1102
+ -webkit-transform: translateX(0);
1103
+ transform: translateX(0);
1104
+ }
1105
+ 6.5% {
1106
+ -webkit-transform: translateX(-6px) rotateY(-9deg);
1107
+ transform: translateX(-6px) rotateY(-9deg);
1108
+ }
1109
+ 18.5% {
1110
+ -webkit-transform: translateX(5px) rotateY(7deg);
1111
+ transform: translateX(5px) rotateY(7deg);
1112
+ }
1113
+ 31.5% {
1114
+ -webkit-transform: translateX(-3px) rotateY(-5deg);
1115
+ transform: translateX(-3px) rotateY(-5deg);
1116
+ }
1117
+ 43.5% {
1118
+ -webkit-transform: translateX(2px) rotateY(3deg);
1119
+ transform: translateX(2px) rotateY(3deg);
1120
+ }
1121
+ 50% {
1122
+ -webkit-transform: translateX(0);
1123
+ transform: translateX(0);
1124
+ }
1125
+ }
1126
+ @keyframes headShake {
1127
+ 0% {
1128
+ -webkit-transform: translateX(0);
1129
+ transform: translateX(0);
1130
+ }
1131
+ 6.5% {
1132
+ -webkit-transform: translateX(-6px) rotateY(-9deg);
1133
+ transform: translateX(-6px) rotateY(-9deg);
1134
+ }
1135
+ 18.5% {
1136
+ -webkit-transform: translateX(5px) rotateY(7deg);
1137
+ transform: translateX(5px) rotateY(7deg);
1138
+ }
1139
+ 31.5% {
1140
+ -webkit-transform: translateX(-3px) rotateY(-5deg);
1141
+ transform: translateX(-3px) rotateY(-5deg);
1142
+ }
1143
+ 43.5% {
1144
+ -webkit-transform: translateX(2px) rotateY(3deg);
1145
+ transform: translateX(2px) rotateY(3deg);
1146
+ }
1147
+ 50% {
1148
+ -webkit-transform: translateX(0);
1149
+ transform: translateX(0);
1150
+ }
1151
+ }
1152
+ .animate__headShake {
1153
+ -webkit-animation-timing-function: ease-in-out;
1154
+ animation-timing-function: ease-in-out;
1155
+ -webkit-animation-name: headShake;
1156
+ animation-name: headShake;
1157
+ }
1158
+
1159
+ @-webkit-keyframes swing {
1160
+ 20% {
1161
+ -webkit-transform: rotate3d(0, 0, 1, 15deg);
1162
+ transform: rotate3d(0, 0, 1, 15deg);
1163
+ }
1164
+ 40% {
1165
+ -webkit-transform: rotate3d(0, 0, 1, -10deg);
1166
+ transform: rotate3d(0, 0, 1, -10deg);
1167
+ }
1168
+ 60% {
1169
+ -webkit-transform: rotate3d(0, 0, 1, 5deg);
1170
+ transform: rotate3d(0, 0, 1, 5deg);
1171
+ }
1172
+ 80% {
1173
+ -webkit-transform: rotate3d(0, 0, 1, -5deg);
1174
+ transform: rotate3d(0, 0, 1, -5deg);
1175
+ }
1176
+ to {
1177
+ -webkit-transform: rotate3d(0, 0, 1, 0deg);
1178
+ transform: rotate3d(0, 0, 1, 0deg);
1179
+ }
1180
+ }
1181
+ @keyframes swing {
1182
+ 20% {
1183
+ -webkit-transform: rotate3d(0, 0, 1, 15deg);
1184
+ transform: rotate3d(0, 0, 1, 15deg);
1185
+ }
1186
+ 40% {
1187
+ -webkit-transform: rotate3d(0, 0, 1, -10deg);
1188
+ transform: rotate3d(0, 0, 1, -10deg);
1189
+ }
1190
+ 60% {
1191
+ -webkit-transform: rotate3d(0, 0, 1, 5deg);
1192
+ transform: rotate3d(0, 0, 1, 5deg);
1193
+ }
1194
+ 80% {
1195
+ -webkit-transform: rotate3d(0, 0, 1, -5deg);
1196
+ transform: rotate3d(0, 0, 1, -5deg);
1197
+ }
1198
+ to {
1199
+ -webkit-transform: rotate3d(0, 0, 1, 0deg);
1200
+ transform: rotate3d(0, 0, 1, 0deg);
1201
+ }
1202
+ }
1203
+ .animate__swing {
1204
+ -webkit-transform-origin: top center;
1205
+ transform-origin: top center;
1206
+ -webkit-animation-name: swing;
1207
+ animation-name: swing;
1208
+ }
1209
+
1210
+ @-webkit-keyframes tada {
1211
+ from {
1212
+ -webkit-transform: scale3d(1, 1, 1);
1213
+ transform: scale3d(1, 1, 1);
1214
+ }
1215
+ 10%, 20% {
1216
+ -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
1217
+ transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
1218
+ }
1219
+ 30%, 50%, 70%, 90% {
1220
+ -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
1221
+ transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
1222
+ }
1223
+ 40%, 60%, 80% {
1224
+ -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
1225
+ transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
1226
+ }
1227
+ to {
1228
+ -webkit-transform: scale3d(1, 1, 1);
1229
+ transform: scale3d(1, 1, 1);
1230
+ }
1231
+ }
1232
+ @keyframes tada {
1233
+ from {
1234
+ -webkit-transform: scale3d(1, 1, 1);
1235
+ transform: scale3d(1, 1, 1);
1236
+ }
1237
+ 10%, 20% {
1238
+ -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
1239
+ transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
1240
+ }
1241
+ 30%, 50%, 70%, 90% {
1242
+ -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
1243
+ transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
1244
+ }
1245
+ 40%, 60%, 80% {
1246
+ -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
1247
+ transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
1248
+ }
1249
+ to {
1250
+ -webkit-transform: scale3d(1, 1, 1);
1251
+ transform: scale3d(1, 1, 1);
1252
+ }
1253
+ }
1254
+ .animate__tada {
1255
+ -webkit-animation-name: tada;
1256
+ animation-name: tada;
1257
+ }
1258
+
1259
+ /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
1260
+ @-webkit-keyframes wobble {
1261
+ from {
1262
+ -webkit-transform: translate3d(0, 0, 0);
1263
+ transform: translate3d(0, 0, 0);
1264
+ }
1265
+ 15% {
1266
+ -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
1267
+ transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
1268
+ }
1269
+ 30% {
1270
+ -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
1271
+ transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
1272
+ }
1273
+ 45% {
1274
+ -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
1275
+ transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
1276
+ }
1277
+ 60% {
1278
+ -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
1279
+ transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
1280
+ }
1281
+ 75% {
1282
+ -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
1283
+ transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
1284
+ }
1285
+ to {
1286
+ -webkit-transform: translate3d(0, 0, 0);
1287
+ transform: translate3d(0, 0, 0);
1288
+ }
1289
+ }
1290
+ @keyframes wobble {
1291
+ from {
1292
+ -webkit-transform: translate3d(0, 0, 0);
1293
+ transform: translate3d(0, 0, 0);
1294
+ }
1295
+ 15% {
1296
+ -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
1297
+ transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
1298
+ }
1299
+ 30% {
1300
+ -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
1301
+ transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
1302
+ }
1303
+ 45% {
1304
+ -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
1305
+ transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
1306
+ }
1307
+ 60% {
1308
+ -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
1309
+ transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
1310
+ }
1311
+ 75% {
1312
+ -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
1313
+ transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
1314
+ }
1315
+ to {
1316
+ -webkit-transform: translate3d(0, 0, 0);
1317
+ transform: translate3d(0, 0, 0);
1318
+ }
1319
+ }
1320
+ .animate__wobble {
1321
+ -webkit-animation-name: wobble;
1322
+ animation-name: wobble;
1323
+ }
1324
+
1325
+ @-webkit-keyframes jello {
1326
+ from, 11.1%, to {
1327
+ -webkit-transform: translate3d(0, 0, 0);
1328
+ transform: translate3d(0, 0, 0);
1329
+ }
1330
+ 22.2% {
1331
+ -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
1332
+ transform: skewX(-12.5deg) skewY(-12.5deg);
1333
+ }
1334
+ 33.3% {
1335
+ -webkit-transform: skewX(6.25deg) skewY(6.25deg);
1336
+ transform: skewX(6.25deg) skewY(6.25deg);
1337
+ }
1338
+ 44.4% {
1339
+ -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
1340
+ transform: skewX(-3.125deg) skewY(-3.125deg);
1341
+ }
1342
+ 55.5% {
1343
+ -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
1344
+ transform: skewX(1.5625deg) skewY(1.5625deg);
1345
+ }
1346
+ 66.6% {
1347
+ -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
1348
+ transform: skewX(-0.78125deg) skewY(-0.78125deg);
1349
+ }
1350
+ 77.7% {
1351
+ -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
1352
+ transform: skewX(0.390625deg) skewY(0.390625deg);
1353
+ }
1354
+ 88.8% {
1355
+ -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
1356
+ transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
1357
+ }
1358
+ }
1359
+ @keyframes jello {
1360
+ from, 11.1%, to {
1361
+ -webkit-transform: translate3d(0, 0, 0);
1362
+ transform: translate3d(0, 0, 0);
1363
+ }
1364
+ 22.2% {
1365
+ -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
1366
+ transform: skewX(-12.5deg) skewY(-12.5deg);
1367
+ }
1368
+ 33.3% {
1369
+ -webkit-transform: skewX(6.25deg) skewY(6.25deg);
1370
+ transform: skewX(6.25deg) skewY(6.25deg);
1371
+ }
1372
+ 44.4% {
1373
+ -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
1374
+ transform: skewX(-3.125deg) skewY(-3.125deg);
1375
+ }
1376
+ 55.5% {
1377
+ -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
1378
+ transform: skewX(1.5625deg) skewY(1.5625deg);
1379
+ }
1380
+ 66.6% {
1381
+ -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
1382
+ transform: skewX(-0.78125deg) skewY(-0.78125deg);
1383
+ }
1384
+ 77.7% {
1385
+ -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
1386
+ transform: skewX(0.390625deg) skewY(0.390625deg);
1387
+ }
1388
+ 88.8% {
1389
+ -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
1390
+ transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
1391
+ }
1392
+ }
1393
+ .animate__jello {
1394
+ -webkit-animation-name: jello;
1395
+ animation-name: jello;
1396
+ -webkit-transform-origin: center;
1397
+ transform-origin: center;
1398
+ }
1399
+
1400
+ @-webkit-keyframes heartBeat {
1401
+ 0% {
1402
+ -webkit-transform: scale(1);
1403
+ transform: scale(1);
1404
+ }
1405
+ 14% {
1406
+ -webkit-transform: scale(1.3);
1407
+ transform: scale(1.3);
1408
+ }
1409
+ 28% {
1410
+ -webkit-transform: scale(1);
1411
+ transform: scale(1);
1412
+ }
1413
+ 42% {
1414
+ -webkit-transform: scale(1.3);
1415
+ transform: scale(1.3);
1416
+ }
1417
+ 70% {
1418
+ -webkit-transform: scale(1);
1419
+ transform: scale(1);
1420
+ }
1421
+ }
1422
+ @keyframes heartBeat {
1423
+ 0% {
1424
+ -webkit-transform: scale(1);
1425
+ transform: scale(1);
1426
+ }
1427
+ 14% {
1428
+ -webkit-transform: scale(1.3);
1429
+ transform: scale(1.3);
1430
+ }
1431
+ 28% {
1432
+ -webkit-transform: scale(1);
1433
+ transform: scale(1);
1434
+ }
1435
+ 42% {
1436
+ -webkit-transform: scale(1.3);
1437
+ transform: scale(1.3);
1438
+ }
1439
+ 70% {
1440
+ -webkit-transform: scale(1);
1441
+ transform: scale(1);
1442
+ }
1443
+ }
1444
+ .animate__heartBeat {
1445
+ -webkit-animation-name: heartBeat;
1446
+ animation-name: heartBeat;
1447
+ -webkit-animation-duration: 1.3s;
1448
+ animation-duration: 1.3s;
1449
+ -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
1450
+ animation-duration: calc(var(--animate-duration) * 1.3);
1451
+ -webkit-animation-timing-function: ease-in-out;
1452
+ animation-timing-function: ease-in-out;
1453
+ }
1454
+
1455
+ /* Back entrances */
1456
+ @-webkit-keyframes backInDown {
1457
+ 0% {
1458
+ -webkit-transform: translateY(-1200px) scale(0.7);
1459
+ transform: translateY(-1200px) scale(0.7);
1460
+ opacity: 0.7;
1461
+ }
1462
+ 80% {
1463
+ -webkit-transform: translateY(0px) scale(0.7);
1464
+ transform: translateY(0px) scale(0.7);
1465
+ opacity: 0.7;
1466
+ }
1467
+ 100% {
1468
+ -webkit-transform: scale(1);
1469
+ transform: scale(1);
1470
+ opacity: 1;
1471
+ }
1472
+ }
1473
+ @keyframes backInDown {
1474
+ 0% {
1475
+ -webkit-transform: translateY(-1200px) scale(0.7);
1476
+ transform: translateY(-1200px) scale(0.7);
1477
+ opacity: 0.7;
1478
+ }
1479
+ 80% {
1480
+ -webkit-transform: translateY(0px) scale(0.7);
1481
+ transform: translateY(0px) scale(0.7);
1482
+ opacity: 0.7;
1483
+ }
1484
+ 100% {
1485
+ -webkit-transform: scale(1);
1486
+ transform: scale(1);
1487
+ opacity: 1;
1488
+ }
1489
+ }
1490
+ .animate__backInDown {
1491
+ -webkit-animation-name: backInDown;
1492
+ animation-name: backInDown;
1493
+ }
1494
+
1495
+ @-webkit-keyframes backInLeft {
1496
+ 0% {
1497
+ -webkit-transform: translateX(-2000px) scale(0.7);
1498
+ transform: translateX(-2000px) scale(0.7);
1499
+ opacity: 0.7;
1500
+ }
1501
+ 80% {
1502
+ -webkit-transform: translateX(0px) scale(0.7);
1503
+ transform: translateX(0px) scale(0.7);
1504
+ opacity: 0.7;
1505
+ }
1506
+ 100% {
1507
+ -webkit-transform: scale(1);
1508
+ transform: scale(1);
1509
+ opacity: 1;
1510
+ }
1511
+ }
1512
+ @keyframes backInLeft {
1513
+ 0% {
1514
+ -webkit-transform: translateX(-2000px) scale(0.7);
1515
+ transform: translateX(-2000px) scale(0.7);
1516
+ opacity: 0.7;
1517
+ }
1518
+ 80% {
1519
+ -webkit-transform: translateX(0px) scale(0.7);
1520
+ transform: translateX(0px) scale(0.7);
1521
+ opacity: 0.7;
1522
+ }
1523
+ 100% {
1524
+ -webkit-transform: scale(1);
1525
+ transform: scale(1);
1526
+ opacity: 1;
1527
+ }
1528
+ }
1529
+ .animate__backInLeft {
1530
+ -webkit-animation-name: backInLeft;
1531
+ animation-name: backInLeft;
1532
+ }
1533
+
1534
+ @-webkit-keyframes backInRight {
1535
+ 0% {
1536
+ -webkit-transform: translateX(2000px) scale(0.7);
1537
+ transform: translateX(2000px) scale(0.7);
1538
+ opacity: 0.7;
1539
+ }
1540
+ 80% {
1541
+ -webkit-transform: translateX(0px) scale(0.7);
1542
+ transform: translateX(0px) scale(0.7);
1543
+ opacity: 0.7;
1544
+ }
1545
+ 100% {
1546
+ -webkit-transform: scale(1);
1547
+ transform: scale(1);
1548
+ opacity: 1;
1549
+ }
1550
+ }
1551
+ @keyframes backInRight {
1552
+ 0% {
1553
+ -webkit-transform: translateX(2000px) scale(0.7);
1554
+ transform: translateX(2000px) scale(0.7);
1555
+ opacity: 0.7;
1556
+ }
1557
+ 80% {
1558
+ -webkit-transform: translateX(0px) scale(0.7);
1559
+ transform: translateX(0px) scale(0.7);
1560
+ opacity: 0.7;
1561
+ }
1562
+ 100% {
1563
+ -webkit-transform: scale(1);
1564
+ transform: scale(1);
1565
+ opacity: 1;
1566
+ }
1567
+ }
1568
+ .animate__backInRight {
1569
+ -webkit-animation-name: backInRight;
1570
+ animation-name: backInRight;
1571
+ }
1572
+
1573
+ @-webkit-keyframes backInUp {
1574
+ 0% {
1575
+ -webkit-transform: translateY(1200px) scale(0.7);
1576
+ transform: translateY(1200px) scale(0.7);
1577
+ opacity: 0.7;
1578
+ }
1579
+ 80% {
1580
+ -webkit-transform: translateY(0px) scale(0.7);
1581
+ transform: translateY(0px) scale(0.7);
1582
+ opacity: 0.7;
1583
+ }
1584
+ 100% {
1585
+ -webkit-transform: scale(1);
1586
+ transform: scale(1);
1587
+ opacity: 1;
1588
+ }
1589
+ }
1590
+ @keyframes backInUp {
1591
+ 0% {
1592
+ -webkit-transform: translateY(1200px) scale(0.7);
1593
+ transform: translateY(1200px) scale(0.7);
1594
+ opacity: 0.7;
1595
+ }
1596
+ 80% {
1597
+ -webkit-transform: translateY(0px) scale(0.7);
1598
+ transform: translateY(0px) scale(0.7);
1599
+ opacity: 0.7;
1600
+ }
1601
+ 100% {
1602
+ -webkit-transform: scale(1);
1603
+ transform: scale(1);
1604
+ opacity: 1;
1605
+ }
1606
+ }
1607
+ .animate__backInUp {
1608
+ -webkit-animation-name: backInUp;
1609
+ animation-name: backInUp;
1610
+ }
1611
+
1612
+ /* Back exits */
1613
+ @-webkit-keyframes backOutDown {
1614
+ 0% {
1615
+ -webkit-transform: scale(1);
1616
+ transform: scale(1);
1617
+ opacity: 1;
1618
+ }
1619
+ 20% {
1620
+ -webkit-transform: translateY(0px) scale(0.7);
1621
+ transform: translateY(0px) scale(0.7);
1622
+ opacity: 0.7;
1623
+ }
1624
+ 100% {
1625
+ -webkit-transform: translateY(700px) scale(0.7);
1626
+ transform: translateY(700px) scale(0.7);
1627
+ opacity: 0.7;
1628
+ }
1629
+ }
1630
+ @keyframes backOutDown {
1631
+ 0% {
1632
+ -webkit-transform: scale(1);
1633
+ transform: scale(1);
1634
+ opacity: 1;
1635
+ }
1636
+ 20% {
1637
+ -webkit-transform: translateY(0px) scale(0.7);
1638
+ transform: translateY(0px) scale(0.7);
1639
+ opacity: 0.7;
1640
+ }
1641
+ 100% {
1642
+ -webkit-transform: translateY(700px) scale(0.7);
1643
+ transform: translateY(700px) scale(0.7);
1644
+ opacity: 0.7;
1645
+ }
1646
+ }
1647
+ .animate__backOutDown {
1648
+ -webkit-animation-name: backOutDown;
1649
+ animation-name: backOutDown;
1650
+ }
1651
+
1652
+ @-webkit-keyframes backOutLeft {
1653
+ 0% {
1654
+ -webkit-transform: scale(1);
1655
+ transform: scale(1);
1656
+ opacity: 1;
1657
+ }
1658
+ 20% {
1659
+ -webkit-transform: translateX(0px) scale(0.7);
1660
+ transform: translateX(0px) scale(0.7);
1661
+ opacity: 0.7;
1662
+ }
1663
+ 100% {
1664
+ -webkit-transform: translateX(-2000px) scale(0.7);
1665
+ transform: translateX(-2000px) scale(0.7);
1666
+ opacity: 0.7;
1667
+ }
1668
+ }
1669
+ @keyframes backOutLeft {
1670
+ 0% {
1671
+ -webkit-transform: scale(1);
1672
+ transform: scale(1);
1673
+ opacity: 1;
1674
+ }
1675
+ 20% {
1676
+ -webkit-transform: translateX(0px) scale(0.7);
1677
+ transform: translateX(0px) scale(0.7);
1678
+ opacity: 0.7;
1679
+ }
1680
+ 100% {
1681
+ -webkit-transform: translateX(-2000px) scale(0.7);
1682
+ transform: translateX(-2000px) scale(0.7);
1683
+ opacity: 0.7;
1684
+ }
1685
+ }
1686
+ .animate__backOutLeft {
1687
+ -webkit-animation-name: backOutLeft;
1688
+ animation-name: backOutLeft;
1689
+ }
1690
+
1691
+ @-webkit-keyframes backOutRight {
1692
+ 0% {
1693
+ -webkit-transform: scale(1);
1694
+ transform: scale(1);
1695
+ opacity: 1;
1696
+ }
1697
+ 20% {
1698
+ -webkit-transform: translateX(0px) scale(0.7);
1699
+ transform: translateX(0px) scale(0.7);
1700
+ opacity: 0.7;
1701
+ }
1702
+ 100% {
1703
+ -webkit-transform: translateX(2000px) scale(0.7);
1704
+ transform: translateX(2000px) scale(0.7);
1705
+ opacity: 0.7;
1706
+ }
1707
+ }
1708
+ @keyframes backOutRight {
1709
+ 0% {
1710
+ -webkit-transform: scale(1);
1711
+ transform: scale(1);
1712
+ opacity: 1;
1713
+ }
1714
+ 20% {
1715
+ -webkit-transform: translateX(0px) scale(0.7);
1716
+ transform: translateX(0px) scale(0.7);
1717
+ opacity: 0.7;
1718
+ }
1719
+ 100% {
1720
+ -webkit-transform: translateX(2000px) scale(0.7);
1721
+ transform: translateX(2000px) scale(0.7);
1722
+ opacity: 0.7;
1723
+ }
1724
+ }
1725
+ .animate__backOutRight {
1726
+ -webkit-animation-name: backOutRight;
1727
+ animation-name: backOutRight;
1728
+ }
1729
+
1730
+ @-webkit-keyframes backOutUp {
1731
+ 0% {
1732
+ -webkit-transform: scale(1);
1733
+ transform: scale(1);
1734
+ opacity: 1;
1735
+ }
1736
+ 20% {
1737
+ -webkit-transform: translateY(0px) scale(0.7);
1738
+ transform: translateY(0px) scale(0.7);
1739
+ opacity: 0.7;
1740
+ }
1741
+ 100% {
1742
+ -webkit-transform: translateY(-700px) scale(0.7);
1743
+ transform: translateY(-700px) scale(0.7);
1744
+ opacity: 0.7;
1745
+ }
1746
+ }
1747
+ @keyframes backOutUp {
1748
+ 0% {
1749
+ -webkit-transform: scale(1);
1750
+ transform: scale(1);
1751
+ opacity: 1;
1752
+ }
1753
+ 20% {
1754
+ -webkit-transform: translateY(0px) scale(0.7);
1755
+ transform: translateY(0px) scale(0.7);
1756
+ opacity: 0.7;
1757
+ }
1758
+ 100% {
1759
+ -webkit-transform: translateY(-700px) scale(0.7);
1760
+ transform: translateY(-700px) scale(0.7);
1761
+ opacity: 0.7;
1762
+ }
1763
+ }
1764
+ .animate__backOutUp {
1765
+ -webkit-animation-name: backOutUp;
1766
+ animation-name: backOutUp;
1767
+ }
1768
+
1769
+ /* Bouncing entrances */
1770
+ @-webkit-keyframes bounceIn {
1771
+ from, 20%, 40%, 60%, 80%, to {
1772
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
1773
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
1774
+ }
1775
+ 0% {
1776
+ opacity: 0;
1777
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
1778
+ transform: scale3d(0.3, 0.3, 0.3);
1779
+ }
1780
+ 20% {
1781
+ -webkit-transform: scale3d(1.1, 1.1, 1.1);
1782
+ transform: scale3d(1.1, 1.1, 1.1);
1783
+ }
1784
+ 40% {
1785
+ -webkit-transform: scale3d(0.9, 0.9, 0.9);
1786
+ transform: scale3d(0.9, 0.9, 0.9);
1787
+ }
1788
+ 60% {
1789
+ opacity: 1;
1790
+ -webkit-transform: scale3d(1.03, 1.03, 1.03);
1791
+ transform: scale3d(1.03, 1.03, 1.03);
1792
+ }
1793
+ 80% {
1794
+ -webkit-transform: scale3d(0.97, 0.97, 0.97);
1795
+ transform: scale3d(0.97, 0.97, 0.97);
1796
+ }
1797
+ to {
1798
+ opacity: 1;
1799
+ -webkit-transform: scale3d(1, 1, 1);
1800
+ transform: scale3d(1, 1, 1);
1801
+ }
1802
+ }
1803
+ @keyframes bounceIn {
1804
+ from, 20%, 40%, 60%, 80%, to {
1805
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
1806
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
1807
+ }
1808
+ 0% {
1809
+ opacity: 0;
1810
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
1811
+ transform: scale3d(0.3, 0.3, 0.3);
1812
+ }
1813
+ 20% {
1814
+ -webkit-transform: scale3d(1.1, 1.1, 1.1);
1815
+ transform: scale3d(1.1, 1.1, 1.1);
1816
+ }
1817
+ 40% {
1818
+ -webkit-transform: scale3d(0.9, 0.9, 0.9);
1819
+ transform: scale3d(0.9, 0.9, 0.9);
1820
+ }
1821
+ 60% {
1822
+ opacity: 1;
1823
+ -webkit-transform: scale3d(1.03, 1.03, 1.03);
1824
+ transform: scale3d(1.03, 1.03, 1.03);
1825
+ }
1826
+ 80% {
1827
+ -webkit-transform: scale3d(0.97, 0.97, 0.97);
1828
+ transform: scale3d(0.97, 0.97, 0.97);
1829
+ }
1830
+ to {
1831
+ opacity: 1;
1832
+ -webkit-transform: scale3d(1, 1, 1);
1833
+ transform: scale3d(1, 1, 1);
1834
+ }
1835
+ }
1836
+ .animate__bounceIn {
1837
+ -webkit-animation-duration: 0.75s;
1838
+ animation-duration: 0.75s;
1839
+ -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
1840
+ animation-duration: calc(var(--animate-duration) * 0.75);
1841
+ -webkit-animation-name: bounceIn;
1842
+ animation-name: bounceIn;
1843
+ }
1844
+
1845
+ @-webkit-keyframes bounceInDown {
1846
+ from, 60%, 75%, 90%, to {
1847
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
1848
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
1849
+ }
1850
+ 0% {
1851
+ opacity: 0;
1852
+ -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
1853
+ transform: translate3d(0, -3000px, 0) scaleY(3);
1854
+ }
1855
+ 60% {
1856
+ opacity: 1;
1857
+ -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
1858
+ transform: translate3d(0, 25px, 0) scaleY(0.9);
1859
+ }
1860
+ 75% {
1861
+ -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
1862
+ transform: translate3d(0, -10px, 0) scaleY(0.95);
1863
+ }
1864
+ 90% {
1865
+ -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
1866
+ transform: translate3d(0, 5px, 0) scaleY(0.985);
1867
+ }
1868
+ to {
1869
+ -webkit-transform: translate3d(0, 0, 0);
1870
+ transform: translate3d(0, 0, 0);
1871
+ }
1872
+ }
1873
+ @keyframes bounceInDown {
1874
+ from, 60%, 75%, 90%, to {
1875
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
1876
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
1877
+ }
1878
+ 0% {
1879
+ opacity: 0;
1880
+ -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
1881
+ transform: translate3d(0, -3000px, 0) scaleY(3);
1882
+ }
1883
+ 60% {
1884
+ opacity: 1;
1885
+ -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
1886
+ transform: translate3d(0, 25px, 0) scaleY(0.9);
1887
+ }
1888
+ 75% {
1889
+ -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
1890
+ transform: translate3d(0, -10px, 0) scaleY(0.95);
1891
+ }
1892
+ 90% {
1893
+ -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
1894
+ transform: translate3d(0, 5px, 0) scaleY(0.985);
1895
+ }
1896
+ to {
1897
+ -webkit-transform: translate3d(0, 0, 0);
1898
+ transform: translate3d(0, 0, 0);
1899
+ }
1900
+ }
1901
+ .animate__bounceInDown {
1902
+ -webkit-animation-name: bounceInDown;
1903
+ animation-name: bounceInDown;
1904
+ }
1905
+
1906
+ @-webkit-keyframes bounceInLeft {
1907
+ from, 60%, 75%, 90%, to {
1908
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
1909
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
1910
+ }
1911
+ 0% {
1912
+ opacity: 0;
1913
+ -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
1914
+ transform: translate3d(-3000px, 0, 0) scaleX(3);
1915
+ }
1916
+ 60% {
1917
+ opacity: 1;
1918
+ -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
1919
+ transform: translate3d(25px, 0, 0) scaleX(1);
1920
+ }
1921
+ 75% {
1922
+ -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
1923
+ transform: translate3d(-10px, 0, 0) scaleX(0.98);
1924
+ }
1925
+ 90% {
1926
+ -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
1927
+ transform: translate3d(5px, 0, 0) scaleX(0.995);
1928
+ }
1929
+ to {
1930
+ -webkit-transform: translate3d(0, 0, 0);
1931
+ transform: translate3d(0, 0, 0);
1932
+ }
1933
+ }
1934
+ @keyframes bounceInLeft {
1935
+ from, 60%, 75%, 90%, to {
1936
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
1937
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
1938
+ }
1939
+ 0% {
1940
+ opacity: 0;
1941
+ -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
1942
+ transform: translate3d(-3000px, 0, 0) scaleX(3);
1943
+ }
1944
+ 60% {
1945
+ opacity: 1;
1946
+ -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
1947
+ transform: translate3d(25px, 0, 0) scaleX(1);
1948
+ }
1949
+ 75% {
1950
+ -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
1951
+ transform: translate3d(-10px, 0, 0) scaleX(0.98);
1952
+ }
1953
+ 90% {
1954
+ -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
1955
+ transform: translate3d(5px, 0, 0) scaleX(0.995);
1956
+ }
1957
+ to {
1958
+ -webkit-transform: translate3d(0, 0, 0);
1959
+ transform: translate3d(0, 0, 0);
1960
+ }
1961
+ }
1962
+ .animate__bounceInLeft {
1963
+ -webkit-animation-name: bounceInLeft;
1964
+ animation-name: bounceInLeft;
1965
+ }
1966
+
1967
+ @-webkit-keyframes bounceInRight {
1968
+ from, 60%, 75%, 90%, to {
1969
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
1970
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
1971
+ }
1972
+ from {
1973
+ opacity: 0;
1974
+ -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
1975
+ transform: translate3d(3000px, 0, 0) scaleX(3);
1976
+ }
1977
+ 60% {
1978
+ opacity: 1;
1979
+ -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
1980
+ transform: translate3d(-25px, 0, 0) scaleX(1);
1981
+ }
1982
+ 75% {
1983
+ -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
1984
+ transform: translate3d(10px, 0, 0) scaleX(0.98);
1985
+ }
1986
+ 90% {
1987
+ -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
1988
+ transform: translate3d(-5px, 0, 0) scaleX(0.995);
1989
+ }
1990
+ to {
1991
+ -webkit-transform: translate3d(0, 0, 0);
1992
+ transform: translate3d(0, 0, 0);
1993
+ }
1994
+ }
1995
+ @keyframes bounceInRight {
1996
+ from, 60%, 75%, 90%, to {
1997
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
1998
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
1999
+ }
2000
+ from {
2001
+ opacity: 0;
2002
+ -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
2003
+ transform: translate3d(3000px, 0, 0) scaleX(3);
2004
+ }
2005
+ 60% {
2006
+ opacity: 1;
2007
+ -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
2008
+ transform: translate3d(-25px, 0, 0) scaleX(1);
2009
+ }
2010
+ 75% {
2011
+ -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
2012
+ transform: translate3d(10px, 0, 0) scaleX(0.98);
2013
+ }
2014
+ 90% {
2015
+ -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
2016
+ transform: translate3d(-5px, 0, 0) scaleX(0.995);
2017
+ }
2018
+ to {
2019
+ -webkit-transform: translate3d(0, 0, 0);
2020
+ transform: translate3d(0, 0, 0);
2021
+ }
2022
+ }
2023
+ .animate__bounceInRight {
2024
+ -webkit-animation-name: bounceInRight;
2025
+ animation-name: bounceInRight;
2026
+ }
2027
+
2028
+ @-webkit-keyframes bounceInUp {
2029
+ from, 60%, 75%, 90%, to {
2030
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
2031
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
2032
+ }
2033
+ from {
2034
+ opacity: 0;
2035
+ -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
2036
+ transform: translate3d(0, 3000px, 0) scaleY(5);
2037
+ }
2038
+ 60% {
2039
+ opacity: 1;
2040
+ -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
2041
+ transform: translate3d(0, -20px, 0) scaleY(0.9);
2042
+ }
2043
+ 75% {
2044
+ -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
2045
+ transform: translate3d(0, 10px, 0) scaleY(0.95);
2046
+ }
2047
+ 90% {
2048
+ -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
2049
+ transform: translate3d(0, -5px, 0) scaleY(0.985);
2050
+ }
2051
+ to {
2052
+ -webkit-transform: translate3d(0, 0, 0);
2053
+ transform: translate3d(0, 0, 0);
2054
+ }
2055
+ }
2056
+ @keyframes bounceInUp {
2057
+ from, 60%, 75%, 90%, to {
2058
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
2059
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
2060
+ }
2061
+ from {
2062
+ opacity: 0;
2063
+ -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
2064
+ transform: translate3d(0, 3000px, 0) scaleY(5);
2065
+ }
2066
+ 60% {
2067
+ opacity: 1;
2068
+ -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
2069
+ transform: translate3d(0, -20px, 0) scaleY(0.9);
2070
+ }
2071
+ 75% {
2072
+ -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
2073
+ transform: translate3d(0, 10px, 0) scaleY(0.95);
2074
+ }
2075
+ 90% {
2076
+ -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
2077
+ transform: translate3d(0, -5px, 0) scaleY(0.985);
2078
+ }
2079
+ to {
2080
+ -webkit-transform: translate3d(0, 0, 0);
2081
+ transform: translate3d(0, 0, 0);
2082
+ }
2083
+ }
2084
+ .animate__bounceInUp {
2085
+ -webkit-animation-name: bounceInUp;
2086
+ animation-name: bounceInUp;
2087
+ }
2088
+
2089
+ /* Bouncing exits */
2090
+ @-webkit-keyframes bounceOut {
2091
+ 20% {
2092
+ -webkit-transform: scale3d(0.9, 0.9, 0.9);
2093
+ transform: scale3d(0.9, 0.9, 0.9);
2094
+ }
2095
+ 50%, 55% {
2096
+ opacity: 1;
2097
+ -webkit-transform: scale3d(1.1, 1.1, 1.1);
2098
+ transform: scale3d(1.1, 1.1, 1.1);
2099
+ }
2100
+ to {
2101
+ opacity: 0;
2102
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
2103
+ transform: scale3d(0.3, 0.3, 0.3);
2104
+ }
2105
+ }
2106
+ @keyframes bounceOut {
2107
+ 20% {
2108
+ -webkit-transform: scale3d(0.9, 0.9, 0.9);
2109
+ transform: scale3d(0.9, 0.9, 0.9);
2110
+ }
2111
+ 50%, 55% {
2112
+ opacity: 1;
2113
+ -webkit-transform: scale3d(1.1, 1.1, 1.1);
2114
+ transform: scale3d(1.1, 1.1, 1.1);
2115
+ }
2116
+ to {
2117
+ opacity: 0;
2118
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
2119
+ transform: scale3d(0.3, 0.3, 0.3);
2120
+ }
2121
+ }
2122
+ .animate__bounceOut {
2123
+ -webkit-animation-duration: 0.75s;
2124
+ animation-duration: 0.75s;
2125
+ -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
2126
+ animation-duration: calc(var(--animate-duration) * 0.75);
2127
+ -webkit-animation-name: bounceOut;
2128
+ animation-name: bounceOut;
2129
+ }
2130
+
2131
+ @-webkit-keyframes bounceOutDown {
2132
+ 20% {
2133
+ -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
2134
+ transform: translate3d(0, 10px, 0) scaleY(0.985);
2135
+ }
2136
+ 40%, 45% {
2137
+ opacity: 1;
2138
+ -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
2139
+ transform: translate3d(0, -20px, 0) scaleY(0.9);
2140
+ }
2141
+ to {
2142
+ opacity: 0;
2143
+ -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
2144
+ transform: translate3d(0, 2000px, 0) scaleY(3);
2145
+ }
2146
+ }
2147
+ @keyframes bounceOutDown {
2148
+ 20% {
2149
+ -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
2150
+ transform: translate3d(0, 10px, 0) scaleY(0.985);
2151
+ }
2152
+ 40%, 45% {
2153
+ opacity: 1;
2154
+ -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
2155
+ transform: translate3d(0, -20px, 0) scaleY(0.9);
2156
+ }
2157
+ to {
2158
+ opacity: 0;
2159
+ -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
2160
+ transform: translate3d(0, 2000px, 0) scaleY(3);
2161
+ }
2162
+ }
2163
+ .animate__bounceOutDown {
2164
+ -webkit-animation-name: bounceOutDown;
2165
+ animation-name: bounceOutDown;
2166
+ }
2167
+
2168
+ @-webkit-keyframes bounceOutLeft {
2169
+ 20% {
2170
+ opacity: 1;
2171
+ -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
2172
+ transform: translate3d(20px, 0, 0) scaleX(0.9);
2173
+ }
2174
+ to {
2175
+ opacity: 0;
2176
+ -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
2177
+ transform: translate3d(-2000px, 0, 0) scaleX(2);
2178
+ }
2179
+ }
2180
+ @keyframes bounceOutLeft {
2181
+ 20% {
2182
+ opacity: 1;
2183
+ -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
2184
+ transform: translate3d(20px, 0, 0) scaleX(0.9);
2185
+ }
2186
+ to {
2187
+ opacity: 0;
2188
+ -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
2189
+ transform: translate3d(-2000px, 0, 0) scaleX(2);
2190
+ }
2191
+ }
2192
+ .animate__bounceOutLeft {
2193
+ -webkit-animation-name: bounceOutLeft;
2194
+ animation-name: bounceOutLeft;
2195
+ }
2196
+
2197
+ @-webkit-keyframes bounceOutRight {
2198
+ 20% {
2199
+ opacity: 1;
2200
+ -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
2201
+ transform: translate3d(-20px, 0, 0) scaleX(0.9);
2202
+ }
2203
+ to {
2204
+ opacity: 0;
2205
+ -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
2206
+ transform: translate3d(2000px, 0, 0) scaleX(2);
2207
+ }
2208
+ }
2209
+ @keyframes bounceOutRight {
2210
+ 20% {
2211
+ opacity: 1;
2212
+ -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
2213
+ transform: translate3d(-20px, 0, 0) scaleX(0.9);
2214
+ }
2215
+ to {
2216
+ opacity: 0;
2217
+ -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
2218
+ transform: translate3d(2000px, 0, 0) scaleX(2);
2219
+ }
2220
+ }
2221
+ .animate__bounceOutRight {
2222
+ -webkit-animation-name: bounceOutRight;
2223
+ animation-name: bounceOutRight;
2224
+ }
2225
+
2226
+ @-webkit-keyframes bounceOutUp {
2227
+ 20% {
2228
+ -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
2229
+ transform: translate3d(0, -10px, 0) scaleY(0.985);
2230
+ }
2231
+ 40%, 45% {
2232
+ opacity: 1;
2233
+ -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
2234
+ transform: translate3d(0, 20px, 0) scaleY(0.9);
2235
+ }
2236
+ to {
2237
+ opacity: 0;
2238
+ -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
2239
+ transform: translate3d(0, -2000px, 0) scaleY(3);
2240
+ }
2241
+ }
2242
+ @keyframes bounceOutUp {
2243
+ 20% {
2244
+ -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
2245
+ transform: translate3d(0, -10px, 0) scaleY(0.985);
2246
+ }
2247
+ 40%, 45% {
2248
+ opacity: 1;
2249
+ -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
2250
+ transform: translate3d(0, 20px, 0) scaleY(0.9);
2251
+ }
2252
+ to {
2253
+ opacity: 0;
2254
+ -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
2255
+ transform: translate3d(0, -2000px, 0) scaleY(3);
2256
+ }
2257
+ }
2258
+ .animate__bounceOutUp {
2259
+ -webkit-animation-name: bounceOutUp;
2260
+ animation-name: bounceOutUp;
2261
+ }
2262
+
2263
+ /* Fading entrances */
2264
+ @-webkit-keyframes fadeIn {
2265
+ from {
2266
+ opacity: 0;
2267
+ }
2268
+ to {
2269
+ opacity: 1;
2270
+ }
2271
+ }
2272
+ @keyframes fadeIn {
2273
+ from {
2274
+ opacity: 0;
2275
+ }
2276
+ to {
2277
+ opacity: 1;
2278
+ }
2279
+ }
2280
+ .animate__fadeIn {
2281
+ -webkit-animation-name: fadeIn;
2282
+ animation-name: fadeIn;
2283
+ }
2284
+
2285
+ @-webkit-keyframes fadeInDown {
2286
+ from {
2287
+ opacity: 0;
2288
+ -webkit-transform: translate3d(0, -100%, 0);
2289
+ transform: translate3d(0, -100%, 0);
2290
+ }
2291
+ to {
2292
+ opacity: 1;
2293
+ -webkit-transform: translate3d(0, 0, 0);
2294
+ transform: translate3d(0, 0, 0);
2295
+ }
2296
+ }
2297
+ @keyframes fadeInDown {
2298
+ from {
2299
+ opacity: 0;
2300
+ -webkit-transform: translate3d(0, -100%, 0);
2301
+ transform: translate3d(0, -100%, 0);
2302
+ }
2303
+ to {
2304
+ opacity: 1;
2305
+ -webkit-transform: translate3d(0, 0, 0);
2306
+ transform: translate3d(0, 0, 0);
2307
+ }
2308
+ }
2309
+ .animate__fadeInDown {
2310
+ -webkit-animation-name: fadeInDown;
2311
+ animation-name: fadeInDown;
2312
+ }
2313
+
2314
+ @-webkit-keyframes fadeInDownBig {
2315
+ from {
2316
+ opacity: 0;
2317
+ -webkit-transform: translate3d(0, -2000px, 0);
2318
+ transform: translate3d(0, -2000px, 0);
2319
+ }
2320
+ to {
2321
+ opacity: 1;
2322
+ -webkit-transform: translate3d(0, 0, 0);
2323
+ transform: translate3d(0, 0, 0);
2324
+ }
2325
+ }
2326
+ @keyframes fadeInDownBig {
2327
+ from {
2328
+ opacity: 0;
2329
+ -webkit-transform: translate3d(0, -2000px, 0);
2330
+ transform: translate3d(0, -2000px, 0);
2331
+ }
2332
+ to {
2333
+ opacity: 1;
2334
+ -webkit-transform: translate3d(0, 0, 0);
2335
+ transform: translate3d(0, 0, 0);
2336
+ }
2337
+ }
2338
+ .animate__fadeInDownBig {
2339
+ -webkit-animation-name: fadeInDownBig;
2340
+ animation-name: fadeInDownBig;
2341
+ }
2342
+
2343
+ @-webkit-keyframes fadeInLeft {
2344
+ from {
2345
+ opacity: 0;
2346
+ -webkit-transform: translate3d(-100%, 0, 0);
2347
+ transform: translate3d(-100%, 0, 0);
2348
+ }
2349
+ to {
2350
+ opacity: 1;
2351
+ -webkit-transform: translate3d(0, 0, 0);
2352
+ transform: translate3d(0, 0, 0);
2353
+ }
2354
+ }
2355
+ @keyframes fadeInLeft {
2356
+ from {
2357
+ opacity: 0;
2358
+ -webkit-transform: translate3d(-100%, 0, 0);
2359
+ transform: translate3d(-100%, 0, 0);
2360
+ }
2361
+ to {
2362
+ opacity: 1;
2363
+ -webkit-transform: translate3d(0, 0, 0);
2364
+ transform: translate3d(0, 0, 0);
2365
+ }
2366
+ }
2367
+ .animate__fadeInLeft {
2368
+ -webkit-animation-name: fadeInLeft;
2369
+ animation-name: fadeInLeft;
2370
+ }
2371
+
2372
+ @-webkit-keyframes fadeInLeftBig {
2373
+ from {
2374
+ opacity: 0;
2375
+ -webkit-transform: translate3d(-2000px, 0, 0);
2376
+ transform: translate3d(-2000px, 0, 0);
2377
+ }
2378
+ to {
2379
+ opacity: 1;
2380
+ -webkit-transform: translate3d(0, 0, 0);
2381
+ transform: translate3d(0, 0, 0);
2382
+ }
2383
+ }
2384
+ @keyframes fadeInLeftBig {
2385
+ from {
2386
+ opacity: 0;
2387
+ -webkit-transform: translate3d(-2000px, 0, 0);
2388
+ transform: translate3d(-2000px, 0, 0);
2389
+ }
2390
+ to {
2391
+ opacity: 1;
2392
+ -webkit-transform: translate3d(0, 0, 0);
2393
+ transform: translate3d(0, 0, 0);
2394
+ }
2395
+ }
2396
+ .animate__fadeInLeftBig {
2397
+ -webkit-animation-name: fadeInLeftBig;
2398
+ animation-name: fadeInLeftBig;
2399
+ }
2400
+
2401
+ @-webkit-keyframes fadeInRight {
2402
+ from {
2403
+ opacity: 0;
2404
+ -webkit-transform: translate3d(100%, 0, 0);
2405
+ transform: translate3d(100%, 0, 0);
2406
+ }
2407
+ to {
2408
+ opacity: 1;
2409
+ -webkit-transform: translate3d(0, 0, 0);
2410
+ transform: translate3d(0, 0, 0);
2411
+ }
2412
+ }
2413
+ @keyframes fadeInRight {
2414
+ from {
2415
+ opacity: 0;
2416
+ -webkit-transform: translate3d(100%, 0, 0);
2417
+ transform: translate3d(100%, 0, 0);
2418
+ }
2419
+ to {
2420
+ opacity: 1;
2421
+ -webkit-transform: translate3d(0, 0, 0);
2422
+ transform: translate3d(0, 0, 0);
2423
+ }
2424
+ }
2425
+ .animate__fadeInRight {
2426
+ -webkit-animation-name: fadeInRight;
2427
+ animation-name: fadeInRight;
2428
+ }
2429
+
2430
+ @-webkit-keyframes fadeInRightBig {
2431
+ from {
2432
+ opacity: 0;
2433
+ -webkit-transform: translate3d(2000px, 0, 0);
2434
+ transform: translate3d(2000px, 0, 0);
2435
+ }
2436
+ to {
2437
+ opacity: 1;
2438
+ -webkit-transform: translate3d(0, 0, 0);
2439
+ transform: translate3d(0, 0, 0);
2440
+ }
2441
+ }
2442
+ @keyframes fadeInRightBig {
2443
+ from {
2444
+ opacity: 0;
2445
+ -webkit-transform: translate3d(2000px, 0, 0);
2446
+ transform: translate3d(2000px, 0, 0);
2447
+ }
2448
+ to {
2449
+ opacity: 1;
2450
+ -webkit-transform: translate3d(0, 0, 0);
2451
+ transform: translate3d(0, 0, 0);
2452
+ }
2453
+ }
2454
+ .animate__fadeInRightBig {
2455
+ -webkit-animation-name: fadeInRightBig;
2456
+ animation-name: fadeInRightBig;
2457
+ }
2458
+
2459
+ @-webkit-keyframes fadeInUp {
2460
+ from {
2461
+ opacity: 0;
2462
+ -webkit-transform: translate3d(0, 100%, 0);
2463
+ transform: translate3d(0, 100%, 0);
2464
+ }
2465
+ to {
2466
+ opacity: 1;
2467
+ -webkit-transform: translate3d(0, 0, 0);
2468
+ transform: translate3d(0, 0, 0);
2469
+ }
2470
+ }
2471
+ @keyframes fadeInUp {
2472
+ from {
2473
+ opacity: 0;
2474
+ -webkit-transform: translate3d(0, 100%, 0);
2475
+ transform: translate3d(0, 100%, 0);
2476
+ }
2477
+ to {
2478
+ opacity: 1;
2479
+ -webkit-transform: translate3d(0, 0, 0);
2480
+ transform: translate3d(0, 0, 0);
2481
+ }
2482
+ }
2483
+ .animate__fadeInUp {
2484
+ -webkit-animation-name: fadeInUp;
2485
+ animation-name: fadeInUp;
2486
+ }
2487
+
2488
+ @-webkit-keyframes fadeInUpBig {
2489
+ from {
2490
+ opacity: 0;
2491
+ -webkit-transform: translate3d(0, 2000px, 0);
2492
+ transform: translate3d(0, 2000px, 0);
2493
+ }
2494
+ to {
2495
+ opacity: 1;
2496
+ -webkit-transform: translate3d(0, 0, 0);
2497
+ transform: translate3d(0, 0, 0);
2498
+ }
2499
+ }
2500
+ @keyframes fadeInUpBig {
2501
+ from {
2502
+ opacity: 0;
2503
+ -webkit-transform: translate3d(0, 2000px, 0);
2504
+ transform: translate3d(0, 2000px, 0);
2505
+ }
2506
+ to {
2507
+ opacity: 1;
2508
+ -webkit-transform: translate3d(0, 0, 0);
2509
+ transform: translate3d(0, 0, 0);
2510
+ }
2511
+ }
2512
+ .animate__fadeInUpBig {
2513
+ -webkit-animation-name: fadeInUpBig;
2514
+ animation-name: fadeInUpBig;
2515
+ }
2516
+
2517
+ @-webkit-keyframes fadeInTopLeft {
2518
+ from {
2519
+ opacity: 0;
2520
+ -webkit-transform: translate3d(-100%, -100%, 0);
2521
+ transform: translate3d(-100%, -100%, 0);
2522
+ }
2523
+ to {
2524
+ opacity: 1;
2525
+ -webkit-transform: translate3d(0, 0, 0);
2526
+ transform: translate3d(0, 0, 0);
2527
+ }
2528
+ }
2529
+ @keyframes fadeInTopLeft {
2530
+ from {
2531
+ opacity: 0;
2532
+ -webkit-transform: translate3d(-100%, -100%, 0);
2533
+ transform: translate3d(-100%, -100%, 0);
2534
+ }
2535
+ to {
2536
+ opacity: 1;
2537
+ -webkit-transform: translate3d(0, 0, 0);
2538
+ transform: translate3d(0, 0, 0);
2539
+ }
2540
+ }
2541
+ .animate__fadeInTopLeft {
2542
+ -webkit-animation-name: fadeInTopLeft;
2543
+ animation-name: fadeInTopLeft;
2544
+ }
2545
+
2546
+ @-webkit-keyframes fadeInTopRight {
2547
+ from {
2548
+ opacity: 0;
2549
+ -webkit-transform: translate3d(100%, -100%, 0);
2550
+ transform: translate3d(100%, -100%, 0);
2551
+ }
2552
+ to {
2553
+ opacity: 1;
2554
+ -webkit-transform: translate3d(0, 0, 0);
2555
+ transform: translate3d(0, 0, 0);
2556
+ }
2557
+ }
2558
+ @keyframes fadeInTopRight {
2559
+ from {
2560
+ opacity: 0;
2561
+ -webkit-transform: translate3d(100%, -100%, 0);
2562
+ transform: translate3d(100%, -100%, 0);
2563
+ }
2564
+ to {
2565
+ opacity: 1;
2566
+ -webkit-transform: translate3d(0, 0, 0);
2567
+ transform: translate3d(0, 0, 0);
2568
+ }
2569
+ }
2570
+ .animate__fadeInTopRight {
2571
+ -webkit-animation-name: fadeInTopRight;
2572
+ animation-name: fadeInTopRight;
2573
+ }
2574
+
2575
+ @-webkit-keyframes fadeInBottomLeft {
2576
+ from {
2577
+ opacity: 0;
2578
+ -webkit-transform: translate3d(-100%, 100%, 0);
2579
+ transform: translate3d(-100%, 100%, 0);
2580
+ }
2581
+ to {
2582
+ opacity: 1;
2583
+ -webkit-transform: translate3d(0, 0, 0);
2584
+ transform: translate3d(0, 0, 0);
2585
+ }
2586
+ }
2587
+ @keyframes fadeInBottomLeft {
2588
+ from {
2589
+ opacity: 0;
2590
+ -webkit-transform: translate3d(-100%, 100%, 0);
2591
+ transform: translate3d(-100%, 100%, 0);
2592
+ }
2593
+ to {
2594
+ opacity: 1;
2595
+ -webkit-transform: translate3d(0, 0, 0);
2596
+ transform: translate3d(0, 0, 0);
2597
+ }
2598
+ }
2599
+ .animate__fadeInBottomLeft {
2600
+ -webkit-animation-name: fadeInBottomLeft;
2601
+ animation-name: fadeInBottomLeft;
2602
+ }
2603
+
2604
+ @-webkit-keyframes fadeInBottomRight {
2605
+ from {
2606
+ opacity: 0;
2607
+ -webkit-transform: translate3d(100%, 100%, 0);
2608
+ transform: translate3d(100%, 100%, 0);
2609
+ }
2610
+ to {
2611
+ opacity: 1;
2612
+ -webkit-transform: translate3d(0, 0, 0);
2613
+ transform: translate3d(0, 0, 0);
2614
+ }
2615
+ }
2616
+ @keyframes fadeInBottomRight {
2617
+ from {
2618
+ opacity: 0;
2619
+ -webkit-transform: translate3d(100%, 100%, 0);
2620
+ transform: translate3d(100%, 100%, 0);
2621
+ }
2622
+ to {
2623
+ opacity: 1;
2624
+ -webkit-transform: translate3d(0, 0, 0);
2625
+ transform: translate3d(0, 0, 0);
2626
+ }
2627
+ }
2628
+ .animate__fadeInBottomRight {
2629
+ -webkit-animation-name: fadeInBottomRight;
2630
+ animation-name: fadeInBottomRight;
2631
+ }
2632
+
2633
+ /* Fading exits */
2634
+ @-webkit-keyframes fadeOut {
2635
+ from {
2636
+ opacity: 1;
2637
+ }
2638
+ to {
2639
+ opacity: 0;
2640
+ }
2641
+ }
2642
+ @keyframes fadeOut {
2643
+ from {
2644
+ opacity: 1;
2645
+ }
2646
+ to {
2647
+ opacity: 0;
2648
+ }
2649
+ }
2650
+ .animate__fadeOut {
2651
+ -webkit-animation-name: fadeOut;
2652
+ animation-name: fadeOut;
2653
+ }
2654
+
2655
+ @-webkit-keyframes fadeOutDown {
2656
+ from {
2657
+ opacity: 1;
2658
+ }
2659
+ to {
2660
+ opacity: 0;
2661
+ -webkit-transform: translate3d(0, 100%, 0);
2662
+ transform: translate3d(0, 100%, 0);
2663
+ }
2664
+ }
2665
+ @keyframes fadeOutDown {
2666
+ from {
2667
+ opacity: 1;
2668
+ }
2669
+ to {
2670
+ opacity: 0;
2671
+ -webkit-transform: translate3d(0, 100%, 0);
2672
+ transform: translate3d(0, 100%, 0);
2673
+ }
2674
+ }
2675
+ .animate__fadeOutDown {
2676
+ -webkit-animation-name: fadeOutDown;
2677
+ animation-name: fadeOutDown;
2678
+ }
2679
+
2680
+ @-webkit-keyframes fadeOutDownBig {
2681
+ from {
2682
+ opacity: 1;
2683
+ }
2684
+ to {
2685
+ opacity: 0;
2686
+ -webkit-transform: translate3d(0, 2000px, 0);
2687
+ transform: translate3d(0, 2000px, 0);
2688
+ }
2689
+ }
2690
+ @keyframes fadeOutDownBig {
2691
+ from {
2692
+ opacity: 1;
2693
+ }
2694
+ to {
2695
+ opacity: 0;
2696
+ -webkit-transform: translate3d(0, 2000px, 0);
2697
+ transform: translate3d(0, 2000px, 0);
2698
+ }
2699
+ }
2700
+ .animate__fadeOutDownBig {
2701
+ -webkit-animation-name: fadeOutDownBig;
2702
+ animation-name: fadeOutDownBig;
2703
+ }
2704
+
2705
+ @-webkit-keyframes fadeOutLeft {
2706
+ from {
2707
+ opacity: 1;
2708
+ }
2709
+ to {
2710
+ opacity: 0;
2711
+ -webkit-transform: translate3d(-100%, 0, 0);
2712
+ transform: translate3d(-100%, 0, 0);
2713
+ }
2714
+ }
2715
+ @keyframes fadeOutLeft {
2716
+ from {
2717
+ opacity: 1;
2718
+ }
2719
+ to {
2720
+ opacity: 0;
2721
+ -webkit-transform: translate3d(-100%, 0, 0);
2722
+ transform: translate3d(-100%, 0, 0);
2723
+ }
2724
+ }
2725
+ .animate__fadeOutLeft {
2726
+ -webkit-animation-name: fadeOutLeft;
2727
+ animation-name: fadeOutLeft;
2728
+ }
2729
+
2730
+ @-webkit-keyframes fadeOutLeftBig {
2731
+ from {
2732
+ opacity: 1;
2733
+ }
2734
+ to {
2735
+ opacity: 0;
2736
+ -webkit-transform: translate3d(-2000px, 0, 0);
2737
+ transform: translate3d(-2000px, 0, 0);
2738
+ }
2739
+ }
2740
+ @keyframes fadeOutLeftBig {
2741
+ from {
2742
+ opacity: 1;
2743
+ }
2744
+ to {
2745
+ opacity: 0;
2746
+ -webkit-transform: translate3d(-2000px, 0, 0);
2747
+ transform: translate3d(-2000px, 0, 0);
2748
+ }
2749
+ }
2750
+ .animate__fadeOutLeftBig {
2751
+ -webkit-animation-name: fadeOutLeftBig;
2752
+ animation-name: fadeOutLeftBig;
2753
+ }
2754
+
2755
+ @-webkit-keyframes fadeOutRight {
2756
+ from {
2757
+ opacity: 1;
2758
+ }
2759
+ to {
2760
+ opacity: 0;
2761
+ -webkit-transform: translate3d(100%, 0, 0);
2762
+ transform: translate3d(100%, 0, 0);
2763
+ }
2764
+ }
2765
+ @keyframes fadeOutRight {
2766
+ from {
2767
+ opacity: 1;
2768
+ }
2769
+ to {
2770
+ opacity: 0;
2771
+ -webkit-transform: translate3d(100%, 0, 0);
2772
+ transform: translate3d(100%, 0, 0);
2773
+ }
2774
+ }
2775
+ .animate__fadeOutRight {
2776
+ -webkit-animation-name: fadeOutRight;
2777
+ animation-name: fadeOutRight;
2778
+ }
2779
+
2780
+ @-webkit-keyframes fadeOutRightBig {
2781
+ from {
2782
+ opacity: 1;
2783
+ }
2784
+ to {
2785
+ opacity: 0;
2786
+ -webkit-transform: translate3d(2000px, 0, 0);
2787
+ transform: translate3d(2000px, 0, 0);
2788
+ }
2789
+ }
2790
+ @keyframes fadeOutRightBig {
2791
+ from {
2792
+ opacity: 1;
2793
+ }
2794
+ to {
2795
+ opacity: 0;
2796
+ -webkit-transform: translate3d(2000px, 0, 0);
2797
+ transform: translate3d(2000px, 0, 0);
2798
+ }
2799
+ }
2800
+ .animate__fadeOutRightBig {
2801
+ -webkit-animation-name: fadeOutRightBig;
2802
+ animation-name: fadeOutRightBig;
2803
+ }
2804
+
2805
+ @-webkit-keyframes fadeOutUp {
2806
+ from {
2807
+ opacity: 1;
2808
+ }
2809
+ to {
2810
+ opacity: 0;
2811
+ -webkit-transform: translate3d(0, -100%, 0);
2812
+ transform: translate3d(0, -100%, 0);
2813
+ }
2814
+ }
2815
+ @keyframes fadeOutUp {
2816
+ from {
2817
+ opacity: 1;
2818
+ }
2819
+ to {
2820
+ opacity: 0;
2821
+ -webkit-transform: translate3d(0, -100%, 0);
2822
+ transform: translate3d(0, -100%, 0);
2823
+ }
2824
+ }
2825
+ .animate__fadeOutUp {
2826
+ -webkit-animation-name: fadeOutUp;
2827
+ animation-name: fadeOutUp;
2828
+ }
2829
+
2830
+ @-webkit-keyframes fadeOutUpBig {
2831
+ from {
2832
+ opacity: 1;
2833
+ }
2834
+ to {
2835
+ opacity: 0;
2836
+ -webkit-transform: translate3d(0, -2000px, 0);
2837
+ transform: translate3d(0, -2000px, 0);
2838
+ }
2839
+ }
2840
+ @keyframes fadeOutUpBig {
2841
+ from {
2842
+ opacity: 1;
2843
+ }
2844
+ to {
2845
+ opacity: 0;
2846
+ -webkit-transform: translate3d(0, -2000px, 0);
2847
+ transform: translate3d(0, -2000px, 0);
2848
+ }
2849
+ }
2850
+ .animate__fadeOutUpBig {
2851
+ -webkit-animation-name: fadeOutUpBig;
2852
+ animation-name: fadeOutUpBig;
2853
+ }
2854
+
2855
+ @-webkit-keyframes fadeOutTopLeft {
2856
+ from {
2857
+ opacity: 1;
2858
+ -webkit-transform: translate3d(0, 0, 0);
2859
+ transform: translate3d(0, 0, 0);
2860
+ }
2861
+ to {
2862
+ opacity: 0;
2863
+ -webkit-transform: translate3d(-100%, -100%, 0);
2864
+ transform: translate3d(-100%, -100%, 0);
2865
+ }
2866
+ }
2867
+ @keyframes fadeOutTopLeft {
2868
+ from {
2869
+ opacity: 1;
2870
+ -webkit-transform: translate3d(0, 0, 0);
2871
+ transform: translate3d(0, 0, 0);
2872
+ }
2873
+ to {
2874
+ opacity: 0;
2875
+ -webkit-transform: translate3d(-100%, -100%, 0);
2876
+ transform: translate3d(-100%, -100%, 0);
2877
+ }
2878
+ }
2879
+ .animate__fadeOutTopLeft {
2880
+ -webkit-animation-name: fadeOutTopLeft;
2881
+ animation-name: fadeOutTopLeft;
2882
+ }
2883
+
2884
+ @-webkit-keyframes fadeOutTopRight {
2885
+ from {
2886
+ opacity: 1;
2887
+ -webkit-transform: translate3d(0, 0, 0);
2888
+ transform: translate3d(0, 0, 0);
2889
+ }
2890
+ to {
2891
+ opacity: 0;
2892
+ -webkit-transform: translate3d(100%, -100%, 0);
2893
+ transform: translate3d(100%, -100%, 0);
2894
+ }
2895
+ }
2896
+ @keyframes fadeOutTopRight {
2897
+ from {
2898
+ opacity: 1;
2899
+ -webkit-transform: translate3d(0, 0, 0);
2900
+ transform: translate3d(0, 0, 0);
2901
+ }
2902
+ to {
2903
+ opacity: 0;
2904
+ -webkit-transform: translate3d(100%, -100%, 0);
2905
+ transform: translate3d(100%, -100%, 0);
2906
+ }
2907
+ }
2908
+ .animate__fadeOutTopRight {
2909
+ -webkit-animation-name: fadeOutTopRight;
2910
+ animation-name: fadeOutTopRight;
2911
+ }
2912
+
2913
+ @-webkit-keyframes fadeOutBottomRight {
2914
+ from {
2915
+ opacity: 1;
2916
+ -webkit-transform: translate3d(0, 0, 0);
2917
+ transform: translate3d(0, 0, 0);
2918
+ }
2919
+ to {
2920
+ opacity: 0;
2921
+ -webkit-transform: translate3d(100%, 100%, 0);
2922
+ transform: translate3d(100%, 100%, 0);
2923
+ }
2924
+ }
2925
+ @keyframes fadeOutBottomRight {
2926
+ from {
2927
+ opacity: 1;
2928
+ -webkit-transform: translate3d(0, 0, 0);
2929
+ transform: translate3d(0, 0, 0);
2930
+ }
2931
+ to {
2932
+ opacity: 0;
2933
+ -webkit-transform: translate3d(100%, 100%, 0);
2934
+ transform: translate3d(100%, 100%, 0);
2935
+ }
2936
+ }
2937
+ .animate__fadeOutBottomRight {
2938
+ -webkit-animation-name: fadeOutBottomRight;
2939
+ animation-name: fadeOutBottomRight;
2940
+ }
2941
+
2942
+ @-webkit-keyframes fadeOutBottomLeft {
2943
+ from {
2944
+ opacity: 1;
2945
+ -webkit-transform: translate3d(0, 0, 0);
2946
+ transform: translate3d(0, 0, 0);
2947
+ }
2948
+ to {
2949
+ opacity: 0;
2950
+ -webkit-transform: translate3d(-100%, 100%, 0);
2951
+ transform: translate3d(-100%, 100%, 0);
2952
+ }
2953
+ }
2954
+ @keyframes fadeOutBottomLeft {
2955
+ from {
2956
+ opacity: 1;
2957
+ -webkit-transform: translate3d(0, 0, 0);
2958
+ transform: translate3d(0, 0, 0);
2959
+ }
2960
+ to {
2961
+ opacity: 0;
2962
+ -webkit-transform: translate3d(-100%, 100%, 0);
2963
+ transform: translate3d(-100%, 100%, 0);
2964
+ }
2965
+ }
2966
+ .animate__fadeOutBottomLeft {
2967
+ -webkit-animation-name: fadeOutBottomLeft;
2968
+ animation-name: fadeOutBottomLeft;
2969
+ }
2970
+
2971
+ /* Flippers */
2972
+ @-webkit-keyframes flip {
2973
+ from {
2974
+ -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
2975
+ transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
2976
+ -webkit-animation-timing-function: ease-out;
2977
+ animation-timing-function: ease-out;
2978
+ }
2979
+ 40% {
2980
+ -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
2981
+ transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
2982
+ -webkit-animation-timing-function: ease-out;
2983
+ animation-timing-function: ease-out;
2984
+ }
2985
+ 50% {
2986
+ -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
2987
+ transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
2988
+ -webkit-animation-timing-function: ease-in;
2989
+ animation-timing-function: ease-in;
2990
+ }
2991
+ 80% {
2992
+ -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
2993
+ transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
2994
+ -webkit-animation-timing-function: ease-in;
2995
+ animation-timing-function: ease-in;
2996
+ }
2997
+ to {
2998
+ -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
2999
+ transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
3000
+ -webkit-animation-timing-function: ease-in;
3001
+ animation-timing-function: ease-in;
3002
+ }
3003
+ }
3004
+ @keyframes flip {
3005
+ from {
3006
+ -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
3007
+ transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
3008
+ -webkit-animation-timing-function: ease-out;
3009
+ animation-timing-function: ease-out;
3010
+ }
3011
+ 40% {
3012
+ -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
3013
+ transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
3014
+ -webkit-animation-timing-function: ease-out;
3015
+ animation-timing-function: ease-out;
3016
+ }
3017
+ 50% {
3018
+ -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
3019
+ transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
3020
+ -webkit-animation-timing-function: ease-in;
3021
+ animation-timing-function: ease-in;
3022
+ }
3023
+ 80% {
3024
+ -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
3025
+ transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
3026
+ -webkit-animation-timing-function: ease-in;
3027
+ animation-timing-function: ease-in;
3028
+ }
3029
+ to {
3030
+ -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
3031
+ transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
3032
+ -webkit-animation-timing-function: ease-in;
3033
+ animation-timing-function: ease-in;
3034
+ }
3035
+ }
3036
+ .animate__animated.animate__flip {
3037
+ -webkit-backface-visibility: visible;
3038
+ backface-visibility: visible;
3039
+ -webkit-animation-name: flip;
3040
+ animation-name: flip;
3041
+ }
3042
+
3043
+ @-webkit-keyframes flipInX {
3044
+ from {
3045
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
3046
+ transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
3047
+ -webkit-animation-timing-function: ease-in;
3048
+ animation-timing-function: ease-in;
3049
+ opacity: 0;
3050
+ }
3051
+ 40% {
3052
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
3053
+ transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
3054
+ -webkit-animation-timing-function: ease-in;
3055
+ animation-timing-function: ease-in;
3056
+ }
3057
+ 60% {
3058
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
3059
+ transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
3060
+ opacity: 1;
3061
+ }
3062
+ 80% {
3063
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
3064
+ transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
3065
+ }
3066
+ to {
3067
+ -webkit-transform: perspective(400px);
3068
+ transform: perspective(400px);
3069
+ }
3070
+ }
3071
+ @keyframes flipInX {
3072
+ from {
3073
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
3074
+ transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
3075
+ -webkit-animation-timing-function: ease-in;
3076
+ animation-timing-function: ease-in;
3077
+ opacity: 0;
3078
+ }
3079
+ 40% {
3080
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
3081
+ transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
3082
+ -webkit-animation-timing-function: ease-in;
3083
+ animation-timing-function: ease-in;
3084
+ }
3085
+ 60% {
3086
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
3087
+ transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
3088
+ opacity: 1;
3089
+ }
3090
+ 80% {
3091
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
3092
+ transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
3093
+ }
3094
+ to {
3095
+ -webkit-transform: perspective(400px);
3096
+ transform: perspective(400px);
3097
+ }
3098
+ }
3099
+ .animate__flipInX {
3100
+ -webkit-backface-visibility: visible !important;
3101
+ backface-visibility: visible !important;
3102
+ -webkit-animation-name: flipInX;
3103
+ animation-name: flipInX;
3104
+ }
3105
+
3106
+ @-webkit-keyframes flipInY {
3107
+ from {
3108
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
3109
+ transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
3110
+ -webkit-animation-timing-function: ease-in;
3111
+ animation-timing-function: ease-in;
3112
+ opacity: 0;
3113
+ }
3114
+ 40% {
3115
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
3116
+ transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
3117
+ -webkit-animation-timing-function: ease-in;
3118
+ animation-timing-function: ease-in;
3119
+ }
3120
+ 60% {
3121
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
3122
+ transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
3123
+ opacity: 1;
3124
+ }
3125
+ 80% {
3126
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
3127
+ transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
3128
+ }
3129
+ to {
3130
+ -webkit-transform: perspective(400px);
3131
+ transform: perspective(400px);
3132
+ }
3133
+ }
3134
+ @keyframes flipInY {
3135
+ from {
3136
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
3137
+ transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
3138
+ -webkit-animation-timing-function: ease-in;
3139
+ animation-timing-function: ease-in;
3140
+ opacity: 0;
3141
+ }
3142
+ 40% {
3143
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
3144
+ transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
3145
+ -webkit-animation-timing-function: ease-in;
3146
+ animation-timing-function: ease-in;
3147
+ }
3148
+ 60% {
3149
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
3150
+ transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
3151
+ opacity: 1;
3152
+ }
3153
+ 80% {
3154
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
3155
+ transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
3156
+ }
3157
+ to {
3158
+ -webkit-transform: perspective(400px);
3159
+ transform: perspective(400px);
3160
+ }
3161
+ }
3162
+ .animate__flipInY {
3163
+ -webkit-backface-visibility: visible !important;
3164
+ backface-visibility: visible !important;
3165
+ -webkit-animation-name: flipInY;
3166
+ animation-name: flipInY;
3167
+ }
3168
+
3169
+ @-webkit-keyframes flipOutX {
3170
+ from {
3171
+ -webkit-transform: perspective(400px);
3172
+ transform: perspective(400px);
3173
+ }
3174
+ 30% {
3175
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
3176
+ transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
3177
+ opacity: 1;
3178
+ }
3179
+ to {
3180
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
3181
+ transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
3182
+ opacity: 0;
3183
+ }
3184
+ }
3185
+ @keyframes flipOutX {
3186
+ from {
3187
+ -webkit-transform: perspective(400px);
3188
+ transform: perspective(400px);
3189
+ }
3190
+ 30% {
3191
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
3192
+ transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
3193
+ opacity: 1;
3194
+ }
3195
+ to {
3196
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
3197
+ transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
3198
+ opacity: 0;
3199
+ }
3200
+ }
3201
+ .animate__flipOutX {
3202
+ -webkit-animation-duration: 0.75s;
3203
+ animation-duration: 0.75s;
3204
+ -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
3205
+ animation-duration: calc(var(--animate-duration) * 0.75);
3206
+ -webkit-animation-name: flipOutX;
3207
+ animation-name: flipOutX;
3208
+ -webkit-backface-visibility: visible !important;
3209
+ backface-visibility: visible !important;
3210
+ }
3211
+
3212
+ @-webkit-keyframes flipOutY {
3213
+ from {
3214
+ -webkit-transform: perspective(400px);
3215
+ transform: perspective(400px);
3216
+ }
3217
+ 30% {
3218
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
3219
+ transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
3220
+ opacity: 1;
3221
+ }
3222
+ to {
3223
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
3224
+ transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
3225
+ opacity: 0;
3226
+ }
3227
+ }
3228
+ @keyframes flipOutY {
3229
+ from {
3230
+ -webkit-transform: perspective(400px);
3231
+ transform: perspective(400px);
3232
+ }
3233
+ 30% {
3234
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
3235
+ transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
3236
+ opacity: 1;
3237
+ }
3238
+ to {
3239
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
3240
+ transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
3241
+ opacity: 0;
3242
+ }
3243
+ }
3244
+ .animate__flipOutY {
3245
+ -webkit-animation-duration: 0.75s;
3246
+ animation-duration: 0.75s;
3247
+ -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
3248
+ animation-duration: calc(var(--animate-duration) * 0.75);
3249
+ -webkit-backface-visibility: visible !important;
3250
+ backface-visibility: visible !important;
3251
+ -webkit-animation-name: flipOutY;
3252
+ animation-name: flipOutY;
3253
+ }
3254
+
3255
+ /* Lightspeed */
3256
+ @-webkit-keyframes lightSpeedInRight {
3257
+ from {
3258
+ -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
3259
+ transform: translate3d(100%, 0, 0) skewX(-30deg);
3260
+ opacity: 0;
3261
+ }
3262
+ 60% {
3263
+ -webkit-transform: skewX(20deg);
3264
+ transform: skewX(20deg);
3265
+ opacity: 1;
3266
+ }
3267
+ 80% {
3268
+ -webkit-transform: skewX(-5deg);
3269
+ transform: skewX(-5deg);
3270
+ }
3271
+ to {
3272
+ -webkit-transform: translate3d(0, 0, 0);
3273
+ transform: translate3d(0, 0, 0);
3274
+ }
3275
+ }
3276
+ @keyframes lightSpeedInRight {
3277
+ from {
3278
+ -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
3279
+ transform: translate3d(100%, 0, 0) skewX(-30deg);
3280
+ opacity: 0;
3281
+ }
3282
+ 60% {
3283
+ -webkit-transform: skewX(20deg);
3284
+ transform: skewX(20deg);
3285
+ opacity: 1;
3286
+ }
3287
+ 80% {
3288
+ -webkit-transform: skewX(-5deg);
3289
+ transform: skewX(-5deg);
3290
+ }
3291
+ to {
3292
+ -webkit-transform: translate3d(0, 0, 0);
3293
+ transform: translate3d(0, 0, 0);
3294
+ }
3295
+ }
3296
+ .animate__lightSpeedInRight {
3297
+ -webkit-animation-name: lightSpeedInRight;
3298
+ animation-name: lightSpeedInRight;
3299
+ -webkit-animation-timing-function: ease-out;
3300
+ animation-timing-function: ease-out;
3301
+ }
3302
+
3303
+ @-webkit-keyframes lightSpeedInLeft {
3304
+ from {
3305
+ -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
3306
+ transform: translate3d(-100%, 0, 0) skewX(30deg);
3307
+ opacity: 0;
3308
+ }
3309
+ 60% {
3310
+ -webkit-transform: skewX(-20deg);
3311
+ transform: skewX(-20deg);
3312
+ opacity: 1;
3313
+ }
3314
+ 80% {
3315
+ -webkit-transform: skewX(5deg);
3316
+ transform: skewX(5deg);
3317
+ }
3318
+ to {
3319
+ -webkit-transform: translate3d(0, 0, 0);
3320
+ transform: translate3d(0, 0, 0);
3321
+ }
3322
+ }
3323
+ @keyframes lightSpeedInLeft {
3324
+ from {
3325
+ -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
3326
+ transform: translate3d(-100%, 0, 0) skewX(30deg);
3327
+ opacity: 0;
3328
+ }
3329
+ 60% {
3330
+ -webkit-transform: skewX(-20deg);
3331
+ transform: skewX(-20deg);
3332
+ opacity: 1;
3333
+ }
3334
+ 80% {
3335
+ -webkit-transform: skewX(5deg);
3336
+ transform: skewX(5deg);
3337
+ }
3338
+ to {
3339
+ -webkit-transform: translate3d(0, 0, 0);
3340
+ transform: translate3d(0, 0, 0);
3341
+ }
3342
+ }
3343
+ .animate__lightSpeedInLeft {
3344
+ -webkit-animation-name: lightSpeedInLeft;
3345
+ animation-name: lightSpeedInLeft;
3346
+ -webkit-animation-timing-function: ease-out;
3347
+ animation-timing-function: ease-out;
3348
+ }
3349
+
3350
+ @-webkit-keyframes lightSpeedOutRight {
3351
+ from {
3352
+ opacity: 1;
3353
+ }
3354
+ to {
3355
+ -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
3356
+ transform: translate3d(100%, 0, 0) skewX(30deg);
3357
+ opacity: 0;
3358
+ }
3359
+ }
3360
+ @keyframes lightSpeedOutRight {
3361
+ from {
3362
+ opacity: 1;
3363
+ }
3364
+ to {
3365
+ -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
3366
+ transform: translate3d(100%, 0, 0) skewX(30deg);
3367
+ opacity: 0;
3368
+ }
3369
+ }
3370
+ .animate__lightSpeedOutRight {
3371
+ -webkit-animation-name: lightSpeedOutRight;
3372
+ animation-name: lightSpeedOutRight;
3373
+ -webkit-animation-timing-function: ease-in;
3374
+ animation-timing-function: ease-in;
3375
+ }
3376
+
3377
+ @-webkit-keyframes lightSpeedOutLeft {
3378
+ from {
3379
+ opacity: 1;
3380
+ }
3381
+ to {
3382
+ -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
3383
+ transform: translate3d(-100%, 0, 0) skewX(-30deg);
3384
+ opacity: 0;
3385
+ }
3386
+ }
3387
+ @keyframes lightSpeedOutLeft {
3388
+ from {
3389
+ opacity: 1;
3390
+ }
3391
+ to {
3392
+ -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
3393
+ transform: translate3d(-100%, 0, 0) skewX(-30deg);
3394
+ opacity: 0;
3395
+ }
3396
+ }
3397
+ .animate__lightSpeedOutLeft {
3398
+ -webkit-animation-name: lightSpeedOutLeft;
3399
+ animation-name: lightSpeedOutLeft;
3400
+ -webkit-animation-timing-function: ease-in;
3401
+ animation-timing-function: ease-in;
3402
+ }
3403
+
3404
+ /* Rotating entrances */
3405
+ @-webkit-keyframes rotateIn {
3406
+ from {
3407
+ -webkit-transform: rotate3d(0, 0, 1, -200deg);
3408
+ transform: rotate3d(0, 0, 1, -200deg);
3409
+ opacity: 0;
3410
+ }
3411
+ to {
3412
+ -webkit-transform: translate3d(0, 0, 0);
3413
+ transform: translate3d(0, 0, 0);
3414
+ opacity: 1;
3415
+ }
3416
+ }
3417
+ @keyframes rotateIn {
3418
+ from {
3419
+ -webkit-transform: rotate3d(0, 0, 1, -200deg);
3420
+ transform: rotate3d(0, 0, 1, -200deg);
3421
+ opacity: 0;
3422
+ }
3423
+ to {
3424
+ -webkit-transform: translate3d(0, 0, 0);
3425
+ transform: translate3d(0, 0, 0);
3426
+ opacity: 1;
3427
+ }
3428
+ }
3429
+ .animate__rotateIn {
3430
+ -webkit-animation-name: rotateIn;
3431
+ animation-name: rotateIn;
3432
+ -webkit-transform-origin: center;
3433
+ transform-origin: center;
3434
+ }
3435
+
3436
+ @-webkit-keyframes rotateInDownLeft {
3437
+ from {
3438
+ -webkit-transform: rotate3d(0, 0, 1, -45deg);
3439
+ transform: rotate3d(0, 0, 1, -45deg);
3440
+ opacity: 0;
3441
+ }
3442
+ to {
3443
+ -webkit-transform: translate3d(0, 0, 0);
3444
+ transform: translate3d(0, 0, 0);
3445
+ opacity: 1;
3446
+ }
3447
+ }
3448
+ @keyframes rotateInDownLeft {
3449
+ from {
3450
+ -webkit-transform: rotate3d(0, 0, 1, -45deg);
3451
+ transform: rotate3d(0, 0, 1, -45deg);
3452
+ opacity: 0;
3453
+ }
3454
+ to {
3455
+ -webkit-transform: translate3d(0, 0, 0);
3456
+ transform: translate3d(0, 0, 0);
3457
+ opacity: 1;
3458
+ }
3459
+ }
3460
+ .animate__rotateInDownLeft {
3461
+ -webkit-animation-name: rotateInDownLeft;
3462
+ animation-name: rotateInDownLeft;
3463
+ -webkit-transform-origin: left bottom;
3464
+ transform-origin: left bottom;
3465
+ }
3466
+
3467
+ @-webkit-keyframes rotateInDownRight {
3468
+ from {
3469
+ -webkit-transform: rotate3d(0, 0, 1, 45deg);
3470
+ transform: rotate3d(0, 0, 1, 45deg);
3471
+ opacity: 0;
3472
+ }
3473
+ to {
3474
+ -webkit-transform: translate3d(0, 0, 0);
3475
+ transform: translate3d(0, 0, 0);
3476
+ opacity: 1;
3477
+ }
3478
+ }
3479
+ @keyframes rotateInDownRight {
3480
+ from {
3481
+ -webkit-transform: rotate3d(0, 0, 1, 45deg);
3482
+ transform: rotate3d(0, 0, 1, 45deg);
3483
+ opacity: 0;
3484
+ }
3485
+ to {
3486
+ -webkit-transform: translate3d(0, 0, 0);
3487
+ transform: translate3d(0, 0, 0);
3488
+ opacity: 1;
3489
+ }
3490
+ }
3491
+ .animate__rotateInDownRight {
3492
+ -webkit-animation-name: rotateInDownRight;
3493
+ animation-name: rotateInDownRight;
3494
+ -webkit-transform-origin: right bottom;
3495
+ transform-origin: right bottom;
3496
+ }
3497
+
3498
+ @-webkit-keyframes rotateInUpLeft {
3499
+ from {
3500
+ -webkit-transform: rotate3d(0, 0, 1, 45deg);
3501
+ transform: rotate3d(0, 0, 1, 45deg);
3502
+ opacity: 0;
3503
+ }
3504
+ to {
3505
+ -webkit-transform: translate3d(0, 0, 0);
3506
+ transform: translate3d(0, 0, 0);
3507
+ opacity: 1;
3508
+ }
3509
+ }
3510
+ @keyframes rotateInUpLeft {
3511
+ from {
3512
+ -webkit-transform: rotate3d(0, 0, 1, 45deg);
3513
+ transform: rotate3d(0, 0, 1, 45deg);
3514
+ opacity: 0;
3515
+ }
3516
+ to {
3517
+ -webkit-transform: translate3d(0, 0, 0);
3518
+ transform: translate3d(0, 0, 0);
3519
+ opacity: 1;
3520
+ }
3521
+ }
3522
+ .animate__rotateInUpLeft {
3523
+ -webkit-animation-name: rotateInUpLeft;
3524
+ animation-name: rotateInUpLeft;
3525
+ -webkit-transform-origin: left bottom;
3526
+ transform-origin: left bottom;
3527
+ }
3528
+
3529
+ @-webkit-keyframes rotateInUpRight {
3530
+ from {
3531
+ -webkit-transform: rotate3d(0, 0, 1, -90deg);
3532
+ transform: rotate3d(0, 0, 1, -90deg);
3533
+ opacity: 0;
3534
+ }
3535
+ to {
3536
+ -webkit-transform: translate3d(0, 0, 0);
3537
+ transform: translate3d(0, 0, 0);
3538
+ opacity: 1;
3539
+ }
3540
+ }
3541
+ @keyframes rotateInUpRight {
3542
+ from {
3543
+ -webkit-transform: rotate3d(0, 0, 1, -90deg);
3544
+ transform: rotate3d(0, 0, 1, -90deg);
3545
+ opacity: 0;
3546
+ }
3547
+ to {
3548
+ -webkit-transform: translate3d(0, 0, 0);
3549
+ transform: translate3d(0, 0, 0);
3550
+ opacity: 1;
3551
+ }
3552
+ }
3553
+ .animate__rotateInUpRight {
3554
+ -webkit-animation-name: rotateInUpRight;
3555
+ animation-name: rotateInUpRight;
3556
+ -webkit-transform-origin: right bottom;
3557
+ transform-origin: right bottom;
3558
+ }
3559
+
3560
+ /* Rotating exits */
3561
+ @-webkit-keyframes rotateOut {
3562
+ from {
3563
+ opacity: 1;
3564
+ }
3565
+ to {
3566
+ -webkit-transform: rotate3d(0, 0, 1, 200deg);
3567
+ transform: rotate3d(0, 0, 1, 200deg);
3568
+ opacity: 0;
3569
+ }
3570
+ }
3571
+ @keyframes rotateOut {
3572
+ from {
3573
+ opacity: 1;
3574
+ }
3575
+ to {
3576
+ -webkit-transform: rotate3d(0, 0, 1, 200deg);
3577
+ transform: rotate3d(0, 0, 1, 200deg);
3578
+ opacity: 0;
3579
+ }
3580
+ }
3581
+ .animate__rotateOut {
3582
+ -webkit-animation-name: rotateOut;
3583
+ animation-name: rotateOut;
3584
+ -webkit-transform-origin: center;
3585
+ transform-origin: center;
3586
+ }
3587
+
3588
+ @-webkit-keyframes rotateOutDownLeft {
3589
+ from {
3590
+ opacity: 1;
3591
+ }
3592
+ to {
3593
+ -webkit-transform: rotate3d(0, 0, 1, 45deg);
3594
+ transform: rotate3d(0, 0, 1, 45deg);
3595
+ opacity: 0;
3596
+ }
3597
+ }
3598
+ @keyframes rotateOutDownLeft {
3599
+ from {
3600
+ opacity: 1;
3601
+ }
3602
+ to {
3603
+ -webkit-transform: rotate3d(0, 0, 1, 45deg);
3604
+ transform: rotate3d(0, 0, 1, 45deg);
3605
+ opacity: 0;
3606
+ }
3607
+ }
3608
+ .animate__rotateOutDownLeft {
3609
+ -webkit-animation-name: rotateOutDownLeft;
3610
+ animation-name: rotateOutDownLeft;
3611
+ -webkit-transform-origin: left bottom;
3612
+ transform-origin: left bottom;
3613
+ }
3614
+
3615
+ @-webkit-keyframes rotateOutDownRight {
3616
+ from {
3617
+ opacity: 1;
3618
+ }
3619
+ to {
3620
+ -webkit-transform: rotate3d(0, 0, 1, -45deg);
3621
+ transform: rotate3d(0, 0, 1, -45deg);
3622
+ opacity: 0;
3623
+ }
3624
+ }
3625
+ @keyframes rotateOutDownRight {
3626
+ from {
3627
+ opacity: 1;
3628
+ }
3629
+ to {
3630
+ -webkit-transform: rotate3d(0, 0, 1, -45deg);
3631
+ transform: rotate3d(0, 0, 1, -45deg);
3632
+ opacity: 0;
3633
+ }
3634
+ }
3635
+ .animate__rotateOutDownRight {
3636
+ -webkit-animation-name: rotateOutDownRight;
3637
+ animation-name: rotateOutDownRight;
3638
+ -webkit-transform-origin: right bottom;
3639
+ transform-origin: right bottom;
3640
+ }
3641
+
3642
+ @-webkit-keyframes rotateOutUpLeft {
3643
+ from {
3644
+ opacity: 1;
3645
+ }
3646
+ to {
3647
+ -webkit-transform: rotate3d(0, 0, 1, -45deg);
3648
+ transform: rotate3d(0, 0, 1, -45deg);
3649
+ opacity: 0;
3650
+ }
3651
+ }
3652
+ @keyframes rotateOutUpLeft {
3653
+ from {
3654
+ opacity: 1;
3655
+ }
3656
+ to {
3657
+ -webkit-transform: rotate3d(0, 0, 1, -45deg);
3658
+ transform: rotate3d(0, 0, 1, -45deg);
3659
+ opacity: 0;
3660
+ }
3661
+ }
3662
+ .animate__rotateOutUpLeft {
3663
+ -webkit-animation-name: rotateOutUpLeft;
3664
+ animation-name: rotateOutUpLeft;
3665
+ -webkit-transform-origin: left bottom;
3666
+ transform-origin: left bottom;
3667
+ }
3668
+
3669
+ @-webkit-keyframes rotateOutUpRight {
3670
+ from {
3671
+ opacity: 1;
3672
+ }
3673
+ to {
3674
+ -webkit-transform: rotate3d(0, 0, 1, 90deg);
3675
+ transform: rotate3d(0, 0, 1, 90deg);
3676
+ opacity: 0;
3677
+ }
3678
+ }
3679
+ @keyframes rotateOutUpRight {
3680
+ from {
3681
+ opacity: 1;
3682
+ }
3683
+ to {
3684
+ -webkit-transform: rotate3d(0, 0, 1, 90deg);
3685
+ transform: rotate3d(0, 0, 1, 90deg);
3686
+ opacity: 0;
3687
+ }
3688
+ }
3689
+ .animate__rotateOutUpRight {
3690
+ -webkit-animation-name: rotateOutUpRight;
3691
+ animation-name: rotateOutUpRight;
3692
+ -webkit-transform-origin: right bottom;
3693
+ transform-origin: right bottom;
3694
+ }
3695
+
3696
+ /* Specials */
3697
+ @-webkit-keyframes hinge {
3698
+ 0% {
3699
+ -webkit-animation-timing-function: ease-in-out;
3700
+ animation-timing-function: ease-in-out;
3701
+ }
3702
+ 20%, 60% {
3703
+ -webkit-transform: rotate3d(0, 0, 1, 80deg);
3704
+ transform: rotate3d(0, 0, 1, 80deg);
3705
+ -webkit-animation-timing-function: ease-in-out;
3706
+ animation-timing-function: ease-in-out;
3707
+ }
3708
+ 40%, 80% {
3709
+ -webkit-transform: rotate3d(0, 0, 1, 60deg);
3710
+ transform: rotate3d(0, 0, 1, 60deg);
3711
+ -webkit-animation-timing-function: ease-in-out;
3712
+ animation-timing-function: ease-in-out;
3713
+ opacity: 1;
3714
+ }
3715
+ to {
3716
+ -webkit-transform: translate3d(0, 700px, 0);
3717
+ transform: translate3d(0, 700px, 0);
3718
+ opacity: 0;
3719
+ }
3720
+ }
3721
+ @keyframes hinge {
3722
+ 0% {
3723
+ -webkit-animation-timing-function: ease-in-out;
3724
+ animation-timing-function: ease-in-out;
3725
+ }
3726
+ 20%, 60% {
3727
+ -webkit-transform: rotate3d(0, 0, 1, 80deg);
3728
+ transform: rotate3d(0, 0, 1, 80deg);
3729
+ -webkit-animation-timing-function: ease-in-out;
3730
+ animation-timing-function: ease-in-out;
3731
+ }
3732
+ 40%, 80% {
3733
+ -webkit-transform: rotate3d(0, 0, 1, 60deg);
3734
+ transform: rotate3d(0, 0, 1, 60deg);
3735
+ -webkit-animation-timing-function: ease-in-out;
3736
+ animation-timing-function: ease-in-out;
3737
+ opacity: 1;
3738
+ }
3739
+ to {
3740
+ -webkit-transform: translate3d(0, 700px, 0);
3741
+ transform: translate3d(0, 700px, 0);
3742
+ opacity: 0;
3743
+ }
3744
+ }
3745
+ .animate__hinge {
3746
+ -webkit-animation-duration: 2s;
3747
+ animation-duration: 2s;
3748
+ -webkit-animation-duration: calc(var(--animate-duration) * 2);
3749
+ animation-duration: calc(var(--animate-duration) * 2);
3750
+ -webkit-animation-name: hinge;
3751
+ animation-name: hinge;
3752
+ -webkit-transform-origin: top left;
3753
+ transform-origin: top left;
3754
+ }
3755
+
3756
+ @-webkit-keyframes jackInTheBox {
3757
+ from {
3758
+ opacity: 0;
3759
+ -webkit-transform: scale(0.1) rotate(30deg);
3760
+ transform: scale(0.1) rotate(30deg);
3761
+ -webkit-transform-origin: center bottom;
3762
+ transform-origin: center bottom;
3763
+ }
3764
+ 50% {
3765
+ -webkit-transform: rotate(-10deg);
3766
+ transform: rotate(-10deg);
3767
+ }
3768
+ 70% {
3769
+ -webkit-transform: rotate(3deg);
3770
+ transform: rotate(3deg);
3771
+ }
3772
+ to {
3773
+ opacity: 1;
3774
+ -webkit-transform: scale(1);
3775
+ transform: scale(1);
3776
+ }
3777
+ }
3778
+ @keyframes jackInTheBox {
3779
+ from {
3780
+ opacity: 0;
3781
+ -webkit-transform: scale(0.1) rotate(30deg);
3782
+ transform: scale(0.1) rotate(30deg);
3783
+ -webkit-transform-origin: center bottom;
3784
+ transform-origin: center bottom;
3785
+ }
3786
+ 50% {
3787
+ -webkit-transform: rotate(-10deg);
3788
+ transform: rotate(-10deg);
3789
+ }
3790
+ 70% {
3791
+ -webkit-transform: rotate(3deg);
3792
+ transform: rotate(3deg);
3793
+ }
3794
+ to {
3795
+ opacity: 1;
3796
+ -webkit-transform: scale(1);
3797
+ transform: scale(1);
3798
+ }
3799
+ }
3800
+ .animate__jackInTheBox {
3801
+ -webkit-animation-name: jackInTheBox;
3802
+ animation-name: jackInTheBox;
3803
+ }
3804
+
3805
+ /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
3806
+ @-webkit-keyframes rollIn {
3807
+ from {
3808
+ opacity: 0;
3809
+ -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
3810
+ transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
3811
+ }
3812
+ to {
3813
+ opacity: 1;
3814
+ -webkit-transform: translate3d(0, 0, 0);
3815
+ transform: translate3d(0, 0, 0);
3816
+ }
3817
+ }
3818
+ @keyframes rollIn {
3819
+ from {
3820
+ opacity: 0;
3821
+ -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
3822
+ transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
3823
+ }
3824
+ to {
3825
+ opacity: 1;
3826
+ -webkit-transform: translate3d(0, 0, 0);
3827
+ transform: translate3d(0, 0, 0);
3828
+ }
3829
+ }
3830
+ .animate__rollIn {
3831
+ -webkit-animation-name: rollIn;
3832
+ animation-name: rollIn;
3833
+ }
3834
+
3835
+ /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
3836
+ @-webkit-keyframes rollOut {
3837
+ from {
3838
+ opacity: 1;
3839
+ }
3840
+ to {
3841
+ opacity: 0;
3842
+ -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
3843
+ transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
3844
+ }
3845
+ }
3846
+ @keyframes rollOut {
3847
+ from {
3848
+ opacity: 1;
3849
+ }
3850
+ to {
3851
+ opacity: 0;
3852
+ -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
3853
+ transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
3854
+ }
3855
+ }
3856
+ .animate__rollOut {
3857
+ -webkit-animation-name: rollOut;
3858
+ animation-name: rollOut;
3859
+ }
3860
+
3861
+ /* Zooming entrances */
3862
+ @-webkit-keyframes zoomIn {
3863
+ from {
3864
+ opacity: 0;
3865
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
3866
+ transform: scale3d(0.3, 0.3, 0.3);
3867
+ }
3868
+ 50% {
3869
+ opacity: 1;
3870
+ }
3871
+ }
3872
+ @keyframes zoomIn {
3873
+ from {
3874
+ opacity: 0;
3875
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
3876
+ transform: scale3d(0.3, 0.3, 0.3);
3877
+ }
3878
+ 50% {
3879
+ opacity: 1;
3880
+ }
3881
+ }
3882
+ .animate__zoomIn {
3883
+ -webkit-animation-name: zoomIn;
3884
+ animation-name: zoomIn;
3885
+ }
3886
+
3887
+ @-webkit-keyframes zoomInDown {
3888
+ from {
3889
+ opacity: 0;
3890
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
3891
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
3892
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
3893
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
3894
+ }
3895
+ 60% {
3896
+ opacity: 1;
3897
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
3898
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
3899
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
3900
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
3901
+ }
3902
+ }
3903
+ @keyframes zoomInDown {
3904
+ from {
3905
+ opacity: 0;
3906
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
3907
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
3908
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
3909
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
3910
+ }
3911
+ 60% {
3912
+ opacity: 1;
3913
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
3914
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
3915
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
3916
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
3917
+ }
3918
+ }
3919
+ .animate__zoomInDown {
3920
+ -webkit-animation-name: zoomInDown;
3921
+ animation-name: zoomInDown;
3922
+ }
3923
+
3924
+ @-webkit-keyframes zoomInLeft {
3925
+ from {
3926
+ opacity: 0;
3927
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
3928
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
3929
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
3930
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
3931
+ }
3932
+ 60% {
3933
+ opacity: 1;
3934
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
3935
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
3936
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
3937
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
3938
+ }
3939
+ }
3940
+ @keyframes zoomInLeft {
3941
+ from {
3942
+ opacity: 0;
3943
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
3944
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
3945
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
3946
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
3947
+ }
3948
+ 60% {
3949
+ opacity: 1;
3950
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
3951
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
3952
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
3953
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
3954
+ }
3955
+ }
3956
+ .animate__zoomInLeft {
3957
+ -webkit-animation-name: zoomInLeft;
3958
+ animation-name: zoomInLeft;
3959
+ }
3960
+
3961
+ @-webkit-keyframes zoomInRight {
3962
+ from {
3963
+ opacity: 0;
3964
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
3965
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
3966
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
3967
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
3968
+ }
3969
+ 60% {
3970
+ opacity: 1;
3971
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
3972
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
3973
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
3974
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
3975
+ }
3976
+ }
3977
+ @keyframes zoomInRight {
3978
+ from {
3979
+ opacity: 0;
3980
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
3981
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
3982
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
3983
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
3984
+ }
3985
+ 60% {
3986
+ opacity: 1;
3987
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
3988
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
3989
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
3990
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
3991
+ }
3992
+ }
3993
+ .animate__zoomInRight {
3994
+ -webkit-animation-name: zoomInRight;
3995
+ animation-name: zoomInRight;
3996
+ }
3997
+
3998
+ @-webkit-keyframes zoomInUp {
3999
+ from {
4000
+ opacity: 0;
4001
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
4002
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
4003
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
4004
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
4005
+ }
4006
+ 60% {
4007
+ opacity: 1;
4008
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
4009
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
4010
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
4011
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
4012
+ }
4013
+ }
4014
+ @keyframes zoomInUp {
4015
+ from {
4016
+ opacity: 0;
4017
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
4018
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
4019
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
4020
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
4021
+ }
4022
+ 60% {
4023
+ opacity: 1;
4024
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
4025
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
4026
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
4027
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
4028
+ }
4029
+ }
4030
+ .animate__zoomInUp {
4031
+ -webkit-animation-name: zoomInUp;
4032
+ animation-name: zoomInUp;
4033
+ }
4034
+
4035
+ /* Zooming exits */
4036
+ @-webkit-keyframes zoomOut {
4037
+ from {
4038
+ opacity: 1;
4039
+ }
4040
+ 50% {
4041
+ opacity: 0;
4042
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
4043
+ transform: scale3d(0.3, 0.3, 0.3);
4044
+ }
4045
+ to {
4046
+ opacity: 0;
4047
+ }
4048
+ }
4049
+ @keyframes zoomOut {
4050
+ from {
4051
+ opacity: 1;
4052
+ }
4053
+ 50% {
4054
+ opacity: 0;
4055
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
4056
+ transform: scale3d(0.3, 0.3, 0.3);
4057
+ }
4058
+ to {
4059
+ opacity: 0;
4060
+ }
4061
+ }
4062
+ .animate__zoomOut {
4063
+ -webkit-animation-name: zoomOut;
4064
+ animation-name: zoomOut;
4065
+ }
4066
+
4067
+ @-webkit-keyframes zoomOutDown {
4068
+ 40% {
4069
+ opacity: 1;
4070
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
4071
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
4072
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
4073
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
4074
+ }
4075
+ to {
4076
+ opacity: 0;
4077
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
4078
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
4079
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
4080
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
4081
+ }
4082
+ }
4083
+ @keyframes zoomOutDown {
4084
+ 40% {
4085
+ opacity: 1;
4086
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
4087
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
4088
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
4089
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
4090
+ }
4091
+ to {
4092
+ opacity: 0;
4093
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
4094
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
4095
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
4096
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
4097
+ }
4098
+ }
4099
+ .animate__zoomOutDown {
4100
+ -webkit-animation-name: zoomOutDown;
4101
+ animation-name: zoomOutDown;
4102
+ -webkit-transform-origin: center bottom;
4103
+ transform-origin: center bottom;
4104
+ }
4105
+
4106
+ @-webkit-keyframes zoomOutLeft {
4107
+ 40% {
4108
+ opacity: 1;
4109
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
4110
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
4111
+ }
4112
+ to {
4113
+ opacity: 0;
4114
+ -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
4115
+ transform: scale(0.1) translate3d(-2000px, 0, 0);
4116
+ }
4117
+ }
4118
+ @keyframes zoomOutLeft {
4119
+ 40% {
4120
+ opacity: 1;
4121
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
4122
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
4123
+ }
4124
+ to {
4125
+ opacity: 0;
4126
+ -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
4127
+ transform: scale(0.1) translate3d(-2000px, 0, 0);
4128
+ }
4129
+ }
4130
+ .animate__zoomOutLeft {
4131
+ -webkit-animation-name: zoomOutLeft;
4132
+ animation-name: zoomOutLeft;
4133
+ -webkit-transform-origin: left center;
4134
+ transform-origin: left center;
4135
+ }
4136
+
4137
+ @-webkit-keyframes zoomOutRight {
4138
+ 40% {
4139
+ opacity: 1;
4140
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
4141
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
4142
+ }
4143
+ to {
4144
+ opacity: 0;
4145
+ -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
4146
+ transform: scale(0.1) translate3d(2000px, 0, 0);
4147
+ }
4148
+ }
4149
+ @keyframes zoomOutRight {
4150
+ 40% {
4151
+ opacity: 1;
4152
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
4153
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
4154
+ }
4155
+ to {
4156
+ opacity: 0;
4157
+ -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
4158
+ transform: scale(0.1) translate3d(2000px, 0, 0);
4159
+ }
4160
+ }
4161
+ .animate__zoomOutRight {
4162
+ -webkit-animation-name: zoomOutRight;
4163
+ animation-name: zoomOutRight;
4164
+ -webkit-transform-origin: right center;
4165
+ transform-origin: right center;
4166
+ }
4167
+
4168
+ @-webkit-keyframes zoomOutUp {
4169
+ 40% {
4170
+ opacity: 1;
4171
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
4172
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
4173
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
4174
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
4175
+ }
4176
+ to {
4177
+ opacity: 0;
4178
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
4179
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
4180
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
4181
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
4182
+ }
4183
+ }
4184
+ @keyframes zoomOutUp {
4185
+ 40% {
4186
+ opacity: 1;
4187
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
4188
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
4189
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
4190
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
4191
+ }
4192
+ to {
4193
+ opacity: 0;
4194
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
4195
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
4196
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
4197
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
4198
+ }
4199
+ }
4200
+ .animate__zoomOutUp {
4201
+ -webkit-animation-name: zoomOutUp;
4202
+ animation-name: zoomOutUp;
4203
+ -webkit-transform-origin: center bottom;
4204
+ transform-origin: center bottom;
4205
+ }
4206
+
4207
+ /* Sliding entrances */
4208
+ @-webkit-keyframes slideInDown {
4209
+ from {
4210
+ -webkit-transform: translate3d(0, -100%, 0);
4211
+ transform: translate3d(0, -100%, 0);
4212
+ visibility: visible;
4213
+ }
4214
+ to {
4215
+ -webkit-transform: translate3d(0, 0, 0);
4216
+ transform: translate3d(0, 0, 0);
4217
+ }
4218
+ }
4219
+ @keyframes slideInDown {
4220
+ from {
4221
+ -webkit-transform: translate3d(0, -100%, 0);
4222
+ transform: translate3d(0, -100%, 0);
4223
+ visibility: visible;
4224
+ }
4225
+ to {
4226
+ -webkit-transform: translate3d(0, 0, 0);
4227
+ transform: translate3d(0, 0, 0);
4228
+ }
4229
+ }
4230
+ .animate__slideInDown {
4231
+ -webkit-animation-name: slideInDown;
4232
+ animation-name: slideInDown;
4233
+ }
4234
+
4235
+ @-webkit-keyframes slideInLeft {
4236
+ from {
4237
+ -webkit-transform: translate3d(-100%, 0, 0);
4238
+ transform: translate3d(-100%, 0, 0);
4239
+ visibility: visible;
4240
+ }
4241
+ to {
4242
+ -webkit-transform: translate3d(0, 0, 0);
4243
+ transform: translate3d(0, 0, 0);
4244
+ }
4245
+ }
4246
+ @keyframes slideInLeft {
4247
+ from {
4248
+ -webkit-transform: translate3d(-100%, 0, 0);
4249
+ transform: translate3d(-100%, 0, 0);
4250
+ visibility: visible;
4251
+ }
4252
+ to {
4253
+ -webkit-transform: translate3d(0, 0, 0);
4254
+ transform: translate3d(0, 0, 0);
4255
+ }
4256
+ }
4257
+ .animate__slideInLeft {
4258
+ -webkit-animation-name: slideInLeft;
4259
+ animation-name: slideInLeft;
4260
+ }
4261
+
4262
+ @-webkit-keyframes slideInRight {
4263
+ from {
4264
+ -webkit-transform: translate3d(100%, 0, 0);
4265
+ transform: translate3d(100%, 0, 0);
4266
+ visibility: visible;
4267
+ }
4268
+ to {
4269
+ -webkit-transform: translate3d(0, 0, 0);
4270
+ transform: translate3d(0, 0, 0);
4271
+ }
4272
+ }
4273
+ @keyframes slideInRight {
4274
+ from {
4275
+ -webkit-transform: translate3d(100%, 0, 0);
4276
+ transform: translate3d(100%, 0, 0);
4277
+ visibility: visible;
4278
+ }
4279
+ to {
4280
+ -webkit-transform: translate3d(0, 0, 0);
4281
+ transform: translate3d(0, 0, 0);
4282
+ }
4283
+ }
4284
+ .animate__slideInRight {
4285
+ -webkit-animation-name: slideInRight;
4286
+ animation-name: slideInRight;
4287
+ }
4288
+
4289
+ @-webkit-keyframes slideInUp {
4290
+ from {
4291
+ -webkit-transform: translate3d(0, 100%, 0);
4292
+ transform: translate3d(0, 100%, 0);
4293
+ visibility: visible;
4294
+ }
4295
+ to {
4296
+ -webkit-transform: translate3d(0, 0, 0);
4297
+ transform: translate3d(0, 0, 0);
4298
+ }
4299
+ }
4300
+ @keyframes slideInUp {
4301
+ from {
4302
+ -webkit-transform: translate3d(0, 100%, 0);
4303
+ transform: translate3d(0, 100%, 0);
4304
+ visibility: visible;
4305
+ }
4306
+ to {
4307
+ -webkit-transform: translate3d(0, 0, 0);
4308
+ transform: translate3d(0, 0, 0);
4309
+ }
4310
+ }
4311
+ .animate__slideInUp {
4312
+ -webkit-animation-name: slideInUp;
4313
+ animation-name: slideInUp;
4314
+ }
4315
+
4316
+ /* Sliding exits */
4317
+ @-webkit-keyframes slideOutDown {
4318
+ from {
4319
+ -webkit-transform: translate3d(0, 0, 0);
4320
+ transform: translate3d(0, 0, 0);
4321
+ }
4322
+ to {
4323
+ visibility: hidden;
4324
+ -webkit-transform: translate3d(0, 100%, 0);
4325
+ transform: translate3d(0, 100%, 0);
4326
+ }
4327
+ }
4328
+ @keyframes slideOutDown {
4329
+ from {
4330
+ -webkit-transform: translate3d(0, 0, 0);
4331
+ transform: translate3d(0, 0, 0);
4332
+ }
4333
+ to {
4334
+ visibility: hidden;
4335
+ -webkit-transform: translate3d(0, 100%, 0);
4336
+ transform: translate3d(0, 100%, 0);
4337
+ }
4338
+ }
4339
+ .animate__slideOutDown {
4340
+ -webkit-animation-name: slideOutDown;
4341
+ animation-name: slideOutDown;
4342
+ }
4343
+
4344
+ @-webkit-keyframes slideOutLeft {
4345
+ from {
4346
+ -webkit-transform: translate3d(0, 0, 0);
4347
+ transform: translate3d(0, 0, 0);
4348
+ }
4349
+ to {
4350
+ visibility: hidden;
4351
+ -webkit-transform: translate3d(-100%, 0, 0);
4352
+ transform: translate3d(-100%, 0, 0);
4353
+ }
4354
+ }
4355
+ @keyframes slideOutLeft {
4356
+ from {
4357
+ -webkit-transform: translate3d(0, 0, 0);
4358
+ transform: translate3d(0, 0, 0);
4359
+ }
4360
+ to {
4361
+ visibility: hidden;
4362
+ -webkit-transform: translate3d(-100%, 0, 0);
4363
+ transform: translate3d(-100%, 0, 0);
4364
+ }
4365
+ }
4366
+ .animate__slideOutLeft {
4367
+ -webkit-animation-name: slideOutLeft;
4368
+ animation-name: slideOutLeft;
4369
+ }
4370
+
4371
+ @-webkit-keyframes slideOutRight {
4372
+ from {
4373
+ -webkit-transform: translate3d(0, 0, 0);
4374
+ transform: translate3d(0, 0, 0);
4375
+ }
4376
+ to {
4377
+ visibility: hidden;
4378
+ -webkit-transform: translate3d(100%, 0, 0);
4379
+ transform: translate3d(100%, 0, 0);
4380
+ }
4381
+ }
4382
+ @keyframes slideOutRight {
4383
+ from {
4384
+ -webkit-transform: translate3d(0, 0, 0);
4385
+ transform: translate3d(0, 0, 0);
4386
+ }
4387
+ to {
4388
+ visibility: hidden;
4389
+ -webkit-transform: translate3d(100%, 0, 0);
4390
+ transform: translate3d(100%, 0, 0);
4391
+ }
4392
+ }
4393
+ .animate__slideOutRight {
4394
+ -webkit-animation-name: slideOutRight;
4395
+ animation-name: slideOutRight;
4396
+ }
4397
+
4398
+ @-webkit-keyframes slideOutUp {
4399
+ from {
4400
+ -webkit-transform: translate3d(0, 0, 0);
4401
+ transform: translate3d(0, 0, 0);
4402
+ }
4403
+ to {
4404
+ visibility: hidden;
4405
+ -webkit-transform: translate3d(0, -100%, 0);
4406
+ transform: translate3d(0, -100%, 0);
4407
+ }
4408
+ }
4409
+ @keyframes slideOutUp {
4410
+ from {
4411
+ -webkit-transform: translate3d(0, 0, 0);
4412
+ transform: translate3d(0, 0, 0);
4413
+ }
4414
+ to {
4415
+ visibility: hidden;
4416
+ -webkit-transform: translate3d(0, -100%, 0);
4417
+ transform: translate3d(0, -100%, 0);
4418
+ }
4419
+ }
4420
+ .animate__slideOutUp {
4421
+ -webkit-animation-name: slideOutUp;
4422
+ animation-name: slideOutUp;
4423
+ }
4424
+
4425
+ .vg-modal {
4426
+ --vg-modal-z-index: 1040 ;
4427
+ --vg-modal-margin: 0.5rem ;
4428
+ --vg-modal-padding: 1rem ;
4429
+ --vg-modal-width: 500px ;
4430
+ --vg-modal-color: #000000 ;
4431
+ --vg-modal-background-color: #fff ;
4432
+ --vg-modal-border-width: 1px ;
4433
+ --vg-modal-border-color: transparent ;
4434
+ --vg-modal-border-style: solid ;
4435
+ --vg-modal-border-radius: 0.375rem ;
4436
+ --vg-modal-box-shadow: 0 8px 14px 5px rgba(0, 0, 0, 0.2) ;
4437
+ --vg-modal-transition: all 0.5s ease-in-out ;
4438
+ --vg-modal-fade-transform: translate(0, -50px) ;
4439
+ --vg-modal-show-transform: none ;
4440
+ --vg-modal-scale-transform: scale(1.02) ;
4441
+ position: fixed;
4442
+ left: 0;
4443
+ top: 0;
4444
+ width: 100%;
4445
+ height: 100%;
4446
+ z-index: var(--vg-modal-z-index);
4447
+ display: none;
4448
+ overflow-x: hidden;
4449
+ overflow-y: auto;
4450
+ outline: 0;
4451
+ }
4452
+ .vg-modal-dialog {
4453
+ position: relative;
4454
+ width: auto;
4455
+ margin: var(--vg-modal-margin);
4456
+ pointer-events: none;
4457
+ }
4458
+ .vg-modal.fade .vg-modal-dialog {
4459
+ transform: var(--vg-modal-fade-transform);
4460
+ transition: var(--vg-modal-transition);
4461
+ }
4462
+ .vg-modal.show .vg-modal-dialog {
4463
+ transform: var(--vg-modal-show-transform);
4464
+ }
4465
+ .vg-modal.vg-modal-static .vg-modal-dialog {
4466
+ transform: var(--vg-modal-scale-transform);
4467
+ }
4468
+ .vg-modal-dialog-scrollable {
4469
+ height: calc(100% - var(--vg-modal-margin) * 2);
4470
+ }
4471
+ .vg-modal-dialog-scrollable .vg-modal-content {
4472
+ max-height: 100%;
4473
+ overflow: hidden;
4474
+ }
4475
+ .vg-modal-dialog-scrollable .vg-modal-body {
4476
+ overflow-y: auto;
4477
+ }
4478
+ .vg-modal-dialog-centered {
4479
+ display: flex;
4480
+ align-items: center;
4481
+ min-height: calc(100% - var(--vg-modal-margin) * 2);
4482
+ }
4483
+ .vg-modal-content {
4484
+ position: relative;
4485
+ display: flex;
4486
+ flex-direction: column;
4487
+ width: 100%;
4488
+ color: var(--vg-modal-color);
4489
+ pointer-events: auto;
4490
+ background-color: var(--vg-modal-background-color);
4491
+ background-clip: padding-box;
4492
+ border: var(--vg-modal-border-width) var(--vg-modal-border-style) var(--vg-modal-border-color);
4493
+ border-radius: var(--vg-modal-border-radius);
4494
+ box-shadow: var(--vg-modal-box-shadow);
4495
+ outline: 0;
4496
+ padding: var(--vg-modal-padding);
4497
+ }
4498
+
4499
+ @media screen and (min-width: 576px) {
4500
+ .vg-modal {
4501
+ --vg-modal-margin: 1.75rem;
4502
+ --vg-modal-box-shadow: 0 8px 14px 5px rgba(0, 0, 0, 0.2);
4503
+ }
4504
+ .vg-modal-dialog {
4505
+ max-width: var(--vg-modal-width);
4506
+ margin-right: auto;
4507
+ margin-left: auto;
4508
+ }
4509
+ .vg-modal-sm {
4510
+ --vg-modal-width: 300px;
4511
+ }
4512
+ }
4513
+ @media screen and (min-width: 992px) {
4514
+ .vg-modal-lg, .vg-modal-xl {
4515
+ --vg-modal-width: 800px;
4516
+ }
4517
+ }
4518
+ @media screen and (min-width: 1399px) {
4519
+ .vg-modal-xl {
4520
+ --vg-modal-width: 1140px;
4521
+ }
4522
+ }
4523
+ /*!************************************************************************************************************************************************************************************!*\
4524
+ !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./app/modules/vgformsender/scss/vgformsender.scss ***!
4525
+ \************************************************************************************************************************************************************************************/
4526
+ @charset "UTF-8";
4527
+ /**
4528
+ *--------------------------------------------------------------------------
4529
+ * Модуль: VGFormSender
4530
+ * Автор: Vegas DEV
4531
+ * Лицензия: смотри LICENSE
4532
+ *--------------------------------------------------------------------------
4533
+ **/
4534
+ .vg-form-sender-modal .vg-modal-content {
4535
+ padding: 0;
4536
+ }
4537
+
4538
+ /*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmdhcHAuY3NzIiwibWFwcGluZ3MiOiI7OztBQUlBO0FDR0E7QUFBQTtBQUFBO0FBQUE7QUREQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFBQTtBQUVBO0FBQ0E7QUFBQTs7QUFJQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFEQTtBQUdBO0FBQ0E7QUFDQTtBQURBOztBQU1BO0FBQ0E7QUFIQTs7QUFPQTtBQUNBO0FBQ0E7QUFDQTtBQUpBOztBQU9BOztBQUFBO0FBR0E7QUFDQTtBQUNBO0FBQ0E7QUFKQTs7QUFNQTtBQy9DQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FEaURBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBSUE7O0FBREE7O0FBQUE7QUFHQTtBQ2hFQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBRHFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQXNCQTtBQXBCQTtBQUNBO0FBQ0E7QUFDQTtBQXNCQTtBQW5CQTtBQUNBO0FBQ0E7QUFDQTtBQXFCQTtBQWxCQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFvQkE7QUFsQkE7QUFDQTtBQUNBO0FBb0JBO0FBbEJBO0FBQ0E7QUFDQTtBQW9CQTtBQWhCQTtBQUNBO0FBa0JBO0FBZkE7QUFDQTtBQWlCQTtBQVhBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQWFBO0FBWEE7QUFDQTtBQUNBO0FBYUE7O0FBUkE7O0FBQUE7QUFJQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQVVBO0FBUkE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQVVBOztBQUxBO0FBQ0E7QUFDQTtBQUNBO0FBUUE7QUFOQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBUUE7QUFOQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBUUE7O0FBSEE7QUFDQTtBQUNBO0FBQ0E7QUFNQTtBQUpBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQU1BO0FBSkE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBTUE7O0FBRkE7O0FBQUE7QUFHQTtBQUNBO0FBQ0E7QUFLQTtBQUhBO0FBQ0E7QUFLQTtBQUNBO0FBREE7QUFDQTtBQUNBO0FBR0E7QUFDQTtBQUFBO0FBQ0E7QUFDQTtBQUVBO0FBQUE7QUFDQTtBQUVBO0FBQUE7QUFDQTtBQUVBO0FBQUE7QUFDQTtBQUVBO0FBQ0E7QUFFQTtBQUNBO0FBQ0E7QUFBQTtBQUNBO0FBR0E7QUFDQTtBQUNBO0FBQ0E7QUFEQTtBQUdBO0FBQ0E7QUFDQTtBQURBO0FBR0E7QUFDQTtBQUNBO0FBREE7QUFHQTtBQUNBO0FBQ0E7QUFEQTtBQUNBO0FBS0E7QUFDQTtBQUNBO0FBSEE7QUFDQTtBQUtBO0FBQ0E7QUFDQTtBQUhBO0FBQ0E7QUFLQTtBQUNBO0FBQ0E7QUFDQTtBQUhBO0FBQ0E7Ozs7QUdoUkE7QUFBQTs7Ozs7O0FBQUE7QUFhQTtBRlRBO0FBQUE7QUFBQTtBQUFBO0FBR0E7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FFUUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQVFBO0FBTkE7QUFDQTtBQUNBO0FBQ0E7QUFRQTtBQUxBO0FBQ0E7QUFPQTtBQUxBO0FBQ0E7QUFPQTtBQUhBO0FBQ0E7QUFLQTtBQUhBO0FBQ0E7QUFLQTtBQURBO0FBQ0E7QUFDQTtBQUNBO0FBR0E7QUFBQTtBQUNBO0FBRUE7QUFBQTtBQUNBO0FBRUE7QUFFQTtBQUNBO0FBQUE7QUFFQTtBQUNBO0FBQUE7QUFJQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBRkE7QUFLQTtBQUNBO0FBQ0E7QUFDQTtBQUhBO0FBTUE7QUFDQTtBQUNBO0FBQ0E7QUFKQTs7OztBQ25GQTtBQUFBOzs7Ozs7QUFBQTtBQWNBO0FIUEE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBR3lIQTtBQUdBO0FBL0VBO0FBOUJBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFnQ0E7QUE5QkE7QUFDQTtBQUNBO0FBZ0JBO0FBaUJBO0FBL0JBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQWlDQTtBQzVFQTtBQUNBO0FBQ0E7QUQ4RUE7QUMzRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FENkVBO0FBMUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBNENBO0FBMUNBO0FBQ0E7QUE0Q0E7QUF6Q0E7QUFDQTtBQUNBO0FBQ0E7QUEyQ0E7QUF2Q0E7QUFDQTtBQXlDQTtBQXBDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQXNDQTtBQXBDQTtBQUNBO0FBQ0E7QUFDQTtBQXNDQTtBQWpDQTtBQUNBO0FBbUNBO0FBN0JBO0FBQ0E7QUErQkE7QUE3QkE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQStCQTtBQTdCQTtBQUNBO0FBK0JBO0FFdkpBO0FBQ0E7QUZ5SkE7QUVySkE7QUFDQTtBRnVKQTtBRXBKQTtBQUNBO0FGc0pBO0FFbEpBO0FBQ0E7QUZvSkE7QUVqSkE7QUFDQTtBRm1KQTtBRTFJQTtBQUNBO0FGNElBO0FFeklBO0FBQ0E7QUYySUE7QUV6SUE7QUFDQTtBRjJJQTtBRXhJQTtBQUNBO0FGMElBO0FFdklBO0FBQ0E7QUZ5SUE7QUVwSUE7QUFDQTtBRnNJQTtBRWpJQTtBQUNBO0FGbUlBO0FFaklBO0FBQ0E7QUFDQTtBRm1JQTtBRWpJQTtBQUNBO0FGbUlBO0FHbk1BO0FBQ0E7QUFDQTtBSHFNQTtBR25NQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBSHFNQTtBR25NQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUhxTUE7QUduTUE7QUFDQTtBSHFNQTtBR25NQTtBQUNBO0FIcU1BO0FHbk1BO0FBQ0E7QUhxTUE7QUdoTUE7QUFDQTtBQUNBO0FBQ0E7QUhrTUE7QUc1TEE7QUFDQTtBSDhMQTtBRzNMQTtBQUNBO0FINkxBO0FHMUxBO0FBQ0E7QUFDQTtBSDRMQTtBSXhLQTtBSjhEQTtBQUNBO0FBNkdBO0FBMUdBO0FBQ0E7QUE0R0E7QUFDQTtBSWhMQTtBSjhEQTtBQUNBO0FBcUhBO0FBbEhBO0FBQ0E7QUFvSEE7QUFDQTtBSXhMQTtBSjhEQTtBQUNBO0FBNkhBO0FBMUhBO0FBQ0E7QUE0SEE7QUFDQTtBSWhNQTtBSjhEQTtBQUNBO0FBcUlBO0FBbElBO0FBQ0E7QUFvSUE7QUFDQTtBSXhNQTtBSjhEQTtBQUNBO0FBNklBO0FBMUlBO0FBQ0E7QUE0SUE7QUFDQTtBSWhOQTtBSjhEQTtBQUNBO0FBcUpBO0FBbEpBO0FBQ0E7QUFvSkE7QUFDQTtBSXhOQTtBSjhEQTtBQUNBO0FBNkpBO0FBMUpBO0FBQ0E7QUE0SkE7QUFDQTs7OztBSzVTQTtBQUFBOzs7Ozs7QUFBQTtBQWFBO0FBQ0E7QUFKQTtBQU1BO0FSVEE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QVFXQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFFQTtBQUFBO0FBQ0E7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFBQTs7OztBQ3JDQTtBQUFBOzs7Ozs7QUFBQTtBQ0VBOzs7Ozs7QUFBQTtBQU9BO0FBQ0E7QUFDQTtBQUNBO0FET0E7O0FDTEE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QURRQTs7QUNOQTtBQUNBO0FBQ0E7QURTQTs7QUNQQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEVUE7O0FDUkE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRFdBOztBQ1RBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QURZQTs7QUNWQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEYUE7O0FDWEE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRGNBOztBQ1pBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QURlQTs7QUNiQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEZ0JBOztBQ2RBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QURpQkE7O0FDZkE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRGtCQTs7QUNoQkE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRG1CQTs7QUNqQkE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRG9CQTs7QUNsQkE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRHFCQTs7QUNuQkE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRHNCQTtBQ25CQTtBQUNBO0FEcUJBO0FBQ0E7QUNuQkE7QUFDQTtBQUNBO0FBSUE7QUFDQTtBQUNBO0FBQ0E7QURrQkE7QUNmQTtBQUVBO0FBQ0E7QUFDQTtBQUNBO0FEZ0JBO0FDYkE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRGVBO0FDWkE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRGNBO0FDWEE7QUFDQTtBQUNBO0FEYUE7QUFDQTtBQ1hBO0FBQ0E7QUFJQTtBQUNBO0FBQ0E7QUFDQTtBRFVBO0FDUEE7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBRFFBO0FDTEE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRE9BO0FDSkE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRE1BO0FDSEE7QUFDQTtBQUNBO0FES0E7QUFDQTtBQ0hBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QURLQTs7QUNIQTtBQUNBO0FBR0E7QURJQTtBQ0RBO0FBRUE7QURFQTtBQUNBO0FDQUE7QUFDQTtBQUdBO0FEQUE7QUNHQTtBQUVBO0FERkE7QUFDQTtBQ0lBO0FBQ0E7QUFDQTtBREZBOztBQ0lBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUREQTtBQ0lBO0FBQ0E7QUFDQTtBREZBO0FDS0E7QUFDQTtBQUNBO0FESEE7QUFDQTtBQ0tBO0FBQ0E7QUFDQTtBQUNBO0FESEE7QUNNQTtBQUNBO0FBQ0E7QURKQTtBQ09BO0FBQ0E7QUFDQTtBRExBO0FBQ0E7QUNPQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FETEE7O0FDT0E7QUFDQTtBQUNBO0FBQ0E7QURKQTtBQ09BO0FBQ0E7QUFDQTtBRExBO0FDUUE7QUFDQTtBQUNBO0FETkE7QUNTQTtBQUNBO0FBQ0E7QURQQTtBQ1VBO0FBQ0E7QUFDQTtBRFJBO0FDV0E7QUFDQTtBQUNBO0FEVEE7QUNZQTtBQUNBO0FBQ0E7QURWQTtBQUNBO0FDWUE7QUFDQTtBQUNBO0FBQ0E7QURWQTtBQ2FBO0FBQ0E7QUFDQTtBRFhBO0FDY0E7QUFDQTtBQUNBO0FEWkE7QUNlQTtBQUNBO0FBQ0E7QURiQTtBQ2dCQTtBQUNBO0FBQ0E7QURkQTtBQ2lCQTtBQUNBO0FBQ0E7QURmQTtBQ2tCQTtBQUNBO0FBQ0E7QURoQkE7QUFDQTtBQ2tCQTtBQUNBO0FBQ0E7QURoQkE7O0FDa0JBO0FBQ0E7QUFFQTtBQUNBO0FEaEJBO0FDbUJBO0FBS0E7QUFDQTtBRHJCQTtBQ3dCQTtBQUlBO0FBQ0E7QUR6QkE7QUFDQTtBQzJCQTtBQUNBO0FBRUE7QUFDQTtBRDFCQTtBQzZCQTtBQUtBO0FBQ0E7QUQvQkE7QUNrQ0E7QUFJQTtBQUNBO0FEbkNBO0FBQ0E7QUNxQ0E7QUFDQTtBQUNBO0FEbkNBOztBQ3FDQTtBQUNBO0FBRUE7QUFDQTtBRG5DQTtBQ3NDQTtBQUtBO0FBQ0E7QUR4Q0E7QUMyQ0E7QUFJQTtBQUNBO0FENUNBO0FBQ0E7QUM4Q0E7QUFDQTtBQUVBO0FBQ0E7QUQ3Q0E7QUNnREE7QUFLQTtBQUNBO0FEbERBO0FDcURBO0FBSUE7QUFDQTtBRHREQTtBQUNBO0FDd0RBO0FBQ0E7QUFDQTtBRHREQTs7QUN3REE7QUFDQTtBQUNBO0FBQ0E7QURyREE7QUN3REE7QUFDQTtBQUNBO0FEdERBO0FDeURBO0FBQ0E7QUFDQTtBRHZEQTtBQzBEQTtBQUNBO0FBQ0E7QUR4REE7QUMyREE7QUFDQTtBQUNBO0FEekRBO0FDNERBO0FBQ0E7QUFDQTtBRDFEQTtBQUNBO0FDNERBO0FBQ0E7QUFDQTtBQUNBO0FEMURBO0FDNkRBO0FBQ0E7QUFDQTtBRDNEQTtBQzhEQTtBQUNBO0FBQ0E7QUQ1REE7QUMrREE7QUFDQTtBQUNBO0FEN0RBO0FDZ0VBO0FBQ0E7QUFDQTtBRDlEQTtBQ2lFQTtBQUNBO0FBQ0E7QUQvREE7QUFDQTtBQ2lFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEL0RBOztBQ2lFQTtBQUNBO0FBQ0E7QUFDQTtBRDlEQTtBQ2lFQTtBQUNBO0FBQ0E7QUQvREE7QUNrRUE7QUFDQTtBQUNBO0FEaEVBO0FDbUVBO0FBQ0E7QUFDQTtBRGpFQTtBQ29FQTtBQUNBO0FBQ0E7QURsRUE7QUFDQTtBQ29FQTtBQUNBO0FBQ0E7QUFDQTtBRGxFQTtBQ3FFQTtBQUNBO0FBQ0E7QURuRUE7QUNzRUE7QUFDQTtBQUNBO0FEcEVBO0FDdUVBO0FBQ0E7QUFDQTtBRHJFQTtBQ3dFQTtBQUNBO0FBQ0E7QUR0RUE7QUFDQTtBQ3dFQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEdEVBOztBQ3dFQTtBQUNBO0FBQ0E7QUFDQTtBRHJFQTtBQ3dFQTtBQUVBO0FBQ0E7QUR2RUE7QUMwRUE7QUFJQTtBQUNBO0FEM0VBO0FDOEVBO0FBR0E7QUFDQTtBRDlFQTtBQ2lGQTtBQUNBO0FBQ0E7QUQvRUE7QUFDQTtBQ2lGQTtBQUNBO0FBQ0E7QUFDQTtBRC9FQTtBQ2tGQTtBQUVBO0FBQ0E7QURqRkE7QUNvRkE7QUFJQTtBQUNBO0FEckZBO0FDd0ZBO0FBR0E7QUFDQTtBRHhGQTtBQzJGQTtBQUNBO0FBQ0E7QUR6RkE7QUFDQTtBQzJGQTtBQUNBO0FBQ0E7QUR6RkE7O0FDMkZBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUR4RkE7QUMyRkE7QUFDQTtBQUNBO0FEekZBO0FDNEZBO0FBQ0E7QUFDQTtBRDFGQTtBQzZGQTtBQUNBO0FBQ0E7QUQzRkE7QUM4RkE7QUFDQTtBQUNBO0FENUZBO0FDK0ZBO0FBQ0E7QUFDQTtBRDdGQTtBQ2dHQTtBQUNBO0FBQ0E7QUQ5RkE7QUFDQTtBQ2dHQTtBQUNBO0FBQ0E7QUFDQTtBRDlGQTtBQ2lHQTtBQUNBO0FBQ0E7QUQvRkE7QUNrR0E7QUFDQTtBQUNBO0FEaEdBO0FDbUdBO0FBQ0E7QUFDQTtBRGpHQTtBQ29HQTtBQUNBO0FBQ0E7QURsR0E7QUNxR0E7QUFDQTtBQUNBO0FEbkdBO0FDc0dBO0FBQ0E7QUFDQTtBRHBHQTtBQUNBO0FDc0dBO0FBQ0E7QUFDQTtBRHBHQTs7QUNzR0E7QUFDQTtBQUdBO0FBQ0E7QURyR0E7QUN3R0E7QUFDQTtBQUNBO0FEdEdBO0FDeUdBO0FBQ0E7QUFDQTtBRHZHQTtBQzBHQTtBQUNBO0FBQ0E7QUR4R0E7QUMyR0E7QUFDQTtBQUNBO0FEekdBO0FDNEdBO0FBQ0E7QUFDQTtBRDFHQTtBQzZHQTtBQUNBO0FBQ0E7QUQzR0E7QUM4R0E7QUFDQTtBQUNBO0FENUdBO0FBQ0E7QUM4R0E7QUFDQTtBQUdBO0FBQ0E7QUQ5R0E7QUNpSEE7QUFDQTtBQUNBO0FEL0dBO0FDa0hBO0FBQ0E7QUFDQTtBRGhIQTtBQ21IQTtBQUNBO0FBQ0E7QURqSEE7QUNvSEE7QUFDQTtBQUNBO0FEbEhBO0FDcUhBO0FBQ0E7QUFDQTtBRG5IQTtBQ3NIQTtBQUNBO0FBQ0E7QURwSEE7QUN1SEE7QUFDQTtBQUNBO0FEckhBO0FBQ0E7QUN1SEE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRHJIQTs7QUN1SEE7QUFDQTtBQUNBO0FBQ0E7QURwSEE7QUN1SEE7QUFDQTtBQUNBO0FEckhBO0FDd0hBO0FBQ0E7QUFDQTtBRHRIQTtBQ3lIQTtBQUNBO0FBQ0E7QUR2SEE7QUMwSEE7QUFDQTtBQUNBO0FEeEhBO0FBQ0E7QUMwSEE7QUFDQTtBQUNBO0FBQ0E7QUR4SEE7QUMySEE7QUFDQTtBQUNBO0FEekhBO0FDNEhBO0FBQ0E7QUFDQTtBRDFIQTtBQzZIQTtBQUNBO0FBQ0E7QUQzSEE7QUM4SEE7QUFDQTtBQUNBO0FENUhBO0FBQ0E7QUM4SEE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FENUhBOztBQzhIQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUQzSEE7QUM4SEE7QUFDQTtBQUNBO0FBQ0E7QUQ1SEE7QUMrSEE7QUFDQTtBQUNBO0FBQ0E7QUQ3SEE7QUFDQTtBQytIQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEN0hBO0FDZ0lBO0FBQ0E7QUFDQTtBQUNBO0FEOUhBO0FDaUlBO0FBQ0E7QUFDQTtBQUNBO0FEL0hBO0FBQ0E7QUNpSUE7QUFDQTtBQUNBO0FEL0hBOztBQ2lJQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEOUhBO0FDaUlBO0FBQ0E7QUFDQTtBQUNBO0FEL0hBO0FDa0lBO0FBQ0E7QUFDQTtBQUNBO0FEaElBO0FBQ0E7QUNrSUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRGhJQTtBQ21JQTtBQUNBO0FBQ0E7QUFDQTtBRGpJQTtBQ29JQTtBQUNBO0FBQ0E7QUFDQTtBRGxJQTtBQUNBO0FDb0lBO0FBQ0E7QUFDQTtBRGxJQTs7QUNvSUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRGpJQTtBQ29JQTtBQUNBO0FBQ0E7QUFDQTtBRGxJQTtBQ3FJQTtBQUNBO0FBQ0E7QUFDQTtBRG5JQTtBQUNBO0FDcUlBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QURuSUE7QUNzSUE7QUFDQTtBQUNBO0FBQ0E7QURwSUE7QUN1SUE7QUFDQTtBQUNBO0FBQ0E7QURySUE7QUFDQTtBQ3VJQTtBQUNBO0FBQ0E7QURySUE7O0FDdUlBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QURwSUE7QUN1SUE7QUFDQTtBQUNBO0FBQ0E7QURySUE7QUN3SUE7QUFDQTtBQUNBO0FBQ0E7QUR0SUE7QUFDQTtBQ3dJQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEdElBO0FDeUlBO0FBQ0E7QUFDQTtBQUNBO0FEdklBO0FDMElBO0FBQ0E7QUFDQTtBQUNBO0FEeElBO0FBQ0E7QUMwSUE7QUFDQTtBQUNBO0FEeElBOztBQzBJQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUR2SUE7QUMwSUE7QUFDQTtBQUNBO0FBQ0E7QUR4SUE7QUMySUE7QUFDQTtBQUNBO0FBQ0E7QUR6SUE7QUFDQTtBQzJJQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEeklBO0FDNElBO0FBQ0E7QUFDQTtBQUNBO0FEMUlBO0FDNklBO0FBQ0E7QUFDQTtBQUNBO0FEM0lBO0FBQ0E7QUM2SUE7QUFDQTtBQUNBO0FEM0lBOztBQzZJQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEMUlBO0FDNklBO0FBQ0E7QUFDQTtBQUNBO0FEM0lBO0FDOElBO0FBQ0E7QUFDQTtBQUNBO0FENUlBO0FBQ0E7QUM4SUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRDVJQTtBQytJQTtBQUNBO0FBQ0E7QUFDQTtBRDdJQTtBQ2dKQTtBQUNBO0FBQ0E7QUFDQTtBRDlJQTtBQUNBO0FDZ0pBO0FBQ0E7QUFDQTtBRDlJQTs7QUNnSkE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRDdJQTtBQ2dKQTtBQUNBO0FBQ0E7QUFDQTtBRDlJQTtBQ2lKQTtBQUNBO0FBQ0E7QUFDQTtBRC9JQTtBQUNBO0FDaUpBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUQvSUE7QUNrSkE7QUFDQTtBQUNBO0FBQ0E7QURoSkE7QUNtSkE7QUFDQTtBQUNBO0FBQ0E7QURqSkE7QUFDQTtBQ21KQTtBQUNBO0FBQ0E7QURqSkE7O0FDbUpBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QURoSkE7QUNtSkE7QUFDQTtBQUNBO0FBQ0E7QURqSkE7QUNvSkE7QUFDQTtBQUNBO0FBQ0E7QURsSkE7QUFDQTtBQ29KQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEbEpBO0FDcUpBO0FBQ0E7QUFDQTtBQUNBO0FEbkpBO0FDc0pBO0FBQ0E7QUFDQTtBQUNBO0FEcEpBO0FBQ0E7QUNzSkE7QUFDQTtBQUNBO0FEcEpBOztBQ3NKQTtBQUNBO0FBQ0E7QUFNQTtBQUNBO0FEeEpBO0FDMkpBO0FBQ0E7QUFDQTtBQUNBO0FEekpBO0FDNEpBO0FBQ0E7QUFDQTtBRDFKQTtBQzZKQTtBQUNBO0FBQ0E7QUQzSkE7QUM4SkE7QUFDQTtBQUNBO0FBQ0E7QUQ1SkE7QUMrSkE7QUFDQTtBQUNBO0FEN0pBO0FDZ0tBO0FBQ0E7QUFDQTtBQUNBO0FEOUpBO0FBQ0E7QUNnS0E7QUFDQTtBQU1BO0FBQ0E7QURuS0E7QUNzS0E7QUFDQTtBQUNBO0FBQ0E7QURwS0E7QUN1S0E7QUFDQTtBQUNBO0FEcktBO0FDd0tBO0FBQ0E7QUFDQTtBRHRLQTtBQ3lLQTtBQUNBO0FBQ0E7QUFDQTtBRHZLQTtBQzBLQTtBQUNBO0FBQ0E7QUR4S0E7QUMyS0E7QUFDQTtBQUNBO0FBQ0E7QUR6S0E7QUFDQTtBQzJLQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRHpLQTs7QUMyS0E7QUFDQTtBQUtBO0FBQ0E7QUQ1S0E7QUMrS0E7QUFDQTtBQUNBO0FBQ0E7QUQ3S0E7QUNnTEE7QUFDQTtBQUNBO0FBQ0E7QUQ5S0E7QUNpTEE7QUFDQTtBQUNBO0FEL0tBO0FDa0xBO0FBQ0E7QUFDQTtBRGhMQTtBQ21MQTtBQUNBO0FBQ0E7QURqTEE7QUFDQTtBQ21MQTtBQUNBO0FBS0E7QUFDQTtBRHJMQTtBQ3dMQTtBQUNBO0FBQ0E7QUFDQTtBRHRMQTtBQ3lMQTtBQUNBO0FBQ0E7QUFDQTtBRHZMQTtBQzBMQTtBQUNBO0FBQ0E7QUR4TEE7QUMyTEE7QUFDQTtBQUNBO0FEekxBO0FDNExBO0FBQ0E7QUFDQTtBRDFMQTtBQUNBO0FDNExBO0FBQ0E7QUFDQTtBRDFMQTs7QUM0TEE7QUFDQTtBQUtBO0FBQ0E7QUQ3TEE7QUNnTUE7QUFDQTtBQUNBO0FBQ0E7QUQ5TEE7QUNpTUE7QUFDQTtBQUNBO0FBQ0E7QUQvTEE7QUNrTUE7QUFDQTtBQUNBO0FEaE1BO0FDbU1BO0FBQ0E7QUFDQTtBRGpNQTtBQ29NQTtBQUNBO0FBQ0E7QURsTUE7QUFDQTtBQ29NQTtBQUNBO0FBS0E7QUFDQTtBRHRNQTtBQ3lNQTtBQUNBO0FBQ0E7QUFDQTtBRHZNQTtBQzBNQTtBQUNBO0FBQ0E7QUFDQTtBRHhNQTtBQzJNQTtBQUNBO0FBQ0E7QUR6TUE7QUM0TUE7QUFDQTtBQUNBO0FEMU1BO0FDNk1BO0FBQ0E7QUFDQTtBRDNNQTtBQUNBO0FDNk1BO0FBQ0E7QUFDQTtBRDNNQTs7QUM2TUE7QUFDQTtBQUtBO0FBQ0E7QUQ5TUE7QUNpTkE7QUFDQTtBQUNBO0FBQ0E7QUQvTUE7QUNrTkE7QUFDQTtBQUNBO0FBQ0E7QURoTkE7QUNtTkE7QUFDQTtBQUNBO0FEak5BO0FDb05BO0FBQ0E7QUFDQTtBRGxOQTtBQ3FOQTtBQUNBO0FBQ0E7QURuTkE7QUFDQTtBQ3FOQTtBQUNBO0FBS0E7QUFDQTtBRHZOQTtBQzBOQTtBQUNBO0FBQ0E7QUFDQTtBRHhOQTtBQzJOQTtBQUNBO0FBQ0E7QUFDQTtBRHpOQTtBQzROQTtBQUNBO0FBQ0E7QUQxTkE7QUM2TkE7QUFDQTtBQUNBO0FEM05BO0FDOE5BO0FBQ0E7QUFDQTtBRDVOQTtBQUNBO0FDOE5BO0FBQ0E7QUFDQTtBRDVOQTs7QUM4TkE7QUFDQTtBQUtBO0FBQ0E7QUQvTkE7QUNrT0E7QUFDQTtBQUNBO0FBQ0E7QURoT0E7QUNtT0E7QUFDQTtBQUNBO0FBQ0E7QURqT0E7QUNvT0E7QUFDQTtBQUNBO0FEbE9BO0FDcU9BO0FBQ0E7QUFDQTtBRG5PQTtBQ3NPQTtBQUNBO0FBQ0E7QURwT0E7QUFDQTtBQ3NPQTtBQUNBO0FBS0E7QUFDQTtBRHhPQTtBQzJPQTtBQUNBO0FBQ0E7QUFDQTtBRHpPQTtBQzRPQTtBQUNBO0FBQ0E7QUFDQTtBRDFPQTtBQzZPQTtBQUNBO0FBQ0E7QUQzT0E7QUM4T0E7QUFDQTtBQUNBO0FENU9BO0FDK09BO0FBQ0E7QUFDQTtBRDdPQTtBQUNBO0FDK09BO0FBQ0E7QUFDQTtBRDdPQTs7QUMrT0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRDVPQTtBQytPQTtBQUVBO0FBQ0E7QUFDQTtBRDlPQTtBQ2lQQTtBQUNBO0FBQ0E7QUFDQTtBRC9PQTtBQUNBO0FDaVBBO0FBQ0E7QUFDQTtBQUNBO0FEL09BO0FDa1BBO0FBRUE7QUFDQTtBQUNBO0FEalBBO0FDb1BBO0FBQ0E7QUFDQTtBQUNBO0FEbFBBO0FBQ0E7QUNvUEE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QURsUEE7O0FDb1BBO0FBQ0E7QUFDQTtBQUNBO0FEalBBO0FDb1BBO0FBRUE7QUFDQTtBQUNBO0FEblBBO0FDc1BBO0FBQ0E7QUFDQTtBQUNBO0FEcFBBO0FBQ0E7QUNzUEE7QUFDQTtBQUNBO0FBQ0E7QURwUEE7QUN1UEE7QUFFQTtBQUNBO0FBQ0E7QUR0UEE7QUN5UEE7QUFDQTtBQUNBO0FBQ0E7QUR2UEE7QUFDQTtBQ3lQQTtBQUNBO0FBQ0E7QUR2UEE7O0FDeVBBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUR0UEE7QUN5UEE7QUFDQTtBQUNBO0FBQ0E7QUR2UEE7QUFDQTtBQ3lQQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEdlBBO0FDMFBBO0FBQ0E7QUFDQTtBQUNBO0FEeFBBO0FBQ0E7QUMwUEE7QUFDQTtBQUNBO0FEeFBBOztBQzBQQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEdlBBO0FDMFBBO0FBQ0E7QUFDQTtBQUNBO0FEeFBBO0FBQ0E7QUMwUEE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRHhQQTtBQzJQQTtBQUNBO0FBQ0E7QUFDQTtBRHpQQTtBQUNBO0FDMlBBO0FBQ0E7QUFDQTtBRHpQQTs7QUMyUEE7QUFDQTtBQUNBO0FBQ0E7QUR4UEE7QUMyUEE7QUFFQTtBQUNBO0FBQ0E7QUQxUEE7QUM2UEE7QUFDQTtBQUNBO0FBQ0E7QUQzUEE7QUFDQTtBQzZQQTtBQUNBO0FBQ0E7QUFDQTtBRDNQQTtBQzhQQTtBQUVBO0FBQ0E7QUFDQTtBRDdQQTtBQ2dRQTtBQUNBO0FBQ0E7QUFDQTtBRDlQQTtBQUNBO0FDZ1FBO0FBQ0E7QUFDQTtBRDlQQTs7QUNnUUE7QUFDQTtBQUNBO0FBQ0E7QUQ3UEE7QUNnUUE7QUFDQTtBRDlQQTtBQUNBO0FDZ1FBO0FBQ0E7QUFDQTtBRDlQQTtBQ2lRQTtBQUNBO0FEL1BBO0FBQ0E7QUNpUUE7QUFDQTtBQUNBO0FEL1BBOztBQ2lRQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEOVBBO0FDaVFBO0FBQ0E7QUFDQTtBQUNBO0FEL1BBO0FBQ0E7QUNpUUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRC9QQTtBQ2tRQTtBQUNBO0FBQ0E7QUFDQTtBRGhRQTtBQUNBO0FDa1FBO0FBQ0E7QUFDQTtBRGhRQTs7QUNrUUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRC9QQTtBQ2tRQTtBQUNBO0FBQ0E7QUFDQTtBRGhRQTtBQUNBO0FDa1FBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QURoUUE7QUNtUUE7QUFDQTtBQUNBO0FBQ0E7QURqUUE7QUFDQTtBQ21RQTtBQUNBO0FBQ0E7QURqUUE7O0FDbVFBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QURoUUE7QUNtUUE7QUFDQTtBQUNBO0FBQ0E7QURqUUE7QUFDQTtBQ21RQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEalFBO0FDb1FBO0FBQ0E7QUFDQTtBQUNBO0FEbFFBO0FBQ0E7QUNvUUE7QUFDQTtBQUNBO0FEbFFBOztBQ29RQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEalFBO0FDb1FBO0FBQ0E7QUFDQTtBQUNBO0FEbFFBO0FBQ0E7QUNvUUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRGxRQTtBQ3FRQTtBQUNBO0FBQ0E7QUFDQTtBRG5RQTtBQUNBO0FDcVFBO0FBQ0E7QUFDQTtBRG5RQTs7QUNxUUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRGxRQTtBQ3FRQTtBQUNBO0FBQ0E7QUFDQTtBRG5RQTtBQUNBO0FDcVFBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QURuUUE7QUNzUUE7QUFDQTtBQUNBO0FBQ0E7QURwUUE7QUFDQTtBQ3NRQTtBQUNBO0FBQ0E7QURwUUE7O0FDc1FBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QURuUUE7QUNzUUE7QUFDQTtBQUNBO0FBQ0E7QURwUUE7QUFDQTtBQ3NRQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEcFFBO0FDdVFBO0FBQ0E7QUFDQTtBQUNBO0FEclFBO0FBQ0E7QUN1UUE7QUFDQTtBQUNBO0FEclFBOztBQ3VRQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEcFFBO0FDdVFBO0FBQ0E7QUFDQTtBQUNBO0FEclFBO0FBQ0E7QUN1UUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRHJRQTtBQ3dRQTtBQUNBO0FBQ0E7QUFDQTtBRHRRQTtBQUNBO0FDd1FBO0FBQ0E7QUFDQTtBRHRRQTs7QUN3UUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRHJRQTtBQ3dRQTtBQUNBO0FBQ0E7QUFDQTtBRHRRQTtBQUNBO0FDd1FBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUR0UUE7QUN5UUE7QUFDQTtBQUNBO0FBQ0E7QUR2UUE7QUFDQTtBQ3lRQTtBQUNBO0FBQ0E7QUR2UUE7O0FDeVFBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUR0UUE7QUN3UUE7QUFDQTtBQUNBO0FBQ0E7QUR0UUE7QUFDQTtBQ3dRQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEdFFBO0FDd1FBO0FBQ0E7QUFDQTtBQUNBO0FEdFFBO0FBQ0E7QUN3UUE7QUFDQTtBQUNBO0FEdFFBOztBQ3dRQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEclFBO0FDdVFBO0FBQ0E7QUFDQTtBQUNBO0FEclFBO0FBQ0E7QUN1UUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRHJRQTtBQ3VRQTtBQUNBO0FBQ0E7QUFDQTtBRHJRQTtBQUNBO0FDdVFBO0FBQ0E7QUFDQTtBRHJRQTs7QUN1UUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRHBRQTtBQ3NRQTtBQUNBO0FBQ0E7QUFDQTtBRHBRQTtBQUNBO0FDc1FBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QURwUUE7QUNzUUE7QUFDQTtBQUNBO0FBQ0E7QURwUUE7QUFDQTtBQ3NRQTtBQUNBO0FBQ0E7QURwUUE7O0FDc1FBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QURuUUE7QUNxUUE7QUFDQTtBQUNBO0FBQ0E7QURuUUE7QUFDQTtBQ3FRQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEblFBO0FDcVFBO0FBQ0E7QUFDQTtBQUNBO0FEblFBO0FBQ0E7QUNxUUE7QUFDQTtBQUNBO0FEblFBOztBQ3FRQTtBQUNBO0FBQ0E7QUFDQTtBRGxRQTtBQ3FRQTtBQUNBO0FEblFBO0FBQ0E7QUNxUUE7QUFDQTtBQUNBO0FEblFBO0FDc1FBO0FBQ0E7QURwUUE7QUFDQTtBQ3NRQTtBQUNBO0FBQ0E7QURwUUE7O0FDc1FBO0FBQ0E7QUFDQTtBRG5RQTtBQ3NRQTtBQUNBO0FBQ0E7QUFDQTtBRHBRQTtBQUNBO0FDc1FBO0FBQ0E7QUFDQTtBRHBRQTtBQ3VRQTtBQUNBO0FBQ0E7QUFDQTtBRHJRQTtBQUNBO0FDdVFBO0FBQ0E7QUFDQTtBRHJRQTs7QUN1UUE7QUFDQTtBQUNBO0FEcFFBO0FDdVFBO0FBQ0E7QUFDQTtBQUNBO0FEclFBO0FBQ0E7QUN1UUE7QUFDQTtBQUNBO0FEclFBO0FDd1FBO0FBQ0E7QUFDQTtBQUNBO0FEdFFBO0FBQ0E7QUN3UUE7QUFDQTtBQUNBO0FEdFFBOztBQ3dRQTtBQUNBO0FBQ0E7QURyUUE7QUN3UUE7QUFDQTtBQUNBO0FBQ0E7QUR0UUE7QUFDQTtBQ3dRQTtBQUNBO0FBQ0E7QUR0UUE7QUN5UUE7QUFDQTtBQUNBO0FBQ0E7QUR2UUE7QUFDQTtBQ3lRQTtBQUNBO0FBQ0E7QUR2UUE7O0FDeVFBO0FBQ0E7QUFDQTtBRHRRQTtBQ3lRQTtBQUNBO0FBQ0E7QUFDQTtBRHZRQTtBQUNBO0FDeVFBO0FBQ0E7QUFDQTtBRHZRQTtBQzBRQTtBQUNBO0FBQ0E7QUFDQTtBRHhRQTtBQUNBO0FDMFFBO0FBQ0E7QUFDQTtBRHhRQTs7QUMwUUE7QUFDQTtBQUNBO0FEdlFBO0FDMFFBO0FBQ0E7QUFDQTtBQUNBO0FEeFFBO0FBQ0E7QUMwUUE7QUFDQTtBQUNBO0FEeFFBO0FDMlFBO0FBQ0E7QUFDQTtBQUNBO0FEelFBO0FBQ0E7QUMyUUE7QUFDQTtBQUNBO0FEelFBOztBQzJRQTtBQUNBO0FBQ0E7QUR4UUE7QUMyUUE7QUFDQTtBQUNBO0FBQ0E7QUR6UUE7QUFDQTtBQzJRQTtBQUNBO0FBQ0E7QUR6UUE7QUM0UUE7QUFDQTtBQUNBO0FBQ0E7QUQxUUE7QUFDQTtBQzRRQTtBQUNBO0FBQ0E7QUQxUUE7O0FDNFFBO0FBQ0E7QUFDQTtBRHpRQTtBQzRRQTtBQUNBO0FBQ0E7QUFDQTtBRDFRQTtBQUNBO0FDNFFBO0FBQ0E7QUFDQTtBRDFRQTtBQzZRQTtBQUNBO0FBQ0E7QUFDQTtBRDNRQTtBQUNBO0FDNlFBO0FBQ0E7QUFDQTtBRDNRQTs7QUM2UUE7QUFDQTtBQUNBO0FEMVFBO0FDNlFBO0FBQ0E7QUFDQTtBQUNBO0FEM1FBO0FBQ0E7QUM2UUE7QUFDQTtBQUNBO0FEM1FBO0FDOFFBO0FBQ0E7QUFDQTtBQUNBO0FENVFBO0FBQ0E7QUM4UUE7QUFDQTtBQUNBO0FENVFBOztBQzhRQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEM1FBO0FDNlFBO0FBQ0E7QUFDQTtBQUNBO0FEM1FBO0FBQ0E7QUM2UUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRDNRQTtBQzZRQTtBQUNBO0FBQ0E7QUFDQTtBRDNRQTtBQUNBO0FDNlFBO0FBQ0E7QUFDQTtBRDNRQTs7QUM2UUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRDFRQTtBQzRRQTtBQUNBO0FBQ0E7QUFDQTtBRDFRQTtBQUNBO0FDNFFBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUQxUUE7QUM0UUE7QUFDQTtBQUNBO0FBQ0E7QUQxUUE7QUFDQTtBQzRRQTtBQUNBO0FBQ0E7QUQxUUE7O0FDNFFBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUR6UUE7QUMyUUE7QUFDQTtBQUNBO0FBQ0E7QUR6UUE7QUFDQTtBQzJRQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEelFBO0FDMlFBO0FBQ0E7QUFDQTtBQUNBO0FEelFBO0FBQ0E7QUMyUUE7QUFDQTtBQUNBO0FEelFBOztBQzJRQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEeFFBO0FDMFFBO0FBQ0E7QUFDQTtBQUNBO0FEeFFBO0FBQ0E7QUMwUUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRHhRQTtBQzBRQTtBQUNBO0FBQ0E7QUFDQTtBRHhRQTtBQUNBO0FDMFFBO0FBQ0E7QUFDQTtBRHhRQTs7QUMwUUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUR2UUE7QUMwUUE7QUFDQTtBQUVBO0FBRUE7QUFDQTtBRDFRQTtBQzZRQTtBQUNBO0FBRUE7QUFFQTtBQUNBO0FEN1FBO0FDZ1JBO0FBQ0E7QUFFQTtBQUVBO0FBQ0E7QURoUkE7QUNtUkE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRGpSQTtBQUNBO0FDbVJBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRGpSQTtBQ29SQTtBQUNBO0FBRUE7QUFFQTtBQUNBO0FEcFJBO0FDdVJBO0FBQ0E7QUFFQTtBQUVBO0FBQ0E7QUR2UkE7QUMwUkE7QUFDQTtBQUVBO0FBRUE7QUFDQTtBRDFSQTtBQzZSQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEM1JBO0FBQ0E7QUM2UkE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRDNSQTs7QUM2UkE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUQxUkE7QUM2UkE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRDNSQTtBQzhSQTtBQUNBO0FBQ0E7QUFDQTtBRDVSQTtBQytSQTtBQUNBO0FBQ0E7QUQ3UkE7QUNnU0E7QUFDQTtBQUNBO0FEOVJBO0FBQ0E7QUNnU0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUQ5UkE7QUNpU0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRC9SQTtBQ2tTQTtBQUNBO0FBQ0E7QUFDQTtBRGhTQTtBQ21TQTtBQUNBO0FBQ0E7QURqU0E7QUNvU0E7QUFDQTtBQUNBO0FEbFNBO0FBQ0E7QUNvU0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRGxTQTs7QUNvU0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QURqU0E7QUNvU0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRGxTQTtBQ3FTQTtBQUNBO0FBQ0E7QUFDQTtBRG5TQTtBQ3NTQTtBQUNBO0FBQ0E7QURwU0E7QUN1U0E7QUFDQTtBQUNBO0FEclNBO0FBQ0E7QUN1U0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QURyU0E7QUN3U0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRHRTQTtBQ3lTQTtBQUNBO0FBQ0E7QUFDQTtBRHZTQTtBQzBTQTtBQUNBO0FBQ0E7QUR4U0E7QUMyU0E7QUFDQTtBQUNBO0FEelNBO0FBQ0E7QUMyU0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRHpTQTs7QUMyU0E7QUFDQTtBQUNBO0FBQ0E7QUR4U0E7QUMyU0E7QUFDQTtBQUNBO0FBQ0E7QUR6U0E7QUM0U0E7QUFDQTtBQUNBO0FBQ0E7QUQxU0E7QUFDQTtBQzRTQTtBQUNBO0FBQ0E7QUFDQTtBRDFTQTtBQzZTQTtBQUNBO0FBQ0E7QUFDQTtBRDNTQTtBQzhTQTtBQUNBO0FBQ0E7QUFDQTtBRDVTQTtBQUNBO0FDOFNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRDVTQTs7QUM4U0E7QUFDQTtBQUNBO0FBQ0E7QUQzU0E7QUM4U0E7QUFDQTtBQUNBO0FBQ0E7QUQ1U0E7QUMrU0E7QUFDQTtBQUNBO0FBQ0E7QUQ3U0E7QUFDQTtBQytTQTtBQUNBO0FBQ0E7QUFDQTtBRDdTQTtBQ2dUQTtBQUNBO0FBQ0E7QUFDQTtBRDlTQTtBQ2lUQTtBQUNBO0FBQ0E7QUFDQTtBRC9TQTtBQUNBO0FDaVRBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRC9TQTs7QUNpVEE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEOVNBO0FDaVRBO0FBQ0E7QUFDQTtBQUNBO0FEL1NBO0FDa1RBO0FBQ0E7QUFDQTtBRGhUQTtBQ21UQTtBQUNBO0FBQ0E7QURqVEE7QUFDQTtBQ21UQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEalRBO0FDb1RBO0FBQ0E7QUFDQTtBQUNBO0FEbFRBO0FDcVRBO0FBQ0E7QUFDQTtBRG5UQTtBQ3NUQTtBQUNBO0FBQ0E7QURwVEE7QUFDQTtBQ3NUQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEcFRBOztBQ3NUQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEblRBO0FDc1RBO0FBQ0E7QUFDQTtBQUNBO0FEcFRBO0FDdVRBO0FBQ0E7QUFDQTtBRHJUQTtBQ3dUQTtBQUNBO0FBQ0E7QUR0VEE7QUFDQTtBQ3dUQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEdFRBO0FDeVRBO0FBQ0E7QUFDQTtBQUNBO0FEdlRBO0FDMFRBO0FBQ0E7QUFDQTtBRHhUQTtBQzJUQTtBQUNBO0FBQ0E7QUR6VEE7QUFDQTtBQzJUQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEelRBOztBQzJUQTtBQUNBO0FBQ0E7QUR4VEE7QUMyVEE7QUFDQTtBQUNBO0FBQ0E7QUR6VEE7QUFDQTtBQzJUQTtBQUNBO0FBQ0E7QUR6VEE7QUM0VEE7QUFDQTtBQUNBO0FBQ0E7QUQxVEE7QUFDQTtBQzRUQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEMVRBOztBQzRUQTtBQUNBO0FBQ0E7QUR6VEE7QUM0VEE7QUFDQTtBQUNBO0FBQ0E7QUQxVEE7QUFDQTtBQzRUQTtBQUNBO0FBQ0E7QUQxVEE7QUM2VEE7QUFDQTtBQUNBO0FBQ0E7QUQzVEE7QUFDQTtBQzZUQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEM1RBOztBQzZUQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUQxVEE7QUM2VEE7QUFDQTtBQUNBO0FBQ0E7QUQzVEE7QUFDQTtBQzZUQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEM1RBO0FDOFRBO0FBQ0E7QUFDQTtBQUNBO0FENVRBO0FBQ0E7QUM4VEE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRDVUQTs7QUM4VEE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRDNUQTtBQzhUQTtBQUNBO0FBQ0E7QUFDQTtBRDVUQTtBQUNBO0FDOFRBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUQ1VEE7QUMrVEE7QUFDQTtBQUNBO0FBQ0E7QUQ3VEE7QUFDQTtBQytUQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEN1RBOztBQytUQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FENVRBO0FDK1RBO0FBQ0E7QUFDQTtBQUNBO0FEN1RBO0FBQ0E7QUMrVEE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRDdUQTtBQ2dVQTtBQUNBO0FBQ0E7QUFDQTtBRDlUQTtBQUNBO0FDZ1VBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUQ5VEE7O0FDZ1VBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUQ3VEE7QUNnVUE7QUFDQTtBQUNBO0FBQ0E7QUQ5VEE7QUFDQTtBQ2dVQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEOVRBO0FDaVVBO0FBQ0E7QUFDQTtBQUNBO0FEL1RBO0FBQ0E7QUNpVUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRC9UQTs7QUNpVUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRDlUQTtBQ2lVQTtBQUNBO0FBQ0E7QUFDQTtBRC9UQTtBQUNBO0FDaVVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUQvVEE7QUNrVUE7QUFDQTtBQUNBO0FBQ0E7QURoVUE7QUFDQTtBQ2tVQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEaFVBOztBQ2tVQTtBQUNBO0FBQ0E7QUFDQTtBRC9UQTtBQ2tVQTtBQUNBO0FBQ0E7QUFDQTtBRGhVQTtBQUNBO0FDa1VBO0FBQ0E7QUFDQTtBRGhVQTtBQ21VQTtBQUNBO0FBQ0E7QUFDQTtBRGpVQTtBQUNBO0FDbVVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QURqVUE7O0FDbVVBO0FBQ0E7QUFDQTtBRGhVQTtBQ21VQTtBQUNBO0FBQ0E7QUFDQTtBRGpVQTtBQUNBO0FDbVVBO0FBQ0E7QUFDQTtBRGpVQTtBQ29VQTtBQUNBO0FBQ0E7QUFDQTtBRGxVQTtBQUNBO0FDb1VBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QURsVUE7O0FDb1VBO0FBQ0E7QUFDQTtBRGpVQTtBQ29VQTtBQUNBO0FBQ0E7QUFDQTtBRGxVQTtBQUNBO0FDb1VBO0FBQ0E7QUFDQTtBRGxVQTtBQ3FVQTtBQUNBO0FBQ0E7QUFDQTtBRG5VQTtBQUNBO0FDcVVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QURuVUE7O0FDcVVBO0FBQ0E7QUFDQTtBRGxVQTtBQ3FVQTtBQUNBO0FBQ0E7QUFDQTtBRG5VQTtBQUNBO0FDcVVBO0FBQ0E7QUFDQTtBRG5VQTtBQ3NVQTtBQUNBO0FBQ0E7QUFDQTtBRHBVQTtBQUNBO0FDc1VBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QURwVUE7O0FDc1VBO0FBQ0E7QUFDQTtBRG5VQTtBQ3NVQTtBQUNBO0FBQ0E7QUFDQTtBRHBVQTtBQUNBO0FDc1VBO0FBQ0E7QUFDQTtBRHBVQTtBQ3VVQTtBQUNBO0FBQ0E7QUFDQTtBRHJVQTtBQUNBO0FDdVVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QURyVUE7O0FDdVVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QURwVUE7QUN1VUE7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBRHRVQTtBQ3lVQTtBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUR4VUE7QUMyVUE7QUFDQTtBQUNBO0FBQ0E7QUR6VUE7QUFDQTtBQzJVQTtBQUNBO0FBQ0E7QUFDQTtBRHpVQTtBQzRVQTtBQUVBO0FBQ0E7QUFDQTtBQUNBO0FEM1VBO0FDOFVBO0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRDdVQTtBQ2dWQTtBQUNBO0FBQ0E7QUFDQTtBRDlVQTtBQUNBO0FDZ1ZBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRDlVQTs7QUNnVkE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUQ3VUE7QUNnVkE7QUFDQTtBQUNBO0FEOVVBO0FDaVZBO0FBQ0E7QUFDQTtBRC9VQTtBQ2tWQTtBQUNBO0FBQ0E7QUFDQTtBRGhWQTtBQUNBO0FDa1ZBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEaFZBO0FDbVZBO0FBQ0E7QUFDQTtBRGpWQTtBQ29WQTtBQUNBO0FBQ0E7QURsVkE7QUNxVkE7QUFDQTtBQUNBO0FBQ0E7QURuVkE7QUFDQTtBQ3FWQTtBQUNBO0FBQ0E7QURuVkE7O0FDcVZBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRGxWQTtBQ3FWQTtBQUNBO0FBQ0E7QUFDQTtBRG5WQTtBQUNBO0FDcVZBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QURuVkE7QUNzVkE7QUFDQTtBQUNBO0FBQ0E7QURwVkE7QUFDQTtBQ3NWQTtBQUNBO0FBQ0E7QURwVkE7O0FDc1ZBO0FBQ0E7QUFDQTtBQUNBO0FEblZBO0FDc1ZBO0FBQ0E7QUFDQTtBQUNBO0FEcFZBO0FBQ0E7QUNzVkE7QUFDQTtBQUNBO0FEcFZBO0FDdVZBO0FBQ0E7QUFDQTtBQUNBO0FEclZBO0FBQ0E7QUN1VkE7QUFDQTtBQUNBO0FEclZBOztBQ3VWQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QURwVkE7QUN1VkE7QUFDQTtBRHJWQTtBQUNBO0FDdVZBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QURyVkE7QUN3VkE7QUFDQTtBRHRWQTtBQUNBO0FDd1ZBO0FBQ0E7QUFDQTtBRHRWQTs7QUN3VkE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QURyVkE7QUN3VkE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEdFZBO0FBQ0E7QUN3VkE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUR0VkE7QUN5VkE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEdlZBO0FBQ0E7QUN5VkE7QUFDQTtBQUNBO0FEdlZBOztBQ3lWQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRHRWQTtBQ3lWQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUR2VkE7QUFDQTtBQ3lWQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRHZWQTtBQzBWQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUR4VkE7QUFDQTtBQzBWQTtBQUNBO0FBQ0E7QUR4VkE7O0FDMFZBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEdlZBO0FDMFZBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRHhWQTtBQUNBO0FDMFZBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEeFZBO0FDMlZBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRHpWQTtBQUNBO0FDMlZBO0FBQ0E7QUFDQTtBRHpWQTs7QUMyVkE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUR4VkE7QUMyVkE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEelZBO0FBQ0E7QUMyVkE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUR6VkE7QUM0VkE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEMVZBO0FBQ0E7QUM0VkE7QUFDQTtBQUNBO0FEMVZBOztBQzRWQTtBQUNBO0FBQ0E7QUFDQTtBRHpWQTtBQzRWQTtBQUNBO0FBQ0E7QUFDQTtBRDFWQTtBQzZWQTtBQUNBO0FEM1ZBO0FBQ0E7QUM2VkE7QUFDQTtBQUNBO0FEM1ZBO0FDOFZBO0FBQ0E7QUFDQTtBQUNBO0FENVZBO0FDK1ZBO0FBQ0E7QUQ3VkE7QUFDQTtBQytWQTtBQUNBO0FBQ0E7QUQ3VkE7O0FDK1ZBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FENVZBO0FDK1ZBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRDdWQTtBQUNBO0FDK1ZBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEN1ZBO0FDZ1dBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRDlWQTtBQUNBO0FDZ1dBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUQ5VkE7O0FDZ1dBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUQ3VkE7QUNnV0E7QUFDQTtBQUNBO0FBQ0E7QUQ5VkE7QUFDQTtBQ2dXQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEOVZBO0FDaVdBO0FBQ0E7QUFDQTtBQUNBO0FEL1ZBO0FBQ0E7QUNpV0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRC9WQTs7QUNpV0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRDlWQTtBQ2lXQTtBQUNBO0FBQ0E7QUFDQTtBRC9WQTtBQUNBO0FDaVdBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUQvVkE7QUNrV0E7QUFDQTtBQUNBO0FBQ0E7QURoV0E7QUFDQTtBQ2tXQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEaFdBOztBQ2tXQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRC9WQTtBQ2tXQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QURoV0E7QUFDQTtBQ2tXQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRGhXQTtBQ21XQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QURqV0E7QUFDQTtBQ21XQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FEaldBOztBQ21XQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QURoV0E7QUNtV0E7QUFDQTtBQUNBO0FEaldBO0FBQ0E7QUNtV0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRGpXQTtBQ29XQTtBQUNBO0FBQ0E7QURsV0E7QUFDQTtBQ29XQTtBQUNBO0FBQ0E7QURsV0E7O0FDb1dBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QURqV0E7QUNvV0E7QUFDQTtBQUNBO0FEbFdBO0FBQ0E7QUNvV0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRGxXQTtBQ3FXQTtBQUNBO0FBQ0E7QURuV0E7QUFDQTtBQ3FXQTtBQUNBO0FBQ0E7QURuV0E7O0FDcVdBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QURsV0E7QUNxV0E7QUFDQTtBQUNBO0FEbldBO0FBQ0E7QUNxV0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRG5XQTtBQ3NXQTtBQUNBO0FBQ0E7QURwV0E7QUFDQTtBQ3NXQTtBQUNBO0FBQ0E7QURwV0E7O0FDc1dBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QURuV0E7QUNzV0E7QUFDQTtBQUNBO0FEcFdBO0FBQ0E7QUNzV0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBRHBXQTtBQ3VXQTtBQUNBO0FBQ0E7QURyV0E7QUFDQTtBQ3VXQTtBQUNBO0FBQ0E7QURyV0E7O0FDdVdBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QURwV0E7QUN1V0E7QUFDQTtBQUNBO0FBQ0E7QURyV0E7QUFDQTtBQ3VXQTtBQUNBO0FBQ0E7QUFDQTtBRHJXQTtBQ3dXQTtBQUNBO0FBQ0E7QUFDQTtBRHRXQTtBQUNBO0FDd1dBO0FBQ0E7QUFDQTtBRHRXQTs7QUN3V0E7QUFDQTtBQUNBO0FBQ0E7QURyV0E7QUN3V0E7QUFDQTtBQUNBO0FBQ0E7QUR0V0E7QUFDQTtBQ3dXQTtBQUNBO0FBQ0E7QUFDQTtBRHRXQTtBQ3lXQTtBQUNBO0FBQ0E7QUFDQTtBRHZXQTtBQUNBO0FDeVdBO0FBQ0E7QUFDQTtBRHZXQTs7QUN5V0E7QUFDQTtBQUNBO0FBQ0E7QUR0V0E7QUN5V0E7QUFDQTtBQUNBO0FBQ0E7QUR2V0E7QUFDQTtBQ3lXQTtBQUNBO0FBQ0E7QUFDQTtBRHZXQTtBQzBXQTtBQUNBO0FBQ0E7QUFDQTtBRHhXQTtBQUNBO0FDMFdBO0FBQ0E7QUFDQTtBRHhXQTs7QUMwV0E7QUFDQTtBQUNBO0FBQ0E7QUR2V0E7QUMwV0E7QUFDQTtBQUNBO0FBQ0E7QUR4V0E7QUFDQTtBQzBXQTtBQUNBO0FBQ0E7QUFDQTtBRHhXQTtBQzJXQTtBQUNBO0FBQ0E7QUFDQTtBRHpXQTtBQUNBO0FDMldBO0FBQ0E7QUFDQTtBRHpXQTs7QUFqbkhBO0FUUEE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FTU0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFrb0hBO0FBaG9IQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBa29IQTtBQWhvSEE7QUFDQTtBQUNBO0FBa29IQTtBQS9uSEE7QUFDQTtBQWlvSEE7QUE5bkhBO0FBQ0E7QUFnb0hBO0FBN25IQTtBQUNBO0FBK25IQTtBQTduSEE7QUFDQTtBQUNBO0FBK25IQTtBQTVuSEE7QUFDQTtBQThuSEE7QUExbkhBO0FBQ0E7QUFDQTtBQUNBO0FBNG5IQTtBQXhuSEE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQTBuSEE7O0FBdG5IQTtBQUNBO0FBQ0E7QUFDQTtBQXluSEE7QUF0bkhBO0FBQ0E7QUFDQTtBQUNBO0FBd25IQTtBQXJuSEE7QUFDQTtBQXVuSEE7QUFDQTtBQXBuSEE7QUFDQTtBQUNBO0FBc25IQTtBQUNBO0FBbm5IQTtBQUNBO0FBQ0E7QUFxbkhBO0FBQ0E7Ozs7QUVsdUhBO0FBQUE7Ozs7OztBQUFBO0FBY0E7QUFDQTtBQUxBIiwic291cmNlcyI6WyJ3ZWJwYWNrOi8vdmcvLi9hcHAvdXRpbHMvc2Nzcy9kZWZhdWx0LnNjc3MiLCJ3ZWJwYWNrOi8vdmcvLi9hcHAvdXRpbHMvc2Nzcy9taXhpbi5zY3NzIiwid2VicGFjazovL3ZnLy4vYXBwL3V0aWxzL3Njc3MvdmFyaWFibGVzLnNjc3MiLCJ3ZWJwYWNrOi8vdmcvLi9hcHAvbW9kdWxlcy92Z3NpZGViYXIvc2Nzcy92Z3NpZGViYXIuc2NzcyIsIndlYnBhY2s6Ly92Zy8uL2FwcC9tb2R1bGVzL3ZnbmF2L3Njc3MvdmduYXYuc2NzcyIsIndlYnBhY2s6Ly92Zy8uL2FwcC9tb2R1bGVzL3ZnbmF2L3Njc3MvX3RvZ2dsZS5zY3NzIiwid2VicGFjazovL3ZnLy4vYXBwL21vZHVsZXMvdmduYXYvc2Nzcy9fcGxhY2VtZW50LnNjc3MiLCJ3ZWJwYWNrOi8vdmcvLi9hcHAvbW9kdWxlcy92Z25hdi9zY3NzL19oYW1idXJnZXIuc2NzcyIsIndlYnBhY2s6Ly92Zy8uL2FwcC9tb2R1bGVzL3ZnbmF2L3Njc3MvX2JyZWFrcG9pbnRzLnNjc3MiLCJ3ZWJwYWNrOi8vdmcvLi9hcHAvbW9kdWxlcy92Z2Ryb3Bkb3duL3Njc3Mvdmdkcm9wZG93bi5zY3NzIiwid2VicGFjazovL3ZnLy4vYXBwL21vZHVsZXMvdmdtb2RhbC9zY3NzL3ZnbW9kYWwuc2NzcyIsIndlYnBhY2s6Ly92Zy8uL2FwcC91dGlscy9zY3NzL2FuaW1hdGUuc2NzcyIsIndlYnBhY2s6Ly92Zy8uL2FwcC9tb2R1bGVzL3ZnZm9ybXNlbmRlci9zY3NzL3ZnZm9ybXNlbmRlci5zY3NzIl0sIm5hbWVzIjpbXSwic291cmNlUm9vdCI6IiJ9*/