@mdsfe/mds-ui 0.4.0-rc.2 → 0.4.0-rc.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (63) hide show
  1. package/dist/badge.js +2 -2
  2. package/dist/drawer.js +2 -2
  3. package/dist/mds-ui.min.js +2 -2
  4. package/dist/notification.js +2 -2
  5. package/dist/style/affix.css +1 -10
  6. package/dist/style/alert.css +1 -138
  7. package/dist/style/anchor.css +1 -58
  8. package/dist/style/avatar.css +1 -73
  9. package/dist/style/backtop.css +1 -34
  10. package/dist/style/badge.css +1 -141
  11. package/dist/style/bordershadow.css +1 -42
  12. package/dist/style/breadcrumb.css +1 -37
  13. package/dist/style/button.css +1 -2172
  14. package/dist/style/card.css +1 -156
  15. package/dist/style/carousel.css +1 -217
  16. package/dist/style/cascader.css +1 -214
  17. package/dist/style/cascaderpanel.css +1 -122
  18. package/dist/style/checkbox.css +1 -186
  19. package/dist/style/col.css +1 -2607
  20. package/dist/style/collapse.css +1 -79
  21. package/dist/style/color.css +1 -622
  22. package/dist/style/datepicker.css +1 -542
  23. package/dist/style/divider.css +1 -47
  24. package/dist/style/drawer.css +1 -2465
  25. package/dist/style/dropdown.css +1 -274
  26. package/dist/style/empty.css +1 -49
  27. package/dist/style/font.css +1 -45
  28. package/dist/style/form.css +1 -148
  29. package/dist/style/icon.css +1 -25
  30. package/dist/style/input.css +1 -760
  31. package/dist/style/inputnumber.css +1 -314
  32. package/dist/style/layout.css +1 -58
  33. package/dist/style/list.css +1 -141
  34. package/dist/style/loading.css +1 -2329
  35. package/dist/style/menu.css +1 -658
  36. package/dist/style/message.css +1 -191
  37. package/dist/style/modal.css +1 -123
  38. package/dist/style/notification.css +1 -192
  39. package/dist/style/pagination.css +1 -1190
  40. package/dist/style/popconfirm.css +1 -65
  41. package/dist/style/popover.css +1 -138
  42. package/dist/style/progress.css +1 -179
  43. package/dist/style/radio.css +1 -255
  44. package/dist/style/rate.css +1 -81
  45. package/dist/style/row.css +1 -2607
  46. package/dist/style/select.css +1 -221
  47. package/dist/style/slider.css +1 -80
  48. package/dist/style/slottable.css +1 -296
  49. package/dist/style/steps.css +1 -586
  50. package/dist/style/switch.css +1 -110
  51. package/dist/style/table.css +1 -2778
  52. package/dist/style/tabs.css +1 -518
  53. package/dist/style/tag.css +1 -421
  54. package/dist/style/text.css +1 -122
  55. package/dist/style/timeline.css +1 -88
  56. package/dist/style/timepicker.css +1 -393
  57. package/dist/style/tooltip.css +1 -161
  58. package/dist/style/transfer.css +1 -206
  59. package/dist/style/transition.css +1 -1413
  60. package/dist/style/tree.css +1 -84
  61. package/dist/style/typography.css +1 -126
  62. package/dist/style/upload.css +1 -320
  63. package/package.json +5 -1
