UNPKG

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