@aloudata/aloudata-design 2.8.6 → 2.9.0

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.
@@ -0,0 +1,855 @@
1
+ /* stylelint-disable selector-class-pattern, keyframes-name-pattern */
2
+ :root {
3
+ --toastify-color-light: #fff;
4
+ --toastify-color-dark: #121212;
5
+ --toastify-color-info: #3498db;
6
+ --toastify-color-success: #07bc0c;
7
+ --toastify-color-warning: #f1c40f;
8
+ --toastify-color-error: #e74c3c;
9
+ --toastify-color-transparent: rgba(255, 255, 255, 0.7);
10
+ --toastify-icon-color-info: var(--toastify-color-info);
11
+ --toastify-icon-color-success: var(--toastify-color-success);
12
+ --toastify-icon-color-warning: var(--toastify-color-warning);
13
+ --toastify-icon-color-error: var(--toastify-color-error);
14
+ --toastify-toast-width: 360px;
15
+ --toastify-toast-offset: 16px;
16
+ --toastify-toast-top: max(
17
+ var(--toastify-toast-offset),
18
+ env(safe-area-inset-top)
19
+ );
20
+ --toastify-toast-right: max(
21
+ var(--toastify-toast-offset),
22
+ env(safe-area-inset-right)
23
+ );
24
+ --toastify-toast-left: max(
25
+ var(--toastify-toast-offset),
26
+ env(safe-area-inset-left)
27
+ );
28
+ --toastify-toast-bottom: max(
29
+ var(--toastify-toast-offset),
30
+ env(safe-area-inset-bottom)
31
+ );
32
+ --toastify-toast-background: #fff;
33
+ --toastify-toast-min-height: 48px;
34
+ --toastify-toast-max-height: 800px;
35
+ --toastify-toast-bd-radius: 6px;
36
+ --toastify-font-family: sans-serif;
37
+ --toastify-z-index: 9999;
38
+ --toastify-text-color-light: #757575;
39
+ --toastify-text-color-dark: #fff;
40
+ --toastify-text-color-info: #fff;
41
+ --toastify-text-color-success: #fff;
42
+ --toastify-text-color-warning: #fff;
43
+ --toastify-text-color-error: #fff;
44
+ --toastify-spinner-color: #616161;
45
+ --toastify-spinner-color-empty-area: #e0e0e0;
46
+ --toastify-color-progress-light: linear-gradient(
47
+ to right,
48
+ #4cd964,
49
+ #5ac8fa,
50
+ #007aff,
51
+ #34aadc,
52
+ #5856d6,
53
+ #ff2d55
54
+ );
55
+ --toastify-color-progress-dark: #bb86fc;
56
+ --toastify-color-progress-info: var(--toastify-color-info);
57
+ --toastify-color-progress-success: var(--toastify-color-success);
58
+ --toastify-color-progress-warning: var(--toastify-color-warning);
59
+ --toastify-color-progress-error: var(--toastify-color-error);
60
+ --toastify-color-progress-bgo: 0.2;
61
+ }
62
+
63
+ .Toastify__toast-container {
64
+ z-index: var(--toastify-z-index);
65
+ transform: translate3d(0, 0, var(--toastify-z-index));
66
+ position: fixed;
67
+ box-sizing: border-box;
68
+ color: #fff;
69
+ }
70
+
71
+ .Toastify__toast-container--top-left {
72
+ top: var(--toastify-toast-top);
73
+ left: var(--toastify-toast-left);
74
+ }
75
+
76
+ .Toastify__toast-container--top-center {
77
+ top: var(--toastify-toast-top);
78
+ left: 50%;
79
+ transform: translateX(-50%);
80
+ }
81
+
82
+ .Toastify__toast-container--top-right {
83
+ top: var(--toastify-toast-top);
84
+ right: var(--toastify-toast-right);
85
+ }
86
+
87
+ .Toastify__toast-container--bottom-left {
88
+ bottom: var(--toastify-toast-bottom);
89
+ left: var(--toastify-toast-left);
90
+ }
91
+
92
+ .Toastify__toast-container--bottom-center {
93
+ bottom: var(--toastify-toast-bottom);
94
+ left: 50%;
95
+ transform: translateX(-50%);
96
+ }
97
+
98
+ .Toastify__toast-container--bottom-right {
99
+ bottom: var(--toastify-toast-bottom);
100
+ right: var(--toastify-toast-right);
101
+ }
102
+
103
+ @media only screen and (max-width: 480px) {
104
+ .Toastify__toast-container {
105
+ width: 100vw;
106
+ padding: 0;
107
+ left: env(safe-area-inset-left);
108
+ margin: 0;
109
+ }
110
+
111
+ .Toastify__toast-container--top-left,
112
+ .Toastify__toast-container--top-center,
113
+ .Toastify__toast-container--top-right {
114
+ top: env(safe-area-inset-top);
115
+ transform: translateX(0);
116
+ }
117
+
118
+ .Toastify__toast-container--bottom-left,
119
+ .Toastify__toast-container--bottom-center,
120
+ .Toastify__toast-container--bottom-right {
121
+ bottom: env(safe-area-inset-bottom);
122
+ transform: translateX(0);
123
+ }
124
+
125
+ .Toastify__toast-container--rtl {
126
+ right: env(safe-area-inset-right);
127
+ left: initial;
128
+ }
129
+ }
130
+
131
+ .Toastify__toast {
132
+ --y: 0;
133
+
134
+ position: relative;
135
+ touch-action: none;
136
+ min-height: var(--toastify-toast-min-height);
137
+ box-sizing: border-box;
138
+ margin-bottom: 1rem;
139
+ border-radius: var(--toastify-toast-bd-radius);
140
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
141
+ display: flexbox;
142
+ display: flex;
143
+ -ms-flex-pack: justify;
144
+ justify-content: space-between;
145
+ max-height: var(--toastify-toast-max-height);
146
+ font-family: var(--toastify-font-family);
147
+ cursor: default;
148
+ direction: ltr;
149
+
150
+ /* webkit only issue #791 */
151
+ z-index: 0;
152
+ overflow: hidden;
153
+ }
154
+
155
+ .Toastify__toast--stacked {
156
+ position: absolute;
157
+ width: 100%;
158
+ transform: translate3d(0, var(--y), 0) scale(var(--s));
159
+ transition: transform 0.3s;
160
+ }
161
+
162
+ .Toastify__toast--stacked[data-collapsed] .Toastify__toast-body,
163
+ .Toastify__toast--stacked[data-collapsed] .Toastify__close-button {
164
+ transition: opacity 0.1s;
165
+ }
166
+
167
+ .Toastify__toast--stacked[data-collapsed='false'] {
168
+ overflow: visible;
169
+ }
170
+
171
+ .Toastify__toast--stacked[data-collapsed='true']:not(:last-child) > * {
172
+ opacity: 0;
173
+ }
174
+
175
+ .Toastify__toast--stacked::after {
176
+ content: '';
177
+ position: absolute;
178
+ left: 0;
179
+ right: 0;
180
+ height: calc(var(--g) * 1px);
181
+ bottom: 100%;
182
+ }
183
+
184
+ .Toastify__toast--stacked[data-pos='top'] {
185
+ top: 0;
186
+ }
187
+
188
+ .Toastify__toast--stacked[data-pos='bot'] {
189
+ bottom: 0;
190
+ }
191
+
192
+ .Toastify__toast--stacked[data-pos='bot'].Toastify__toast--stacked::before {
193
+ transform-origin: top;
194
+ }
195
+
196
+ .Toastify__toast--stacked[data-pos='top'].Toastify__toast--stacked::before {
197
+ transform-origin: bottom;
198
+ }
199
+
200
+ .Toastify__toast--stacked::before {
201
+ content: '';
202
+ position: absolute;
203
+ left: 0;
204
+ right: 0;
205
+ bottom: 0;
206
+ height: 100%;
207
+ transform: scaleY(3);
208
+ z-index: -1;
209
+ }
210
+
211
+ .Toastify__toast--rtl {
212
+ direction: rtl;
213
+ }
214
+
215
+ .Toastify__toast--close-on-click {
216
+ cursor: pointer;
217
+ }
218
+
219
+ .Toastify__toast-body {
220
+ margin: auto 0;
221
+ flex: 1 1 auto;
222
+ display: flexbox;
223
+ display: flex;
224
+ -ms-flex-align: center;
225
+ align-items: center;
226
+ }
227
+
228
+ .Toastify__toast-body > div:last-child {
229
+ word-break: break-word;
230
+ flex: 1;
231
+ }
232
+
233
+ .Toastify__toast-icon {
234
+ -webkit-margin-end: 10px;
235
+ margin-inline-end: 10px;
236
+ -ms-flex-negative: 0;
237
+ flex-shrink: 0;
238
+ display: flexbox;
239
+ display: flex;
240
+ }
241
+
242
+ .Toastify--animate {
243
+ animation-fill-mode: both;
244
+ animation-duration: 0.5s;
245
+ }
246
+
247
+ .Toastify--animate-icon {
248
+ animation-fill-mode: both;
249
+ animation-duration: 0.3s;
250
+ }
251
+
252
+ @media only screen and (max-width: 480px) {
253
+ .Toastify__toast {
254
+ margin-bottom: 0;
255
+ border-radius: 0;
256
+ }
257
+ }
258
+
259
+ .Toastify__toast-theme--dark {
260
+ background: var(--toastify-color-dark);
261
+ color: var(--toastify-text-color-dark);
262
+ }
263
+
264
+ .Toastify__toast-theme--light {
265
+ background: var(--toastify-color-light);
266
+ color: var(--toastify-text-color-light);
267
+ }
268
+
269
+ .Toastify__toast-theme--colored.Toastify__toast--default {
270
+ background: var(--toastify-color-light);
271
+ color: var(--toastify-text-color-light);
272
+ }
273
+
274
+ .Toastify__toast-theme--colored.Toastify__toast--info {
275
+ color: var(--toastify-text-color-info);
276
+ background: var(--toastify-color-info);
277
+ }
278
+
279
+ .Toastify__toast-theme--colored.Toastify__toast--success {
280
+ color: var(--toastify-text-color-success);
281
+ background: var(--toastify-color-success);
282
+ }
283
+
284
+ .Toastify__toast-theme--colored.Toastify__toast--warning {
285
+ color: var(--toastify-text-color-warning);
286
+ background: var(--toastify-color-warning);
287
+ }
288
+
289
+ .Toastify__toast-theme--colored.Toastify__toast--error {
290
+ color: var(--toastify-text-color-error);
291
+ background: var(--toastify-color-error);
292
+ }
293
+
294
+ .Toastify__progress-bar-theme--light {
295
+ background: var(--toastify-color-progress-light);
296
+ }
297
+
298
+ .Toastify__progress-bar-theme--dark {
299
+ background: var(--toastify-color-progress-dark);
300
+ }
301
+
302
+ .Toastify__progress-bar--info {
303
+ background: var(--toastify-color-progress-info);
304
+ }
305
+
306
+ .Toastify__progress-bar--success {
307
+ background: var(--toastify-color-progress-success);
308
+ }
309
+
310
+ .Toastify__progress-bar--warning {
311
+ background: var(--toastify-color-progress-warning);
312
+ }
313
+
314
+ .Toastify__progress-bar--error {
315
+ background: var(--toastify-color-progress-error);
316
+ }
317
+
318
+ .Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,
319
+ .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,
320
+ .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning,
321
+ .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
322
+ background: var(--toastify-color-transparent);
323
+ }
324
+
325
+ .Toastify__close-button {
326
+ color: #fff;
327
+ background: transparent;
328
+ outline: none;
329
+ border: none;
330
+ padding: 0;
331
+ cursor: pointer;
332
+ opacity: 0.7;
333
+ transition: 0.3s ease;
334
+ -ms-flex-item-align: start;
335
+ align-self: flex-start;
336
+ z-index: 1;
337
+ }
338
+
339
+ .Toastify__close-button--light {
340
+ color: #000;
341
+ opacity: 0.3;
342
+ }
343
+
344
+ .Toastify__close-button > svg {
345
+ fill: currentcolor;
346
+ height: 16px;
347
+ width: 14px;
348
+ }
349
+
350
+ .Toastify__close-button:hover,
351
+ .Toastify__close-button:focus {
352
+ opacity: 1;
353
+ }
354
+
355
+ @keyframes Toastify__trackProgress {
356
+ 0% {
357
+ transform: scaleX(1);
358
+ }
359
+
360
+ 100% {
361
+ transform: scaleX(0);
362
+ }
363
+ }
364
+
365
+ .Toastify__progress-bar {
366
+ position: absolute;
367
+ bottom: 0;
368
+ left: 0;
369
+ width: 100%;
370
+ height: 100%;
371
+ z-index: var(--toastify-z-index);
372
+ opacity: 0.7;
373
+ transform-origin: left;
374
+ border-bottom-left-radius: var(--toastify-toast-bd-radius);
375
+ }
376
+
377
+ .Toastify__progress-bar--animated {
378
+ animation: Toastify__trackProgress linear 1 forwards;
379
+ }
380
+
381
+ .Toastify__progress-bar--controlled {
382
+ transition: transform 0.2s;
383
+ }
384
+
385
+ .Toastify__progress-bar--rtl {
386
+ right: 0;
387
+ left: initial;
388
+ transform-origin: right;
389
+ border-bottom-left-radius: initial;
390
+ border-bottom-right-radius: var(--toastify-toast-bd-radius);
391
+ }
392
+
393
+ .Toastify__progress-bar--wrp {
394
+ position: absolute;
395
+ bottom: 0;
396
+ left: 0;
397
+ width: 100%;
398
+ height: 5px;
399
+ border-bottom-left-radius: var(--toastify-toast-bd-radius);
400
+ }
401
+
402
+ .Toastify__progress-bar--wrp[data-hidden='true'] {
403
+ opacity: 0;
404
+ }
405
+
406
+ .Toastify__progress-bar--bg {
407
+ opacity: var(--toastify-color-progress-bgo);
408
+ width: 100%;
409
+ height: 100%;
410
+ }
411
+
412
+ .Toastify__spinner {
413
+ width: 20px;
414
+ height: 20px;
415
+ box-sizing: border-box;
416
+ border: 2px solid;
417
+ border-radius: 100%;
418
+ border-color: var(--toastify-spinner-color-empty-area);
419
+ border-right-color: var(--toastify-spinner-color);
420
+ animation: Toastify__spin 0.65s linear infinite;
421
+ }
422
+
423
+ @keyframes Toastify__bounceInRight {
424
+ from,
425
+ 60%,
426
+ 75%,
427
+ 90%,
428
+ to {
429
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
430
+ }
431
+
432
+ from {
433
+ opacity: 0;
434
+ transform: translate3d(3000px, 0, 0);
435
+ }
436
+
437
+ 60% {
438
+ opacity: 1;
439
+ transform: translate3d(-25px, 0, 0);
440
+ }
441
+
442
+ 75% {
443
+ transform: translate3d(10px, 0, 0);
444
+ }
445
+
446
+ 90% {
447
+ transform: translate3d(-5px, 0, 0);
448
+ }
449
+
450
+ to {
451
+ transform: none;
452
+ }
453
+ }
454
+ @keyframes Toastify__bounceOutRight {
455
+ 20% {
456
+ opacity: 1;
457
+ transform: translate3d(-20px, var(--y), 0);
458
+ }
459
+
460
+ to {
461
+ opacity: 0;
462
+ transform: translate3d(2000px, var(--y), 0);
463
+ }
464
+ }
465
+ @keyframes Toastify__bounceInLeft {
466
+ from,
467
+ 60%,
468
+ 75%,
469
+ 90%,
470
+ to {
471
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
472
+ }
473
+
474
+ 0% {
475
+ opacity: 0;
476
+ transform: translate3d(-3000px, 0, 0);
477
+ }
478
+
479
+ 60% {
480
+ opacity: 1;
481
+ transform: translate3d(25px, 0, 0);
482
+ }
483
+
484
+ 75% {
485
+ transform: translate3d(-10px, 0, 0);
486
+ }
487
+
488
+ 90% {
489
+ transform: translate3d(5px, 0, 0);
490
+ }
491
+
492
+ to {
493
+ transform: none;
494
+ }
495
+ }
496
+ @keyframes Toastify__bounceOutLeft {
497
+ 20% {
498
+ opacity: 1;
499
+ transform: translate3d(20px, var(--y), 0);
500
+ }
501
+
502
+ to {
503
+ opacity: 0;
504
+ transform: translate3d(-2000px, var(--y), 0);
505
+ }
506
+ }
507
+ @keyframes Toastify__bounceInUp {
508
+ from,
509
+ 60%,
510
+ 75%,
511
+ 90%,
512
+ to {
513
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
514
+ }
515
+
516
+ from {
517
+ opacity: 0;
518
+ transform: translate3d(0, 3000px, 0);
519
+ }
520
+
521
+ 60% {
522
+ opacity: 1;
523
+ transform: translate3d(0, -20px, 0);
524
+ }
525
+
526
+ 75% {
527
+ transform: translate3d(0, 10px, 0);
528
+ }
529
+
530
+ 90% {
531
+ transform: translate3d(0, -5px, 0);
532
+ }
533
+
534
+ to {
535
+ transform: translate3d(0, 0, 0);
536
+ }
537
+ }
538
+ @keyframes Toastify__bounceOutUp {
539
+ 20% {
540
+ transform: translate3d(0, calc(var(--y) - 10px), 0);
541
+ }
542
+
543
+ 40%,
544
+ 45% {
545
+ opacity: 1;
546
+ transform: translate3d(0, calc(var(--y) + 20px), 0);
547
+ }
548
+
549
+ to {
550
+ opacity: 0;
551
+ transform: translate3d(0, -2000px, 0);
552
+ }
553
+ }
554
+ @keyframes Toastify__bounceInDown {
555
+ from,
556
+ 60%,
557
+ 75%,
558
+ 90%,
559
+ to {
560
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
561
+ }
562
+
563
+ 0% {
564
+ opacity: 0;
565
+ transform: translate3d(0, -3000px, 0);
566
+ }
567
+
568
+ 60% {
569
+ opacity: 1;
570
+ transform: translate3d(0, 25px, 0);
571
+ }
572
+
573
+ 75% {
574
+ transform: translate3d(0, -10px, 0);
575
+ }
576
+
577
+ 90% {
578
+ transform: translate3d(0, 5px, 0);
579
+ }
580
+
581
+ to {
582
+ transform: none;
583
+ }
584
+ }
585
+ @keyframes Toastify__bounceOutDown {
586
+ 20% {
587
+ transform: translate3d(0, calc(var(--y) - 10px), 0);
588
+ }
589
+
590
+ 40%,
591
+ 45% {
592
+ opacity: 1;
593
+ transform: translate3d(0, calc(var(--y) + 20px), 0);
594
+ }
595
+
596
+ to {
597
+ opacity: 0;
598
+ transform: translate3d(0, 2000px, 0);
599
+ }
600
+ }
601
+
602
+ .Toastify__bounce-enter--top-left,
603
+ .Toastify__bounce-enter--bottom-left {
604
+ animation-name: Toastify__bounceInLeft;
605
+ }
606
+
607
+ .Toastify__bounce-enter--top-right,
608
+ .Toastify__bounce-enter--bottom-right {
609
+ animation-name: Toastify__bounceInRight;
610
+ }
611
+
612
+ .Toastify__bounce-enter--top-center {
613
+ animation-name: Toastify__bounceInDown;
614
+ }
615
+
616
+ .Toastify__bounce-enter--bottom-center {
617
+ animation-name: Toastify__bounceInUp;
618
+ }
619
+
620
+ .Toastify__bounce-exit--top-left,
621
+ .Toastify__bounce-exit--bottom-left {
622
+ animation-name: Toastify__bounceOutLeft;
623
+ }
624
+
625
+ .Toastify__bounce-exit--top-right,
626
+ .Toastify__bounce-exit--bottom-right {
627
+ animation-name: Toastify__bounceOutRight;
628
+ }
629
+
630
+ .Toastify__bounce-exit--top-center {
631
+ animation-name: Toastify__bounceOutUp;
632
+ }
633
+
634
+ .Toastify__bounce-exit--bottom-center {
635
+ animation-name: Toastify__bounceOutDown;
636
+ }
637
+
638
+ @keyframes Toastify__zoomIn {
639
+ from {
640
+ opacity: 0;
641
+ transform: scale3d(0.3, 0.3, 0.3);
642
+ }
643
+
644
+ 50% {
645
+ opacity: 1;
646
+ }
647
+ }
648
+ @keyframes Toastify__zoomOut {
649
+ from {
650
+ opacity: 1;
651
+ }
652
+
653
+ 50% {
654
+ opacity: 0;
655
+ transform: translate3d(0, var(--y), 0) scale3d(0.3, 0.3, 0.3);
656
+ }
657
+
658
+ to {
659
+ opacity: 0;
660
+ }
661
+ }
662
+
663
+ .Toastify__zoom-enter {
664
+ animation-name: Toastify__zoomIn;
665
+ }
666
+
667
+ .Toastify__zoom-exit {
668
+ animation-name: Toastify__zoomOut;
669
+ }
670
+
671
+ @keyframes Toastify__flipIn {
672
+ from {
673
+ transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
674
+ animation-timing-function: ease-in;
675
+ opacity: 0;
676
+ }
677
+
678
+ 40% {
679
+ transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
680
+ animation-timing-function: ease-in;
681
+ }
682
+
683
+ 60% {
684
+ transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
685
+ opacity: 1;
686
+ }
687
+
688
+ 80% {
689
+ transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
690
+ }
691
+
692
+ to {
693
+ transform: perspective(400px);
694
+ }
695
+ }
696
+ @keyframes Toastify__flipOut {
697
+ from {
698
+ transform: translate3d(0, var(--y), 0) perspective(400px);
699
+ }
700
+
701
+ 30% {
702
+ transform: translate3d(0, var(--y), 0) perspective(400px)
703
+ rotate3d(1, 0, 0, -20deg);
704
+ opacity: 1;
705
+ }
706
+
707
+ to {
708
+ transform: translate3d(0, var(--y), 0) perspective(400px)
709
+ rotate3d(1, 0, 0, 90deg);
710
+ opacity: 0;
711
+ }
712
+ }
713
+
714
+ .Toastify__flip-enter {
715
+ animation-name: Toastify__flipIn;
716
+ }
717
+
718
+ .Toastify__flip-exit {
719
+ animation-name: Toastify__flipOut;
720
+ }
721
+
722
+ @keyframes Toastify__slideInRight {
723
+ from {
724
+ transform: translate3d(110%, 0, 0);
725
+ visibility: visible;
726
+ }
727
+
728
+ to {
729
+ transform: translate3d(0, var(--y), 0);
730
+ }
731
+ }
732
+ @keyframes Toastify__slideInLeft {
733
+ from {
734
+ transform: translate3d(-110%, 0, 0);
735
+ visibility: visible;
736
+ }
737
+
738
+ to {
739
+ transform: translate3d(0, var(--y), 0);
740
+ }
741
+ }
742
+ @keyframes Toastify__slideInUp {
743
+ from {
744
+ transform: translate3d(0, 110%, 0);
745
+ visibility: visible;
746
+ }
747
+
748
+ to {
749
+ transform: translate3d(0, var(--y), 0);
750
+ }
751
+ }
752
+ @keyframes Toastify__slideInDown {
753
+ from {
754
+ transform: translate3d(0, -110%, 0);
755
+ visibility: visible;
756
+ }
757
+
758
+ to {
759
+ transform: translate3d(0, var(--y), 0);
760
+ }
761
+ }
762
+ @keyframes Toastify__slideOutRight {
763
+ from {
764
+ transform: translate3d(0, var(--y), 0);
765
+ }
766
+
767
+ to {
768
+ visibility: hidden;
769
+ transform: translate3d(110%, var(--y), 0);
770
+ }
771
+ }
772
+ @keyframes Toastify__slideOutLeft {
773
+ from {
774
+ transform: translate3d(0, var(--y), 0);
775
+ }
776
+
777
+ to {
778
+ visibility: hidden;
779
+ transform: translate3d(-110%, var(--y), 0);
780
+ }
781
+ }
782
+ @keyframes Toastify__slideOutDown {
783
+ from {
784
+ transform: translate3d(0, var(--y), 0);
785
+ }
786
+
787
+ to {
788
+ visibility: hidden;
789
+ transform: translate3d(0, 500px, 0);
790
+ }
791
+ }
792
+ @keyframes Toastify__slideOutUp {
793
+ from {
794
+ transform: translate3d(0, var(--y), 0);
795
+ }
796
+
797
+ to {
798
+ visibility: hidden;
799
+ transform: translate3d(0, -500px, 0);
800
+ }
801
+ }
802
+
803
+ .Toastify__slide-enter--top-left,
804
+ .Toastify__slide-enter--bottom-left {
805
+ animation-name: Toastify__slideInLeft;
806
+ }
807
+
808
+ .Toastify__slide-enter--top-right,
809
+ .Toastify__slide-enter--bottom-right {
810
+ animation-name: Toastify__slideInRight;
811
+ }
812
+
813
+ .Toastify__slide-enter--top-center {
814
+ animation-name: Toastify__slideInDown;
815
+ }
816
+
817
+ .Toastify__slide-enter--bottom-center {
818
+ animation-name: Toastify__slideInUp;
819
+ }
820
+
821
+ .Toastify__slide-exit--top-left,
822
+ .Toastify__slide-exit--bottom-left {
823
+ animation-name: Toastify__slideOutLeft;
824
+ animation-timing-function: ease-in;
825
+ animation-duration: 0.3s;
826
+ }
827
+
828
+ .Toastify__slide-exit--top-right,
829
+ .Toastify__slide-exit--bottom-right {
830
+ animation-name: Toastify__slideOutRight;
831
+ animation-timing-function: ease-in;
832
+ animation-duration: 0.3s;
833
+ }
834
+
835
+ .Toastify__slide-exit--top-center {
836
+ animation-name: Toastify__slideOutUp;
837
+ animation-timing-function: ease-in;
838
+ animation-duration: 0.3s;
839
+ }
840
+
841
+ .Toastify__slide-exit--bottom-center {
842
+ animation-name: Toastify__slideOutDown;
843
+ animation-timing-function: ease-in;
844
+ animation-duration: 0.3s;
845
+ }
846
+
847
+ @keyframes Toastify__spin {
848
+ from {
849
+ transform: rotate(0deg);
850
+ }
851
+
852
+ to {
853
+ transform: rotate(360deg);
854
+ }
855
+ }