starlight-cannoli-plugins 1.0.13 → 1.0.14

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