@coreui/coreui 4.0.4 → 4.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (144) hide show
  1. package/README.md +5 -8
  2. package/dist/css/coreui-grid.css +254 -205
  3. package/dist/css/coreui-grid.css.map +1 -1
  4. package/dist/css/coreui-grid.min.css +2 -2
  5. package/dist/css/coreui-grid.min.css.map +1 -1
  6. package/dist/css/coreui-grid.rtl.css +411 -362
  7. package/dist/css/coreui-grid.rtl.css.map +1 -1
  8. package/dist/css/coreui-grid.rtl.min.css +3 -3
  9. package/dist/css/coreui-grid.rtl.min.css.map +1 -1
  10. package/dist/css/coreui-reboot.css +63 -8
  11. package/dist/css/coreui-reboot.css.map +1 -1
  12. package/dist/css/coreui-reboot.min.css +2 -2
  13. package/dist/css/coreui-reboot.min.css.map +1 -1
  14. package/dist/css/coreui-reboot.rtl.css +64 -9
  15. package/dist/css/coreui-reboot.rtl.css.map +1 -1
  16. package/dist/css/coreui-reboot.rtl.min.css +3 -3
  17. package/dist/css/coreui-reboot.rtl.min.css.map +1 -1
  18. package/dist/css/coreui-utilities.css +181 -81
  19. package/dist/css/coreui-utilities.css.map +1 -1
  20. package/dist/css/coreui-utilities.min.css +2 -2
  21. package/dist/css/coreui-utilities.min.css.map +1 -1
  22. package/dist/css/coreui-utilities.rtl.css +380 -280
  23. package/dist/css/coreui-utilities.rtl.css.map +1 -1
  24. package/dist/css/coreui-utilities.rtl.min.css +3 -3
  25. package/dist/css/coreui-utilities.rtl.min.css.map +1 -1
  26. package/dist/css/coreui.css +712 -345
  27. package/dist/css/coreui.css.map +1 -1
  28. package/dist/css/coreui.min.css +2 -2
  29. package/dist/css/coreui.min.css.map +1 -1
  30. package/dist/css/coreui.rtl.css +893 -541
  31. package/dist/css/coreui.rtl.css.map +1 -1
  32. package/dist/css/coreui.rtl.min.css +3 -3
  33. package/dist/css/coreui.rtl.min.css.map +1 -1
  34. package/dist/js/coreui.bundle.js +855 -746
  35. package/dist/js/coreui.bundle.js.map +1 -1
  36. package/dist/js/coreui.bundle.min.js +3 -3
  37. package/dist/js/coreui.bundle.min.js.map +1 -1
  38. package/dist/js/coreui.esm.js +708 -644
  39. package/dist/js/coreui.esm.js.map +1 -1
  40. package/dist/js/coreui.esm.min.js +3 -3
  41. package/dist/js/coreui.esm.min.js.map +1 -1
  42. package/dist/js/coreui.js +718 -656
  43. package/dist/js/coreui.js.map +1 -1
  44. package/dist/js/coreui.min.js +3 -3
  45. package/dist/js/coreui.min.js.map +1 -1
  46. package/js/dist/alert.js +82 -49
  47. package/js/dist/alert.js.map +1 -1
  48. package/js/dist/base-component.js +26 -18
  49. package/js/dist/base-component.js.map +1 -1
  50. package/js/dist/button.js +23 -13
  51. package/js/dist/button.js.map +1 -1
  52. package/js/dist/carousel.js +95 -50
  53. package/js/dist/carousel.js.map +1 -1
  54. package/js/dist/collapse.js +125 -139
  55. package/js/dist/collapse.js.map +1 -1
  56. package/js/dist/dom/data.js +6 -6
  57. package/js/dist/dom/data.js.map +1 -1
  58. package/js/dist/dom/event-handler.js +15 -6
  59. package/js/dist/dom/event-handler.js.map +1 -1
  60. package/js/dist/dom/manipulator.js +7 -7
  61. package/js/dist/dom/manipulator.js.map +1 -1
  62. package/js/dist/dom/selector-engine.js +74 -9
  63. package/js/dist/dom/selector-engine.js.map +1 -1
  64. package/js/dist/dropdown.js +125 -112
  65. package/js/dist/dropdown.js.map +1 -1
  66. package/js/dist/modal.js +270 -93
  67. package/js/dist/modal.js.map +1 -1
  68. package/js/dist/offcanvas.js +231 -62
  69. package/js/dist/offcanvas.js.map +1 -1
  70. package/js/dist/popover.js +29 -59
  71. package/js/dist/popover.js.map +1 -1
  72. package/js/dist/scrollspy.js +45 -35
  73. package/js/dist/scrollspy.js.map +1 -1
  74. package/js/dist/tab.js +45 -23
  75. package/js/dist/tab.js.map +1 -1
  76. package/js/dist/toast.js +132 -34
  77. package/js/dist/toast.js.map +1 -1
  78. package/js/dist/tooltip.js +127 -109
  79. package/js/dist/tooltip.js.map +1 -1
  80. package/js/src/alert.js +21 -47
  81. package/js/src/base-component.js +3 -3
  82. package/js/src/button.js +1 -1
  83. package/js/src/carousel.js +10 -4
  84. package/js/src/collapse.js +66 -119
  85. package/js/src/dom/data.js +1 -1
  86. package/js/src/dom/event-handler.js +1 -2
  87. package/js/src/dom/manipulator.js +3 -3
  88. package/js/src/dom/selector-engine.js +18 -1
  89. package/js/src/dropdown.js +53 -68
  90. package/js/src/modal.js +24 -35
  91. package/js/src/navigation.js +6 -4
  92. package/js/src/offcanvas.js +16 -18
  93. package/js/src/popover.js +7 -49
  94. package/js/src/scrollspy.js +1 -1
  95. package/js/src/sidebar.js +23 -27
  96. package/js/src/tab.js +1 -1
  97. package/js/src/toast.js +11 -11
  98. package/js/src/tooltip.js +66 -50
  99. package/js/src/util/backdrop.js +6 -5
  100. package/js/src/util/component-functions.js +34 -0
  101. package/js/src/util/focustrap.js +105 -0
  102. package/js/src/util/index.js +39 -11
  103. package/js/src/util/sanitizer.js +21 -22
  104. package/js/src/util/scrollbar.js +1 -1
  105. package/package.json +54 -55
  106. package/scss/_buttons.scss +1 -2
  107. package/scss/_card.scss +2 -1
  108. package/scss/_dropdown.scss +1 -1
  109. package/scss/_functions.scss +51 -12
  110. package/scss/_grid.scss +0 -23
  111. package/scss/_helpers.scss +2 -0
  112. package/scss/_mixins.scss +1 -0
  113. package/scss/_modal.scss +2 -12
  114. package/scss/_nav.scss +1 -2
  115. package/scss/_navbar.scss +30 -1
  116. package/scss/_offcanvas.scss +6 -2
  117. package/scss/_placeholders.scss +51 -0
  118. package/scss/_reboot.scss +12 -8
  119. package/scss/_root.scss +36 -7
  120. package/scss/_tables.scss +9 -5
  121. package/scss/_toasts.scss +2 -2
  122. package/scss/_transitions.scss +6 -0
  123. package/scss/_utilities.scss +31 -8
  124. package/scss/_variables.scss +188 -13
  125. package/scss/coreui-grid.rtl.scss +1 -1
  126. package/scss/coreui-grid.scss +3 -1
  127. package/scss/coreui-reboot.rtl.scss +1 -1
  128. package/scss/coreui-reboot.scss +2 -4
  129. package/scss/coreui-utilities.rtl.scss +1 -1
  130. package/scss/coreui-utilities.scss +1 -1
  131. package/scss/coreui.rtl.scss +1 -1
  132. package/scss/coreui.scss +2 -1
  133. package/scss/forms/_form-control.scss +1 -1
  134. package/scss/forms/_form-select.scss +2 -0
  135. package/scss/helpers/_stacks.scss +15 -0
  136. package/scss/helpers/_vr.scss +8 -0
  137. package/scss/mixins/_backdrop.scss +14 -0
  138. package/scss/mixins/_grid.scss +26 -7
  139. package/scss/mixins/_ltr-rtl.scss +21 -0
  140. package/scss/mixins/_reset-text.scss +1 -1
  141. package/scss/mixins/_utilities.scss +27 -39
  142. package/scss/mixins/_visually-hidden.scss +1 -1
  143. package/scss/sidebar/_sidebar-nav.scss +1 -0
  144. package/scss/sidebar/_sidebar.scss +17 -17
