vgapp 0.0.6 → 0.0.8

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