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