@@ -1,18 +1,72 @@
1
1
  @charset "UTF-8";
2
2
  /*!
3
3
  * CoreUI - HTML, CSS, and JavaScript UI Components Library
4
- * @version v4.0.4
4
+ * @version v4.1.1
5
5
  * @link https://coreui.io/
6
6
  * Copyright (c) 2021 creativeLabs Łukasz Holeczek
7
7
  * License MIT (https://coreui.io/license/)
8
8
  */
9
9
  /*!
10
10
  * CoreUI - HTML, CSS, and JavaScript UI Components Library
11
- * @version v4.0.4
11
+ * @version v4.1.1
12
12
  * @link https://coreui.io/
13
13
  * Copyright (c) 2021 creativeLabs Łukasz Holeczek
14
14
  * License MIT (https://coreui.io/license/)
15
15
  */
16
+ :root {
17
+ --cui-blue: #0d6efd;
18
+ --cui-indigo: #6610f2;
19
+ --cui-purple: #6f42c1;
20
+ --cui-pink: #d63384;
21
+ --cui-red: #dc3545;
22
+ --cui-orange: #fd7e14;
23
+ --cui-yellow: #ffc107;
24
+ --cui-green: #198754;
25
+ --cui-teal: #20c997;
26
+ --cui-cyan: #0dcaf0;
27
+ --cui-white: #fff;
28
+ --cui-gray: #8a93a2;
29
+ --cui-gray-dark: #636f83;
30
+ --cui-gray-100: #ebedef;
31
+ --cui-gray-200: #d8dbe0;
32
+ --cui-gray-300: #c4c9d0;
33
+ --cui-gray-400: #b1b7c1;
34
+ --cui-gray-500: #9da5b1;
35
+ --cui-gray-600: #8a93a2;
36
+ --cui-gray-700: #768192;
37
+ --cui-gray-800: #636f83;
38
+ --cui-gray-900: #4f5d73;
39
+ --cui-primary: #321fdb;
40
+ --cui-secondary: #9da5b1;
41
+ --cui-success: #2eb85c;
42
+ --cui-info: #39f;
43
+ --cui-warning: #f9b115;
44
+ --cui-danger: #e55353;
45
+ --cui-light: #ebedef;
46
+ --cui-dark: #4f5d73;
47
+ --cui-primary-rgb: 50, 31, 219;
48
+ --cui-secondary-rgb: 157, 165, 177;
49
+ --cui-success-rgb: 46, 184, 92;
50
+ --cui-info-rgb: 51, 153, 255;
51
+ --cui-warning-rgb: 249, 177, 21;
52
+ --cui-danger-rgb: 229, 83, 83;
53
+ --cui-light-rgb: 235, 237, 239;
54
+ --cui-dark-rgb: 79, 93, 115;
55
+ --cui-white-rgb: 255, 255, 255;
56
+ --cui-black-rgb: 0, 0, 21;
57
+ --cui-body-color-rgb: 44, 56, 74;
58
+ --cui-body-bg-rgb: 255, 255, 255;
59
+ --cui-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
60
+ --cui-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
61
+ --cui-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
62
+ --cui-body-font-family: var(--cui-font-sans-serif);
63
+ --cui-body-font-size: 1rem;
64
+ --cui-body-font-weight: 400;
65
+ --cui-body-line-height: 1.5;
66
+ --cui-body-color: rgba(44, 56, 74, 0.95);
67
+ --cui-body-bg: #fff;
68
+ }
69
+
16
70
  .container,
17
71
  .container-fluid,
18
72
  .container-xxl,
@@ -58,16 +112,16 @@
58
112
  display: flex;
59
113
  flex-wrap: wrap;
60
114
  margin-top: calc(-1 * var(--cui-gutter-y));
61
- margin-right: calc(-.5 * var(--cui-gutter-x));
62
- margin-left: calc(-.5 * var(--cui-gutter-x));
115
+ margin-right: calc(-0.5 * var(--cui-gutter-x));
116
+ margin-left: calc(-0.5 * var(--cui-gutter-x));
63
117
  }
64
118
  .row > * {
65
119
  box-sizing: border-box;
66
120
  flex-shrink: 0;
67
121
  width: 100%;
68
122
  max-width: 100%;
69
- padding-right: calc(var(--cui-gutter-x) * .5);
70
- padding-left: calc(var(--cui-gutter-x) * .5);
123
+ padding-right: calc(var(--cui-gutter-x) * 0.5);
124
+ padding-left: calc(var(--cui-gutter-x) * 0.5);
71
125
  margin-top: var(--cui-gutter-y);
72
126
  }
73
127
 
@@ -110,206 +164,6 @@
110
164
  width: 16.6666666667%;
111
165
  }
112
166
 