@@ -1,2329 +1 @@
1
- /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
2
- /* stylelint-disable declaration-bang-space-before */
3
- /* stylelint-disable declaration-bang-space-before */
4
- /**
5
- *
6
- * All animations must live in their own file
7
- * in the animations directory and be included
8
- * here.
9
- *
10
- */
11
- /**
12
- * Styles shared by multiple animations
13
- */
14
- /**
15
- * Dots
16
- */
17
- @-webkit-keyframes scale {
18
- 0% {
19
- -webkit-transform: scale(1);
20
- transform: scale(1);
21
- opacity: 1;
22
- }
23
- 45% {
24
- -webkit-transform: scale(0.1);
25
- transform: scale(0.1);
26
- opacity: 0.7;
27
- }
28
- 80% {
29
- -webkit-transform: scale(1);
30
- transform: scale(1);
31
- opacity: 1;
32
- }
33
- }
34
- @keyframes scale {
35
- 0% {
36
- -webkit-transform: scale(1);
37
- transform: scale(1);
38
- opacity: 1;
39
- }
40
- 45% {
41
- -webkit-transform: scale(0.1);
42
- transform: scale(0.1);
43
- opacity: 0.7;
44
- }
45
- 80% {
46
- -webkit-transform: scale(1);
47
- transform: scale(1);
48
- opacity: 1;
49
- }
50
- }
51
- .ball-pulse > div:nth-child(0) {
52
- -webkit-animation: scale 0.75s -0.36s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
53
- animation: scale 0.75s -0.36s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
54
- }
55
- .ball-pulse > div:nth-child(1) {
56
- -webkit-animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
57
- animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
58
- }
59
- .ball-pulse > div:nth-child(2) {
60
- -webkit-animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
61
- animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
62
- }
63
- .ball-pulse > div:nth-child(3) {
64
- -webkit-animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
65
- animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
66
- }
67
- .ball-pulse > div {
68
- background-color: #fff;
69
- width: 15px;
70
- height: 15px;
71
- border-radius: 100%;
72
- margin: 2px;
73
- -webkit-animation-fill-mode: both;
74
- animation-fill-mode: both;
75
- display: inline-block;
76
- }
77
- @-webkit-keyframes ball-pulse-sync {
78
- 33% {
79
- -webkit-transform: translateY(10px);
80
- transform: translateY(10px);
81
- }
82
- 66% {
83
- -webkit-transform: translateY(-10px);
84
- transform: translateY(-10px);
85
- }
86
- 100% {
87
- -webkit-transform: translateY(0);
88
- transform: translateY(0);
89
- }
90
- }
91
- @keyframes ball-pulse-sync {
92
- 33% {
93
- -webkit-transform: translateY(10px);
94
- transform: translateY(10px);
95
- }
96
- 66% {
97
- -webkit-transform: translateY(-10px);
98
- transform: translateY(-10px);
99
- }
100
- 100% {
101
- -webkit-transform: translateY(0);
102
- transform: translateY(0);
103
- }
104
- }
105
- .ball-pulse-sync > div:nth-child(0) {
106
- -webkit-animation: ball-pulse-sync 0.6s -0.21s infinite ease-in-out;
107
- animation: ball-pulse-sync 0.6s -0.21s infinite ease-in-out;
108
- }
109
- .ball-pulse-sync > div:nth-child(1) {
110
- -webkit-animation: ball-pulse-sync 0.6s -0.14s infinite ease-in-out;
111
- animation: ball-pulse-sync 0.6s -0.14s infinite ease-in-out;
112
- }
113
- .ball-pulse-sync > div:nth-child(2) {
114
- -webkit-animation: ball-pulse-sync 0.6s -0.07s infinite ease-in-out;
115
- animation: ball-pulse-sync 0.6s -0.07s infinite ease-in-out;
116
- }
117
- .ball-pulse-sync > div:nth-child(3) {
118
- -webkit-animation: ball-pulse-sync 0.6s 0s infinite ease-in-out;
119
- animation: ball-pulse-sync 0.6s 0s infinite ease-in-out;
120
- }
121
- .ball-pulse-sync > div {
122
- background-color: #fff;
123
- width: 15px;
124
- height: 15px;
125
- border-radius: 100%;
126
- margin: 2px;
127
- -webkit-animation-fill-mode: both;
128
- animation-fill-mode: both;
129
- display: inline-block;
130
- }
131
- @-webkit-keyframes ball-scale {
132
- 0% {
133
- -webkit-transform: scale(0);
134
- transform: scale(0);
135
- }
136
- 100% {
137
- -webkit-transform: scale(1);
138
- transform: scale(1);
139
- opacity: 0;
140
- }
141
- }
142
- @keyframes ball-scale {
143
- 0% {
144
- -webkit-transform: scale(0);
145
- transform: scale(0);
146
- }
147
- 100% {
148
- -webkit-transform: scale(1);
149
- transform: scale(1);
150
- opacity: 0;
151
- }
152
- }
153
- .ball-scale > div {
154
- background-color: #fff;
155
- width: 15px;
156
- height: 15px;
157
- border-radius: 100%;
158
- margin: 2px;
159
- -webkit-animation-fill-mode: both;
160
- animation-fill-mode: both;
161
- display: inline-block;
162
- height: 60px;
163
- width: 60px;
164
- -webkit-animation: ball-scale 1s 0s ease-in-out infinite;
165
- animation: ball-scale 1s 0s ease-in-out infinite;
166
- }
167
- @keyframes ball-scale {
168
- 0% {
169
- -webkit-transform: scale(0);
170
- transform: scale(0);
171
- }
172
- 100% {
173
- -webkit-transform: scale(1);
174
- transform: scale(1);
175
- opacity: 0;
176
- }
177
- }
178
- .ball-scale > div {
179
- background-color: #fff;
180
- width: 15px;
181
- height: 15px;
182
- border-radius: 100%;
183
- margin: 2px;
184
- -webkit-animation-fill-mode: both;
185
- animation-fill-mode: both;
186
- display: inline-block;
187
- height: 60px;
188
- width: 60px;
189
- -webkit-animation: ball-scale 1s 0s ease-in-out infinite;
190
- animation: ball-scale 1s 0s ease-in-out infinite;
191
- }
192
- .ball-scale-random {
193
- width: 37px;
194
- height: 40px;
195
- }
196
- .ball-scale-random > div {
197
- background-color: #fff;
198
- width: 15px;
199
- height: 15px;
200
- border-radius: 100%;
201
- margin: 2px;
202
- -webkit-animation-fill-mode: both;
203
- animation-fill-mode: both;
204
- position: absolute;
205
- display: inline-block;
206
- height: 30px;
207
- width: 30px;
208
- -webkit-animation: ball-scale 1s 0s ease-in-out infinite;
209
- animation: ball-scale 1s 0s ease-in-out infinite;
210
- }
211
- .ball-scale-random > div:nth-child(1) {
212
- margin-left: -7px;
213
- -webkit-animation: ball-scale 1s 0.2s ease-in-out infinite;
214
- animation: ball-scale 1s 0.2s ease-in-out infinite;
215
- }
216
- .ball-scale-random > div:nth-child(3) {
217
- margin-left: -2px;
218
- margin-top: 9px;
219
- -webkit-animation: ball-scale 1s 0.5s ease-in-out infinite;
220
- animation: ball-scale 1s 0.5s ease-in-out infinite;
221
- }
222
- @-webkit-keyframes rotate {
223
- 0% {
224
- -webkit-transform: rotate(0deg);
225
- transform: rotate(0deg);
226
- }
227
- 50% {
228
- -webkit-transform: rotate(180deg);
229
- transform: rotate(180deg);
230
- }
231
- 100% {
232
- -webkit-transform: rotate(360deg);
233
- transform: rotate(360deg);
234
- }
235
- }
236
- @keyframes rotate {
237
- 0% {
238
- -webkit-transform: rotate(0deg);
239
- transform: rotate(0deg);
240
- }
241
- 50% {
242
- -webkit-transform: rotate(180deg);
243
- transform: rotate(180deg);
244
- }
245
- 100% {
246
- -webkit-transform: rotate(360deg);
247
- transform: rotate(360deg);
248
- }
249
- }
250
- .ball-rotate {
251
- position: relative;
252
- }
253
- .ball-rotate > div {
254
- background-color: #fff;
255
- width: 15px;
256
- height: 15px;
257
- border-radius: 100%;
258
- margin: 2px;
259
- -webkit-animation-fill-mode: both;
260
- animation-fill-mode: both;
261
- position: relative;
262
- }
263
- .ball-rotate > div:first-child {
264
- -webkit-animation: rotate 1s 0s cubic-bezier(0.7, -0.13, 0.22, 0.86) infinite;
265
- animation: rotate 1s 0s cubic-bezier(0.7, -0.13, 0.22, 0.86) infinite;
266
- }
267
- .ball-rotate > div:before,
268
- .ball-rotate > div:after {
269
- background-color: inherit;
270
- width: 15px;
271
- height: 15px;
272
- border-radius: 100%;
273
- margin: 2px;
274
- content: "";
275
- position: absolute;
276
- opacity: 0.8;
277
- }
278
- .ball-rotate > div:before {
279
- top: 0px;
280
- left: -28px;
281
- }
282
- .ball-rotate > div:after {
283
- top: 0px;
284
- left: 25px;
285
- }
286
- @keyframes rotate {
287
- 0% {
288
- -webkit-transform: rotate(0deg) scale(1);
289
- transform: rotate(0deg) scale(1);
290
- }
291
- 50% {
292
- -webkit-transform: rotate(180deg) scale(0.6);
293
- transform: rotate(180deg) scale(0.6);
294
- }
295
- 100% {
296
- -webkit-transform: rotate(360deg) scale(1);
297
- transform: rotate(360deg) scale(1);
298
- }
299
- }
300
- .ball-clip-rotate > div {
301
- background-color: #fff;
302
- width: 15px;
303
- height: 15px;
304
- border-radius: 100%;
305
- margin: 2px;
306
- -webkit-animation-fill-mode: both;
307
- animation-fill-mode: both;
308
- border: 2px solid #fff;
309
- border-bottom-color: transparent !important;
310
- height: 25px;
311
- width: 25px;
312
- background: transparent !important;
313
- display: inline-block;
314
- -webkit-animation: rotate 0.75s 0s linear infinite;
315
- animation: rotate 0.75s 0s linear infinite;
316
- }
317
- @keyframes rotate {
318
- 0% {
319
- -webkit-transform: rotate(0deg) scale(1);
320
- transform: rotate(0deg) scale(1);
321
- }
322
- 50% {
323
- -webkit-transform: rotate(180deg) scale(0.6);
324
- transform: rotate(180deg) scale(0.6);
325
- }
326
- 100% {
327
- -webkit-transform: rotate(360deg) scale(1);
328
- transform: rotate(360deg) scale(1);
329
- }
330
- }
331
- @keyframes scale {
332
- 30% {
333
- -webkit-transform: scale(0.3);
334
- transform: scale(0.3);
335
- }
336
- 100% {
337
- -webkit-transform: scale(1);
338
- transform: scale(1);
339
- }
340
- }
341
- .ball-clip-rotate-pulse {
342
- position: relative;
343
- -webkit-transform: translateY(-15px);
344
- -ms-transform: translateY(-15px);
345
- transform: translateY(-15px);
346
- }
347
- .ball-clip-rotate-pulse > div {
348
- -webkit-animation-fill-mode: both;
349
- animation-fill-mode: both;
350
- position: absolute;
351
- top: 0px;
352
- left: 0px;
353
- border-radius: 100%;
354
- }
355
- .ball-clip-rotate-pulse > div:first-child {
356
- background: #fff;
357
- height: 16px;
358
- width: 16px;
359
- top: 7px;
360
- left: -7px;
361
- -webkit-animation: scale 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
362
- animation: scale 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
363
- }
364
- .ball-clip-rotate-pulse > div:last-child {
365
- position: absolute;
366
- border: 2px solid #fff;
367
- width: 30px;
368
- height: 30px;
369
- left: -14px;
370
- top: 0;
371
- background: transparent !important;
372
- border: 2px solid;
373
- border-top-color: #fff;
374
- border-right-color: transparent !important;
375
- border-bottom-color: #fff;
376
- border-left-color: transparent !important;
377
- -webkit-animation: rotate 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
378
- animation: rotate 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
379
- -webkit-animation-duration: 1s;
380
- animation-duration: 1s;
381
- }
382
- @keyframes rotate {
383
- 0% {
384
- -webkit-transform: rotate(0deg) scale(1);
385
- transform: rotate(0deg) scale(1);
386
- }
387
- 50% {
388
- -webkit-transform: rotate(180deg) scale(0.6);
389
- transform: rotate(180deg) scale(0.6);
390
- }
391
- 100% {
392
- -webkit-transform: rotate(360deg) scale(1);
393
- transform: rotate(360deg) scale(1);
394
- }
395
- }
396
- .ball-clip-rotate-multiple {
397
- position: relative;
398
- }
399
- .ball-clip-rotate-multiple > div {
400
- background-color: transparent !important;
401
- -webkit-animation-fill-mode: both;
402
- animation-fill-mode: both;
403
- position: absolute;
404
- left: -20px;
405
- top: -20px;
406
- border: 2px solid #fff;
407
- border-bottom-color: transparent !important;
408
- border-top-color: transparent !important;
409
- border-radius: 100%;
410
- height: 35px;
411
- width: 35px;
412
- -webkit-animation: rotate 1s 0s ease-in-out infinite;
413
- animation: rotate 1s 0s ease-in-out infinite;
414
- }
415
- .ball-clip-rotate-multiple > div:last-child {
416
- display: inline-block;
417
- top: -10px;
418
- left: -10px;
419
- width: 15px;
420
- height: 15px;
421
- border-color: #fff;
422
- border-bottom-color: transparent !important;
423
- border-top-color: transparent !important;
424
- background-color: transparent !important;
425
- -webkit-animation-duration: 0.5s;
426
- animation-duration: 0.5s;
427
- -webkit-animation-direction: reverse;
428
- animation-direction: reverse;
429
- }
430
- @-webkit-keyframes ball-scale-ripple {
431
- 0% {
432
- -webkit-transform: scale(0.1);
433
- transform: scale(0.1);
434
- opacity: 1;
435
- }
436
- 70% {
437
- -webkit-transform: scale(1);
438
- transform: scale(1);
439
- opacity: 0.7;
440
- }
441
- 100% {
442
- opacity: 0.0;
443
- }
444
- }
445
- @keyframes ball-scale-ripple {
446
- 0% {
447
- -webkit-transform: scale(0.1);
448
- transform: scale(0.1);
449
- opacity: 1;
450
- }
451
- 70% {
452
- -webkit-transform: scale(1);
453
- transform: scale(1);
454
- opacity: 0.7;
455
- }
456
- 100% {
457
- opacity: 0.0;
458
- }
459
- }
460
- .ball-scale-ripple > div {
461
- -webkit-animation-fill-mode: both;
462
- animation-fill-mode: both;
463
- height: 50px;
464
- width: 50px;
465
- border-radius: 100%;
466
- border: 2px solid #fff;
467
- background-color: transparent !important;
468
- -webkit-animation: ball-scale-ripple 1s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
469
- animation: ball-scale-ripple 1s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
470
- }
471
- @-webkit-keyframes ball-scale-ripple-multiple {
472
- 0% {
473
- -webkit-transform: scale(0.1);
474
- transform: scale(0.1);
475
- opacity: 1;
476
- }
477
- 70% {
478
- -webkit-transform: scale(1);
479
- transform: scale(1);
480
- opacity: 0.7;
481
- }
482
- 100% {
483
- opacity: 0.0;
484
- }
485
- }
486
- @keyframes ball-scale-ripple-multiple {
487
- 0% {
488
- -webkit-transform: scale(0.1);
489
- transform: scale(0.1);
490
- opacity: 1;
491
- }
492
- 70% {
493
- -webkit-transform: scale(1);
494
- transform: scale(1);
495
- opacity: 0.7;
496
- }
497
- 100% {
498
- opacity: 0.0;
499
- }
500
- }
501
- .ball-scale-ripple-multiple {
502
- position: relative;
503
- -webkit-transform: translateY(-25px);
504
- -ms-transform: translateY(-25px);
505
- transform: translateY(-25px);
506
- }
507
- .ball-scale-ripple-multiple > div:nth-child(0) {
508
- -webkit-animation-delay: -0.8s;
509
- animation-delay: -0.8s;
510
- }
511
- .ball-scale-ripple-multiple > div:nth-child(1) {
512
- -webkit-animation-delay: -0.6s;
513
- animation-delay: -0.6s;
514
- }
515
- .ball-scale-ripple-multiple > div:nth-child(2) {
516
- -webkit-animation-delay: -0.4s;
517
- animation-delay: -0.4s;
518
- }
519
- .ball-scale-ripple-multiple > div:nth-child(3) {
520
- -webkit-animation-delay: -0.2s;
521
- animation-delay: -0.2s;
522
- }
523
- .ball-scale-ripple-multiple > div {
524
- -webkit-animation-fill-mode: both;
525
- animation-fill-mode: both;
526
- position: absolute;
527
- top: -2px;
528
- left: -26px;
529
- width: 50px;
530
- height: 50px;
531
- border-radius: 100%;
532
- border: 2px solid #fff;
533
- background-color: transparent !important;
534
- -webkit-animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
535
- animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
536
- }
537
- @-webkit-keyframes ball-beat {
538
- 50% {
539
- opacity: 0.2;
540
- -webkit-transform: scale(0.75);
541
- transform: scale(0.75);
542
- }
543
- 100% {
544
- opacity: 1;
545
- -webkit-transform: scale(1);
546
- transform: scale(1);
547
- }
548
- }
549
- @keyframes ball-beat {
550
- 50% {
551
- opacity: 0.2;
552
- -webkit-transform: scale(0.75);
553
- transform: scale(0.75);
554
- }
555
- 100% {
556
- opacity: 1;
557
- -webkit-transform: scale(1);
558
- transform: scale(1);
559
- }
560
- }
561
- .ball-beat > div {
562
- background-color: #fff;
563
- width: 15px;
564
- height: 15px;
565
- border-radius: 100%;
566
- margin: 2px;
567
- -webkit-animation-fill-mode: both;
568
- animation-fill-mode: both;
569
- display: inline-block;
570
- -webkit-animation: ball-beat 0.7s 0s infinite linear;
571
- animation: ball-beat 0.7s 0s infinite linear;
572
- }
573
- .ball-beat > div:nth-child(2n-1) {
574
- -webkit-animation-delay: -0.35s !important;
575
- animation-delay: -0.35s !important;
576
- }
577
- @-webkit-keyframes ball-scale-multiple {
578
- 0% {
579
- -webkit-transform: scale(0);
580
- transform: scale(0);
581
- opacity: 0;
582
- }
583
- 5% {
584
- opacity: 1;
585
- }
586
- 100% {
587
- -webkit-transform: scale(1);
588
- transform: scale(1);
589
- opacity: 0;
590
- }
591
- }
592
- @keyframes ball-scale-multiple {
593
- 0% {
594
- -webkit-transform: scale(0);
595
- transform: scale(0);
596
- opacity: 0;
597
- }
598
- 5% {
599
- opacity: 1;
600
- }
601
- 100% {
602
- -webkit-transform: scale(1);
603
- transform: scale(1);
604
- opacity: 0;
605
- }
606
- }
607
- .ball-scale-multiple {
608
- position: relative;
609
- -webkit-transform: translateY(-30px);
610
- -ms-transform: translateY(-30px);
611
- transform: translateY(-30px);
612
- }
613
- .ball-scale-multiple > div:nth-child(2) {
614
- -webkit-animation-delay: -0.4s;
615
- animation-delay: -0.4s;
616
- }
617
- .ball-scale-multiple > div:nth-child(3) {
618
- -webkit-animation-delay: -0.2s;
619
- animation-delay: -0.2s;
620
- }
621
- .ball-scale-multiple > div {
622
- background-color: #fff;
623
- width: 15px;
624
- height: 15px;
625
- border-radius: 100%;
626
- margin: 2px;
627
- -webkit-animation-fill-mode: both;
628
- animation-fill-mode: both;
629
- position: absolute;
630
- left: -30px;
631
- top: 0px;
632
- opacity: 0;
633
- margin: 0;
634
- width: 60px;
635
- height: 60px;
636
- -webkit-animation: ball-scale-multiple 1s 0s linear infinite;
637
- animation: ball-scale-multiple 1s 0s linear infinite;
638
- }
639
- @-webkit-keyframes ball-triangle-path-1 {
640
- 33% {
641
- -webkit-transform: translate(25px, -50px);
642
- transform: translate(25px, -50px);
643
- }
644
- 66% {
645
- -webkit-transform: translate(50px, 0px);
646
- transform: translate(50px, 0px);
647
- }
648
- 100% {
649
- -webkit-transform: translate(0px, 0px);
650
- transform: translate(0px, 0px);
651
- }
652
- }
653
- @keyframes ball-triangle-path-1 {
654
- 33% {
655
- -webkit-transform: translate(25px, -50px);
656
- transform: translate(25px, -50px);
657
- }
658
- 66% {
659
- -webkit-transform: translate(50px, 0px);
660
- transform: translate(50px, 0px);
661
- }
662
- 100% {
663
- -webkit-transform: translate(0px, 0px);
664
- transform: translate(0px, 0px);
665
- }
666
- }
667
- @-webkit-keyframes ball-triangle-path-2 {
668
- 33% {
669
- -webkit-transform: translate(25px, 50px);
670
- transform: translate(25px, 50px);
671
- }
672
- 66% {
673
- -webkit-transform: translate(-25px, 50px);
674
- transform: translate(-25px, 50px);
675
- }
676
- 100% {
677
- -webkit-transform: translate(0px, 0px);
678
- transform: translate(0px, 0px);
679
- }
680
- }
681
- @keyframes ball-triangle-path-2 {
682
- 33% {
683
- -webkit-transform: translate(25px, 50px);
684
- transform: translate(25px, 50px);
685
- }
686
- 66% {
687
- -webkit-transform: translate(-25px, 50px);
688
- transform: translate(-25px, 50px);
689
- }
690
- 100% {
691
- -webkit-transform: translate(0px, 0px);
692
- transform: translate(0px, 0px);
693
- }
694
- }
695
- @-webkit-keyframes ball-triangle-path-3 {
696
- 33% {
697
- -webkit-transform: translate(-50px, 0px);
698
- transform: translate(-50px, 0px);
699
- }
700
- 66% {
701
- -webkit-transform: translate(-25px, -50px);
702
- transform: translate(-25px, -50px);
703
- }
704
- 100% {
705
- -webkit-transform: translate(0px, 0px);
706
- transform: translate(0px, 0px);
707
- }
708
- }
709
- @keyframes ball-triangle-path-3 {
710
- 33% {
711
- -webkit-transform: translate(-50px, 0px);
712
- transform: translate(-50px, 0px);
713
- }
714
- 66% {
715
- -webkit-transform: translate(-25px, -50px);
716
- transform: translate(-25px, -50px);
717
- }
718
- 100% {
719
- -webkit-transform: translate(0px, 0px);
720
- transform: translate(0px, 0px);
721
- }
722
- }
723
- .ball-triangle-path {
724
- position: relative;
725
- -webkit-transform: translate(-29.994px, -37.50938px);
726
- -ms-transform: translate(-29.994px, -37.50938px);
727
- transform: translate(-29.994px, -37.50938px);
728
- }
729
- .ball-triangle-path > div:nth-child(1) {
730
- -webkit-animation-name: ball-triangle-path-1;
731
- animation-name: ball-triangle-path-1;
732
- -webkit-animation-delay: 0;
733
- animation-delay: 0;
734
- -webkit-animation-duration: 2s;
735
- animation-duration: 2s;
736
- -webkit-animation-timing-function: ease-in-out;
737
- animation-timing-function: ease-in-out;
738
- -webkit-animation-iteration-count: infinite;
739
- animation-iteration-count: infinite;
740
- }
741
- .ball-triangle-path > div:nth-child(2) {
742
- -webkit-animation-name: ball-triangle-path-2;
743
- animation-name: ball-triangle-path-2;
744
- -webkit-animation-delay: 0;
745
- animation-delay: 0;
746
- -webkit-animation-duration: 2s;
747
- animation-duration: 2s;
748
- -webkit-animation-timing-function: ease-in-out;
749
- animation-timing-function: ease-in-out;
750
- -webkit-animation-iteration-count: infinite;
751
- animation-iteration-count: infinite;
752
- }
753
- .ball-triangle-path > div:nth-child(3) {
754
- -webkit-animation-name: ball-triangle-path-3;
755
- animation-name: ball-triangle-path-3;
756
- -webkit-animation-delay: 0;
757
- animation-delay: 0;
758
- -webkit-animation-duration: 2s;
759
- animation-duration: 2s;
760
- -webkit-animation-timing-function: ease-in-out;
761
- animation-timing-function: ease-in-out;
762
- -webkit-animation-iteration-count: infinite;
763
- animation-iteration-count: infinite;
764
- }
765
- .ball-triangle-path > div {
766
- -webkit-animation-fill-mode: both;
767
- animation-fill-mode: both;
768
- position: absolute;
769
- width: 10px;
770
- height: 10px;
771
- border-radius: 100%;
772
- border: 1px solid #fff;
773
- background-color: transparent !important;
774
- }
775
- .ball-triangle-path > div:nth-of-type(1) {
776
- top: 50px;
777
- }
778
- .ball-triangle-path > div:nth-of-type(2) {
779
- left: 25px;
780
- }
781
- .ball-triangle-path > div:nth-of-type(3) {
782
- top: 50px;
783
- left: 50px;
784
- }
785
- @-webkit-keyframes ball-pulse-rise-even {
786
- 0% {
787
- -webkit-transform: scale(1.1);
788
- transform: scale(1.1);
789
- }
790
- 25% {
791
- -webkit-transform: translateY(-30px);
792
- transform: translateY(-30px);
793
- }
794
- 50% {
795
- -webkit-transform: scale(0.4);
796
- transform: scale(0.4);
797
- }
798
- 75% {
799
- -webkit-transform: translateY(30px);
800
- transform: translateY(30px);
801
- }
802
- 100% {
803
- -webkit-transform: translateY(0);
804
- transform: translateY(0);
805
- -webkit-transform: scale(1);
806
- transform: scale(1);
807
- }
808
- }
809
- @keyframes ball-pulse-rise-even {
810
- 0% {
811
- -webkit-transform: scale(1.1);
812
- transform: scale(1.1);
813
- }
814
- 25% {
815
- -webkit-transform: translateY(-30px);
816
- transform: translateY(-30px);
817
- }
818
- 50% {
819
- -webkit-transform: scale(0.4);
820
- transform: scale(0.4);
821
- }
822
- 75% {
823
- -webkit-transform: translateY(30px);
824
- transform: translateY(30px);
825
- }
826
- 100% {
827
- -webkit-transform: translateY(0);
828
- transform: translateY(0);
829
- -webkit-transform: scale(1);
830
- transform: scale(1);
831
- }
832
- }
833
- @-webkit-keyframes ball-pulse-rise-odd {
834
- 0% {
835
- -webkit-transform: scale(0.4);
836
- transform: scale(0.4);
837
- }
838
- 25% {
839
- -webkit-transform: translateY(30px);
840
- transform: translateY(30px);
841
- }
842
- 50% {
843
- -webkit-transform: scale(1.1);
844
- transform: scale(1.1);
845
- }
846
- 75% {
847
- -webkit-transform: translateY(-30px);
848
- transform: translateY(-30px);
849
- }
850
- 100% {
851
- -webkit-transform: translateY(0);
852
- transform: translateY(0);
853
- -webkit-transform: scale(0.75);
854
- transform: scale(0.75);
855
- }
856
- }
857
- @keyframes ball-pulse-rise-odd {
858
- 0% {
859
- -webkit-transform: scale(0.4);
860
- transform: scale(0.4);
861
- }
862
- 25% {
863
- -webkit-transform: translateY(30px);
864
- transform: translateY(30px);
865
- }
866
- 50% {
867
- -webkit-transform: scale(1.1);
868
- transform: scale(1.1);
869
- }
870
- 75% {
871
- -webkit-transform: translateY(-30px);
872
- transform: translateY(-30px);
873
- }
874
- 100% {
875
- -webkit-transform: translateY(0);
876
- transform: translateY(0);
877
- -webkit-transform: scale(0.75);
878
- transform: scale(0.75);
879
- }
880
- }
881
- .ball-pulse-rise > div {
882
- background-color: #fff;
883
- width: 15px;
884
- height: 15px;
885
- border-radius: 100%;
886
- margin: 2px;
887
- -webkit-animation-fill-mode: both;
888
- animation-fill-mode: both;
889
- display: inline-block;
890
- -webkit-animation-duration: 1s;
891
- animation-duration: 1s;
892
- -webkit-animation-timing-function: cubic-bezier(0.15, 0.46, 0.9, 0.6);
893
- animation-timing-function: cubic-bezier(0.15, 0.46, 0.9, 0.6);
894
- -webkit-animation-iteration-count: infinite;
895
- animation-iteration-count: infinite;
896
- -webkit-animation-delay: 0;
897
- animation-delay: 0;
898
- }
899
- .ball-pulse-rise > div:nth-child(2n) {
900
- -webkit-animation-name: ball-pulse-rise-even;
901
- animation-name: ball-pulse-rise-even;
902
- }
903
- .ball-pulse-rise > div:nth-child(2n-1) {
904
- -webkit-animation-name: ball-pulse-rise-odd;
905
- animation-name: ball-pulse-rise-odd;
906
- }
907
- @-webkit-keyframes ball-grid-beat {
908
- 50% {
909
- opacity: 0.7;
910
- }
911
- 100% {
912
- opacity: 1;
913
- }
914
- }
915
- @keyframes ball-grid-beat {
916
- 50% {
917
- opacity: 0.7;
918
- }
919
- 100% {
920
- opacity: 1;
921
- }
922
- }
923
- .ball-grid-beat {
924
- width: 57px;
925
- }
926
- .ball-grid-beat > div:nth-child(1) {
927
- -webkit-animation-delay: 0.44s;
928
- animation-delay: 0.44s;
929
- -webkit-animation-duration: 1.27s;
930
- animation-duration: 1.27s;
931
- }
932
- .ball-grid-beat > div:nth-child(2) {
933
- -webkit-animation-delay: 0.2s;
934
- animation-delay: 0.2s;
935
- -webkit-animation-duration: 1.52s;
936
- animation-duration: 1.52s;
937
- }
938
- .ball-grid-beat > div:nth-child(3) {
939
- -webkit-animation-delay: 0.14s;
940
- animation-delay: 0.14s;
941
- -webkit-animation-duration: 0.61s;
942
- animation-duration: 0.61s;
943
- }
944
- .ball-grid-beat > div:nth-child(4) {
945
- -webkit-animation-delay: 0.15s;
946
- animation-delay: 0.15s;
947
- -webkit-animation-duration: 0.82s;
948
- animation-duration: 0.82s;
949
- }
950
- .ball-grid-beat > div:nth-child(5) {
951
- -webkit-animation-delay: -0.01s;
952
- animation-delay: -0.01s;
953
- -webkit-animation-duration: 1.24s;
954
- animation-duration: 1.24s;
955
- }
956
- .ball-grid-beat > div:nth-child(6) {
957
- -webkit-animation-delay: -0.07s;
958
- animation-delay: -0.07s;
959
- -webkit-animation-duration: 1.35s;
960
- animation-duration: 1.35s;
961
- }
962
- .ball-grid-beat > div:nth-child(7) {
963
- -webkit-animation-delay: 0.29s;
964
- animation-delay: 0.29s;
965
- -webkit-animation-duration: 1.44s;
966
- animation-duration: 1.44s;
967
- }
968
- .ball-grid-beat > div:nth-child(8) {
969
- -webkit-animation-delay: 0.63s;
970
- animation-delay: 0.63s;
971
- -webkit-animation-duration: 1.19s;
972
- animation-duration: 1.19s;
973
- }
974
- .ball-grid-beat > div:nth-child(9) {
975
- -webkit-animation-delay: -0.18s;
976
- animation-delay: -0.18s;
977
- -webkit-animation-duration: 1.48s;
978
- animation-duration: 1.48s;
979
- }
980
- .ball-grid-beat > div {
981
- background-color: #fff;
982
- width: 15px;
983
- height: 15px;
984
- border-radius: 100%;
985
- margin: 2px;
986
- -webkit-animation-fill-mode: both;
987
- animation-fill-mode: both;
988
- display: inline-block;
989
- float: left;
990
- -webkit-animation-name: ball-grid-beat;
991
- animation-name: ball-grid-beat;
992
- -webkit-animation-iteration-count: infinite;
993
- animation-iteration-count: infinite;
994
- -webkit-animation-delay: 0;
995
- animation-delay: 0;
996
- }
997
- @-webkit-keyframes ball-grid-pulse {
998
- 0% {
999
- -webkit-transform: scale(1);
1000
- transform: scale(1);
1001
- }
1002
- 50% {
1003
- -webkit-transform: scale(0.5);
1004
- transform: scale(0.5);
1005
- opacity: 0.7;
1006
- }
1007
- 100% {
1008
- -webkit-transform: scale(1);
1009
- transform: scale(1);
1010
- opacity: 1;
1011
- }
1012
- }
1013
- @keyframes ball-grid-pulse {
1014
- 0% {
1015
- -webkit-transform: scale(1);
1016
- transform: scale(1);
1017
- }
1018
- 50% {
1019
- -webkit-transform: scale(0.5);
1020
- transform: scale(0.5);
1021
- opacity: 0.7;
1022
- }
1023
- 100% {
1024
- -webkit-transform: scale(1);
1025
- transform: scale(1);
1026
- opacity: 1;
1027
- }
1028
- }
1029
- .ball-grid-pulse {
1030
- width: 57px;
1031
- }
1032
- .ball-grid-pulse > div:nth-child(1) {
1033
- -webkit-animation-delay: 0.58s;
1034
- animation-delay: 0.58s;
1035
- -webkit-animation-duration: 0.9s;
1036
- animation-duration: 0.9s;
1037
- }
1038
- .ball-grid-pulse > div:nth-child(2) {
1039
- -webkit-animation-delay: 0.01s;
1040
- animation-delay: 0.01s;
1041
- -webkit-animation-duration: 0.94s;
1042
- animation-duration: 0.94s;
1043
- }
1044
- .ball-grid-pulse > div:nth-child(3) {
1045
- -webkit-animation-delay: 0.25s;
1046
- animation-delay: 0.25s;
1047
- -webkit-animation-duration: 1.43s;
1048
- animation-duration: 1.43s;
1049
- }
1050
- .ball-grid-pulse > div:nth-child(4) {
1051
- -webkit-animation-delay: -0.03s;
1052
- animation-delay: -0.03s;
1053
- -webkit-animation-duration: 0.74s;
1054
- animation-duration: 0.74s;
1055
- }
1056
- .ball-grid-pulse > div:nth-child(5) {
1057
- -webkit-animation-delay: 0.21s;
1058
- animation-delay: 0.21s;
1059
- -webkit-animation-duration: 0.68s;
1060
- animation-duration: 0.68s;
1061
- }
1062
- .ball-grid-pulse > div:nth-child(6) {
1063
- -webkit-animation-delay: 0.25s;
1064
- animation-delay: 0.25s;
1065
- -webkit-animation-duration: 1.17s;
1066
- animation-duration: 1.17s;
1067
- }
1068
- .ball-grid-pulse > div:nth-child(7) {
1069
- -webkit-animation-delay: 0.46s;
1070
- animation-delay: 0.46s;
1071
- -webkit-animation-duration: 1.41s;
1072
- animation-duration: 1.41s;
1073
- }
1074
- .ball-grid-pulse > div:nth-child(8) {
1075
- -webkit-animation-delay: 0.02s;
1076
- animation-delay: 0.02s;
1077
- -webkit-animation-duration: 1.56s;
1078
- animation-duration: 1.56s;
1079
- }
1080
- .ball-grid-pulse > div:nth-child(9) {
1081
- -webkit-animation-delay: 0.13s;
1082
- animation-delay: 0.13s;
1083
- -webkit-animation-duration: 0.78s;
1084
- animation-duration: 0.78s;
1085
- }
1086
- .ball-grid-pulse > div {
1087
- background-color: #fff;
1088
- width: 15px;
1089
- height: 15px;
1090
- border-radius: 100%;
1091
- margin: 2px;
1092
- -webkit-animation-fill-mode: both;
1093
- animation-fill-mode: both;
1094
- display: inline-block;
1095
- float: left;
1096
- -webkit-animation-name: ball-grid-pulse;
1097
- animation-name: ball-grid-pulse;
1098
- -webkit-animation-iteration-count: infinite;
1099
- animation-iteration-count: infinite;
1100
- -webkit-animation-delay: 0;
1101
- animation-delay: 0;
1102
- }
1103
- @-webkit-keyframes ball-spin-fade-loader {
1104
- 50% {
1105
- opacity: 0.3;
1106
- -webkit-transform: scale(0.4);
1107
- transform: scale(0.4);
1108
- }
1109
- 100% {
1110
- opacity: 1;
1111
- -webkit-transform: scale(1);
1112
- transform: scale(1);
1113
- }
1114
- }
1115
- @keyframes ball-spin-fade-loader {
1116
- 50% {
1117
- opacity: 0.3;
1118
- -webkit-transform: scale(0.4);
1119
- transform: scale(0.4);
1120
- }
1121
- 100% {
1122
- opacity: 1;
1123
- -webkit-transform: scale(1);
1124
- transform: scale(1);
1125
- }
1126
- }
1127
- .ball-spin-fade-loader {
1128
- position: relative;
1129
- top: -10px;
1130
- left: -10px;
1131
- }
1132
- .ball-spin-fade-loader > div:nth-child(1) {
1133
- top: 25px;
1134
- left: 0;
1135
- -webkit-animation: ball-spin-fade-loader 1s -0.96s infinite linear;
1136
- animation: ball-spin-fade-loader 1s -0.96s infinite linear;
1137
- }
1138
- .ball-spin-fade-loader > div:nth-child(2) {
1139
- top: 17.04545px;
1140
- left: 17.04545px;
1141
- -webkit-animation: ball-spin-fade-loader 1s -0.84s infinite linear;
1142
- animation: ball-spin-fade-loader 1s -0.84s infinite linear;
1143
- }
1144
- .ball-spin-fade-loader > div:nth-child(3) {
1145
- top: 0;
1146
- left: 25px;
1147
- -webkit-animation: ball-spin-fade-loader 1s -0.72s infinite linear;
1148
- animation: ball-spin-fade-loader 1s -0.72s infinite linear;
1149
- }
1150
- .ball-spin-fade-loader > div:nth-child(4) {
1151
- top: -17.04545px;
1152
- left: 17.04545px;
1153
- -webkit-animation: ball-spin-fade-loader 1s -0.6s infinite linear;
1154
- animation: ball-spin-fade-loader 1s -0.6s infinite linear;
1155
- }
1156
- .ball-spin-fade-loader > div:nth-child(5) {
1157
- top: -25px;
1158
- left: 0;
1159
- -webkit-animation: ball-spin-fade-loader 1s -0.48s infinite linear;
1160
- animation: ball-spin-fade-loader 1s -0.48s infinite linear;
1161
- }
1162
- .ball-spin-fade-loader > div:nth-child(6) {
1163
- top: -17.04545px;
1164
- left: -17.04545px;
1165
- -webkit-animation: ball-spin-fade-loader 1s -0.36s infinite linear;
1166
- animation: ball-spin-fade-loader 1s -0.36s infinite linear;
1167
- }
1168
- .ball-spin-fade-loader > div:nth-child(7) {
1169
- top: 0;
1170
- left: -25px;
1171
- -webkit-animation: ball-spin-fade-loader 1s -0.24s infinite linear;
1172
- animation: ball-spin-fade-loader 1s -0.24s infinite linear;
1173
- }
1174
- .ball-spin-fade-loader > div:nth-child(8) {
1175
- top: 17.04545px;
1176
- left: -17.04545px;
1177
- -webkit-animation: ball-spin-fade-loader 1s -0.12s infinite linear;
1178
- animation: ball-spin-fade-loader 1s -0.12s infinite linear;
1179
- }
1180
- .ball-spin-fade-loader > div {
1181
- background-color: #fff;
1182
- width: 15px;
1183
- height: 15px;
1184
- border-radius: 100%;
1185
- margin: 2px;
1186
- -webkit-animation-fill-mode: both;
1187
- animation-fill-mode: both;
1188
- position: absolute;
1189
- }
1190
- @-webkit-keyframes ball-spin-loader {
1191
- 75% {
1192
- opacity: 0.2;
1193
- }
1194
- 100% {
1195
- opacity: 1;
1196
- }
1197
- }
1198
- @keyframes ball-spin-loader {
1199
- 75% {
1200
- opacity: 0.2;
1201
- }
1202
- 100% {
1203
- opacity: 1;
1204
- }
1205
- }
1206
- .ball-spin-loader {
1207
- position: relative;
1208
- }
1209
- .ball-spin-loader > span:nth-child(1) {
1210
- top: 45px;
1211
- left: 0;
1212
- -webkit-animation: ball-spin-loader 2s 0.9s infinite linear;
1213
- animation: ball-spin-loader 2s 0.9s infinite linear;
1214
- }
1215
- .ball-spin-loader > span:nth-child(2) {
1216
- top: 30.68182px;
1217
- left: 30.68182px;
1218
- -webkit-animation: ball-spin-loader 2s 1.8s infinite linear;
1219
- animation: ball-spin-loader 2s 1.8s infinite linear;
1220
- }
1221
- .ball-spin-loader > span:nth-child(3) {
1222
- top: 0;
1223
- left: 45px;
1224
- -webkit-animation: ball-spin-loader 2s 2.7s infinite linear;
1225
- animation: ball-spin-loader 2s 2.7s infinite linear;
1226
- }
1227
- .ball-spin-loader > span:nth-child(4) {
1228
- top: -30.68182px;
1229
- left: 30.68182px;
1230
- -webkit-animation: ball-spin-loader 2s 3.6s infinite linear;
1231
- animation: ball-spin-loader 2s 3.6s infinite linear;
1232
- }
1233
- .ball-spin-loader > span:nth-child(5) {
1234
- top: -45px;
1235
- left: 0;
1236
- -webkit-animation: ball-spin-loader 2s 4.5s infinite linear;
1237
- animation: ball-spin-loader 2s 4.5s infinite linear;
1238
- }
1239
- .ball-spin-loader > span:nth-child(6) {
1240
- top: -30.68182px;
1241
- left: -30.68182px;
1242
- -webkit-animation: ball-spin-loader 2s 5.4s infinite linear;
1243
- animation: ball-spin-loader 2s 5.4s infinite linear;
1244
- }
1245
- .ball-spin-loader > span:nth-child(7) {
1246
- top: 0;
1247
- left: -45px;
1248
- -webkit-animation: ball-spin-loader 2s 6.3s infinite linear;
1249
- animation: ball-spin-loader 2s 6.3s infinite linear;
1250
- }
1251
- .ball-spin-loader > span:nth-child(8) {
1252
- top: 30.68182px;
1253
- left: -30.68182px;
1254
- -webkit-animation: ball-spin-loader 2s 7.2s infinite linear;
1255
- animation: ball-spin-loader 2s 7.2s infinite linear;
1256
- }
1257
- .ball-spin-loader > div {
1258
- -webkit-animation-fill-mode: both;
1259
- animation-fill-mode: both;
1260
- position: absolute;
1261
- width: 15px;
1262
- height: 15px;
1263
- border-radius: 100%;
1264
- background: green;
1265
- }
1266
- @-webkit-keyframes ball-zig {
1267
- 33% {
1268
- -webkit-transform: translate(-15px, -30px);
1269
- transform: translate(-15px, -30px);
1270
- }
1271
- 66% {
1272
- -webkit-transform: translate(15px, -30px);
1273
- transform: translate(15px, -30px);
1274
- }
1275
- 100% {
1276
- -webkit-transform: translate(0, 0);
1277
- transform: translate(0, 0);
1278
- }
1279
- }
1280
- @keyframes ball-zig {
1281
- 33% {
1282
- -webkit-transform: translate(-15px, -30px);
1283
- transform: translate(-15px, -30px);
1284
- }
1285
- 66% {
1286
- -webkit-transform: translate(15px, -30px);
1287
- transform: translate(15px, -30px);
1288
- }
1289
- 100% {
1290
- -webkit-transform: translate(0, 0);
1291
- transform: translate(0, 0);
1292
- }
1293
- }
1294
- @-webkit-keyframes ball-zag {
1295
- 33% {
1296
- -webkit-transform: translate(15px, 30px);
1297
- transform: translate(15px, 30px);
1298
- }
1299
- 66% {
1300
- -webkit-transform: translate(-15px, 30px);
1301
- transform: translate(-15px, 30px);
1302
- }
1303
- 100% {
1304
- -webkit-transform: translate(0, 0);
1305
- transform: translate(0, 0);
1306
- }
1307
- }
1308
- @keyframes ball-zag {
1309
- 33% {
1310
- -webkit-transform: translate(15px, 30px);
1311
- transform: translate(15px, 30px);
1312
- }
1313
- 66% {
1314
- -webkit-transform: translate(-15px, 30px);
1315
- transform: translate(-15px, 30px);
1316
- }
1317
- 100% {
1318
- -webkit-transform: translate(0, 0);
1319
- transform: translate(0, 0);
1320
- }
1321
- }
1322
- .ball-zig-zag {
1323
- position: relative;
1324
- -webkit-transform: translate(-15px, -15px);
1325
- -ms-transform: translate(-15px, -15px);
1326
- transform: translate(-15px, -15px);
1327
- }
1328
- .ball-zig-zag > div {
1329
- background-color: #fff;
1330
- width: 15px;
1331
- height: 15px;
1332
- border-radius: 100%;
1333
- margin: 2px;
1334
- -webkit-animation-fill-mode: both;
1335
- animation-fill-mode: both;
1336
- position: absolute;
1337
- margin-left: 15px;
1338
- top: 4px;
1339
- left: -7px;
1340
- }
1341
- .ball-zig-zag > div:first-child {
1342
- -webkit-animation: ball-zig 0.7s 0s infinite linear;
1343
- animation: ball-zig 0.7s 0s infinite linear;
1344
- }
1345
- .ball-zig-zag > div:last-child {
1346
- -webkit-animation: ball-zag 0.7s 0s infinite linear;
1347
- animation: ball-zag 0.7s 0s infinite linear;
1348
- }
1349
- @-webkit-keyframes ball-zig-deflect {
1350
- 17% {
1351
- -webkit-transform: translate(-15px, -30px);
1352
- transform: translate(-15px, -30px);
1353
- }
1354
- 34% {
1355
- -webkit-transform: translate(15px, -30px);
1356
- transform: translate(15px, -30px);
1357
- }
1358
- 50% {
1359
- -webkit-transform: translate(0, 0);
1360
- transform: translate(0, 0);
1361
- }
1362
- 67% {
1363
- -webkit-transform: translate(15px, -30px);
1364
- transform: translate(15px, -30px);
1365
- }
1366
- 84% {
1367
- -webkit-transform: translate(-15px, -30px);
1368
- transform: translate(-15px, -30px);
1369
- }
1370
- 100% {
1371
- -webkit-transform: translate(0, 0);
1372
- transform: translate(0, 0);
1373
- }
1374
- }
1375
- @keyframes ball-zig-deflect {
1376
- 17% {
1377
- -webkit-transform: translate(-15px, -30px);
1378
- transform: translate(-15px, -30px);
1379
- }
1380
- 34% {
1381
- -webkit-transform: translate(15px, -30px);
1382
- transform: translate(15px, -30px);
1383
- }
1384
- 50% {
1385
- -webkit-transform: translate(0, 0);
1386
- transform: translate(0, 0);
1387
- }
1388
- 67% {
1389
- -webkit-transform: translate(15px, -30px);
1390
- transform: translate(15px, -30px);
1391
- }
1392
- 84% {
1393
- -webkit-transform: translate(-15px, -30px);
1394
- transform: translate(-15px, -30px);
1395
- }
1396
- 100% {
1397
- -webkit-transform: translate(0, 0);
1398
- transform: translate(0, 0);
1399
- }
1400
- }
1401
- @-webkit-keyframes ball-zag-deflect {
1402
- 17% {
1403
- -webkit-transform: translate(15px, 30px);
1404
- transform: translate(15px, 30px);
1405
- }
1406
- 34% {
1407
- -webkit-transform: translate(-15px, 30px);
1408
- transform: translate(-15px, 30px);
1409
- }
1410
- 50% {
1411
- -webkit-transform: translate(0, 0);
1412
- transform: translate(0, 0);
1413
- }
1414
- 67% {
1415
- -webkit-transform: translate(-15px, 30px);
1416
- transform: translate(-15px, 30px);
1417
- }
1418
- 84% {
1419
- -webkit-transform: translate(15px, 30px);
1420
- transform: translate(15px, 30px);
1421
- }
1422
- 100% {
1423
- -webkit-transform: translate(0, 0);
1424
- transform: translate(0, 0);
1425
- }
1426
- }
1427
- @keyframes ball-zag-deflect {
1428
- 17% {
1429
- -webkit-transform: translate(15px, 30px);
1430
- transform: translate(15px, 30px);
1431
- }
1432
- 34% {
1433
- -webkit-transform: translate(-15px, 30px);
1434
- transform: translate(-15px, 30px);
1435
- }
1436
- 50% {
1437
- -webkit-transform: translate(0, 0);
1438
- transform: translate(0, 0);
1439
- }
1440
- 67% {
1441
- -webkit-transform: translate(-15px, 30px);
1442
- transform: translate(-15px, 30px);
1443
- }
1444
- 84% {
1445
- -webkit-transform: translate(15px, 30px);
1446
- transform: translate(15px, 30px);
1447
- }
1448
- 100% {
1449
- -webkit-transform: translate(0, 0);
1450
- transform: translate(0, 0);
1451
- }
1452
- }
1453
- .ball-zig-zag-deflect {
1454
- position: relative;
1455
- -webkit-transform: translate(-15px, -15px);
1456
- -ms-transform: translate(-15px, -15px);
1457
- transform: translate(-15px, -15px);
1458
- }
1459
- .ball-zig-zag-deflect > div {
1460
- background-color: #fff;
1461
- width: 15px;
1462
- height: 15px;
1463
- border-radius: 100%;
1464
- margin: 2px;
1465
- -webkit-animation-fill-mode: both;
1466
- animation-fill-mode: both;
1467
- position: absolute;
1468
- margin-left: 15px;
1469
- top: 4px;
1470
- left: -7px;
1471
- }
1472
- .ball-zig-zag-deflect > div:first-child {
1473
- -webkit-animation: ball-zig-deflect 1.5s 0s infinite linear;
1474
- animation: ball-zig-deflect 1.5s 0s infinite linear;
1475
- }
1476
- .ball-zig-zag-deflect > div:last-child {
1477
- -webkit-animation: ball-zag-deflect 1.5s 0s infinite linear;
1478
- animation: ball-zag-deflect 1.5s 0s infinite linear;
1479
- }
1480
- /**
1481
- * Lines
1482
- */
1483
- @-webkit-keyframes line-scale {
1484
- 0% {
1485
- -webkit-transform: scaley(1);
1486
- transform: scaley(1);
1487
- }
1488
- 50% {
1489
- -webkit-transform: scaley(0.4);
1490
- transform: scaley(0.4);
1491
- }
1492
- 100% {
1493
- -webkit-transform: scaley(1);
1494
- transform: scaley(1);
1495
- }
1496
- }
1497
- @keyframes line-scale {
1498
- 0% {
1499
- -webkit-transform: scaley(1);
1500
- transform: scaley(1);
1501
- }
1502
- 50% {
1503
- -webkit-transform: scaley(0.4);
1504
- transform: scaley(0.4);
1505
- }
1506
- 100% {
1507
- -webkit-transform: scaley(1);
1508
- transform: scaley(1);
1509
- }
1510
- }
1511
- .line-scale > div:nth-child(1) {
1512
- -webkit-animation: line-scale 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
1513
- animation: line-scale 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
1514
- }
1515
- .line-scale > div:nth-child(2) {
1516
- -webkit-animation: line-scale 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
1517
- animation: line-scale 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
1518
- }
1519
- .line-scale > div:nth-child(3) {
1520
- -webkit-animation: line-scale 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
1521
- animation: line-scale 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
1522
- }
1523
- .line-scale > div:nth-child(4) {
1524
- -webkit-animation: line-scale 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
1525
- animation: line-scale 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
1526
- }
1527
- .line-scale > div:nth-child(5) {
1528
- -webkit-animation: line-scale 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
1529
- animation: line-scale 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
1530
- }
1531
- .line-scale > div {
1532
- background-color: #fff;
1533
- width: 4px;
1534
- height: 35px;
1535
- border-radius: 2px;
1536
- margin: 2px;
1537
- -webkit-animation-fill-mode: both;
1538
- animation-fill-mode: both;
1539
- display: inline-block;
1540
- }
1541
- @-webkit-keyframes line-scale-party {
1542
- 0% {
1543
- -webkit-transform: scale(1);
1544
- transform: scale(1);
1545
- }
1546
- 50% {
1547
- -webkit-transform: scale(0.5);
1548
- transform: scale(0.5);
1549
- }
1550
- 100% {
1551
- -webkit-transform: scale(1);
1552
- transform: scale(1);
1553
- }
1554
- }
1555
- @keyframes line-scale-party {
1556
- 0% {
1557
- -webkit-transform: scale(1);
1558
- transform: scale(1);
1559
- }
1560
- 50% {
1561
- -webkit-transform: scale(0.5);
1562
- transform: scale(0.5);
1563
- }
1564
- 100% {
1565
- -webkit-transform: scale(1);
1566
- transform: scale(1);
1567
- }
1568
- }
1569
- .line-scale-party > div:nth-child(1) {
1570
- -webkit-animation-delay: -0.09s;
1571
- animation-delay: -0.09s;
1572
- -webkit-animation-duration: 0.83s;
1573
- animation-duration: 0.83s;
1574
- }
1575
- .line-scale-party > div:nth-child(2) {
1576
- -webkit-animation-delay: 0.33s;
1577
- animation-delay: 0.33s;
1578
- -webkit-animation-duration: 0.64s;
1579
- animation-duration: 0.64s;
1580
- }
1581
- .line-scale-party > div:nth-child(3) {
1582
- -webkit-animation-delay: 0.32s;
1583
- animation-delay: 0.32s;
1584
- -webkit-animation-duration: 0.39s;
1585
- animation-duration: 0.39s;
1586
- }
1587
- .line-scale-party > div:nth-child(4) {
1588
- -webkit-animation-delay: 0.47s;
1589
- animation-delay: 0.47s;
1590
- -webkit-animation-duration: 0.52s;
1591
- animation-duration: 0.52s;
1592
- }
1593
- .line-scale-party > div {
1594
- background-color: #fff;
1595
- width: 4px;
1596
- height: 35px;
1597
- border-radius: 2px;
1598
- margin: 2px;
1599
- -webkit-animation-fill-mode: both;
1600
- animation-fill-mode: both;
1601
- display: inline-block;
1602
- -webkit-animation-name: line-scale-party;
1603
- animation-name: line-scale-party;
1604
- -webkit-animation-iteration-count: infinite;
1605
- animation-iteration-count: infinite;
1606
- -webkit-animation-delay: 0;
1607
- animation-delay: 0;
1608
- }
1609
- @-webkit-keyframes line-scale-pulse-out {
1610
- 0% {
1611
- -webkit-transform: scaley(1);
1612
- transform: scaley(1);
1613
- }
1614
- 50% {
1615
- -webkit-transform: scaley(0.4);
1616
- transform: scaley(0.4);
1617
- }
1618
- 100% {
1619
- -webkit-transform: scaley(1);
1620
- transform: scaley(1);
1621
- }
1622
- }
1623
- @keyframes line-scale-pulse-out {
1624
- 0% {
1625
- -webkit-transform: scaley(1);
1626
- transform: scaley(1);
1627
- }
1628
- 50% {
1629
- -webkit-transform: scaley(0.4);
1630
- transform: scaley(0.4);
1631
- }
1632
- 100% {
1633
- -webkit-transform: scaley(1);
1634
- transform: scaley(1);
1635
- }
1636
- }
1637
- .line-scale-pulse-out > div {
1638
- background-color: #fff;
1639
- width: 4px;
1640
- height: 35px;
1641
- border-radius: 2px;
1642
- margin: 2px;
1643
- -webkit-animation-fill-mode: both;
1644
- animation-fill-mode: both;
1645
- display: inline-block;
1646
- -webkit-animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
1647
- animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
1648
- }
1649
- .line-scale-pulse-out > div:nth-child(2),
1650
- .line-scale-pulse-out > div:nth-child(4) {
1651
- -webkit-animation-delay: -0.4s !important;
1652
- animation-delay: -0.4s !important;
1653
- }
1654
- .line-scale-pulse-out > div:nth-child(1),
1655
- .line-scale-pulse-out > div:nth-child(5) {
1656
- -webkit-animation-delay: -0.2s !important;
1657
- animation-delay: -0.2s !important;
1658
- }
1659
- @-webkit-keyframes line-scale-pulse-out-rapid {
1660
- 0% {
1661
- -webkit-transform: scaley(1);
1662
- transform: scaley(1);
1663
- }
1664
- 80% {
1665
- -webkit-transform: scaley(0.3);
1666
- transform: scaley(0.3);
1667
- }
1668
- 90% {
1669
- -webkit-transform: scaley(1);
1670
- transform: scaley(1);
1671
- }
1672
- }
1673
- @keyframes line-scale-pulse-out-rapid {
1674
- 0% {
1675
- -webkit-transform: scaley(1);
1676
- transform: scaley(1);
1677
- }
1678
- 80% {
1679
- -webkit-transform: scaley(0.3);
1680
- transform: scaley(0.3);
1681
- }
1682
- 90% {
1683
- -webkit-transform: scaley(1);
1684
- transform: scaley(1);
1685
- }
1686
- }
1687
- .line-scale-pulse-out-rapid > div {
1688
- background-color: #fff;
1689
- width: 4px;
1690
- height: 35px;
1691
- border-radius: 2px;
1692
- margin: 2px;
1693
- -webkit-animation-fill-mode: both;
1694
- animation-fill-mode: both;
1695
- display: inline-block;
1696
- -webkit-animation: line-scale-pulse-out-rapid 0.9s -0.5s infinite cubic-bezier(0.11, 0.49, 0.38, 0.78);
1697
- animation: line-scale-pulse-out-rapid 0.9s -0.5s infinite cubic-bezier(0.11, 0.49, 0.38, 0.78);
1698
- }
1699
- .line-scale-pulse-out-rapid > div:nth-child(2),
1700
- .line-scale-pulse-out-rapid > div:nth-child(4) {
1701
- -webkit-animation-delay: -0.25s !important;
1702
- animation-delay: -0.25s !important;
1703
- }
1704
- .line-scale-pulse-out-rapid > div:nth-child(1),
1705
- .line-scale-pulse-out-rapid > div:nth-child(5) {
1706
- -webkit-animation-delay: 0s !important;
1707
- animation-delay: 0s !important;
1708
- }
1709
- @-webkit-keyframes line-spin-fade-loader {
1710
- 50% {
1711
- opacity: 0.3;
1712
- }
1713
- 100% {
1714
- opacity: 1;
1715
- }
1716
- }
1717
- @keyframes line-spin-fade-loader {
1718
- 50% {
1719
- opacity: 0.3;
1720
- }
1721
- 100% {
1722
- opacity: 1;
1723
- }
1724
- }
1725
- .line-spin-fade-loader {
1726
- position: relative;
1727
- top: -10px;
1728
- left: -4px;
1729
- }
1730
- .line-spin-fade-loader > div:nth-child(1) {
1731
- top: 20px;
1732
- left: 0;
1733
- -webkit-animation: line-spin-fade-loader 1.2s -0.84s infinite ease-in-out;
1734
- animation: line-spin-fade-loader 1.2s -0.84s infinite ease-in-out;
1735
- }
1736
- .line-spin-fade-loader > div:nth-child(2) {
1737
- top: 13.63636px;
1738
- left: 13.63636px;
1739
- -webkit-transform: rotate(-45deg);
1740
- -ms-transform: rotate(-45deg);
1741
- transform: rotate(-45deg);
1742
- -webkit-animation: line-spin-fade-loader 1.2s -0.72s infinite ease-in-out;
1743
- animation: line-spin-fade-loader 1.2s -0.72s infinite ease-in-out;
1744
- }
1745
- .line-spin-fade-loader > div:nth-child(3) {
1746
- top: 0;
1747
- left: 20px;
1748
- -webkit-transform: rotate(90deg);
1749
- -ms-transform: rotate(90deg);
1750
- transform: rotate(90deg);
1751
- -webkit-animation: line-spin-fade-loader 1.2s -0.6s infinite ease-in-out;
1752
- animation: line-spin-fade-loader 1.2s -0.6s infinite ease-in-out;
1753
- }
1754
- .line-spin-fade-loader > div:nth-child(4) {
1755
- top: -13.63636px;
1756
- left: 13.63636px;
1757
- -webkit-transform: rotate(45deg);
1758
- -ms-transform: rotate(45deg);
1759
- transform: rotate(45deg);
1760
- -webkit-animation: line-spin-fade-loader 1.2s -0.48s infinite ease-in-out;
1761
- animation: line-spin-fade-loader 1.2s -0.48s infinite ease-in-out;
1762
- }
1763
- .line-spin-fade-loader > div:nth-child(5) {
1764
- top: -20px;
1765
- left: 0;
1766
- -webkit-animation: line-spin-fade-loader 1.2s -0.36s infinite ease-in-out;
1767
- animation: line-spin-fade-loader 1.2s -0.36s infinite ease-in-out;
1768
- }
1769
- .line-spin-fade-loader > div:nth-child(6) {
1770
- top: -13.63636px;
1771
- left: -13.63636px;
1772
- -webkit-transform: rotate(-45deg);
1773
- -ms-transform: rotate(-45deg);
1774
- transform: rotate(-45deg);
1775
- -webkit-animation: line-spin-fade-loader 1.2s -0.24s infinite ease-in-out;
1776
- animation: line-spin-fade-loader 1.2s -0.24s infinite ease-in-out;
1777
- }
1778
- .line-spin-fade-loader > div:nth-child(7) {
1779
- top: 0;
1780
- left: -20px;
1781
- -webkit-transform: rotate(90deg);
1782
- -ms-transform: rotate(90deg);
1783
- transform: rotate(90deg);
1784
- -webkit-animation: line-spin-fade-loader 1.2s -0.12s infinite ease-in-out;
1785
- animation: line-spin-fade-loader 1.2s -0.12s infinite ease-in-out;
1786
- }
1787
- .line-spin-fade-loader > div:nth-child(8) {
1788
- top: 13.63636px;
1789
- left: -13.63636px;
1790
- -webkit-transform: rotate(45deg);
1791
- -ms-transform: rotate(45deg);
1792
- transform: rotate(45deg);
1793
- -webkit-animation: line-spin-fade-loader 1.2s 0s infinite ease-in-out;
1794
- animation: line-spin-fade-loader 1.2s 0s infinite ease-in-out;
1795
- }
1796
- .line-spin-fade-loader > div {
1797
- background-color: #fff;
1798
- width: 4px;
1799
- height: 35px;
1800
- border-radius: 2px;
1801
- margin: 2px;
1802
- -webkit-animation-fill-mode: both;
1803
- animation-fill-mode: both;
1804
- position: absolute;
1805
- width: 5px;
1806
- height: 15px;
1807
- }
1808
- /**
1809
- * Misc
1810
- */
1811
- @-webkit-keyframes triangle-skew-spin {
1812
- 25% {
1813
- -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
1814
- transform: perspective(100px) rotateX(180deg) rotateY(0);
1815
- }
1816
- 50% {
1817
- -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
1818
- transform: perspective(100px) rotateX(180deg) rotateY(180deg);
1819
- }
1820
- 75% {
1821
- -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
1822
- transform: perspective(100px) rotateX(0) rotateY(180deg);
1823
- }
1824
- 100% {
1825
- -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
1826
- transform: perspective(100px) rotateX(0) rotateY(0);
1827
- }
1828
- }
1829
- @keyframes triangle-skew-spin {
1830
- 25% {
1831
- -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
1832
- transform: perspective(100px) rotateX(180deg) rotateY(0);
1833
- }
1834
- 50% {
1835
- -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
1836
- transform: perspective(100px) rotateX(180deg) rotateY(180deg);
1837
- }
1838
- 75% {
1839
- -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
1840
- transform: perspective(100px) rotateX(0) rotateY(180deg);
1841
- }
1842
- 100% {
1843
- -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
1844
- transform: perspective(100px) rotateX(0) rotateY(0);
1845
- }
1846
- }
1847
- .triangle-skew-spin > div {
1848
- -webkit-animation-fill-mode: both;
1849
- animation-fill-mode: both;
1850
- width: 0;
1851
- height: 0;
1852
- border-left: 20px solid transparent !important;
1853
- border-right: 20px solid transparent !important;
1854
- border-bottom: 20px solid #fff;
1855
- background-color: transparent !important;
1856
- -webkit-animation: triangle-skew-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
1857
- animation: triangle-skew-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
1858
- }
1859
- @-webkit-keyframes square-spin {
1860
- 25% {
1861
- -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
1862
- transform: perspective(100px) rotateX(180deg) rotateY(0);
1863
- }
1864
- 50% {
1865
- -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
1866
- transform: perspective(100px) rotateX(180deg) rotateY(180deg);
1867
- }
1868
- 75% {
1869
- -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
1870
- transform: perspective(100px) rotateX(0) rotateY(180deg);
1871
- }
1872
- 100% {
1873
- -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
1874
- transform: perspective(100px) rotateX(0) rotateY(0);
1875
- }
1876
- }
1877
- @keyframes square-spin {
1878
- 25% {
1879
- -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
1880
- transform: perspective(100px) rotateX(180deg) rotateY(0);
1881
- }
1882
- 50% {
1883
- -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
1884
- transform: perspective(100px) rotateX(180deg) rotateY(180deg);
1885
- }
1886
- 75% {
1887
- -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
1888
- transform: perspective(100px) rotateX(0) rotateY(180deg);
1889
- }
1890
- 100% {
1891
- -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
1892
- transform: perspective(100px) rotateX(0) rotateY(0);
1893
- }
1894
- }
1895
- .square-spin > div {
1896
- -webkit-animation-fill-mode: both;
1897
- animation-fill-mode: both;
1898
- width: 50px;
1899
- height: 50px;
1900
- background: #fff;
1901
- border: 1px solid red;
1902
- -webkit-animation: square-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
1903
- animation: square-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
1904
- }
1905
- @-webkit-keyframes rotate_pacman_half_up {
1906
- 0% {
1907
- -webkit-transform: rotate(270deg);
1908
- transform: rotate(270deg);
1909
- }
1910
- 50% {
1911
- -webkit-transform: rotate(360deg);
1912
- transform: rotate(360deg);
1913
- }
1914
- 100% {
1915
- -webkit-transform: rotate(270deg);
1916
- transform: rotate(270deg);
1917
- }
1918
- }
1919
- @keyframes rotate_pacman_half_up {
1920
- 0% {
1921
- -webkit-transform: rotate(270deg);
1922
- transform: rotate(270deg);
1923
- }
1924
- 50% {
1925
- -webkit-transform: rotate(360deg);
1926
- transform: rotate(360deg);
1927
- }
1928
- 100% {
1929
- -webkit-transform: rotate(270deg);
1930
- transform: rotate(270deg);
1931
- }
1932
- }
1933
- @-webkit-keyframes rotate_pacman_half_down {
1934
- 0% {
1935
- -webkit-transform: rotate(90deg);
1936
- transform: rotate(90deg);
1937
- }
1938
- 50% {
1939
- -webkit-transform: rotate(0deg);
1940
- transform: rotate(0deg);
1941
- }
1942
- 100% {
1943
- -webkit-transform: rotate(90deg);
1944
- transform: rotate(90deg);
1945
- }
1946
- }
1947
- @keyframes rotate_pacman_half_down {
1948
- 0% {
1949
- -webkit-transform: rotate(90deg);
1950
- transform: rotate(90deg);
1951
- }
1952
- 50% {
1953
- -webkit-transform: rotate(0deg);
1954
- transform: rotate(0deg);
1955
- }
1956
- 100% {
1957
- -webkit-transform: rotate(90deg);
1958
- transform: rotate(90deg);
1959
- }
1960
- }
1961
- @-webkit-keyframes pacman-balls {
1962
- 75% {
1963
- opacity: 0.7;
1964
- }
1965
- 100% {
1966
- -webkit-transform: translate(-100px, -6.25px);
1967
- transform: translate(-100px, -6.25px);
1968
- }
1969
- }
1970
- @keyframes pacman-balls {
1971
- 75% {
1972
- opacity: 0.7;
1973
- }
1974
- 100% {
1975
- -webkit-transform: translate(-100px, -6.25px);
1976
- transform: translate(-100px, -6.25px);
1977
- }
1978
- }
1979
- .pacman {
1980
- position: relative;
1981
- }
1982
- .pacman > div:nth-child(2) {
1983
- -webkit-animation: pacman-balls 1s -0.99s infinite linear;
1984
- animation: pacman-balls 1s -0.99s infinite linear;
1985
- }
1986
- .pacman > div:nth-child(3) {
1987
- -webkit-animation: pacman-balls 1s -0.66s infinite linear;
1988
- animation: pacman-balls 1s -0.66s infinite linear;
1989
- }
1990
- .pacman > div:nth-child(4) {
1991
- -webkit-animation: pacman-balls 1s -0.33s infinite linear;
1992
- animation: pacman-balls 1s -0.33s infinite linear;
1993
- }
1994
- .pacman > div:nth-child(5) {
1995
- -webkit-animation: pacman-balls 1s 0s infinite linear;
1996
- animation: pacman-balls 1s 0s infinite linear;
1997
- }
1998
- .pacman > div:first-of-type {
1999
- width: 0px;
2000
- height: 0px;
2001
- border-right: 25px solid transparent !important;
2002
- border-top: 25px solid #fff;
2003
- border-left: 25px solid #fff;
2004
- border-bottom: 25px solid #fff;
2005
- border-radius: 25px;
2006
- background-color: transparent !important;
2007
- -webkit-animation: rotate_pacman_half_up 0.5s 0s infinite;
2008
- animation: rotate_pacman_half_up 0.5s 0s infinite;
2009
- position: relative;
2010
- left: -30px;
2011
- }
2012
- .pacman > div:nth-child(2) {
2013
- width: 0px;
2014
- height: 0px;
2015
- border-right: 25px solid transparent !important;
2016
- border-top: 25px solid #fff;
2017
- border-left: 25px solid #fff;
2018
- border-bottom: 25px solid #fff;
2019
- border-radius: 25px;
2020
- background-color: transparent !important;
2021
- -webkit-animation: rotate_pacman_half_down 0.5s 0s infinite;
2022
- animation: rotate_pacman_half_down 0.5s 0s infinite;
2023
- margin-top: -50px;
2024
- position: relative;
2025
- left: -30px;
2026
- }
2027
- .pacman > div:nth-child(3),
2028
- .pacman > div:nth-child(4),
2029
- .pacman > div:nth-child(5),
2030
- .pacman > div:nth-child(6) {
2031
- background-color: #fff;
2032
- width: 15px;
2033
- height: 15px;
2034
- border-radius: 100%;
2035
- margin: 2px;
2036
- width: 10px;
2037
- height: 10px;
2038
- position: absolute;
2039
- -webkit-transform: translate(0, -6.25px);
2040
- -ms-transform: translate(0, -6.25px);
2041
- transform: translate(0, -6.25px);
2042
- top: 25px;
2043
- left: 70px;
2044
- }
2045
- @-webkit-keyframes cube-transition {
2046
- 25% {
2047
- -webkit-transform: translateX(50px) scale(0.5) rotate(-90deg);
2048
- transform: translateX(50px) scale(0.5) rotate(-90deg);
2049
- }
2050
- 50% {
2051
- -webkit-transform: translate(50px, 50px) rotate(-180deg);
2052
- transform: translate(50px, 50px) rotate(-180deg);
2053
- }
2054
- 75% {
2055
- -webkit-transform: translateY(50px) scale(0.5) rotate(-270deg);
2056
- transform: translateY(50px) scale(0.5) rotate(-270deg);
2057
- }
2058
- 100% {
2059
- -webkit-transform: rotate(-360deg);
2060
- transform: rotate(-360deg);
2061
- }
2062
- }
2063
- @keyframes cube-transition {
2064
- 25% {
2065
- -webkit-transform: translateX(50px) scale(0.5) rotate(-90deg);
2066
- transform: translateX(50px) scale(0.5) rotate(-90deg);
2067
- }
2068
- 50% {
2069
- -webkit-transform: translate(50px, 50px) rotate(-180deg);
2070
- transform: translate(50px, 50px) rotate(-180deg);
2071
- }
2072
- 75% {
2073
- -webkit-transform: translateY(50px) scale(0.5) rotate(-270deg);
2074
- transform: translateY(50px) scale(0.5) rotate(-270deg);
2075
- }
2076
- 100% {
2077
- -webkit-transform: rotate(-360deg);
2078
- transform: rotate(-360deg);
2079
- }
2080
- }
2081
- .cube-transition {
2082
- position: relative;
2083
- -webkit-transform: translate(-25px, -25px);
2084
- -ms-transform: translate(-25px, -25px);
2085
- transform: translate(-25px, -25px);
2086
- }
2087
- .cube-transition > div {
2088
- -webkit-animation-fill-mode: both;
2089
- animation-fill-mode: both;
2090
- width: 10px;
2091
- height: 10px;
2092
- position: absolute;
2093
- top: -5px;
2094
- left: -5px;
2095
- background-color: #fff;
2096
- -webkit-animation: cube-transition 1.6s 0s infinite ease-in-out;
2097
- animation: cube-transition 1.6s 0s infinite ease-in-out;
2098
- }
2099
- .cube-transition > div:last-child {
2100
- -webkit-animation-delay: -0.8s;
2101
- animation-delay: -0.8s;
2102
- }
2103
- @-webkit-keyframes spin-rotate {
2104
- 0% {
2105
- -webkit-transform: rotate(0deg);
2106
- transform: rotate(0deg);
2107
- }
2108
- 50% {
2109
- -webkit-transform: rotate(180deg);
2110
- transform: rotate(180deg);
2111
- }
2112
- 100% {
2113
- -webkit-transform: rotate(360deg);
2114
- transform: rotate(360deg);
2115
- }
2116
- }
2117
- @keyframes spin-rotate {
2118
- 0% {
2119
- -webkit-transform: rotate(0deg);
2120
- transform: rotate(0deg);
2121
- }
2122
- 50% {
2123
- -webkit-transform: rotate(180deg);
2124
- transform: rotate(180deg);
2125
- }
2126
- 100% {
2127
- -webkit-transform: rotate(360deg);
2128
- transform: rotate(360deg);
2129
- }
2130
- }
2131
- .semi-circle-spin {
2132
- position: relative;
2133
- width: 35px;
2134
- height: 35px;
2135
- overflow: hidden;
2136
- }
2137
- .semi-circle-spin > div {
2138
- position: absolute;
2139
- border-width: 0px;
2140
- border-radius: 100%;
2141
- -webkit-animation: spin-rotate 0.6s 0s infinite linear;
2142
- animation: spin-rotate 0.6s 0s infinite linear;
2143
- background-image: -webkit-linear-gradient(transparent 0%, transparent 30%, #fff 30%, #fff 100%);
2144
- background-image: linear-gradient(transparent 0%, transparent 30%, #fff 30%, #fff 100%);
2145
- width: 100%;
2146
- height: 100%;
2147
- }
2148
- @-webkit-keyframes bar-progress {
2149
- 0% {
2150
- -webkit-transform: scaleY(20%);
2151
- transform: scaleY(20%);
2152
- opacity: 1;
2153
- }
2154
- 25% {
2155
- -webkit-transform: translateX(6%) scaleY(10%);
2156
- transform: translateX(6%) scaleY(10%);
2157
- opacity: 0.7;
2158
- }
2159
- 50% {
2160
- -webkit-transform: translateX(20%) scaleY(20%);
2161
- transform: translateX(20%) scaleY(20%);
2162
- opacity: 1;
2163
- }
2164
- 75% {
2165
- -webkit-transform: translateX(6%) scaleY(10%);
2166
- transform: translateX(6%) scaleY(10%);
2167
- opacity: 0.7;
2168
- }
2169
- 100% {
2170
- -webkit-transform: scaleY(20%);
2171
- transform: scaleY(20%);
2172
- opacity: 1;
2173
- }
2174
- }
2175
- @keyframes bar-progress {
2176
- 0% {
2177
- -webkit-transform: scaleY(20%);
2178
- transform: scaleY(20%);
2179
- opacity: 1;
2180
- }
2181
- 25% {
2182
- -webkit-transform: translateX(6%) scaleY(10%);
2183
- transform: translateX(6%) scaleY(10%);
2184
- opacity: 0.7;
2185
- }
2186
- 50% {
2187
- -webkit-transform: translateX(20%) scaleY(20%);
2188
- transform: translateX(20%) scaleY(20%);
2189
- opacity: 1;
2190
- }
2191
- 75% {
2192
- -webkit-transform: translateX(6%) scaleY(10%);
2193
- transform: translateX(6%) scaleY(10%);
2194
- opacity: 0.7;
2195
- }
2196
- 100% {
2197
- -webkit-transform: scaleY(20%);
2198
- transform: scaleY(20%);
2199
- opacity: 1;
2200
- }
2201
- }
2202
- .bar-progress {
2203
- width: 30%;
2204
- height: 12px;
2205
- }
2206
- .bar-progress > div {
2207
- position: relative;
2208
- width: 20%;
2209
- height: 12px;
2210
- border-radius: 10px;
2211
- background-color: #fff;
2212
- -webkit-animation: bar-progress 3s cubic-bezier(0.57, 0.1, 0.44, 0.93) infinite;
2213
- animation: bar-progress 3s cubic-bezier(0.57, 0.1, 0.44, 0.93) infinite;
2214
- opacity: 1;
2215
- }
2216
- @-webkit-keyframes bar-swing {
2217
- 0% {
2218
- left: 0;
2219
- }
2220
- 50% {
2221
- left: 70%;
2222
- }
2223
- 100% {
2224
- left: 0;
2225
- }
2226
- }
2227
- @keyframes bar-swing {
2228
- 0% {
2229
- left: 0;
2230
- }
2231
- 50% {
2232
- left: 70%;
2233
- }
2234
- 100% {
2235
- left: 0;
2236
- }
2237
- }
2238
- .bar-swing {
2239
- width: 30%;
2240
- height: 8px;
2241
- }
2242
- .bar-swing > div {
2243
- position: relative;
2244
- width: 30%;
2245
- height: 8px;
2246
- border-radius: 10px;
2247
- background-color: #fff;
2248
- -webkit-animation: bar-swing 1.5s infinite;
2249
- animation: bar-swing 1.5s infinite;
2250
- }
2251
- @-webkit-keyframes bar-swing-container {
2252
- 0% {
2253
- left: 0;
2254
- -webkit-transform: translateX(0);
2255
- transform: translateX(0);
2256
- }
2257
- 50% {
2258
- left: 70%;
2259
- -webkit-transform: translateX(-4px);
2260
- transform: translateX(-4px);
2261
- }
2262
- 100% {
2263
- left: 0;
2264
- -webkit-transform: translateX(0);
2265
- transform: translateX(0);
2266
- }
2267
- }
2268
- @keyframes bar-swing-container {
2269
- 0% {
2270
- left: 0;
2271
- -webkit-transform: translateX(0);
2272
- transform: translateX(0);
2273
- }
2274
- 50% {
2275
- left: 70%;
2276
- -webkit-transform: translateX(-4px);
2277
- transform: translateX(-4px);
2278
- }
2279
- 100% {
2280
- left: 0;
2281
- -webkit-transform: translateX(0);
2282
- transform: translateX(0);
2283
- }
2284
- }
2285
- .bar-swing-container {
2286
- width: 20%;
2287
- height: 8px;
2288
- position: relative;
2289
- }
2290
- .bar-swing-container div:nth-child(1) {
2291
- position: absolute;
2292
- width: 100%;
2293
- background-color: rgba(255, 255, 255, 0.2);
2294
- height: 12px;
2295
- border-radius: 10px;
2296
- }
2297
- .bar-swing-container div:nth-child(2) {
2298
- position: absolute;
2299
- width: 30%;
2300
- height: 8px;
2301
- border-radius: 10px;
2302
- background-color: #fff;
2303
- -webkit-animation: bar-swing-container 2s cubic-bezier(0.91, 0.35, 0.12, 0.6) infinite;
2304
- animation: bar-swing-container 2s cubic-bezier(0.91, 0.35, 0.12, 0.6) infinite;
2305
- margin: 2px 2px 0;
2306
- }
2307
- .mds-loading-parent {
2308
- position: relative;
2309
- }
2310
- .mds-loading {
2311
- position: absolute;
2312
- z-index: 2000;
2313
- margin: 0;
2314
- top: 0;
2315
- right: 0;
2316
- bottom: 0;
2317
- left: 0;
2318
- transition: opacity .3s;
2319
- display: flex;
2320
- flex-direction: column;
2321
- align-items: center;
2322
- justify-content: center;
2323
- }
2324
- .mds-loading-animation + .mds-loading-text {
2325
- margin-top: 20px;
2326
- }
2327
- /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
2328
- /* stylelint-disable declaration-bang-space-before */
2329
- /* stylelint-disable declaration-bang-space-before */
1
+ @-webkit-keyframes scale{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}45%{-webkit-transform:scale(.1);transform:scale(.1);opacity:.7}80%{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.ball-pulse>div:nth-child(0){-webkit-animation:scale .75s -.36s infinite cubic-bezier(.2,.68,.18,1.08);animation:scale .75s -.36s infinite cubic-bezier(.2,.68,.18,1.08)}.ball-pulse>div:first-child{-webkit-animation:scale .75s -.24s infinite cubic-bezier(.2,.68,.18,1.08);animation:scale .75s -.24s infinite cubic-bezier(.2,.68,.18,1.08)}.ball-pulse>div:nth-child(2){-webkit-animation:scale .75s -.12s infinite cubic-bezier(.2,.68,.18,1.08);animation:scale .75s -.12s infinite cubic-bezier(.2,.68,.18,1.08)}.ball-pulse>div:nth-child(3){-webkit-animation:scale .75s 0s infinite cubic-bezier(.2,.68,.18,1.08);animation:scale .75s 0s infinite cubic-bezier(.2,.68,.18,1.08)}.ball-pulse>div{background-color:#fff;width:15px;height:15px;border-radius:100%;margin:2px;-webkit-animation-fill-mode:both;animation-fill-mode:both;display:inline-block}@-webkit-keyframes ball-pulse-sync{33%{-webkit-transform:translateY(10px);transform:translateY(10px)}66%{-webkit-transform:translateY(-10px);transform:translateY(-10px)}to{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes ball-pulse-sync{33%{-webkit-transform:translateY(10px);transform:translateY(10px)}66%{-webkit-transform:translateY(-10px);transform:translateY(-10px)}to{-webkit-transform:translateY(0);transform:translateY(0)}}.ball-pulse-sync>div:nth-child(0){-webkit-animation:ball-pulse-sync .6s -.21s infinite ease-in-out;animation:ball-pulse-sync .6s -.21s infinite ease-in-out}.ball-pulse-sync>div:first-child{-webkit-animation:ball-pulse-sync .6s -.14s infinite ease-in-out;animation:ball-pulse-sync .6s -.14s infinite ease-in-out}.ball-pulse-sync>div:nth-child(2){-webkit-animation:ball-pulse-sync .6s -.07s infinite ease-in-out;animation:ball-pulse-sync .6s -.07s infinite ease-in-out}.ball-pulse-sync>div:nth-child(3){-webkit-animation:ball-pulse-sync .6s 0s infinite ease-in-out;animation:ball-pulse-sync .6s 0s infinite ease-in-out}.ball-pulse-sync>div{background-color:#fff;width:15px;height:15px;border-radius:100%;margin:2px;-webkit-animation-fill-mode:both;animation-fill-mode:both;display:inline-block}@-webkit-keyframes ball-scale{0%{-webkit-transform:scale(0);transform:scale(0)}to{-webkit-transform:scale(1);transform:scale(1);opacity:0}}@keyframes ball-scale{0%{-webkit-transform:scale(0);transform:scale(0)}to{-webkit-transform:scale(1);transform:scale(1);opacity:0}}.ball-scale>div{background-color:#fff;width:15px;height:15px;border-radius:100%;margin:2px;-webkit-animation-fill-mode:both;animation-fill-mode:both;display:inline-block;height:60px;width:60px;-webkit-animation:ball-scale 1s 0s ease-in-out infinite;animation:ball-scale 1s 0s ease-in-out infinite}.ball-scale-random{width:37px;height:40px}.ball-scale-random>div{background-color:#fff;width:15px;height:15px;border-radius:100%;margin:2px;-webkit-animation-fill-mode:both;animation-fill-mode:both;position:absolute;display:inline-block;height:30px;width:30px;-webkit-animation:ball-scale 1s 0s ease-in-out infinite;animation:ball-scale 1s 0s ease-in-out infinite}.ball-scale-random>div:first-child{margin-left:-7px;-webkit-animation:ball-scale 1s .2s ease-in-out infinite;animation:ball-scale 1s .2s ease-in-out infinite}.ball-scale-random>div:nth-child(3){margin-left:-2px;margin-top:9px;-webkit-animation:ball-scale 1s .5s ease-in-out infinite;animation:ball-scale 1s .5s ease-in-out infinite}@-webkit-keyframes rotate{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}50%{-webkit-transform:rotate(180deg);transform:rotate(180deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.ball-rotate,.ball-rotate>div{position:relative}.ball-rotate>div{background-color:#fff;width:15px;height:15px;border-radius:100%;margin:2px;-webkit-animation-fill-mode:both;animation-fill-mode:both}.ball-rotate>div:first-child{-webkit-animation:rotate 1s 0s cubic-bezier(.7,-.13,.22,.86) infinite;animation:rotate 1s 0s cubic-bezier(.7,-.13,.22,.86) infinite}.ball-rotate>div:after,.ball-rotate>div:before{background-color:inherit;width:15px;height:15px;border-radius:100%;margin:2px;content:"";position:absolute;opacity:.8}.ball-rotate>div:before{top:0;left:-28px}.ball-rotate>div:after{top:0;left:25px}.ball-clip-rotate>div{background-color:#fff;width:15px;height:15px;border-radius:100%;margin:2px;-webkit-animation-fill-mode:both;animation-fill-mode:both;border:2px solid #fff;border-bottom-color:transparent!important;height:25px;width:25px;background:transparent!important;display:inline-block;-webkit-animation:rotate .75s 0s linear infinite;animation:rotate .75s 0s linear infinite}@keyframes scale{30%{-webkit-transform:scale(.3);transform:scale(.3)}to{-webkit-transform:scale(1);transform:scale(1)}}.ball-clip-rotate-pulse{position:relative;-webkit-transform:translateY(-15px);-ms-transform:translateY(-15px);transform:translateY(-15px)}.ball-clip-rotate-pulse>div{-webkit-animation-fill-mode:both;animation-fill-mode:both;position:absolute;top:0;left:0;border-radius:100%}.ball-clip-rotate-pulse>div:first-child{background:#fff;height:16px;width:16px;top:7px;left:-7px;-webkit-animation:scale 1s 0s cubic-bezier(.09,.57,.49,.9) infinite;animation:scale 1s 0s cubic-bezier(.09,.57,.49,.9) infinite}.ball-clip-rotate-pulse>div:last-child{position:absolute;border:2px solid #fff;width:30px;height:30px;left:-14px;top:0;background:transparent!important;border:2px solid;border-top-color:#fff;border-right-color:transparent!important;border-bottom-color:#fff;border-left-color:transparent!important;-webkit-animation:rotate 1s 0s cubic-bezier(.09,.57,.49,.9) infinite;animation:rotate 1s 0s cubic-bezier(.09,.57,.49,.9) infinite;-webkit-animation-duration:1s;animation-duration:1s}@keyframes rotate{0%{-webkit-transform:rotate(0deg) scale(1);transform:rotate(0deg) scale(1)}50%{-webkit-transform:rotate(180deg) scale(.6);transform:rotate(180deg) scale(.6)}to{-webkit-transform:rotate(1turn) scale(1);transform:rotate(1turn) scale(1)}}.ball-clip-rotate-multiple{position:relative}.ball-clip-rotate-multiple>div{background-color:transparent!important;-webkit-animation-fill-mode:both;animation-fill-mode:both;position:absolute;left:-20px;top:-20px;border:2px solid #fff;border-bottom-color:transparent!important;border-top-color:transparent!important;border-radius:100%;height:35px;width:35px;-webkit-animation:rotate 1s 0s ease-in-out infinite;animation:rotate 1s 0s ease-in-out infinite}.ball-clip-rotate-multiple>div:last-child{display:inline-block;top:-10px;left:-10px;width:15px;height:15px;border-color:#fff;border-bottom-color:transparent!important;border-top-color:transparent!important;background-color:transparent!important;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-direction:reverse;animation-direction:reverse}@-webkit-keyframes ball-scale-ripple{0%{-webkit-transform:scale(.1);transform:scale(.1);opacity:1}70%{-webkit-transform:scale(1);transform:scale(1);opacity:.7}to{opacity:0}}@keyframes ball-scale-ripple{0%{-webkit-transform:scale(.1);transform:scale(.1);opacity:1}70%{-webkit-transform:scale(1);transform:scale(1);opacity:.7}to{opacity:0}}.ball-scale-ripple>div{-webkit-animation-fill-mode:both;animation-fill-mode:both;height:50px;width:50px;border-radius:100%;border:2px solid #fff;background-color:transparent!important;-webkit-animation:ball-scale-ripple 1s 0s infinite cubic-bezier(.21,.53,.56,.8);animation:ball-scale-ripple 1s 0s infinite cubic-bezier(.21,.53,.56,.8)}@-webkit-keyframes ball-scale-ripple-multiple{0%{-webkit-transform:scale(.1);transform:scale(.1);opacity:1}70%{-webkit-transform:scale(1);transform:scale(1);opacity:.7}to{opacity:0}}@keyframes ball-scale-ripple-multiple{0%{-webkit-transform:scale(.1);transform:scale(.1);opacity:1}70%{-webkit-transform:scale(1);transform:scale(1);opacity:.7}to{opacity:0}}.ball-scale-ripple-multiple{position:relative;-webkit-transform:translateY(-25px);-ms-transform:translateY(-25px);transform:translateY(-25px)}.ball-scale-ripple-multiple>div:nth-child(0){-webkit-animation-delay:-.8s;animation-delay:-.8s}.ball-scale-ripple-multiple>div:first-child{-webkit-animation-delay:-.6s;animation-delay:-.6s}.ball-scale-ripple-multiple>div:nth-child(2){-webkit-animation-delay:-.4s;animation-delay:-.4s}.ball-scale-ripple-multiple>div:nth-child(3){-webkit-animation-delay:-.2s;animation-delay:-.2s}.ball-scale-ripple-multiple>div{-webkit-animation-fill-mode:both;animation-fill-mode:both;position:absolute;top:-2px;left:-26px;width:50px;height:50px;border-radius:100%;border:2px solid #fff;background-color:transparent!important;-webkit-animation:ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(.21,.53,.56,.8);animation:ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(.21,.53,.56,.8)}@-webkit-keyframes ball-beat{50%{opacity:.2;-webkit-transform:scale(.75);transform:scale(.75)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes ball-beat{50%{opacity:.2;-webkit-transform:scale(.75);transform:scale(.75)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.ball-beat>div{background-color:#fff;width:15px;height:15px;border-radius:100%;margin:2px;-webkit-animation-fill-mode:both;animation-fill-mode:both;display:inline-block;-webkit-animation:ball-beat .7s 0s infinite linear;animation:ball-beat .7s 0s infinite linear}.ball-beat>div:nth-child(2n-1){-webkit-animation-delay:-.35s!important;animation-delay:-.35s!important}@-webkit-keyframes ball-scale-multiple{0%{-webkit-transform:scale(0);transform:scale(0);opacity:0}5%{opacity:1}to{-webkit-transform:scale(1);transform:scale(1);opacity:0}}@keyframes ball-scale-multiple{0%{-webkit-transform:scale(0);transform:scale(0);opacity:0}5%{opacity:1}to{-webkit-transform:scale(1);transform:scale(1);opacity:0}}.ball-scale-multiple{position:relative;-webkit-transform:translateY(-30px);-ms-transform:translateY(-30px);transform:translateY(-30px)}.ball-scale-multiple>div:nth-child(2){-webkit-animation-delay:-.4s;animation-delay:-.4s}.ball-scale-multiple>div:nth-child(3){-webkit-animation-delay:-.2s;animation-delay:-.2s}.ball-scale-multiple>div{background-color:#fff;width:15px;height:15px;border-radius:100%;margin:2px;-webkit-animation-fill-mode:both;animation-fill-mode:both;position:absolute;left:-30px;top:0;opacity:0;margin:0;width:60px;height:60px;-webkit-animation:ball-scale-multiple 1s 0s linear infinite;animation:ball-scale-multiple 1s 0s linear infinite}@-webkit-keyframes ball-triangle-path-1{33%{-webkit-transform:translate(25px,-50px);transform:translate(25px,-50px)}66%{-webkit-transform:translate(50px);transform:translate(50px)}to{-webkit-transform:translate(0);transform:translate(0)}}@keyframes ball-triangle-path-1{33%{-webkit-transform:translate(25px,-50px);transform:translate(25px,-50px)}66%{-webkit-transform:translate(50px);transform:translate(50px)}to{-webkit-transform:translate(0);transform:translate(0)}}@-webkit-keyframes ball-triangle-path-2{33%{-webkit-transform:translate(25px,50px);transform:translate(25px,50px)}66%{-webkit-transform:translate(-25px,50px);transform:translate(-25px,50px)}to{-webkit-transform:translate(0);transform:translate(0)}}@keyframes ball-triangle-path-2{33%{-webkit-transform:translate(25px,50px);transform:translate(25px,50px)}66%{-webkit-transform:translate(-25px,50px);transform:translate(-25px,50px)}to{-webkit-transform:translate(0);transform:translate(0)}}@-webkit-keyframes ball-triangle-path-3{33%{-webkit-transform:translate(-50px);transform:translate(-50px)}66%{-webkit-transform:translate(-25px,-50px);transform:translate(-25px,-50px)}to{-webkit-transform:translate(0);transform:translate(0)}}@keyframes ball-triangle-path-3{33%{-webkit-transform:translate(-50px);transform:translate(-50px)}66%{-webkit-transform:translate(-25px,-50px);transform:translate(-25px,-50px)}to{-webkit-transform:translate(0);transform:translate(0)}}.ball-triangle-path{position:relative;-webkit-transform:translate(-29.994px,-37.50938px);-ms-transform:translate(-29.994px,-37.50938px);transform:translate(-29.994px,-37.50938px)}.ball-triangle-path>div:first-child{-webkit-animation-name:ball-triangle-path-1;animation-name:ball-triangle-path-1;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.ball-triangle-path>div:first-child,.ball-triangle-path>div:nth-child(2){-webkit-animation-delay:0;animation-delay:0;-webkit-animation-duration:2s;animation-duration:2s}.ball-triangle-path>div:nth-child(2){-webkit-animation-name:ball-triangle-path-2;animation-name:ball-triangle-path-2;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.ball-triangle-path>div:nth-child(3){-webkit-animation-name:ball-triangle-path-3;animation-name:ball-triangle-path-3;-webkit-animation-delay:0;animation-delay:0;-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.ball-triangle-path>div{-webkit-animation-fill-mode:both;animation-fill-mode:both;position:absolute;width:10px;height:10px;border-radius:100%;border:1px solid #fff;background-color:transparent!important}.ball-triangle-path>div:first-of-type{top:50px}.ball-triangle-path>div:nth-of-type(2){left:25px}.ball-triangle-path>div:nth-of-type(3){top:50px;left:50px}@-webkit-keyframes ball-pulse-rise-even{0%{-webkit-transform:scale(1.1);transform:scale(1.1)}25%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}50%{-webkit-transform:scale(.4);transform:scale(.4)}75%{-webkit-transform:translateY(30px);transform:translateY(30px)}to{-webkit-transform:translateY(0);transform:translateY(0);-webkit-transform:scale(1);transform:scale(1)}}@keyframes ball-pulse-rise-even{0%{-webkit-transform:scale(1.1);transform:scale(1.1)}25%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}50%{-webkit-transform:scale(.4);transform:scale(.4)}75%{-webkit-transform:translateY(30px);transform:translateY(30px)}to{-webkit-transform:translateY(0);transform:translateY(0);-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes ball-pulse-rise-odd{0%{-webkit-transform:scale(.4);transform:scale(.4)}25%{-webkit-transform:translateY(30px);transform:translateY(30px)}50%{-webkit-transform:scale(1.1);transform:scale(1.1)}75%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}to{-webkit-transform:translateY(0);transform:translateY(0);-webkit-transform:scale(.75);transform:scale(.75)}}@keyframes ball-pulse-rise-odd{0%{-webkit-transform:scale(.4);transform:scale(.4)}25%{-webkit-transform:translateY(30px);transform:translateY(30px)}50%{-webkit-transform:scale(1.1);transform:scale(1.1)}75%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}to{-webkit-transform:translateY(0);transform:translateY(0);-webkit-transform:scale(.75);transform:scale(.75)}}.ball-pulse-rise>div{background-color:#fff;width:15px;height:15px;border-radius:100%;margin:2px;-webkit-animation-fill-mode:both;animation-fill-mode:both;display:inline-block;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-timing-function:cubic-bezier(.15,.46,.9,.6);animation-timing-function:cubic-bezier(.15,.46,.9,.6);-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-delay:0;animation-delay:0}.ball-pulse-rise>div:nth-child(2n){-webkit-animation-name:ball-pulse-rise-even;animation-name:ball-pulse-rise-even}.ball-pulse-rise>div:nth-child(2n-1){-webkit-animation-name:ball-pulse-rise-odd;animation-name:ball-pulse-rise-odd}@-webkit-keyframes ball-grid-beat{50%{opacity:.7}to{opacity:1}}@keyframes ball-grid-beat{50%{opacity:.7}to{opacity:1}}.ball-grid-beat{width:57px}.ball-grid-beat>div:first-child{-webkit-animation-delay:.44s;animation-delay:.44s;-webkit-animation-duration:1.27s;animation-duration:1.27s}.ball-grid-beat>div:nth-child(2){-webkit-animation-delay:.2s;animation-delay:.2s;-webkit-animation-duration:1.52s;animation-duration:1.52s}.ball-grid-beat>div:nth-child(3){-webkit-animation-delay:.14s;animation-delay:.14s;-webkit-animation-duration:.61s;animation-duration:.61s}.ball-grid-beat>div:nth-child(4){-webkit-animation-delay:.15s;animation-delay:.15s;-webkit-animation-duration:.82s;animation-duration:.82s}.ball-grid-beat>div:nth-child(5){-webkit-animation-delay:-.01s;animation-delay:-.01s;-webkit-animation-duration:1.24s;animation-duration:1.24s}.ball-grid-beat>div:nth-child(6){-webkit-animation-delay:-.07s;animation-delay:-.07s;-webkit-animation-duration:1.35s;animation-duration:1.35s}.ball-grid-beat>div:nth-child(7){-webkit-animation-delay:.29s;animation-delay:.29s;-webkit-animation-duration:1.44s;animation-duration:1.44s}.ball-grid-beat>div:nth-child(8){-webkit-animation-delay:.63s;animation-delay:.63s;-webkit-animation-duration:1.19s;animation-duration:1.19s}.ball-grid-beat>div:nth-child(9){-webkit-animation-delay:-.18s;animation-delay:-.18s;-webkit-animation-duration:1.48s;animation-duration:1.48s}.ball-grid-beat>div{background-color:#fff;width:15px;height:15px;border-radius:100%;margin:2px;-webkit-animation-fill-mode:both;animation-fill-mode:both;display:inline-block;float:left;-webkit-animation-name:ball-grid-beat;animation-name:ball-grid-beat;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-delay:0;animation-delay:0}@-webkit-keyframes ball-grid-pulse{0%{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(.5);transform:scale(.5);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes ball-grid-pulse{0%{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(.5);transform:scale(.5);opacity:.7}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.ball-grid-pulse{width:57px}.ball-grid-pulse>div:first-child{-webkit-animation-delay:.58s;animation-delay:.58s;-webkit-animation-duration:.9s;animation-duration:.9s}.ball-grid-pulse>div:nth-child(2){-webkit-animation-delay:.01s;animation-delay:.01s;-webkit-animation-duration:.94s;animation-duration:.94s}.ball-grid-pulse>div:nth-child(3){-webkit-animation-delay:.25s;animation-delay:.25s;-webkit-animation-duration:1.43s;animation-duration:1.43s}.ball-grid-pulse>div:nth-child(4){-webkit-animation-delay:-.03s;animation-delay:-.03s;-webkit-animation-duration:.74s;animation-duration:.74s}.ball-grid-pulse>div:nth-child(5){-webkit-animation-delay:.21s;animation-delay:.21s;-webkit-animation-duration:.68s;animation-duration:.68s}.ball-grid-pulse>div:nth-child(6){-webkit-animation-delay:.25s;animation-delay:.25s;-webkit-animation-duration:1.17s;animation-duration:1.17s}.ball-grid-pulse>div:nth-child(7){-webkit-animation-delay:.46s;animation-delay:.46s;-webkit-animation-duration:1.41s;animation-duration:1.41s}.ball-grid-pulse>div:nth-child(8){-webkit-animation-delay:.02s;animation-delay:.02s;-webkit-animation-duration:1.56s;animation-duration:1.56s}.ball-grid-pulse>div:nth-child(9){-webkit-animation-delay:.13s;animation-delay:.13s;-webkit-animation-duration:.78s;animation-duration:.78s}.ball-grid-pulse>div{background-color:#fff;width:15px;height:15px;border-radius:100%;margin:2px;-webkit-animation-fill-mode:both;animation-fill-mode:both;display:inline-block;float:left;-webkit-animation-name:ball-grid-pulse;animation-name:ball-grid-pulse;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-delay:0;animation-delay:0}@-webkit-keyframes ball-spin-fade-loader{50%{opacity:.3;-webkit-transform:scale(.4);transform:scale(.4)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes ball-spin-fade-loader{50%{opacity:.3;-webkit-transform:scale(.4);transform:scale(.4)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.ball-spin-fade-loader{position:relative;top:-10px;left:-10px}.ball-spin-fade-loader>div:first-child{top:25px;left:0;-webkit-animation:ball-spin-fade-loader 1s -.96s infinite linear;animation:ball-spin-fade-loader 1s -.96s infinite linear}.ball-spin-fade-loader>div:nth-child(2){top:17.04545px;left:17.04545px;-webkit-animation:ball-spin-fade-loader 1s -.84s infinite linear;animation:ball-spin-fade-loader 1s -.84s infinite linear}.ball-spin-fade-loader>div:nth-child(3){top:0;left:25px;-webkit-animation:ball-spin-fade-loader 1s -.72s infinite linear;animation:ball-spin-fade-loader 1s -.72s infinite linear}.ball-spin-fade-loader>div:nth-child(4){top:-17.04545px;left:17.04545px;-webkit-animation:ball-spin-fade-loader 1s -.6s infinite linear;animation:ball-spin-fade-loader 1s -.6s infinite linear}.ball-spin-fade-loader>div:nth-child(5){top:-25px;left:0;-webkit-animation:ball-spin-fade-loader 1s -.48s infinite linear;animation:ball-spin-fade-loader 1s -.48s infinite linear}.ball-spin-fade-loader>div:nth-child(6){top:-17.04545px;left:-17.04545px;-webkit-animation:ball-spin-fade-loader 1s -.36s infinite linear;animation:ball-spin-fade-loader 1s -.36s infinite linear}.ball-spin-fade-loader>div:nth-child(7){top:0;left:-25px;-webkit-animation:ball-spin-fade-loader 1s -.24s infinite linear;animation:ball-spin-fade-loader 1s -.24s infinite linear}.ball-spin-fade-loader>div:nth-child(8){top:17.04545px;left:-17.04545px;-webkit-animation:ball-spin-fade-loader 1s -.12s infinite linear;animation:ball-spin-fade-loader 1s -.12s infinite linear}.ball-spin-fade-loader>div{background-color:#fff;width:15px;height:15px;border-radius:100%;margin:2px;-webkit-animation-fill-mode:both;animation-fill-mode:both;position:absolute}@-webkit-keyframes ball-spin-loader{75%{opacity:.2}to{opacity:1}}@keyframes ball-spin-loader{75%{opacity:.2}to{opacity:1}}.ball-spin-loader{position:relative}.ball-spin-loader>span:first-child{top:45px;left:0;-webkit-animation:ball-spin-loader 2s .9s infinite linear;animation:ball-spin-loader 2s .9s infinite linear}.ball-spin-loader>span:nth-child(2){top:30.68182px;left:30.68182px;-webkit-animation:ball-spin-loader 2s 1.8s infinite linear;animation:ball-spin-loader 2s 1.8s infinite linear}.ball-spin-loader>span:nth-child(3){top:0;left:45px;-webkit-animation:ball-spin-loader 2s 2.7s infinite linear;animation:ball-spin-loader 2s 2.7s infinite linear}.ball-spin-loader>span:nth-child(4){top:-30.68182px;left:30.68182px;-webkit-animation:ball-spin-loader 2s 3.6s infinite linear;animation:ball-spin-loader 2s 3.6s infinite linear}.ball-spin-loader>span:nth-child(5){top:-45px;left:0;-webkit-animation:ball-spin-loader 2s 4.5s infinite linear;animation:ball-spin-loader 2s 4.5s infinite linear}.ball-spin-loader>span:nth-child(6){top:-30.68182px;left:-30.68182px;-webkit-animation:ball-spin-loader 2s 5.4s infinite linear;animation:ball-spin-loader 2s 5.4s infinite linear}.ball-spin-loader>span:nth-child(7){top:0;left:-45px;-webkit-animation:ball-spin-loader 2s 6.3s infinite linear;animation:ball-spin-loader 2s 6.3s infinite linear}.ball-spin-loader>span:nth-child(8){top:30.68182px;left:-30.68182px;-webkit-animation:ball-spin-loader 2s 7.2s infinite linear;animation:ball-spin-loader 2s 7.2s infinite linear}.ball-spin-loader>div{-webkit-animation-fill-mode:both;animation-fill-mode:both;position:absolute;width:15px;height:15px;border-radius:100%;background:green}@-webkit-keyframes ball-zig{33%{-webkit-transform:translate(-15px,-30px);transform:translate(-15px,-30px)}66%{-webkit-transform:translate(15px,-30px);transform:translate(15px,-30px)}to{-webkit-transform:translate(0);transform:translate(0)}}@keyframes ball-zig{33%{-webkit-transform:translate(-15px,-30px);transform:translate(-15px,-30px)}66%{-webkit-transform:translate(15px,-30px);transform:translate(15px,-30px)}to{-webkit-transform:translate(0);transform:translate(0)}}@-webkit-keyframes ball-zag{33%{-webkit-transform:translate(15px,30px);transform:translate(15px,30px)}66%{-webkit-transform:translate(-15px,30px);transform:translate(-15px,30px)}to{-webkit-transform:translate(0);transform:translate(0)}}@keyframes ball-zag{33%{-webkit-transform:translate(15px,30px);transform:translate(15px,30px)}66%{-webkit-transform:translate(-15px,30px);transform:translate(-15px,30px)}to{-webkit-transform:translate(0);transform:translate(0)}}.ball-zig-zag{position:relative;-webkit-transform:translate(-15px,-15px);-ms-transform:translate(-15px,-15px);transform:translate(-15px,-15px)}.ball-zig-zag>div{background-color:#fff;width:15px;height:15px;border-radius:100%;margin:2px;-webkit-animation-fill-mode:both;animation-fill-mode:both;position:absolute;margin-left:15px;top:4px;left:-7px}.ball-zig-zag>div:first-child{-webkit-animation:ball-zig .7s 0s infinite linear;animation:ball-zig .7s 0s infinite linear}.ball-zig-zag>div:last-child{-webkit-animation:ball-zag .7s 0s infinite linear;animation:ball-zag .7s 0s infinite linear}@-webkit-keyframes ball-zig-deflect{17%{-webkit-transform:translate(-15px,-30px);transform:translate(-15px,-30px)}34%{-webkit-transform:translate(15px,-30px);transform:translate(15px,-30px)}50%{-webkit-transform:translate(0);transform:translate(0)}67%{-webkit-transform:translate(15px,-30px);transform:translate(15px,-30px)}84%{-webkit-transform:translate(-15px,-30px);transform:translate(-15px,-30px)}to{-webkit-transform:translate(0);transform:translate(0)}}@keyframes ball-zig-deflect{17%{-webkit-transform:translate(-15px,-30px);transform:translate(-15px,-30px)}34%{-webkit-transform:translate(15px,-30px);transform:translate(15px,-30px)}50%{-webkit-transform:translate(0);transform:translate(0)}67%{-webkit-transform:translate(15px,-30px);transform:translate(15px,-30px)}84%{-webkit-transform:translate(-15px,-30px);transform:translate(-15px,-30px)}to{-webkit-transform:translate(0);transform:translate(0)}}@-webkit-keyframes ball-zag-deflect{17%{-webkit-transform:translate(15px,30px);transform:translate(15px,30px)}34%{-webkit-transform:translate(-15px,30px);transform:translate(-15px,30px)}50%{-webkit-transform:translate(0);transform:translate(0)}67%{-webkit-transform:translate(-15px,30px);transform:translate(-15px,30px)}84%{-webkit-transform:translate(15px,30px);transform:translate(15px,30px)}to{-webkit-transform:translate(0);transform:translate(0)}}@keyframes ball-zag-deflect{17%{-webkit-transform:translate(15px,30px);transform:translate(15px,30px)}34%{-webkit-transform:translate(-15px,30px);transform:translate(-15px,30px)}50%{-webkit-transform:translate(0);transform:translate(0)}67%{-webkit-transform:translate(-15px,30px);transform:translate(-15px,30px)}84%{-webkit-transform:translate(15px,30px);transform:translate(15px,30px)}to{-webkit-transform:translate(0);transform:translate(0)}}.ball-zig-zag-deflect{position:relative;-webkit-transform:translate(-15px,-15px);-ms-transform:translate(-15px,-15px);transform:translate(-15px,-15px)}.ball-zig-zag-deflect>div{background-color:#fff;width:15px;height:15px;border-radius:100%;margin:2px;-webkit-animation-fill-mode:both;animation-fill-mode:both;position:absolute;margin-left:15px;top:4px;left:-7px}.ball-zig-zag-deflect>div:first-child{-webkit-animation:ball-zig-deflect 1.5s 0s infinite linear;animation:ball-zig-deflect 1.5s 0s infinite linear}.ball-zig-zag-deflect>div:last-child{-webkit-animation:ball-zag-deflect 1.5s 0s infinite linear;animation:ball-zag-deflect 1.5s 0s infinite linear}@-webkit-keyframes line-scale{0%{-webkit-transform:scaley(1);transform:scaley(1)}50%{-webkit-transform:scaley(.4);transform:scaley(.4)}to{-webkit-transform:scaley(1);transform:scaley(1)}}@keyframes line-scale{0%{-webkit-transform:scaley(1);transform:scaley(1)}50%{-webkit-transform:scaley(.4);transform:scaley(.4)}to{-webkit-transform:scaley(1);transform:scaley(1)}}.line-scale>div:first-child{-webkit-animation:line-scale 1s -.4s infinite cubic-bezier(.2,.68,.18,1.08);animation:line-scale 1s -.4s infinite cubic-bezier(.2,.68,.18,1.08)}.line-scale>div:nth-child(2){-webkit-animation:line-scale 1s -.3s infinite cubic-bezier(.2,.68,.18,1.08);animation:line-scale 1s -.3s infinite cubic-bezier(.2,.68,.18,1.08)}.line-scale>div:nth-child(3){-webkit-animation:line-scale 1s -.2s infinite cubic-bezier(.2,.68,.18,1.08);animation:line-scale 1s -.2s infinite cubic-bezier(.2,.68,.18,1.08)}.line-scale>div:nth-child(4){-webkit-animation:line-scale 1s -.1s infinite cubic-bezier(.2,.68,.18,1.08);animation:line-scale 1s -.1s infinite cubic-bezier(.2,.68,.18,1.08)}.line-scale>div:nth-child(5){-webkit-animation:line-scale 1s 0s infinite cubic-bezier(.2,.68,.18,1.08);animation:line-scale 1s 0s infinite cubic-bezier(.2,.68,.18,1.08)}.line-scale>div{background-color:#fff;width:4px;height:35px;border-radius:2px;margin:2px;-webkit-animation-fill-mode:both;animation-fill-mode:both;display:inline-block}@-webkit-keyframes line-scale-party{0%{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(.5);transform:scale(.5)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes line-scale-party{0%{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(.5);transform:scale(.5)}to{-webkit-transform:scale(1);transform:scale(1)}}.line-scale-party>div:first-child{-webkit-animation-delay:-.09s;animation-delay:-.09s;-webkit-animation-duration:.83s;animation-duration:.83s}.line-scale-party>div:nth-child(2){-webkit-animation-delay:.33s;animation-delay:.33s;-webkit-animation-duration:.64s;animation-duration:.64s}.line-scale-party>div:nth-child(3){-webkit-animation-delay:.32s;animation-delay:.32s;-webkit-animation-duration:.39s;animation-duration:.39s}.line-scale-party>div:nth-child(4){-webkit-animation-delay:.47s;animation-delay:.47s;-webkit-animation-duration:.52s;animation-duration:.52s}.line-scale-party>div{background-color:#fff;width:4px;height:35px;border-radius:2px;margin:2px;-webkit-animation-fill-mode:both;animation-fill-mode:both;display:inline-block;-webkit-animation-name:line-scale-party;animation-name:line-scale-party;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-delay:0;animation-delay:0}@-webkit-keyframes line-scale-pulse-out{0%{-webkit-transform:scaley(1);transform:scaley(1)}50%{-webkit-transform:scaley(.4);transform:scaley(.4)}to{-webkit-transform:scaley(1);transform:scaley(1)}}@keyframes line-scale-pulse-out{0%{-webkit-transform:scaley(1);transform:scaley(1)}50%{-webkit-transform:scaley(.4);transform:scaley(.4)}to{-webkit-transform:scaley(1);transform:scaley(1)}}.line-scale-pulse-out>div{background-color:#fff;width:4px;height:35px;border-radius:2px;margin:2px;-webkit-animation-fill-mode:both;animation-fill-mode:both;display:inline-block;-webkit-animation:line-scale-pulse-out .9s -.6s infinite cubic-bezier(.85,.25,.37,.85);animation:line-scale-pulse-out .9s -.6s infinite cubic-bezier(.85,.25,.37,.85)}.line-scale-pulse-out>div:nth-child(2),.line-scale-pulse-out>div:nth-child(4){-webkit-animation-delay:-.4s!important;animation-delay:-.4s!important}.line-scale-pulse-out>div:first-child,.line-scale-pulse-out>div:nth-child(5){-webkit-animation-delay:-.2s!important;animation-delay:-.2s!important}@-webkit-keyframes line-scale-pulse-out-rapid{0%{-webkit-transform:scaley(1);transform:scaley(1)}80%{-webkit-transform:scaley(.3);transform:scaley(.3)}90%{-webkit-transform:scaley(1);transform:scaley(1)}}@keyframes line-scale-pulse-out-rapid{0%{-webkit-transform:scaley(1);transform:scaley(1)}80%{-webkit-transform:scaley(.3);transform:scaley(.3)}90%{-webkit-transform:scaley(1);transform:scaley(1)}}.line-scale-pulse-out-rapid>div{background-color:#fff;width:4px;height:35px;border-radius:2px;margin:2px;-webkit-animation-fill-mode:both;animation-fill-mode:both;display:inline-block;-webkit-animation:line-scale-pulse-out-rapid .9s -.5s infinite cubic-bezier(.11,.49,.38,.78);animation:line-scale-pulse-out-rapid .9s -.5s infinite cubic-bezier(.11,.49,.38,.78)}.line-scale-pulse-out-rapid>div:nth-child(2),.line-scale-pulse-out-rapid>div:nth-child(4){-webkit-animation-delay:-.25s!important;animation-delay:-.25s!important}.line-scale-pulse-out-rapid>div:first-child,.line-scale-pulse-out-rapid>div:nth-child(5){-webkit-animation-delay:0s!important;animation-delay:0s!important}@-webkit-keyframes line-spin-fade-loader{50%{opacity:.3}to{opacity:1}}@keyframes line-spin-fade-loader{50%{opacity:.3}to{opacity:1}}.line-spin-fade-loader{position:relative;top:-10px;left:-4px}.line-spin-fade-loader>div:first-child{top:20px;left:0;-webkit-animation:line-spin-fade-loader 1.2s -.84s infinite ease-in-out;animation:line-spin-fade-loader 1.2s -.84s infinite ease-in-out}.line-spin-fade-loader>div:nth-child(2){top:13.63636px;left:13.63636px;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-animation:line-spin-fade-loader 1.2s -.72s infinite ease-in-out;animation:line-spin-fade-loader 1.2s -.72s infinite ease-in-out}.line-spin-fade-loader>div:nth-child(3){top:0;left:20px;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);-webkit-animation:line-spin-fade-loader 1.2s -.6s infinite ease-in-out;animation:line-spin-fade-loader 1.2s -.6s infinite ease-in-out}.line-spin-fade-loader>div:nth-child(4){top:-13.63636px;left:13.63636px;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-animation:line-spin-fade-loader 1.2s -.48s infinite ease-in-out;animation:line-spin-fade-loader 1.2s -.48s infinite ease-in-out}.line-spin-fade-loader>div:nth-child(5){top:-20px;left:0;-webkit-animation:line-spin-fade-loader 1.2s -.36s infinite ease-in-out;animation:line-spin-fade-loader 1.2s -.36s infinite ease-in-out}.line-spin-fade-loader>div:nth-child(6){top:-13.63636px;left:-13.63636px;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-animation:line-spin-fade-loader 1.2s -.24s infinite ease-in-out;animation:line-spin-fade-loader 1.2s -.24s infinite ease-in-out}.line-spin-fade-loader>div:nth-child(7){top:0;left:-20px;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);-webkit-animation:line-spin-fade-loader 1.2s -.12s infinite ease-in-out;animation:line-spin-fade-loader 1.2s -.12s infinite ease-in-out}.line-spin-fade-loader>div:nth-child(8){top:13.63636px;left:-13.63636px;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-animation:line-spin-fade-loader 1.2s 0s infinite ease-in-out;animation:line-spin-fade-loader 1.2s 0s infinite ease-in-out}.line-spin-fade-loader>div{background-color:#fff;width:4px;height:35px;border-radius:2px;margin:2px;-webkit-animation-fill-mode:both;animation-fill-mode:both;position:absolute;width:5px;height:15px}@-webkit-keyframes triangle-skew-spin{25%{-webkit-transform:perspective(100px) rotateX(180deg) rotateY(0);transform:perspective(100px) rotateX(180deg) rotateY(0)}50%{-webkit-transform:perspective(100px) rotateX(180deg) rotateY(180deg);transform:perspective(100px) rotateX(180deg) rotateY(180deg)}75%{-webkit-transform:perspective(100px) rotateX(0) rotateY(180deg);transform:perspective(100px) rotateX(0) rotateY(180deg)}to{-webkit-transform:perspective(100px) rotateX(0) rotateY(0);transform:perspective(100px) rotateX(0) rotateY(0)}}@keyframes triangle-skew-spin{25%{-webkit-transform:perspective(100px) rotateX(180deg) rotateY(0);transform:perspective(100px) rotateX(180deg) rotateY(0)}50%{-webkit-transform:perspective(100px) rotateX(180deg) rotateY(180deg);transform:perspective(100px) rotateX(180deg) rotateY(180deg)}75%{-webkit-transform:perspective(100px) rotateX(0) rotateY(180deg);transform:perspective(100px) rotateX(0) rotateY(180deg)}to{-webkit-transform:perspective(100px) rotateX(0) rotateY(0);transform:perspective(100px) rotateX(0) rotateY(0)}}.triangle-skew-spin>div{-webkit-animation-fill-mode:both;animation-fill-mode:both;width:0;height:0;border-left:20px solid transparent!important;border-right:20px solid transparent!important;border-bottom:20px solid #fff;background-color:transparent!important;-webkit-animation:triangle-skew-spin 3s 0s cubic-bezier(.09,.57,.49,.9) infinite;animation:triangle-skew-spin 3s 0s cubic-bezier(.09,.57,.49,.9) infinite}@-webkit-keyframes square-spin{25%{-webkit-transform:perspective(100px) rotateX(180deg) rotateY(0);transform:perspective(100px) rotateX(180deg) rotateY(0)}50%{-webkit-transform:perspective(100px) rotateX(180deg) rotateY(180deg);transform:perspective(100px) rotateX(180deg) rotateY(180deg)}75%{-webkit-transform:perspective(100px) rotateX(0) rotateY(180deg);transform:perspective(100px) rotateX(0) rotateY(180deg)}to{-webkit-transform:perspective(100px) rotateX(0) rotateY(0);transform:perspective(100px) rotateX(0) rotateY(0)}}@keyframes square-spin{25%{-webkit-transform:perspective(100px) rotateX(180deg) rotateY(0);transform:perspective(100px) rotateX(180deg) rotateY(0)}50%{-webkit-transform:perspective(100px) rotateX(180deg) rotateY(180deg);transform:perspective(100px) rotateX(180deg) rotateY(180deg)}75%{-webkit-transform:perspective(100px) rotateX(0) rotateY(180deg);transform:perspective(100px) rotateX(0) rotateY(180deg)}to{-webkit-transform:perspective(100px) rotateX(0) rotateY(0);transform:perspective(100px) rotateX(0) rotateY(0)}}.square-spin>div{-webkit-animation-fill-mode:both;animation-fill-mode:both;width:50px;height:50px;background:#fff;border:1px solid red;-webkit-animation:square-spin 3s 0s cubic-bezier(.09,.57,.49,.9) infinite;animation:square-spin 3s 0s cubic-bezier(.09,.57,.49,.9) infinite}@-webkit-keyframes rotate_pacman_half_up{0%{-webkit-transform:rotate(270deg);transform:rotate(270deg)}50%{-webkit-transform:rotate(1turn);transform:rotate(1turn)}to{-webkit-transform:rotate(270deg);transform:rotate(270deg)}}@keyframes rotate_pacman_half_up{0%{-webkit-transform:rotate(270deg);transform:rotate(270deg)}50%{-webkit-transform:rotate(1turn);transform:rotate(1turn)}to{-webkit-transform:rotate(270deg);transform:rotate(270deg)}}@-webkit-keyframes rotate_pacman_half_down{0%{-webkit-transform:rotate(90deg);transform:rotate(90deg)}50%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(90deg);transform:rotate(90deg)}}@keyframes rotate_pacman_half_down{0%{-webkit-transform:rotate(90deg);transform:rotate(90deg)}50%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(90deg);transform:rotate(90deg)}}@-webkit-keyframes pacman-balls{75%{opacity:.7}to{-webkit-transform:translate(-100px,-6.25px);transform:translate(-100px,-6.25px)}}@keyframes pacman-balls{75%{opacity:.7}to{-webkit-transform:translate(-100px,-6.25px);transform:translate(-100px,-6.25px)}}.pacman{position:relative}.pacman>div:nth-child(2){-webkit-animation:pacman-balls 1s -.99s infinite linear;animation:pacman-balls 1s -.99s infinite linear}.pacman>div:nth-child(3){-webkit-animation:pacman-balls 1s -.66s infinite linear;animation:pacman-balls 1s -.66s infinite linear}.pacman>div:nth-child(4){-webkit-animation:pacman-balls 1s -.33s infinite linear;animation:pacman-balls 1s -.33s infinite linear}.pacman>div:nth-child(5){-webkit-animation:pacman-balls 1s 0s infinite linear;animation:pacman-balls 1s 0s infinite linear}.pacman>div:first-of-type{-webkit-animation:rotate_pacman_half_up .5s 0s infinite;animation:rotate_pacman_half_up .5s 0s infinite}.pacman>div:first-of-type,.pacman>div:nth-child(2){width:0;height:0;border-right:25px solid transparent!important;border-top:25px solid #fff;border-left:25px solid #fff;border-bottom:25px solid #fff;border-radius:25px;background-color:transparent!important;position:relative;left:-30px}.pacman>div:nth-child(2){-webkit-animation:rotate_pacman_half_down .5s 0s infinite;animation:rotate_pacman_half_down .5s 0s infinite;margin-top:-50px}.pacman>div:nth-child(3),.pacman>div:nth-child(4),.pacman>div:nth-child(5),.pacman>div:nth-child(6){background-color:#fff;width:15px;height:15px;border-radius:100%;margin:2px;width:10px;height:10px;position:absolute;-webkit-transform:translateY(-6.25px);-ms-transform:translateY(-6.25px);transform:translateY(-6.25px);top:25px;left:70px}@-webkit-keyframes cube-transition{25%{-webkit-transform:translateX(50px) scale(.5) rotate(-90deg);transform:translateX(50px) scale(.5) rotate(-90deg)}50%{-webkit-transform:translate(50px,50px) rotate(-180deg);transform:translate(50px,50px) rotate(-180deg)}75%{-webkit-transform:translateY(50px) scale(.5) rotate(-270deg);transform:translateY(50px) scale(.5) rotate(-270deg)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}@keyframes cube-transition{25%{-webkit-transform:translateX(50px) scale(.5) rotate(-90deg);transform:translateX(50px) scale(.5) rotate(-90deg)}50%{-webkit-transform:translate(50px,50px) rotate(-180deg);transform:translate(50px,50px) rotate(-180deg)}75%{-webkit-transform:translateY(50px) scale(.5) rotate(-270deg);transform:translateY(50px) scale(.5) rotate(-270deg)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}.cube-transition{position:relative;-webkit-transform:translate(-25px,-25px);-ms-transform:translate(-25px,-25px);transform:translate(-25px,-25px)}.cube-transition>div{-webkit-animation-fill-mode:both;animation-fill-mode:both;width:10px;height:10px;position:absolute;top:-5px;left:-5px;background-color:#fff;-webkit-animation:cube-transition 1.6s 0s infinite ease-in-out;animation:cube-transition 1.6s 0s infinite ease-in-out}.cube-transition>div:last-child{-webkit-animation-delay:-.8s;animation-delay:-.8s}@-webkit-keyframes spin-rotate{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}50%{-webkit-transform:rotate(180deg);transform:rotate(180deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes spin-rotate{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}50%{-webkit-transform:rotate(180deg);transform:rotate(180deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.semi-circle-spin{position:relative;width:35px;height:35px;overflow:hidden}.semi-circle-spin>div{position:absolute;border-width:0;border-radius:100%;-webkit-animation:spin-rotate .6s 0s infinite linear;animation:spin-rotate .6s 0s infinite linear;background-image:-webkit-linear-gradient(transparent,transparent 30%,#fff 0,#fff);background-image:linear-gradient(transparent,transparent 30%,#fff 0,#fff);width:100%;height:100%}@-webkit-keyframes bar-progress{0%{-webkit-transform:scaleY(20%);transform:scaleY(20%);opacity:1}25%{-webkit-transform:translateX(6%) scaleY(10%);transform:translateX(6%) scaleY(10%);opacity:.7}50%{-webkit-transform:translateX(20%) scaleY(20%);transform:translateX(20%) scaleY(20%);opacity:1}75%{-webkit-transform:translateX(6%) scaleY(10%);transform:translateX(6%) scaleY(10%);opacity:.7}to{-webkit-transform:scaleY(20%);transform:scaleY(20%);opacity:1}}@keyframes bar-progress{0%{-webkit-transform:scaleY(20%);transform:scaleY(20%);opacity:1}25%{-webkit-transform:translateX(6%) scaleY(10%);transform:translateX(6%) scaleY(10%);opacity:.7}50%{-webkit-transform:translateX(20%) scaleY(20%);transform:translateX(20%) scaleY(20%);opacity:1}75%{-webkit-transform:translateX(6%) scaleY(10%);transform:translateX(6%) scaleY(10%);opacity:.7}to{-webkit-transform:scaleY(20%);transform:scaleY(20%);opacity:1}}.bar-progress{width:30%;height:12px}.bar-progress>div{position:relative;width:20%;height:12px;border-radius:10px;background-color:#fff;-webkit-animation:bar-progress 3s cubic-bezier(.57,.1,.44,.93) infinite;animation:bar-progress 3s cubic-bezier(.57,.1,.44,.93) infinite;opacity:1}@-webkit-keyframes bar-swing{0%{left:0}50%{left:70%}to{left:0}}@keyframes bar-swing{0%{left:0}50%{left:70%}to{left:0}}.bar-swing,.bar-swing>div{width:30%;height:8px}.bar-swing>div{position:relative;border-radius:10px;background-color:#fff;-webkit-animation:bar-swing 1.5s infinite;animation:bar-swing 1.5s infinite}@-webkit-keyframes bar-swing-container{0%{left:0;-webkit-transform:translateX(0);transform:translateX(0)}50%{left:70%;-webkit-transform:translateX(-4px);transform:translateX(-4px)}to{left:0;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes bar-swing-container{0%{left:0;-webkit-transform:translateX(0);transform:translateX(0)}50%{left:70%;-webkit-transform:translateX(-4px);transform:translateX(-4px)}to{left:0;-webkit-transform:translateX(0);transform:translateX(0)}}.bar-swing-container{width:20%;height:8px;position:relative}.bar-swing-container div:first-child{position:absolute;width:100%;background-color:hsla(0,0%,100%,.2);height:12px;border-radius:10px}.bar-swing-container div:nth-child(2){position:absolute;width:30%;height:8px;border-radius:10px;background-color:#fff;-webkit-animation:bar-swing-container 2s cubic-bezier(.91,.35,.12,.6) infinite;animation:bar-swing-container 2s cubic-bezier(.91,.35,.12,.6) infinite;margin:2px 2px 0}.mds-loading-parent{position:relative}.mds-loading{position:absolute;z-index:2000;margin:0;top:0;right:0;bottom:0;left:0;transition:opacity .3s;display:flex;flex-direction:column;align-items:center;justify-content:center}.mds-loading-animation+.mds-loading-text{margin-top:20px}