@keenmate/pure-css 1.0.0-rc01

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