113
- @media (min-width: 576px) {
114
- .col-sm {
115
- flex: 1 0 0%;
116
- }
117
-
118
- .row-cols-sm-auto > * {
119
- flex: 0 0 auto;
120
- width: auto;
121
- }
122
-
123
- .row-cols-sm-1 > * {
124
- flex: 0 0 auto;
125
- width: 100%;
126
- }
127
-
128
- .row-cols-sm-2 > * {
129
- flex: 0 0 auto;
130
- width: 50%;
131
- }
132
-
133
- .row-cols-sm-3 > * {
134
- flex: 0 0 auto;
135
- width: 33.3333333333%;
136
- }
137
-
138
- .row-cols-sm-4 > * {
139
- flex: 0 0 auto;
140
- width: 25%;
141
- }
142
-
143
- .row-cols-sm-5 > * {
144
- flex: 0 0 auto;
145
- width: 20%;
146
- }
147
-
148
- .row-cols-sm-6 > * {
149
- flex: 0 0 auto;
150
- width: 16.6666666667%;
151
- }
152
- }
153
- @media (min-width: 768px) {
154
- .col-md {
155
- flex: 1 0 0%;
156
- }
157
-
158
- .row-cols-md-auto > * {
159
- flex: 0 0 auto;
160
- width: auto;
161
- }
162
-
163
- .row-cols-md-1 > * {
164
- flex: 0 0 auto;
165
- width: 100%;
166
- }
167
-
168
- .row-cols-md-2 > * {
169
- flex: 0 0 auto;
170
- width: 50%;
171
- }
172
-
173
- .row-cols-md-3 > * {
174
- flex: 0 0 auto;
175
- width: 33.3333333333%;
176
- }
177
-
178
- .row-cols-md-4 > * {
179
- flex: 0 0 auto;
180
- width: 25%;
181
- }
182
-
183
- .row-cols-md-5 > * {
184
- flex: 0 0 auto;
185
- width: 20%;
186
- }
187
-
188
- .row-cols-md-6 > * {
189
- flex: 0 0 auto;
190
- width: 16.6666666667%;
191
- }
192
- }
193
- @media (min-width: 992px) {
194
- .col-lg {
195
- flex: 1 0 0%;
196
- }
197
-
198
- .row-cols-lg-auto > * {
199
- flex: 0 0 auto;
200
- width: auto;
201
- }
202
-
203
- .row-cols-lg-1 > * {
204
- flex: 0 0 auto;
205
- width: 100%;
206
- }
207
-
208
- .row-cols-lg-2 > * {
209
- flex: 0 0 auto;
210
- width: 50%;
211
- }
212
-
213
- .row-cols-lg-3 > * {
214
- flex: 0 0 auto;
215
- width: 33.3333333333%;
216
- }
217
-
218
- .row-cols-lg-4 > * {
219
- flex: 0 0 auto;
220
- width: 25%;
221
- }
222
-
223
- .row-cols-lg-5 > * {
224
- flex: 0 0 auto;
225
- width: 20%;
226
- }
227
-
228
- .row-cols-lg-6 > * {
229
- flex: 0 0 auto;
230
- width: 16.6666666667%;
231
- }
232
- }
233
- @media (min-width: 1200px) {
234
- .col-xl {
235
- flex: 1 0 0%;
236
- }
237
-
238
- .row-cols-xl-auto > * {
239
- flex: 0 0 auto;
240
- width: auto;
241
- }
242
-
243
- .row-cols-xl-1 > * {
244
- flex: 0 0 auto;
245
- width: 100%;
246
- }
247
-
248
- .row-cols-xl-2 > * {
249
- flex: 0 0 auto;
250
- width: 50%;
251
- }
252
-
253
- .row-cols-xl-3 > * {
254
- flex: 0 0 auto;
255
- width: 33.3333333333%;
256
- }
257
-
258
- .row-cols-xl-4 > * {
259
- flex: 0 0 auto;
260
- width: 25%;
261
- }
262
-
263
- .row-cols-xl-5 > * {
264
- flex: 0 0 auto;
265
- width: 20%;
266
- }
267
-
268
- .row-cols-xl-6 > * {
269
- flex: 0 0 auto;
270
- width: 16.6666666667%;
271
- }
272
- }
273
- @media (min-width: 1400px) {
274
- .col-xxl {
275
- flex: 1 0 0%;
276
- }
277
-
278
- .row-cols-xxl-auto > * {
279
- flex: 0 0 auto;
280
- width: auto;
281
- }
282
-
283
- .row-cols-xxl-1 > * {
284
- flex: 0 0 auto;
285
- width: 100%;
286
- }
287
-
288
- .row-cols-xxl-2 > * {
289
- flex: 0 0 auto;
290
- width: 50%;
291
- }
292
-
293
- .row-cols-xxl-3 > * {
294
- flex: 0 0 auto;
295
- width: 33.3333333333%;
296
- }
297
-
298
- .row-cols-xxl-4 > * {
299
- flex: 0 0 auto;
300
- width: 25%;
301
- }
302
-
303
- .row-cols-xxl-5 > * {
304
- flex: 0 0 auto;
305
- width: 20%;
306
- }
307
-
308
- .row-cols-xxl-6 > * {
309
- flex: 0 0 auto;
310
- width: 16.6666666667%;
311
- }
312
- }
313
167
  .col-auto {
314
168
  flex: 0 0 auto;
315
169
  width: auto;
@@ -480,6 +334,45 @@
480
334
  }
481
335
 
482
336
  @media (min-width: 576px) {
337
+ .col-sm {
338
+ flex: 1 0 0%;
339
+ }
340
+
341
+ .row-cols-sm-auto > * {
342
+ flex: 0 0 auto;
343
+ width: auto;
344
+ }
345
+
346
+ .row-cols-sm-1 > * {
347
+ flex: 0 0 auto;
348
+ width: 100%;
349
+ }
350
+
351
+ .row-cols-sm-2 > * {
352
+ flex: 0 0 auto;
353
+ width: 50%;
354
+ }
355
+
356
+ .row-cols-sm-3 > * {
357
+ flex: 0 0 auto;
358
+ width: 33.3333333333%;
359
+ }
360
+
361
+ .row-cols-sm-4 > * {
362
+ flex: 0 0 auto;
363
+ width: 25%;
364
+ }
365
+
366
+ .row-cols-sm-5 > * {
367
+ flex: 0 0 auto;
368
+ width: 20%;
369
+ }
370
+
371
+ .row-cols-sm-6 > * {
372
+ flex: 0 0 auto;
373
+ width: 16.6666666667%;
374
+ }
375
+
483
376
  .col-sm-auto {
484
377
  flex: 0 0 auto;
485
378
  width: auto;
@@ -654,6 +547,45 @@
654
547
  }
655
548
  }
656
549
  @media (min-width: 768px) {
550
+ .col-md {
551
+ flex: 1 0 0%;
552
+ }
553
+
554
+ .row-cols-md-auto > * {
555
+ flex: 0 0 auto;
556
+ width: auto;
557
+ }
558
+
559
+ .row-cols-md-1 > * {
560
+ flex: 0 0 auto;
561
+ width: 100%;
562
+ }
563
+
564
+ .row-cols-md-2 > * {
565
+ flex: 0 0 auto;
566
+ width: 50%;
567
+ }
568
+
569
+ .row-cols-md-3 > * {
570
+ flex: 0 0 auto;
571
+ width: 33.3333333333%;
572
+ }
573
+
574
+ .row-cols-md-4 > * {
575
+ flex: 0 0 auto;
576
+ width: 25%;
577
+ }
578
+
579
+ .row-cols-md-5 > * {
580
+ flex: 0 0 auto;
581
+ width: 20%;
582
+ }
583
+
584
+ .row-cols-md-6 > * {
585
+ flex: 0 0 auto;
586
+ width: 16.6666666667%;
587
+ }
588
+
657
589
  .col-md-auto {
658
590
  flex: 0 0 auto;
659
591
  width: auto;
@@ -828,6 +760,45 @@
828
760
  }
829
761
  }
