zafiro 0.1.3 → 0.1.5

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