830
762
  @media (min-width: 992px) {
763
+ .col-lg {
764
+ flex: 1 0 0%;
765
+ }
766
+
767
+ .row-cols-lg-auto > * {
768
+ flex: 0 0 auto;
769
+ width: auto;
770
+ }
771
+
772
+ .row-cols-lg-1 > * {
773
+ flex: 0 0 auto;
774
+ width: 100%;
775
+ }
776
+
777
+ .row-cols-lg-2 > * {
778
+ flex: 0 0 auto;
779
+ width: 50%;
780
+ }
781
+
782
+ .row-cols-lg-3 > * {
783
+ flex: 0 0 auto;
784
+ width: 33.3333333333%;
785
+ }
786
+
787
+ .row-cols-lg-4 > * {
788
+ flex: 0 0 auto;
789
+ width: 25%;
790
+ }
791
+
792
+ .row-cols-lg-5 > * {
793
+ flex: 0 0 auto;
794
+ width: 20%;
795
+ }
796
+
797
+ .row-cols-lg-6 > * {
798
+ flex: 0 0 auto;
799
+ width: 16.6666666667%;
800
+ }
801
+
831
802
  .col-lg-auto {
832
803
  flex: 0 0 auto;
833
804
  width: auto;
@@ -1002,6 +973,45 @@
1002
973
  }
1003
974
  }
1004
975
  @media (min-width: 1200px) {
976
+ .col-xl {
977
+ flex: 1 0 0%;
978
+ }
979
+
980
+ .row-cols-xl-auto > * {
981
+ flex: 0 0 auto;
982
+ width: auto;
983
+ }
984
+
985
+ .row-cols-xl-1 > * {
986
+ flex: 0 0 auto;
987
+ width: 100%;
988
+ }
989
+
990
+ .row-cols-xl-2 > * {
991
+ flex: 0 0 auto;
992
+ width: 50%;
993
+ }
994
+
995
+ .row-cols-xl-3 > * {
996
+ flex: 0 0 auto;
997
+ width: 33.3333333333%;
998
+ }
999
+
1000
+ .row-cols-xl-4 > * {
1001
+ flex: 0 0 auto;
1002
+ width: 25%;
1003
+ }
1004
+
1005
+ .row-cols-xl-5 > * {
1006
+ flex: 0 0 auto;
1007
+ width: 20%;
1008
+ }
1009
+
1010
+ .row-cols-xl-6 > * {
1011
+ flex: 0 0 auto;
1012
+ width: 16.6666666667%;
1013
+ }
1014
+
1005
1015
  .col-xl-auto {
1006
1016
  flex: 0 0 auto;
1007
1017
  width: auto;
@@ -1176,6 +1186,45 @@
1176
1186
  }
1177
1187
  }
1178
1188
  @media (min-width: 1400px) {
1189
+ .col-xxl {
1190
+ flex: 1 0 0%;
1191
+ }
1192
+
1193
+ .row-cols-xxl-auto > * {
1194
+ flex: 0 0 auto;
1195
+ width: auto;
1196
+ }
1197
+
1198
+ .row-cols-xxl-1 > * {
1199
+ flex: 0 0 auto;
1200
+ width: 100%;
1201
+ }
1202
+
1203
+ .row-cols-xxl-2 > * {
1204
+ flex: 0 0 auto;
1205
+ width: 50%;
1206
+ }
1207
+
1208
+ .row-cols-xxl-3 > * {
1209
+ flex: 0 0 auto;
1210
+ width: 33.3333333333%;
1211
+ }
1212
+
1213
+ .row-cols-xxl-4 > * {
1214
+ flex: 0 0 auto;
1215
+ width: 25%;
1216
+ }
1217
+
1218
+ .row-cols-xxl-5 > * {
1219
+ flex: 0 0 auto;
1220
+ width: 20%;
1221
+ }
1222
+
1223
+ .row-cols-xxl-6 > * {
1224
+ flex: 0 0 auto;
1225
+ width: 16.6666666667%;
1226
+ }
1227
+
1179
1228
  .col-xxl-auto {
1180
1229
  flex: 0 0 auto;
1181
1230
  width: auto;
@@ -1688,31 +1737,31 @@
1688
1737
  }
1689
1738
 
1690
1739
  .me-0 {
1691
- margin-left: 0 !important;
1740
+ margin-right: 0 !important;
1692
1741
  }
1693
1742
 
1694
1743
  .me-1 {
1695
- margin-left: 0.25rem !important;
1744
+ margin-right: 0.25rem !important;
1696
1745
  }
1697
1746
 
1698
1747
  .me-2 {
1699
- margin-left: 0.5rem !important;
1748
+ margin-right: 0.5rem !important;
1700
1749
  }
1701
1750
 
1702
1751
  .me-3 {
1703
- margin-left: 1rem !important;
1752
+ margin-right: 1rem !important;
1704
1753
  }
1705
1754
 
1706
1755
  .me-4 {
1707
- margin-left: 1.5rem !important;
1756
+ margin-right: 1.5rem !important;
1708
1757
  }
1709
1758
 
1710
1759
  .me-5 {
1711
- margin-left: 3rem !important;
1760
+ margin-right: 3rem !important;
1712
1761
  }
1713
1762
 
1714
1763
  .me-auto {
1715
- margin-left: auto !important;
1764
+ margin-right: auto !important;
1716
1765
  }
1717
1766
 
1718
1767
  .mb-0 {
@@ -1744,31 +1793,31 @@
1744
1793
  }
1745
1794
 
1746
1795
  .ms-0 {
1747
- margin-right: 0 !important;
1796
+ margin-left: 0 !important;
1748
1797
  }
1749
1798
 
1750
1799
  .ms-1 {
1751
- margin-right: 0.25rem !important;
1800
+ margin-left: 0.25rem !important;
1752
1801
  }
1753
1802
 
1754
1803
  .ms-2 {
1755
- margin-right: 0.5rem !important;
1804
+ margin-left: 0.5rem !important;
1756
1805
  }
1757
1806
 
1758
1807
  .ms-3 {
1759
- margin-right: 1rem !important;
1808
+ margin-left: 1rem !important;
1760
1809
  }
1761
1810
 
1762
1811
  .ms-4 {
1763
- margin-right: 1.5rem !important;
1812
+ margin-left: 1.5rem !important;
1764
1813
  }
1765
1814
 
1766
1815
  .ms-5 {
1767
- margin-right: 3rem !important;
1816
+ margin-left: 3rem !important;
1768
1817
  }
1769
1818
 
1770
1819
  .ms-auto {
1771
- margin-right: auto !important;
1820
+ margin-left: auto !important;
1772
1821
  }
1773
1822
 
1774
1823
  .p-0 {
@@ -1880,27 +1929,27 @@
1880
1929
  }
1881
1930
 
1882
1931
  .pe-0 {
1883
- padding-left: 0 !important;
1932
+ padding-right: 0 !important;
1884
1933
  }
1885
1934
 
1886
1935
  .pe-1 {
1887
- padding-left: 0.25rem !important;
1936
+ padding-right: 0.25rem !important;
1888
1937
  }
1889
1938
 
1890
1939
  .pe-2 {
1891
- padding-left: 0.5rem !important;
1940
+ padding-right: 0.5rem !important;
1892
1941
  }
1893
1942
 
1894
1943
  .pe-3 {
1895
- padding-left: 1rem !important;
1944
+ padding-right: 1rem !important;
1896
1945
  }
1897
1946
 
1898
1947
  .pe-4 {
1899
- padding-left: 1.5rem !important;
1948
+ padding-right: 1.5rem !important;
1900
1949
  }
1901
1950
 
1902
1951
  .pe-5 {
1903
- padding-left: 3rem !important;
1952
+ padding-right: 3rem !important;
1904
1953
  }
1905
1954
 
1906
1955
  .pb-0 {
@@ -1928,27 +1977,27 @@
1928
1977
  }
1929
1978
 
1930
1979
  .ps-0 {
1931
- padding-right: 0 !important;
1980
+ padding-left: 0 !important;
1932
1981
  }
1933
1982
 
1934
1983
  .ps-1 {
1935
- padding-right: 0.25rem !important;
1984
+ padding-left: 0.25rem !important;
1936
1985
  }
1937
1986
 
1938
1987
  .ps-2 {
1939
- padding-right: 0.5rem !important;
1988
+ padding-left: 0.5rem !important;
1940
1989
  }
1941
1990
 
1942
1991
  .ps-3 {
1943
- padding-right: 1rem !important;
1992
+ padding-left: 1rem !important;
1944
1993
  }
1945
1994
 
1946
1995
  .ps-4 {
1947
- padding-right: 1.5rem !important;
1996
+ padding-left: 1.5rem !important;
1948
1997
  }
1949
1998
 
1950
1999
  .ps-5 {
1951
- padding-right: 3rem !important;
2000
+ padding-left: 3rem !important;
1952
2001
  }
1953
2002
 
1954
2003
  @media (min-width: 576px) {
@@ -2291,31 +2340,31 @@
2291
2340
  }
2292
2341
 
2293
2342
  .me-sm-0 {
2294
- margin-left: 0 !important;
2343
+ margin-right: 0 !important;
2295
2344
  }
2296
2345
 
2297
2346
  .me-sm-1 {
2298
- margin-left: 0.25rem !important;
2347
+ margin-right: 0.25rem !important;
2299
2348
  }
2300
2349
 
2301
2350
  .me-sm-2 {
2302
- margin-left: 0.5rem !important;
2351
+ margin-right: 0.5rem !important;
2303
2352
  }
2304
2353
 
2305
2354
  .me-sm-3 {
2306
- margin-left: 1rem !important;
2355
+ margin-right: 1rem !important;
2307
2356
  }
2308
2357
 
2309
2358
  .me-sm-4 {
2310
- margin-left: 1.5rem !important;
2359
+ margin-right: 1.5rem !important;
2311
2360
  }
2312
2361
 
2313
2362
  .me-sm-5 {
2314
- margin-left: 3rem !important;
2363
+ margin-right: 3rem !important;
2315
2364
  }
2316
2365
 
2317
2366
  .me-sm-auto {
2318
- margin-left: auto !important;
2367
+ margin-right: auto !important;
2319
2368
  }
2320
2369
 
2321
2370
  .mb-sm-0 {
@@ -2347,31 +2396,31 @@
2347
2396
  }
2348
2397
 
2349
2398
  .ms-sm-0 {
2350
- margin-right: 0 !important;
2399
+ margin-left: 0 !important;
2351
2400
  }
2352
2401
 
2353
2402
  .ms-sm-1 {
2354
- margin-right: 0.25rem !important;
2403
+ margin-left: 0.25rem !important;
2355
2404
  }
2356
2405
 
2357
2406
  .ms-sm-2 {
2358
- margin-right: 0.5rem !important;
2407
+ margin-left: 0.5rem !important;
2359
2408
  }
2360
2409
 
2361
2410
  .ms-sm-3 {
2362
- margin-right: 1rem !important;
2411
+ margin-left: 1rem !important;
2363
2412
  }
2364
2413
 
2365
2414
  .ms-sm-4 {
2366
- margin-right: 1.5rem !important;
2415
+ margin-left: 1.5rem !important;
2367
2416
  }
2368
2417
 
2369
2418
  .ms-sm-5 {
2370
- margin-right: 3rem !important;
2419
+ margin-left: 3rem !important;
2371
2420
  }
2372
2421
 
2373
2422
  .ms-sm-auto {
2374
- margin-right: auto !important;
2423
+ margin-left: auto !important;
2375
2424
  }
2376
2425
 
2377
2426
  .p-sm-0 {
@@ -2483,27 +2532,27 @@
2483
2532
  }
2484
2533
 
2485
2534
  .pe-sm-0 {
2486
- padding-left: 0 !important;
2535
+ padding-right: 0 !important;
2487
2536
  }
2488
2537
 
2489
2538
  .pe-sm-1 {
2490
- padding-left: 0.25rem !important;
2539
+ padding-right: 0.25rem !important;
2491
2540
  }
2492
2541
 
2493
2542
  .pe-sm-2 {
2494
- padding-left: 0.5rem !important;
2543
+ padding-right: 0.5rem !important;
2495
2544
  }
2496
2545
 
2497
2546
  .pe-sm-3 {
2498
- padding-left: 1rem !important;
2547
+ padding-right: 1rem !important;
2499
2548
  }
2500
2549
 
2501
2550
  .pe-sm-4 {
2502
- padding-left: 1.5rem !important;
2551
+ padding-right: 1.5rem !important;
2503
2552
  }
2504
2553
 
2505
2554
  .pe-sm-5 {
2506
- padding-left: 3rem !important;
2555
+ padding-right: 3rem !important;
2507
2556
  }
2508
2557
 
2509
2558
  .pb-sm-0 {
@@ -2531,27 +2580,27 @@
2531
2580
  }
2532
2581
 
2533
2582
  .ps-sm-0 {
2534
- padding-right: 0 !important;
2583
+ padding-left: 0 !important;
2535
2584
  }
2536
2585
 
2537
2586
  .ps-sm-1 {
2538
- padding-right: 0.25rem !important;
2587
+ padding-left: 0.25rem !important;
2539
2588
  }
2540
2589
 
2541
2590
  .ps-sm-2 {
2542
- padding-right: 0.5rem !important;
2591
+ padding-left: 0.5rem !important;
2543
2592
  }
2544
2593
 
2545
2594
  .ps-sm-3 {
2546
- padding-right: 1rem !important;
2595
+ padding-left: 1rem !important;
2547
2596
  }
2548
2597
 
2549
2598
  .ps-sm-4 {
2550
- padding-right: 1.5rem !important;
2599
+ padding-left: 1.5rem !important;
2551
2600
  }
2552
2601
 
2553
2602
  .ps-sm-5 {
2554
- padding-right: 3rem !important;
2603
+ padding-left: 3rem !important;
2555
2604
  }
2556
2605
  }
2557
2606
  @media (min-width: 768px) {
@@ -2894,31 +2943,31 @@
2894
2943
  }
2895
2944
 
2896
2945
  .me-md-0 {
2897
- margin-left: 0 !important;
2946
+ margin-right: 0 !important;
2898
2947
  }
2899
2948
 
2900
2949
  .me-md-1 {
2901
- margin-left: 0.25rem !important;
2950
+ margin-right: 0.25rem !important;
2902
2951
  }
2903
2952
 
2904
2953
  .me-md-2 {
2905
- margin-left: 0.5rem !important;
2954
+ margin-right: 0.5rem !important;
2906
2955
  }
2907
2956
 
2908
2957
  .me-md-3 {
2909
- margin-left: 1rem !important;
2958
+ margin-right: 1rem !important;
2910
2959
  }
2911
2960
 
2912
2961
  .me-md-4 {
2913
- margin-left: 1.5rem !important;
2962
+ margin-right: 1.5rem !important;
2914
2963
  }
2915
2964
 
2916
2965
  .me-md-5 {
2917
- margin-left: 3rem !important;
2966
+ margin-right: 3rem !important;
2918
2967
  }
2919
2968
 
2920
2969
  .me-md-auto {
2921
- margin-left: auto !important;
2970
+ margin-right: auto !important;
2922
2971
  }
2923
2972
 
2924
2973
  .mb-md-0 {
@@ -2950,31 +2999,31 @@
2950
2999
  }
2951
3000
 
2952
3001
  .ms-md-0 {
2953
- margin-right: 0 !important;
3002
+ margin-left: 0 !important;
2954
3003
  }
2955
3004
 
2956
3005
  .ms-md-1 {
2957
- margin-right: 0.25rem !important;
3006
+ margin-left: 0.25rem !important;
2958
3007
  }
2959
3008
 
2960
3009
  .ms-md-2 {
2961
- margin-right: 0.5rem !important;
3010
+ margin-left: 0.5rem !important;
2962
3011
  }
2963
3012
 
2964
3013
  .ms-md-3 {
2965
- margin-right: 1rem !important;
3014
+ margin-left: 1rem !important;
2966
3015
  }
2967
3016
 
2968
3017
  .ms-md-4 {
2969
- margin-right: 1.5rem !important;
3018
+ margin-left: 1.5rem !important;
2970
3019
  }
2971
3020
 
2972
3021
  .ms-md-5 {
2973
- margin-right: 3rem !important;
3022
+ margin-left: 3rem !important;
2974
3023
  }
2975
3024
 
2976
3025
  .ms-md-auto {
2977
- margin-right: auto !important;
3026
+ margin-left: auto !important;
2978
3027
  }
2979
3028
 
2980
3029
  .p-md-0 {
@@ -3086,27 +3135,27 @@
3086
3135
  }
3087
3136
 
3088
3137
  .pe-md-0 {
3089
- padding-left: 0 !important;
3138
+ padding-right: 0 !important;
3090
3139
  }
3091
3140
 
3092
3141
  .pe-md-1 {
3093
- padding-left: 0.25rem !important;
3142
+ padding-right: 0.25rem !important;
3094
3143
  }
3095
3144
 
3096
3145
  .pe-md-2 {
3097
- padding-left: 0.5rem !important;
3146
+ padding-right: 0.5rem !important;
3098
3147
  }
3099
3148
 
3100
3149
  .pe-md-3 {
3101
- padding-left: 1rem !important;
3150
+ padding-right: 1rem !important;
3102
3151
  }
3103
3152
 
3104
3153
  .pe-md-4 {
3105
- padding-left: 1.5rem !important;
3154
+ padding-right: 1.5rem !important;
3106
3155
  }
3107
3156
 
3108
3157
  .pe-md-5 {
3109
- padding-left: 3rem !important;
3158
+ padding-right: 3rem !important;
3110
3159
  }
3111
3160
 
3112
3161
  .pb-md-0 {
@@ -3134,27 +3183,27 @@
3134
3183
  }
3135
3184
 
3136
3185
  .ps-md-0 {
3137
- padding-right: 0 !important;
3186
+ padding-left: 0 !important;
3138
3187
  }
3139
3188
 
3140
3189
  .ps-md-1 {
3141
- padding-right: 0.25rem !important;
3190
+ padding-left: 0.25rem !important;
3142
3191
  }
3143
3192
 
3144
3193
  .ps-md-2 {
3145
- padding-right: 0.5rem !important;
3194
+ padding-left: 0.5rem !important;
3146
3195
  }
3147
3196
 
3148
3197
  .ps-md-3 {
3149
- padding-right: 1rem !important;
3198
+ padding-left: 1rem !important;
3150
3199
  }
3151
3200
 
3152
3201
  .ps-md-4 {
3153
- padding-right: 1.5rem !important;
3202
+ padding-left: 1.5rem !important;
3154
3203
  }
3155
3204
 
3156
3205
  .ps-md-5 {
3157
- padding-right: 3rem !important;
3206
+ padding-left: 3rem !important;
3158
3207
  }
3159
3208
  }
3160
3209
  @media (min-width: 992px) {
@@ -3497,31 +3546,31 @@
3497
3546
  }
3498
3547
 
3499
3548
  .me-lg-0 {
3500
- margin-left: 0 !important;
3549
+ margin-right: 0 !important;
3501
3550
  }
3502
3551
 
3503
3552
  .me-lg-1 {
3504
- margin-left: 0.25rem !important;
3553
+ margin-right: 0.25rem !important;
3505
3554
  }
3506
3555
 
3507
3556
  .me-lg-2 {
3508
- margin-left: 0.5rem !important;
3557
+ margin-right: 0.5rem !important;
3509
3558
  }
3510
3559
 
3511
3560
  .me-lg-3 {
3512
- margin-left: 1rem !important;
3561
+ margin-right: 1rem !important;
3513
3562
  }
3514
3563
 
3515
3564
  .me-lg-4 {
3516
- margin-left: 1.5rem !important;
3565
+ margin-right: 1.5rem !important;
3517
3566
  }
3518
3567
 
3519
3568
  .me-lg-5 {
3520
- margin-left: 3rem !important;
3569
+ margin-right: 3rem !important;
3521
3570
  }
3522
3571
 
3523
3572
  .me-lg-auto {
3524
- margin-left: auto !important;
3573
+ margin-right: auto !important;
3525
3574
  }
3526
3575
 
3527
3576
  .mb-lg-0 {
@@ -3553,31 +3602,31 @@
3553
3602
  }
3554
3603
 
3555
3604
  .ms-lg-0 {
3556
- margin-right: 0 !important;
3605
+ margin-left: 0 !important;
3557
3606
  }
3558
3607
 
3559
3608
  .ms-lg-1 {
3560
- margin-right: 0.25rem !important;
3609
+ margin-left: 0.25rem !important;
3561
3610
  }
3562
3611
 
3563
3612
  .ms-lg-2 {
3564
- margin-right: 0.5rem !important;
3613
+ margin-left: 0.5rem !important;
3565
3614
  }
3566
3615
 
3567
3616
  .ms-lg-3 {
3568
- margin-right: 1rem !important;
3617
+ margin-left: 1rem !important;
3569
3618
  }
3570
3619
 
3571
3620
  .ms-lg-4 {
3572
- margin-right: 1.5rem !important;
3621
+ margin-left: 1.5rem !important;
3573
3622
  }
3574
3623
 
3575
3624
  .ms-lg-5 {
3576
- margin-right: 3rem !important;
3625
+ margin-left: 3rem !important;
3577
3626
  }
3578
3627
 
3579
3628
  .ms-lg-auto {
3580
- margin-right: auto !important;
3629
+ margin-left: auto !important;
3581
3630
  }
3582
3631
 
3583
3632
  .p-lg-0 {
@@ -3689,27 +3738,27 @@
3689
3738
  }
3690
3739
 
3691
3740
  .pe-lg-0 {
3692
- padding-left: 0 !important;
3741
+ padding-right: 0 !important;
3693
3742
  }
3694
3743
 
3695
3744
  .pe-lg-1 {
3696
- padding-left: 0.25rem !important;
3745
+ padding-right: 0.25rem !important;
3697
3746
  }
3698
3747
 
3699
3748
  .pe-lg-2 {
3700
- padding-left: 0.5rem !important;
3749
+ padding-right: 0.5rem !important;
3701
3750
  }
3702
3751
 
3703
3752
  .pe-lg-3 {
3704
- padding-left: 1rem !important;
3753
+ padding-right: 1rem !important;
3705
3754
  }
3706
3755
 
3707
3756
  .pe-lg-4 {
3708
- padding-left: 1.5rem !important;
3757
+ padding-right: 1.5rem !important;
3709
3758
  }
3710
3759
 
3711
3760
  .pe-lg-5 {
3712
- padding-left: 3rem !important;
3761
+ padding-right: 3rem !important;
3713
3762
  }
3714
3763
 
3715
3764
  .pb-lg-0 {
@@ -3737,27 +3786,27 @@
3737
3786
  }
3738
3787
 
3739
3788
  .ps-lg-0 {
3740
- padding-right: 0 !important;
3789
+ padding-left: 0 !important;
3741
3790
  }
3742
3791
 
3743
3792
  .ps-lg-1 {
3744
- padding-right: 0.25rem !important;
3793
+ padding-left: 0.25rem !important;
3745
3794
  }
3746
3795
 
3747
3796
  .ps-lg-2 {
3748
- padding-right: 0.5rem !important;
3797
+ padding-left: 0.5rem !important;
3749
3798
  }
3750
3799
 
3751
3800
  .ps-lg-3 {
3752
- padding-right: 1rem !important;
3801
+ padding-left: 1rem !important;
3753
3802
  }
3754
3803
 
3755
3804
  .ps-lg-4 {
3756
- padding-right: 1.5rem !important;
3805
+ padding-left: 1.5rem !important;
3757
3806
  }
3758
3807
 
3759
3808
  .ps-lg-5 {
3760
- padding-right: 3rem !important;
3809
+ padding-left: 3rem !important;
3761
3810
  }
3762
3811
  }
3763
3812
  @media (min-width: 1200px) {
@@ -4100,31 +4149,31 @@
4100
4149
  }
4101
4150
 
4102
4151
  .me-xl-0 {
4103
- margin-left: 0 !important;
4152
+ margin-right: 0 !important;
4104
4153
  }
4105
4154
 
4106
4155
  .me-xl-1 {
4107
- margin-left: 0.25rem !important;
4156
+ margin-right: 0.25rem !important;
4108
4157
  }
4109
4158
 
4110
4159
  .me-xl-2 {
4111
- margin-left: 0.5rem !important;
4160
+ margin-right: 0.5rem !important;
4112
4161
  }
4113
4162
 
4114
4163
  .me-xl-3 {
4115
- margin-left: 1rem !important;
4164
+ margin-right: 1rem !important;
4116
4165
  }
4117
4166
 
4118
4167
  .me-xl-4 {
4119
- margin-left: 1.5rem !important;
4168
+ margin-right: 1.5rem !important;
4120
4169
  }
4121
4170
 
4122
4171
  .me-xl-5 {
4123
- margin-left: 3rem !important;
4172
+ margin-right: 3rem !important;
4124
4173
  }
4125
4174
 
4126
4175
  .me-xl-auto {
4127
- margin-left: auto !important;
4176
+ margin-right: auto !important;
4128
4177
  }
4129
4178
 
4130
4179
  .mb-xl-0 {
@@ -4156,31 +4205,31 @@
4156
4205
  }
4157
4206
 
4158
4207
  .ms-xl-0 {
4159
- margin-right: 0 !important;
4208
+ margin-left: 0 !important;
4160
4209
  }
4161
4210
 
4162
4211
  .ms-xl-1 {
4163
- margin-right: 0.25rem !important;
4212
+ margin-left: 0.25rem !important;
4164
4213
  }
4165
4214
 
4166
4215
  .ms-xl-2 {
4167
- margin-right: 0.5rem !important;
4216
+ margin-left: 0.5rem !important;
4168
4217
  }
4169
4218
 
4170
4219
  .ms-xl-3 {
4171
- margin-right: 1rem !important;
4220
+ margin-left: 1rem !important;
4172
4221
  }
4173
4222
 
4174
4223
  .ms-xl-4 {
4175
- margin-right: 1.5rem !important;
4224
+ margin-left: 1.5rem !important;
4176
4225
  }
4177
4226
 
4178
4227
  .ms-xl-5 {
4179
- margin-right: 3rem !important;
4228
+ margin-left: 3rem !important;
4180
4229
  }
4181
4230
 
4182
4231
  .ms-xl-auto {
4183
- margin-right: auto !important;
4232
+ margin-left: auto !important;
4184
4233
  }
4185
4234
 
4186
4235
  .p-xl-0 {
@@ -4292,27 +4341,27 @@
4292
4341
  }
4293
4342
 
4294
4343
  .pe-xl-0 {
4295
- padding-left: 0 !important;
4344
+ padding-right: 0 !important;
4296
4345
  }
4297
4346
 
4298
4347
  .pe-xl-1 {
4299
- padding-left: 0.25rem !important;
4348
+ padding-right: 0.25rem !important;
4300
4349
  }
4301
4350
 
4302
4351
  .pe-xl-2 {
4303
- padding-left: 0.5rem !important;
4352
+ padding-right: 0.5rem !important;
4304
4353
  }
4305
4354
 
4306
4355
  .pe-xl-3 {
4307
- padding-left: 1rem !important;
4356
+ padding-right: 1rem !important;
4308
4357
  }
4309
4358
 
4310
4359
  .pe-xl-4 {
4311
- padding-left: 1.5rem !important;
4360
+ padding-right: 1.5rem !important;
4312
4361
  }
4313
4362
 
4314
4363
  .pe-xl-5 {
4315
- padding-left: 3rem !important;
4364
+ padding-right: 3rem !important;
4316
4365
  }
4317
4366
 
4318
4367
  .pb-xl-0 {
@@ -4340,27 +4389,27 @@
4340
4389
  }
4341
4390
 
4342
4391
  .ps-xl-0 {
4343
- padding-right: 0 !important;
4392
+ padding-left: 0 !important;
4344
4393
  }
4345
4394
 
4346
4395
  .ps-xl-1 {
4347
- padding-right: 0.25rem !important;
4396
+ padding-left: 0.25rem !important;
4348
4397
  }
4349
4398
 
4350
4399
  .ps-xl-2 {
4351
- padding-right: 0.5rem !important;
4400
+ padding-left: 0.5rem !important;
4352
4401
  }
4353
4402
 
4354
4403
  .ps-xl-3 {
4355
- padding-right: 1rem !important;
4404
+ padding-left: 1rem !important;
4356
4405
  }
4357
4406
 
4358
4407
  .ps-xl-4 {
4359
- padding-right: 1.5rem !important;
4408
+ padding-left: 1.5rem !important;
4360
4409
  }
4361
4410
 
4362
4411
  .ps-xl-5 {
4363
- padding-right: 3rem !important;
4412
+ padding-left: 3rem !important;
4364
4413
  }
4365
4414
  }
4366
4415
  @media (min-width: 1400px) {
@@ -4703,31 +4752,31 @@
4703
4752
  }
4704
4753
 
4705
4754
  .me-xxl-0 {
4706
- margin-left: 0 !important;
4755
+ margin-right: 0 !important;
4707
4756
  }
4708
4757
 
4709
4758
  .me-xxl-1 {
4710
- margin-left: 0.25rem !important;
4759
+ margin-right: 0.25rem !important;
4711
4760
  }
4712
4761
 
4713
4762
  .me-xxl-2 {
4714
- margin-left: 0.5rem !important;
4763
+ margin-right: 0.5rem !important;
4715
4764
  }
4716
4765
 
4717
4766
  .me-xxl-3 {
4718
- margin-left: 1rem !important;
4767
+ margin-right: 1rem !important;
4719
4768
  }
4720
4769
 
4721
4770
  .me-xxl-4 {
4722
- margin-left: 1.5rem !important;
4771
+ margin-right: 1.5rem !important;
4723
4772
  }
4724
4773
 
4725
4774
  .me-xxl-5 {
4726
- margin-left: 3rem !important;
4775
+ margin-right: 3rem !important;
4727
4776
  }
4728
4777
 
4729
4778
  .me-xxl-auto {
4730
- margin-left: auto !important;
4779
+ margin-right: auto !important;
4731
4780
  }
4732
4781
 
4733
4782
  .mb-xxl-0 {
@@ -4759,31 +4808,31 @@
4759
4808
  }
4760
4809
 
4761
4810
  .ms-xxl-0 {
4762
- margin-right: 0 !important;
4811
+ margin-left: 0 !important;
4763
4812
  }
4764
4813
 
4765
4814
  .ms-xxl-1 {
4766
- margin-right: 0.25rem !important;
4815
+ margin-left: 0.25rem !important;
4767
4816
  }
4768
4817
 
4769
4818
  .ms-xxl-2 {
4770
- margin-right: 0.5rem !important;
4819
+ margin-left: 0.5rem !important;
4771
4820
  }
4772
4821
 
4773
4822
  .ms-xxl-3 {
4774
- margin-right: 1rem !important;
4823
+ margin-left: 1rem !important;
4775
4824
  }
4776
4825
 
4777
4826
  .ms-xxl-4 {
4778
- margin-right: 1.5rem !important;
4827
+ margin-left: 1.5rem !important;
4779
4828
  }
4780
4829
 
4781
4830
  .ms-xxl-5 {
4782
- margin-right: 3rem !important;
4831
+ margin-left: 3rem !important;
4783
4832
  }
4784
4833
 
4785
4834
  .ms-xxl-auto {
4786
- margin-right: auto !important;
4835
+ margin-left: auto !important;
4787
4836
  }
4788
4837
 
4789
4838
  .p-xxl-0 {
@@ -4895,27 +4944,27 @@
4895
4944
  }
4896
4945
 
4897
4946
  .pe-xxl-0 {
4898
- padding-left: 0 !important;
4947
+ padding-right: 0 !important;
4899
4948
  }
4900
4949
 
4901
4950
  .pe-xxl-1 {
4902
- padding-left: 0.25rem !important;
4951
+ padding-right: 0.25rem !important;
4903
4952
  }
4904
4953
 
4905
4954
  .pe-xxl-2 {
4906
- padding-left: 0.5rem !important;
4955
+ padding-right: 0.5rem !important;
4907
4956
  }
4908
4957
 
4909
4958
  .pe-xxl-3 {
4910
- padding-left: 1rem !important;
4959
+ padding-right: 1rem !important;
4911
4960
  }
4912
4961
 
4913
4962
  .pe-xxl-4 {
4914
- padding-left: 1.5rem !important;
4963
+ padding-right: 1.5rem !important;
4915
4964
  }
4916
4965
 
4917
4966
  .pe-xxl-5 {
4918
- padding-left: 3rem !important;
4967
+ padding-right: 3rem !important;
4919
4968
  }
4920
4969
 
4921
4970
  .pb-xxl-0 {
@@ -4943,27 +4992,27 @@
4943
4992
  }
4944
4993
 
4945
4994
  .ps-xxl-0 {
4946
- padding-right: 0 !important;
4995
+ padding-left: 0 !important;
4947
4996
  }
4948
4997
 
4949
4998
  .ps-xxl-1 {
4950
- padding-right: 0.25rem !important;
4999
+ padding-left: 0.25rem !important;
4951
5000
  }
4952
5001
 
4953
5002
  .ps-xxl-2 {
4954
- padding-right: 0.5rem !important;
5003
+ padding-left: 0.5rem !important;
4955
5004
  }
4956
5005
 
4957
5006
  .ps-xxl-3 {
4958
- padding-right: 1rem !important;
5007
+ padding-left: 1rem !important;
4959
5008
  }
4960
5009
 
4961
5010
  .ps-xxl-4 {
4962
- padding-right: 1.5rem !important;
5011
+ padding-left: 1.5rem !important;
4963
5012
  }
4964
5013
 
4965
5014
  .ps-xxl-5 {
4966
- padding-right: 3rem !important;
5015
+ padding-left: 3rem !important;
4967
5016
  }
4968
5017
  }
4969
5018
  @media print {