stargazer-ui 1.5.12 → 1.5.13

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 (371) hide show
  1. package/.babelrc.json +10 -0
  2. package/.eslintrc.cjs +18 -0
  3. package/.gitattributes +2 -0
  4. package/LICENSE +21 -0
  5. package/dev/index.html +12 -0
  6. package/dev/index.jsx +46 -0
  7. package/dev/index.scss +74 -0
  8. package/dev/pages/ButtonPage.jsx +44 -0
  9. package/dev/pages/CardPage.jsx +81 -0
  10. package/dev/pages/DropdownPage.jsx +32 -0
  11. package/dev/pages/FormPage.jsx +155 -0
  12. package/dev/pages/ListPage.jsx +52 -0
  13. package/dev/pages/ModalPage.jsx +38 -0
  14. package/dev/pages/OverlayPage.jsx +39 -0
  15. package/dev/pages/components.jsx +19 -0
  16. package/dev/stargazerui.css +3762 -0
  17. package/dev/stargazerui.css.map +1 -0
  18. package/dev/test.jsx +87 -0
  19. package/package.json +79 -1
  20. package/rollup.config.js +140 -0
  21. package/scripts/writePackageJsons.js +42 -0
  22. package/src/Bar/Bar.tsx +0 -0
  23. package/src/Bar/Bar.type.ts +9 -0
  24. package/src/Bar/index.ts +0 -0
  25. package/src/Button/Button.tsx +20 -0
  26. package/src/Button/Button.types.ts +8 -0
  27. package/src/Button/index.ts +3 -0
  28. package/src/ButtonGroup/ButtonGroup.tsx +14 -0
  29. package/src/ButtonGroup/ButtonGroup.types.ts +8 -0
  30. package/src/ButtonGroup/index.ts +3 -0
  31. package/src/Card/Card.tsx +70 -0
  32. package/src/Card/Card.types.ts +33 -0
  33. package/src/Card/index.ts +3 -0
  34. package/src/CloseButton/CloseButton.tsx +14 -0
  35. package/src/CloseButton/CloseButton.types.ts +6 -0
  36. package/src/CloseButton/index.ts +3 -0
  37. package/src/Dropdown/Dropdown.tsx +440 -0
  38. package/src/Dropdown/Dropdown.types.ts +60 -0
  39. package/src/Dropdown/DropdownOld.tsx +409 -0
  40. package/src/Dropdown/index.ts +4 -0
  41. package/src/FileUploadButton/FileUploadButton.tsx +27 -0
  42. package/src/FileUploadButton/FileUploadButton.types.ts +9 -0
  43. package/src/FileUploadButton/index.ts +3 -0
  44. package/src/FloatingLabel/FloatingLabel.tsx +22 -0
  45. package/src/FloatingLabel/FloatingLabel.types.ts +11 -0
  46. package/src/FloatingLabel/index.ts +3 -0
  47. package/src/Form/Form.tsx +398 -0
  48. package/src/Form/Form.types.ts +169 -0
  49. package/src/Form/FormSelect.tsx +527 -0
  50. package/src/Form/index.ts +4 -0
  51. package/src/InputGroup/InputGroup.tsx +46 -0
  52. package/src/InputGroup/InputGroup.types.ts +22 -0
  53. package/src/InputGroup/index.ts +4 -0
  54. package/src/List/List.tsx +112 -0
  55. package/src/List/List.types.ts +34 -0
  56. package/src/List/index.ts +4 -0
  57. package/src/Modal/Modal.tsx +229 -0
  58. package/src/Modal/Modal.types.ts +49 -0
  59. package/src/Modal/index.ts +4 -0
  60. package/src/Nav/Nav.tsx +43 -0
  61. package/src/Nav/Nav.types.ts +21 -0
  62. package/src/Nav/index.ts +4 -0
  63. package/src/NavBar/Navbar.tsx +57 -0
  64. package/src/NavBar/Navbar.types.ts +24 -0
  65. package/src/NavBar/index.ts +4 -0
  66. package/src/NavDropdown/NavDropdown.tsx +93 -0
  67. package/src/NavDropdown/NavDropdown.types.ts +6 -0
  68. package/src/NavDropdown/index.ts +3 -0
  69. package/src/Overlay/Overlay.tsx +309 -0
  70. package/src/Overlay/Overlay.types.ts +24 -0
  71. package/{Overlay/index.d.ts → src/Overlay/index.ts} +3 -3
  72. package/src/Popout/Popout.tsx +155 -0
  73. package/src/Popout/Popout.types.ts +42 -0
  74. package/src/Popout/index.ts +3 -0
  75. package/src/Spinner/Spinner.tsx +15 -0
  76. package/src/Spinner/Spinner.types.ts +7 -0
  77. package/src/Spinner/index.ts +3 -0
  78. package/src/Table/Table.tsx +16 -0
  79. package/src/Table/Table.types.ts +9 -0
  80. package/src/Table/index.ts +3 -0
  81. package/src/Tabs/Tabs.tsx +233 -0
  82. package/src/Tabs/Tabs.types.ts +52 -0
  83. package/src/Tabs/index.ts +3 -0
  84. package/src/ToggleButton/ToggleButton.tsx +21 -0
  85. package/src/ToggleButton/ToggleButton.types.ts +8 -0
  86. package/src/ToggleButton/index.ts +3 -0
  87. package/src/assets/tooltip-pointer.svg +3 -0
  88. package/src/assets/warning.svg +39 -0
  89. package/{hooks/index.d.ts → src/hooks/index.ts} +7 -6
  90. package/src/hooks/useClassname.ts +5 -0
  91. package/src/hooks/useDraggable.ts +186 -0
  92. package/src/hooks/useKeepElementFocused.ts +37 -0
  93. package/src/hooks/useQueryParams.ts +12 -0
  94. package/src/hooks/useScreenSize.ts +24 -0
  95. package/src/index.ts +21 -0
  96. package/src/styles/_Card.scss +166 -0
  97. package/src/styles/_CloseButton.scss +51 -0
  98. package/src/styles/_CustomButton.scss +134 -0
  99. package/src/styles/_Dropdown.scss +127 -0
  100. package/src/styles/_FloatingLabel.scss +56 -0
  101. package/src/styles/_Forms.scss +7 -0
  102. package/src/styles/_Grid.scss +178 -0
  103. package/src/styles/_InputGroup.scss +71 -0
  104. package/src/styles/_List.scss +62 -0
  105. package/src/styles/_Modal.scss +234 -0
  106. package/src/styles/_ModalOld.scss +242 -0
  107. package/src/styles/_Nav.scss +36 -0
  108. package/src/styles/_NavBar.scss +116 -0
  109. package/src/styles/_NavDropdown.scss +33 -0
  110. package/src/styles/_OffCanvas.scss +260 -0
  111. package/src/styles/_OverLay.scss +64 -0
  112. package/src/styles/_Popout.scss +75 -0
  113. package/src/styles/_Spinner.scss +19 -0
  114. package/src/styles/_Table.scss +34 -0
  115. package/src/styles/_Tabs.scss +129 -0
  116. package/src/styles/_colors.scss +510 -0
  117. package/src/styles/_components.scss +40 -0
  118. package/src/styles/_functions.scss +134 -0
  119. package/src/styles/_mixins.scss +26 -0
  120. package/src/styles/_reset.scss +237 -0
  121. package/src/styles/_utilities.scss +2480 -0
  122. package/src/styles/_variables.scss +164 -0
  123. package/src/styles/forms/_FormCheck.scss +270 -0
  124. package/src/styles/forms/_FormControl.scss +135 -0
  125. package/src/styles/forms/_FormGroup.scss +26 -0
  126. package/src/styles/forms/_FormLabel.scss +3 -0
  127. package/src/styles/forms/_FormSelect.scss +196 -0
  128. package/src/styles/forms/_FormSlider.scss +116 -0
  129. package/src/styles/forms/_FormText.scss +6 -0
  130. package/{utils/BaseTypes.d.ts → src/utils/BaseTypes.ts} +32 -25
  131. package/src/utils/ContrastingColor.ts +25 -0
  132. package/src/utils/CreateSyntheticEvent.ts +30 -0
  133. package/src/utils/FileImportExport.js +50 -0
  134. package/src/utils/IsInputKey.ts +18 -0
  135. package/src/utils/MergeClassnames.ts +5 -0
  136. package/src/utils/MergeRefs.ts +12 -0
  137. package/src/vite-env.d.ts +1 -0
  138. package/tsconfig-build.json +4 -0
  139. package/tsconfig.json +79 -0
  140. package/tsconfig.node.json +10 -0
  141. package/types/BaseTypes.d.ts +19 -0
  142. package/{Button → types/components/Button}/Button.types.d.ts +2 -1
  143. package/types/components/Button/index.d.ts +1 -0
  144. package/{Card → types/components/Card}/Card.types.d.ts +1 -3
  145. package/types/components/Card/index.d.ts +1 -0
  146. package/{CloseButton → types/components/CloseButton}/CloseButton.types.d.ts +1 -1
  147. package/types/components/CloseButton/index.d.ts +1 -0
  148. package/{Dropdown/DropdownOld.d.ts → types/components/Dropdown/Dropdown.d.ts} +3 -67
  149. package/{Dropdown → types/components/Dropdown}/Dropdown.types.d.ts +11 -12
  150. package/types/components/Dropdown/index.d.ts +1 -0
  151. package/{FloatingLabel → types/components/FloatingLabel}/FloatingLabel.types.d.ts +1 -1
  152. package/types/components/FloatingLabel/index.d.ts +1 -0
  153. package/types/components/Form/Form.d.ts +17 -0
  154. package/types/components/Form/Form.types.d.ts +50 -0
  155. package/types/components/Form/index.d.ts +1 -0
  156. package/types/components/InputGroup/InputGroup.d.ts +6 -0
  157. package/types/components/InputGroup/InputGroup.types.d.ts +10 -0
  158. package/types/components/InputGroup/index.d.ts +1 -0
  159. package/{Modal → types/components/Modal}/Modal.d.ts +1 -1
  160. package/{Modal → types/components/Modal}/Modal.types.d.ts +2 -3
  161. package/types/components/Modal/index.d.ts +1 -0
  162. package/{Nav → types/components/Nav}/Nav.types.d.ts +1 -1
  163. package/types/components/Nav/index.d.ts +1 -0
  164. package/{NavBar → types/components/NavBar}/Navbar.d.ts +2 -1
  165. package/{NavBar → types/components/NavBar}/Navbar.types.d.ts +1 -2
  166. package/types/components/NavBar/index.d.ts +1 -0
  167. package/types/components/NavDropdown/NavDropdown.d.ts +35 -0
  168. package/types/components/NavDropdown/index.d.ts +1 -0
  169. package/{Popout → types/components/Popout}/Popout.types.d.ts +1 -1
  170. package/types/components/Popout/index.d.ts +1 -0
  171. package/types/components/Spinner/index.d.ts +1 -0
  172. package/{Table → types/components/Table}/Table.types.d.ts +1 -1
  173. package/types/components/Table/index.d.ts +1 -0
  174. package/{Tabs → types/components/Tabs}/Tabs.types.d.ts +1 -12
  175. package/types/components/Tabs/index.d.ts +1 -0
  176. package/types/components/ToggleButton/ToggleButton.d.ts +9 -0
  177. package/types/components/ToggleButton/ToggleButton.types.d.ts +0 -0
  178. package/types/components/ToggleButton/index.d.ts +1 -0
  179. package/types/components/index.d.ts +16 -0
  180. package/types/index.d.ts +1 -0
  181. package/vite.config.js +57 -0
  182. package/vite.config.js.timestamp-1708777378490-e94428ceb2bf9.mjs +42 -0
  183. package/Bar/Bar.type.d.ts +0 -6
  184. package/Bar/index.js +0 -2
  185. package/Bar/index.js.map +0 -1
  186. package/Bar/package.json +0 -1
  187. package/Button/Button.js +0 -15
  188. package/Button/Button.js.map +0 -1
  189. package/Button/index.d.ts +0 -3
  190. package/Button/index.js +0 -7
  191. package/Button/index.js.map +0 -1
  192. package/Button/package.json +0 -1
  193. package/ButtonGroup/ButtonGroup.d.ts +0 -4
  194. package/ButtonGroup/ButtonGroup.js +0 -11
  195. package/ButtonGroup/ButtonGroup.js.map +0 -1
  196. package/ButtonGroup/ButtonGroup.types.d.ts +0 -7
  197. package/ButtonGroup/index.d.ts +0 -3
  198. package/ButtonGroup/index.js +0 -7
  199. package/ButtonGroup/index.js.map +0 -1
  200. package/ButtonGroup/package.json +0 -1
  201. package/Card/Card.js +0 -42
  202. package/Card/Card.js.map +0 -1
  203. package/Card/index.d.ts +0 -3
  204. package/Card/index.js +0 -7
  205. package/Card/index.js.map +0 -1
  206. package/Card/package.json +0 -1
  207. package/CloseButton/CloseButton.js +0 -11
  208. package/CloseButton/CloseButton.js.map +0 -1
  209. package/CloseButton/index.d.ts +0 -3
  210. package/CloseButton/index.js +0 -7
  211. package/CloseButton/index.js.map +0 -1
  212. package/CloseButton/package.json +0 -1
  213. package/Dropdown/Dropdown.d.ts +0 -135
  214. package/Dropdown/Dropdown.js +0 -377
  215. package/Dropdown/Dropdown.js.map +0 -1
  216. package/Dropdown/index.d.ts +0 -4
  217. package/Dropdown/index.js +0 -8
  218. package/Dropdown/index.js.map +0 -1
  219. package/Dropdown/package.json +0 -1
  220. package/FileUploadButton/FileUploadButton.d.ts +0 -4
  221. package/FileUploadButton/FileUploadButton.js +0 -20
  222. package/FileUploadButton/FileUploadButton.js.map +0 -1
  223. package/FileUploadButton/FileUploadButton.types.d.ts +0 -7
  224. package/FileUploadButton/index.d.ts +0 -3
  225. package/FileUploadButton/index.js +0 -7
  226. package/FileUploadButton/index.js.map +0 -1
  227. package/FileUploadButton/package.json +0 -1
  228. package/FloatingLabel/FloatingLabel.js +0 -15
  229. package/FloatingLabel/FloatingLabel.js.map +0 -1
  230. package/FloatingLabel/index.d.ts +0 -3
  231. package/FloatingLabel/index.js +0 -7
  232. package/FloatingLabel/index.js.map +0 -1
  233. package/FloatingLabel/package.json +0 -1
  234. package/Form/Form.d.ts +0 -38
  235. package/Form/Form.js +0 -227
  236. package/Form/Form.js.map +0 -1
  237. package/Form/Form.types.d.ts +0 -159
  238. package/Form/FormSelect.d.ts +0 -15
  239. package/Form/FormSelect.js +0 -436
  240. package/Form/FormSelect.js.map +0 -1
  241. package/Form/index.d.ts +0 -4
  242. package/Form/index.js +0 -8
  243. package/Form/index.js.map +0 -1
  244. package/Form/package.json +0 -1
  245. package/InputGroup/InputGroup.d.ts +0 -7
  246. package/InputGroup/InputGroup.js +0 -31
  247. package/InputGroup/InputGroup.js.map +0 -1
  248. package/InputGroup/InputGroup.types.d.ts +0 -17
  249. package/InputGroup/index.d.ts +0 -4
  250. package/InputGroup/index.js +0 -7
  251. package/InputGroup/index.js.map +0 -1
  252. package/InputGroup/package.json +0 -1
  253. package/List/List.d.ts +0 -14
  254. package/List/List.js +0 -77
  255. package/List/List.js.map +0 -1
  256. package/List/List.types.d.ts +0 -28
  257. package/List/index.d.ts +0 -3
  258. package/List/index.js +0 -7
  259. package/List/index.js.map +0 -1
  260. package/List/package.json +0 -1
  261. package/Modal/Modal.js +0 -157
  262. package/Modal/Modal.js.map +0 -1
  263. package/Modal/index.d.ts +0 -3
  264. package/Modal/index.js +0 -7
  265. package/Modal/index.js.map +0 -1
  266. package/Modal/package.json +0 -1
  267. package/Nav/Nav.js +0 -29
  268. package/Nav/Nav.js.map +0 -1
  269. package/Nav/index.d.ts +0 -4
  270. package/Nav/index.js +0 -7
  271. package/Nav/index.js.map +0 -1
  272. package/Nav/package.json +0 -1
  273. package/NavBar/Navbar.js +0 -36
  274. package/NavBar/Navbar.js.map +0 -1
  275. package/NavBar/index.d.ts +0 -4
  276. package/NavBar/index.js +0 -8
  277. package/NavBar/index.js.map +0 -1
  278. package/NavBar/package.json +0 -1
  279. package/NavDropdown/NavDropdown.d.ts +0 -99
  280. package/NavDropdown/NavDropdown.js +0 -75
  281. package/NavDropdown/NavDropdown.js.map +0 -1
  282. package/NavDropdown/index.d.ts +0 -3
  283. package/NavDropdown/index.js +0 -7
  284. package/NavDropdown/index.js.map +0 -1
  285. package/NavDropdown/package.json +0 -1
  286. package/Overlay/Overlay.d.ts +0 -4
  287. package/Overlay/Overlay.js +0 -242
  288. package/Overlay/Overlay.js.map +0 -1
  289. package/Overlay/Overlay.types.d.ts +0 -22
  290. package/Overlay/index.js +0 -7
  291. package/Overlay/index.js.map +0 -1
  292. package/Overlay/package.json +0 -1
  293. package/Popout/Popout.js +0 -111
  294. package/Popout/Popout.js.map +0 -1
  295. package/Popout/index.d.ts +0 -3
  296. package/Popout/index.js +0 -7
  297. package/Popout/index.js.map +0 -1
  298. package/Popout/package.json +0 -1
  299. package/Spinner/Spinner.js +0 -11
  300. package/Spinner/Spinner.js.map +0 -1
  301. package/Spinner/index.d.ts +0 -3
  302. package/Spinner/index.js +0 -7
  303. package/Spinner/index.js.map +0 -1
  304. package/Spinner/package.json +0 -1
  305. package/Table/Table.js +0 -12
  306. package/Table/Table.js.map +0 -1
  307. package/Table/index.d.ts +0 -3
  308. package/Table/index.js +0 -7
  309. package/Table/index.js.map +0 -1
  310. package/Table/package.json +0 -1
  311. package/Tabs/Tabs.js +0 -162
  312. package/Tabs/Tabs.js.map +0 -1
  313. package/Tabs/index.d.ts +0 -3
  314. package/Tabs/index.js +0 -7
  315. package/Tabs/index.js.map +0 -1
  316. package/Tabs/package.json +0 -1
  317. package/ToggleButton/ToggleButton.d.ts +0 -4
  318. package/ToggleButton/ToggleButton.js +0 -18
  319. package/ToggleButton/ToggleButton.js.map +0 -1
  320. package/ToggleButton/ToggleButton.types.d.ts +0 -7
  321. package/ToggleButton/index.d.ts +0 -3
  322. package/ToggleButton/index.js +0 -7
  323. package/ToggleButton/index.js.map +0 -1
  324. package/ToggleButton/package.json +0 -1
  325. package/hooks/index.js +0 -7
  326. package/hooks/index.js.map +0 -1
  327. package/hooks/package.json +0 -1
  328. package/hooks/useClassname.d.ts +0 -2
  329. package/hooks/useClassname.js +0 -7
  330. package/hooks/useClassname.js.map +0 -1
  331. package/hooks/useDraggable.d.ts +0 -23
  332. package/hooks/useDraggable.js +0 -147
  333. package/hooks/useDraggable.js.map +0 -1
  334. package/hooks/useKeepElementFocused.d.ts +0 -2
  335. package/hooks/useKeepElementFocused.js +0 -37
  336. package/hooks/useKeepElementFocused.js.map +0 -1
  337. package/hooks/useQueryParams.d.ts +0 -2
  338. package/hooks/useQueryParams.js +0 -13
  339. package/hooks/useQueryParams.js.map +0 -1
  340. package/hooks/useScreenSize.d.ts +0 -5
  341. package/hooks/useScreenSize.js +0 -21
  342. package/hooks/useScreenSize.js.map +0 -1
  343. package/index.d.ts +0 -18
  344. package/index.js +0 -19
  345. package/index.js.map +0 -1
  346. package/styles/stargazerui.css +0 -6552
  347. package/styles/stargazerui.css.map +0 -1
  348. package/utils/ContrastingColor.d.ts +0 -1
  349. package/utils/CreateSyntheticEvent.d.ts +0 -3
  350. package/utils/CreateSyntheticEvent.js +0 -33
  351. package/utils/CreateSyntheticEvent.js.map +0 -1
  352. package/utils/IsInputKey.d.ts +0 -7
  353. package/utils/IsInputKey.js +0 -20
  354. package/utils/IsInputKey.js.map +0 -1
  355. package/utils/MergeClassnames.d.ts +0 -2
  356. package/utils/MergeClassnames.js +0 -7
  357. package/utils/MergeClassnames.js.map +0 -1
  358. package/utils/MergeRefs.d.ts +0 -2
  359. package/utils/MergeRefs.js +0 -16
  360. package/utils/MergeRefs.js.map +0 -1
  361. /package/{Button → types/components/Button}/Button.d.ts +0 -0
  362. /package/{Card → types/components/Card}/Card.d.ts +0 -0
  363. /package/{CloseButton → types/components/CloseButton}/CloseButton.d.ts +0 -0
  364. /package/{FloatingLabel → types/components/FloatingLabel}/FloatingLabel.d.ts +0 -0
  365. /package/{Nav → types/components/Nav}/Nav.d.ts +0 -0
  366. /package/{NavDropdown → types/components/NavDropdown}/NavDropdown.types.d.ts +0 -0
  367. /package/{Popout → types/components/Popout}/Popout.d.ts +0 -0
  368. /package/{Spinner → types/components/Spinner}/Spinner.d.ts +0 -0
  369. /package/{Spinner → types/components/Spinner}/Spinner.types.d.ts +0 -0
  370. /package/{Table → types/components/Table}/Table.d.ts +0 -0
  371. /package/{Tabs → types/components/Tabs}/Tabs.d.ts +0 -0
@@ -0,0 +1,2480 @@
1
+ @media (min-width: 576px) {
2
+ .float-sm-start {
3
+ float: left !important;
4
+ }
5
+ .float-sm-end {
6
+ float: right !important;
7
+ }
8
+ .float-sm-none {
9
+ float: none !important;
10
+ }
11
+ .d-sm-inline {
12
+ display: inline !important;
13
+ }
14
+ .d-sm-inline-block {
15
+ display: inline-block !important;
16
+ }
17
+ .d-sm-block {
18
+ display: block !important;
19
+ }
20
+ .d-sm-grid {
21
+ display: grid !important;
22
+ }
23
+ .d-sm-table {
24
+ display: table !important;
25
+ }
26
+ .d-sm-table-row {
27
+ display: table-row !important;
28
+ }
29
+ .d-sm-table-cell {
30
+ display: table-cell !important;
31
+ }
32
+ .d-sm-flex {
33
+ display: flex !important;
34
+ }
35
+ .d-sm-inline-flex {
36
+ display: inline-flex !important;
37
+ }
38
+ .d-sm-none {
39
+ display: none !important;
40
+ }
41
+ .flex-sm-fill {
42
+ flex: 1 1 auto !important;
43
+ }
44
+ .flex-sm-row {
45
+ flex-direction: row !important;
46
+ }
47
+ .flex-sm-column {
48
+ flex-direction: column !important;
49
+ }
50
+ .flex-sm-row-reverse {
51
+ flex-direction: row-reverse !important;
52
+ }
53
+ .flex-sm-column-reverse {
54
+ flex-direction: column-reverse !important;
55
+ }
56
+ .flex-sm-grow-0 {
57
+ flex-grow: 0 !important;
58
+ }
59
+ .flex-sm-grow-1 {
60
+ flex-grow: 1 !important;
61
+ }
62
+ .flex-sm-shrink-0 {
63
+ flex-shrink: 0 !important;
64
+ }
65
+ .flex-sm-shrink-1 {
66
+ flex-shrink: 1 !important;
67
+ }
68
+ .flex-sm-wrap {
69
+ flex-wrap: wrap !important;
70
+ }
71
+ .flex-sm-nowrap {
72
+ flex-wrap: nowrap !important;
73
+ }
74
+ .flex-sm-wrap-reverse {
75
+ flex-wrap: wrap-reverse !important;
76
+ }
77
+ .justify-content-sm-start {
78
+ justify-content: flex-start !important;
79
+ }
80
+ .justify-content-sm-end {
81
+ justify-content: flex-end !important;
82
+ }
83
+ .justify-content-sm-center {
84
+ justify-content: center !important;
85
+ }
86
+ .justify-content-sm-between {
87
+ justify-content: space-between !important;
88
+ }
89
+ .justify-content-sm-around {
90
+ justify-content: space-around !important;
91
+ }
92
+ .justify-content-sm-evenly {
93
+ justify-content: space-evenly !important;
94
+ }
95
+ .align-items-sm-start {
96
+ align-items: flex-start !important;
97
+ }
98
+ .align-items-sm-end {
99
+ align-items: flex-end !important;
100
+ }
101
+ .align-items-sm-center {
102
+ align-items: center !important;
103
+ }
104
+ .align-items-sm-baseline {
105
+ align-items: baseline !important;
106
+ }
107
+ .align-items-sm-stretch {
108
+ align-items: stretch !important;
109
+ }
110
+ .align-content-sm-start {
111
+ align-content: flex-start !important;
112
+ }
113
+ .align-content-sm-end {
114
+ align-content: flex-end !important;
115
+ }
116
+ .align-content-sm-center {
117
+ align-content: center !important;
118
+ }
119
+ .align-content-sm-between {
120
+ align-content: space-between !important;
121
+ }
122
+ .align-content-sm-around {
123
+ align-content: space-around !important;
124
+ }
125
+ .align-content-sm-stretch {
126
+ align-content: stretch !important;
127
+ }
128
+ .align-self-sm-auto {
129
+ align-self: auto !important;
130
+ }
131
+ .align-self-sm-start {
132
+ align-self: flex-start !important;
133
+ }
134
+ .align-self-sm-end {
135
+ align-self: flex-end !important;
136
+ }
137
+ .align-self-sm-center {
138
+ align-self: center !important;
139
+ }
140
+ .align-self-sm-baseline {
141
+ align-self: baseline !important;
142
+ }
143
+ .align-self-sm-stretch {
144
+ align-self: stretch !important;
145
+ }
146
+ .order-sm-first {
147
+ order: -1 !important;
148
+ }
149
+ .order-sm-0 {
150
+ order: 0 !important;
151
+ }
152
+ .order-sm-1 {
153
+ order: 1 !important;
154
+ }
155
+ .order-sm-2 {
156
+ order: 2 !important;
157
+ }
158
+ .order-sm-3 {
159
+ order: 3 !important;
160
+ }
161
+ .order-sm-4 {
162
+ order: 4 !important;
163
+ }
164
+ .order-sm-5 {
165
+ order: 5 !important;
166
+ }
167
+ .order-sm-last {
168
+ order: 6 !important;
169
+ }
170
+ .m-sm-0 {
171
+ margin: 0 !important;
172
+ }
173
+ .m-sm-1 {
174
+ margin: 0.25rem !important;
175
+ }
176
+ .m-sm-2 {
177
+ margin: 0.5rem !important;
178
+ }
179
+ .m-sm-3 {
180
+ margin: 1rem !important;
181
+ }
182
+ .m-sm-4 {
183
+ margin: 1.5rem !important;
184
+ }
185
+ .m-sm-5 {
186
+ margin: 3rem !important;
187
+ }
188
+ .m-sm-auto {
189
+ margin: auto !important;
190
+ }
191
+ .mx-sm-0 {
192
+ margin-right: 0 !important;
193
+ margin-left: 0 !important;
194
+ }
195
+ .mx-sm-1 {
196
+ margin-right: 0.25rem !important;
197
+ margin-left: 0.25rem !important;
198
+ }
199
+ .mx-sm-2 {
200
+ margin-right: 0.5rem !important;
201
+ margin-left: 0.5rem !important;
202
+ }
203
+ .mx-sm-3 {
204
+ margin-right: 1rem !important;
205
+ margin-left: 1rem !important;
206
+ }
207
+ .mx-sm-4 {
208
+ margin-right: 1.5rem !important;
209
+ margin-left: 1.5rem !important;
210
+ }
211
+ .mx-sm-5 {
212
+ margin-right: 3rem !important;
213
+ margin-left: 3rem !important;
214
+ }
215
+ .mx-sm-auto {
216
+ margin-right: auto !important;
217
+ margin-left: auto !important;
218
+ }
219
+ .my-sm-0 {
220
+ margin-top: 0 !important;
221
+ margin-bottom: 0 !important;
222
+ }
223
+ .my-sm-1 {
224
+ margin-top: 0.25rem !important;
225
+ margin-bottom: 0.25rem !important;
226
+ }
227
+ .my-sm-2 {
228
+ margin-top: 0.5rem !important;
229
+ margin-bottom: 0.5rem !important;
230
+ }
231
+ .my-sm-3 {
232
+ margin-top: 1rem !important;
233
+ margin-bottom: 1rem !important;
234
+ }
235
+ .my-sm-4 {
236
+ margin-top: 1.5rem !important;
237
+ margin-bottom: 1.5rem !important;
238
+ }
239
+ .my-sm-5 {
240
+ margin-top: 3rem !important;
241
+ margin-bottom: 3rem !important;
242
+ }
243
+ .my-sm-auto {
244
+ margin-top: auto !important;
245
+ margin-bottom: auto !important;
246
+ }
247
+ .mt-sm-0 {
248
+ margin-top: 0 !important;
249
+ }
250
+ .mt-sm-1 {
251
+ margin-top: 0.25rem !important;
252
+ }
253
+ .mt-sm-2 {
254
+ margin-top: 0.5rem !important;
255
+ }
256
+ .mt-sm-3 {
257
+ margin-top: 1rem !important;
258
+ }
259
+ .mt-sm-4 {
260
+ margin-top: 1.5rem !important;
261
+ }
262
+ .mt-sm-5 {
263
+ margin-top: 3rem !important;
264
+ }
265
+ .mt-sm-auto {
266
+ margin-top: auto !important;
267
+ }
268
+ .me-sm-0 {
269
+ margin-right: 0 !important;
270
+ }
271
+ .me-sm-1 {
272
+ margin-right: 0.25rem !important;
273
+ }
274
+ .me-sm-2 {
275
+ margin-right: 0.5rem !important;
276
+ }
277
+ .me-sm-3 {
278
+ margin-right: 1rem !important;
279
+ }
280
+ .me-sm-4 {
281
+ margin-right: 1.5rem !important;
282
+ }
283
+ .me-sm-5 {
284
+ margin-right: 3rem !important;
285
+ }
286
+ .me-sm-auto {
287
+ margin-right: auto !important;
288
+ }
289
+ .mb-sm-0 {
290
+ margin-bottom: 0 !important;
291
+ }
292
+ .mb-sm-1 {
293
+ margin-bottom: 0.25rem !important;
294
+ }
295
+ .mb-sm-2 {
296
+ margin-bottom: 0.5rem !important;
297
+ }
298
+ .mb-sm-3 {
299
+ margin-bottom: 1rem !important;
300
+ }
301
+ .mb-sm-4 {
302
+ margin-bottom: 1.5rem !important;
303
+ }
304
+ .mb-sm-5 {
305
+ margin-bottom: 3rem !important;
306
+ }
307
+ .mb-sm-auto {
308
+ margin-bottom: auto !important;
309
+ }
310
+ .ms-sm-0 {
311
+ margin-left: 0 !important;
312
+ }
313
+ .ms-sm-1 {
314
+ margin-left: 0.25rem !important;
315
+ }
316
+ .ms-sm-2 {
317
+ margin-left: 0.5rem !important;
318
+ }
319
+ .ms-sm-3 {
320
+ margin-left: 1rem !important;
321
+ }
322
+ .ms-sm-4 {
323
+ margin-left: 1.5rem !important;
324
+ }
325
+ .ms-sm-5 {
326
+ margin-left: 3rem !important;
327
+ }
328
+ .ms-sm-auto {
329
+ margin-left: auto !important;
330
+ }
331
+ .p-sm-0 {
332
+ padding: 0 !important;
333
+ }
334
+ .p-sm-1 {
335
+ padding: 0.25rem !important;
336
+ }
337
+ .p-sm-2 {
338
+ padding: 0.5rem !important;
339
+ }
340
+ .p-sm-3 {
341
+ padding: 1rem !important;
342
+ }
343
+ .p-sm-4 {
344
+ padding: 1.5rem !important;
345
+ }
346
+ .p-sm-5 {
347
+ padding: 3rem !important;
348
+ }
349
+ .px-sm-0 {
350
+ padding-right: 0 !important;
351
+ padding-left: 0 !important;
352
+ }
353
+ .px-sm-1 {
354
+ padding-right: 0.25rem !important;
355
+ padding-left: 0.25rem !important;
356
+ }
357
+ .px-sm-2 {
358
+ padding-right: 0.5rem !important;
359
+ padding-left: 0.5rem !important;
360
+ }
361
+ .px-sm-3 {
362
+ padding-right: 1rem !important;
363
+ padding-left: 1rem !important;
364
+ }
365
+ .px-sm-4 {
366
+ padding-right: 1.5rem !important;
367
+ padding-left: 1.5rem !important;
368
+ }
369
+ .px-sm-5 {
370
+ padding-right: 3rem !important;
371
+ padding-left: 3rem !important;
372
+ }
373
+ .py-sm-0 {
374
+ padding-top: 0 !important;
375
+ padding-bottom: 0 !important;
376
+ }
377
+ .py-sm-1 {
378
+ padding-top: 0.25rem !important;
379
+ padding-bottom: 0.25rem !important;
380
+ }
381
+ .py-sm-2 {
382
+ padding-top: 0.5rem !important;
383
+ padding-bottom: 0.5rem !important;
384
+ }
385
+ .py-sm-3 {
386
+ padding-top: 1rem !important;
387
+ padding-bottom: 1rem !important;
388
+ }
389
+ .py-sm-4 {
390
+ padding-top: 1.5rem !important;
391
+ padding-bottom: 1.5rem !important;
392
+ }
393
+ .py-sm-5 {
394
+ padding-top: 3rem !important;
395
+ padding-bottom: 3rem !important;
396
+ }
397
+ .pt-sm-0 {
398
+ padding-top: 0 !important;
399
+ }
400
+ .pt-sm-1 {
401
+ padding-top: 0.25rem !important;
402
+ }
403
+ .pt-sm-2 {
404
+ padding-top: 0.5rem !important;
405
+ }
406
+ .pt-sm-3 {
407
+ padding-top: 1rem !important;
408
+ }
409
+ .pt-sm-4 {
410
+ padding-top: 1.5rem !important;
411
+ }
412
+ .pt-sm-5 {
413
+ padding-top: 3rem !important;
414
+ }
415
+ .pe-sm-0 {
416
+ padding-right: 0 !important;
417
+ }
418
+ .pe-sm-1 {
419
+ padding-right: 0.25rem !important;
420
+ }
421
+ .pe-sm-2 {
422
+ padding-right: 0.5rem !important;
423
+ }
424
+ .pe-sm-3 {
425
+ padding-right: 1rem !important;
426
+ }
427
+ .pe-sm-4 {
428
+ padding-right: 1.5rem !important;
429
+ }
430
+ .pe-sm-5 {
431
+ padding-right: 3rem !important;
432
+ }
433
+ .pb-sm-0 {
434
+ padding-bottom: 0 !important;
435
+ }
436
+ .pb-sm-1 {
437
+ padding-bottom: 0.25rem !important;
438
+ }
439
+ .pb-sm-2 {
440
+ padding-bottom: 0.5rem !important;
441
+ }
442
+ .pb-sm-3 {
443
+ padding-bottom: 1rem !important;
444
+ }
445
+ .pb-sm-4 {
446
+ padding-bottom: 1.5rem !important;
447
+ }
448
+ .pb-sm-5 {
449
+ padding-bottom: 3rem !important;
450
+ }
451
+ .ps-sm-0 {
452
+ padding-left: 0 !important;
453
+ }
454
+ .ps-sm-1 {
455
+ padding-left: 0.25rem !important;
456
+ }
457
+ .ps-sm-2 {
458
+ padding-left: 0.5rem !important;
459
+ }
460
+ .ps-sm-3 {
461
+ padding-left: 1rem !important;
462
+ }
463
+ .ps-sm-4 {
464
+ padding-left: 1.5rem !important;
465
+ }
466
+ .ps-sm-5 {
467
+ padding-left: 3rem !important;
468
+ }
469
+ .gap-sm-0 {
470
+ gap: 0 !important;
471
+ }
472
+ .gap-sm-1 {
473
+ gap: 0.25rem !important;
474
+ }
475
+ .gap-sm-2 {
476
+ gap: 0.5rem !important;
477
+ }
478
+ .gap-sm-3 {
479
+ gap: 1rem !important;
480
+ }
481
+ .gap-sm-4 {
482
+ gap: 1.5rem !important;
483
+ }
484
+ .gap-sm-5 {
485
+ gap: 3rem !important;
486
+ }
487
+ .text-sm-start {
488
+ text-align: left !important;
489
+ }
490
+ .text-sm-end {
491
+ text-align: right !important;
492
+ }
493
+ .text-sm-center {
494
+ text-align: center !important;
495
+ }
496
+ }
497
+ @media (min-width: 768px) {
498
+ .float-md-start {
499
+ float: left !important;
500
+ }
501
+ .float-md-end {
502
+ float: right !important;
503
+ }
504
+ .float-md-none {
505
+ float: none !important;
506
+ }
507
+ .d-md-inline {
508
+ display: inline !important;
509
+ }
510
+ .d-md-inline-block {
511
+ display: inline-block !important;
512
+ }
513
+ .d-md-block {
514
+ display: block !important;
515
+ }
516
+ .d-md-grid {
517
+ display: grid !important;
518
+ }
519
+ .d-md-table {
520
+ display: table !important;
521
+ }
522
+ .d-md-table-row {
523
+ display: table-row !important;
524
+ }
525
+ .d-md-table-cell {
526
+ display: table-cell !important;
527
+ }
528
+ .d-md-flex {
529
+ display: flex !important;
530
+ }
531
+ .d-md-inline-flex {
532
+ display: inline-flex !important;
533
+ }
534
+ .d-md-none {
535
+ display: none !important;
536
+ }
537
+ .flex-md-fill {
538
+ flex: 1 1 auto !important;
539
+ }
540
+ .flex-md-row {
541
+ flex-direction: row !important;
542
+ }
543
+ .flex-md-column {
544
+ flex-direction: column !important;
545
+ }
546
+ .flex-md-row-reverse {
547
+ flex-direction: row-reverse !important;
548
+ }
549
+ .flex-md-column-reverse {
550
+ flex-direction: column-reverse !important;
551
+ }
552
+ .flex-md-grow-0 {
553
+ flex-grow: 0 !important;
554
+ }
555
+ .flex-md-grow-1 {
556
+ flex-grow: 1 !important;
557
+ }
558
+ .flex-md-shrink-0 {
559
+ flex-shrink: 0 !important;
560
+ }
561
+ .flex-md-shrink-1 {
562
+ flex-shrink: 1 !important;
563
+ }
564
+ .flex-md-wrap {
565
+ flex-wrap: wrap !important;
566
+ }
567
+ .flex-md-nowrap {
568
+ flex-wrap: nowrap !important;
569
+ }
570
+ .flex-md-wrap-reverse {
571
+ flex-wrap: wrap-reverse !important;
572
+ }
573
+ .justify-content-md-start {
574
+ justify-content: flex-start !important;
575
+ }
576
+ .justify-content-md-end {
577
+ justify-content: flex-end !important;
578
+ }
579
+ .justify-content-md-center {
580
+ justify-content: center !important;
581
+ }
582
+ .justify-content-md-between {
583
+ justify-content: space-between !important;
584
+ }
585
+ .justify-content-md-around {
586
+ justify-content: space-around !important;
587
+ }
588
+ .justify-content-md-evenly {
589
+ justify-content: space-evenly !important;
590
+ }
591
+ .align-items-md-start {
592
+ align-items: flex-start !important;
593
+ }
594
+ .align-items-md-end {
595
+ align-items: flex-end !important;
596
+ }
597
+ .align-items-md-center {
598
+ align-items: center !important;
599
+ }
600
+ .align-items-md-baseline {
601
+ align-items: baseline !important;
602
+ }
603
+ .align-items-md-stretch {
604
+ align-items: stretch !important;
605
+ }
606
+ .align-content-md-start {
607
+ align-content: flex-start !important;
608
+ }
609
+ .align-content-md-end {
610
+ align-content: flex-end !important;
611
+ }
612
+ .align-content-md-center {
613
+ align-content: center !important;
614
+ }
615
+ .align-content-md-between {
616
+ align-content: space-between !important;
617
+ }
618
+ .align-content-md-around {
619
+ align-content: space-around !important;
620
+ }
621
+ .align-content-md-stretch {
622
+ align-content: stretch !important;
623
+ }
624
+ .align-self-md-auto {
625
+ align-self: auto !important;
626
+ }
627
+ .align-self-md-start {
628
+ align-self: flex-start !important;
629
+ }
630
+ .align-self-md-end {
631
+ align-self: flex-end !important;
632
+ }
633
+ .align-self-md-center {
634
+ align-self: center !important;
635
+ }
636
+ .align-self-md-baseline {
637
+ align-self: baseline !important;
638
+ }
639
+ .align-self-md-stretch {
640
+ align-self: stretch !important;
641
+ }
642
+ .order-md-first {
643
+ order: -1 !important;
644
+ }
645
+ .order-md-0 {
646
+ order: 0 !important;
647
+ }
648
+ .order-md-1 {
649
+ order: 1 !important;
650
+ }
651
+ .order-md-2 {
652
+ order: 2 !important;
653
+ }
654
+ .order-md-3 {
655
+ order: 3 !important;
656
+ }
657
+ .order-md-4 {
658
+ order: 4 !important;
659
+ }
660
+ .order-md-5 {
661
+ order: 5 !important;
662
+ }
663
+ .order-md-last {
664
+ order: 6 !important;
665
+ }
666
+ .m-md-0 {
667
+ margin: 0 !important;
668
+ }
669
+ .m-md-1 {
670
+ margin: 0.25rem !important;
671
+ }
672
+ .m-md-2 {
673
+ margin: 0.5rem !important;
674
+ }
675
+ .m-md-3 {
676
+ margin: 1rem !important;
677
+ }
678
+ .m-md-4 {
679
+ margin: 1.5rem !important;
680
+ }
681
+ .m-md-5 {
682
+ margin: 3rem !important;
683
+ }
684
+ .m-md-auto {
685
+ margin: auto !important;
686
+ }
687
+ .mx-md-0 {
688
+ margin-right: 0 !important;
689
+ margin-left: 0 !important;
690
+ }
691
+ .mx-md-1 {
692
+ margin-right: 0.25rem !important;
693
+ margin-left: 0.25rem !important;
694
+ }
695
+ .mx-md-2 {
696
+ margin-right: 0.5rem !important;
697
+ margin-left: 0.5rem !important;
698
+ }
699
+ .mx-md-3 {
700
+ margin-right: 1rem !important;
701
+ margin-left: 1rem !important;
702
+ }
703
+ .mx-md-4 {
704
+ margin-right: 1.5rem !important;
705
+ margin-left: 1.5rem !important;
706
+ }
707
+ .mx-md-5 {
708
+ margin-right: 3rem !important;
709
+ margin-left: 3rem !important;
710
+ }
711
+ .mx-md-auto {
712
+ margin-right: auto !important;
713
+ margin-left: auto !important;
714
+ }
715
+ .my-md-0 {
716
+ margin-top: 0 !important;
717
+ margin-bottom: 0 !important;
718
+ }
719
+ .my-md-1 {
720
+ margin-top: 0.25rem !important;
721
+ margin-bottom: 0.25rem !important;
722
+ }
723
+ .my-md-2 {
724
+ margin-top: 0.5rem !important;
725
+ margin-bottom: 0.5rem !important;
726
+ }
727
+ .my-md-3 {
728
+ margin-top: 1rem !important;
729
+ margin-bottom: 1rem !important;
730
+ }
731
+ .my-md-4 {
732
+ margin-top: 1.5rem !important;
733
+ margin-bottom: 1.5rem !important;
734
+ }
735
+ .my-md-5 {
736
+ margin-top: 3rem !important;
737
+ margin-bottom: 3rem !important;
738
+ }
739
+ .my-md-auto {
740
+ margin-top: auto !important;
741
+ margin-bottom: auto !important;
742
+ }
743
+ .mt-md-0 {
744
+ margin-top: 0 !important;
745
+ }
746
+ .mt-md-1 {
747
+ margin-top: 0.25rem !important;
748
+ }
749
+ .mt-md-2 {
750
+ margin-top: 0.5rem !important;
751
+ }
752
+ .mt-md-3 {
753
+ margin-top: 1rem !important;
754
+ }
755
+ .mt-md-4 {
756
+ margin-top: 1.5rem !important;
757
+ }
758
+ .mt-md-5 {
759
+ margin-top: 3rem !important;
760
+ }
761
+ .mt-md-auto {
762
+ margin-top: auto !important;
763
+ }
764
+ .me-md-0 {
765
+ margin-right: 0 !important;
766
+ }
767
+ .me-md-1 {
768
+ margin-right: 0.25rem !important;
769
+ }
770
+ .me-md-2 {
771
+ margin-right: 0.5rem !important;
772
+ }
773
+ .me-md-3 {
774
+ margin-right: 1rem !important;
775
+ }
776
+ .me-md-4 {
777
+ margin-right: 1.5rem !important;
778
+ }
779
+ .me-md-5 {
780
+ margin-right: 3rem !important;
781
+ }
782
+ .me-md-auto {
783
+ margin-right: auto !important;
784
+ }
785
+ .mb-md-0 {
786
+ margin-bottom: 0 !important;
787
+ }
788
+ .mb-md-1 {
789
+ margin-bottom: 0.25rem !important;
790
+ }
791
+ .mb-md-2 {
792
+ margin-bottom: 0.5rem !important;
793
+ }
794
+ .mb-md-3 {
795
+ margin-bottom: 1rem !important;
796
+ }
797
+ .mb-md-4 {
798
+ margin-bottom: 1.5rem !important;
799
+ }
800
+ .mb-md-5 {
801
+ margin-bottom: 3rem !important;
802
+ }
803
+ .mb-md-auto {
804
+ margin-bottom: auto !important;
805
+ }
806
+ .ms-md-0 {
807
+ margin-left: 0 !important;
808
+ }
809
+ .ms-md-1 {
810
+ margin-left: 0.25rem !important;
811
+ }
812
+ .ms-md-2 {
813
+ margin-left: 0.5rem !important;
814
+ }
815
+ .ms-md-3 {
816
+ margin-left: 1rem !important;
817
+ }
818
+ .ms-md-4 {
819
+ margin-left: 1.5rem !important;
820
+ }
821
+ .ms-md-5 {
822
+ margin-left: 3rem !important;
823
+ }
824
+ .ms-md-auto {
825
+ margin-left: auto !important;
826
+ }
827
+ .p-md-0 {
828
+ padding: 0 !important;
829
+ }
830
+ .p-md-1 {
831
+ padding: 0.25rem !important;
832
+ }
833
+ .p-md-2 {
834
+ padding: 0.5rem !important;
835
+ }
836
+ .p-md-3 {
837
+ padding: 1rem !important;
838
+ }
839
+ .p-md-4 {
840
+ padding: 1.5rem !important;
841
+ }
842
+ .p-md-5 {
843
+ padding: 3rem !important;
844
+ }
845
+ .px-md-0 {
846
+ padding-right: 0 !important;
847
+ padding-left: 0 !important;
848
+ }
849
+ .px-md-1 {
850
+ padding-right: 0.25rem !important;
851
+ padding-left: 0.25rem !important;
852
+ }
853
+ .px-md-2 {
854
+ padding-right: 0.5rem !important;
855
+ padding-left: 0.5rem !important;
856
+ }
857
+ .px-md-3 {
858
+ padding-right: 1rem !important;
859
+ padding-left: 1rem !important;
860
+ }
861
+ .px-md-4 {
862
+ padding-right: 1.5rem !important;
863
+ padding-left: 1.5rem !important;
864
+ }
865
+ .px-md-5 {
866
+ padding-right: 3rem !important;
867
+ padding-left: 3rem !important;
868
+ }
869
+ .py-md-0 {
870
+ padding-top: 0 !important;
871
+ padding-bottom: 0 !important;
872
+ }
873
+ .py-md-1 {
874
+ padding-top: 0.25rem !important;
875
+ padding-bottom: 0.25rem !important;
876
+ }
877
+ .py-md-2 {
878
+ padding-top: 0.5rem !important;
879
+ padding-bottom: 0.5rem !important;
880
+ }
881
+ .py-md-3 {
882
+ padding-top: 1rem !important;
883
+ padding-bottom: 1rem !important;
884
+ }
885
+ .py-md-4 {
886
+ padding-top: 1.5rem !important;
887
+ padding-bottom: 1.5rem !important;
888
+ }
889
+ .py-md-5 {
890
+ padding-top: 3rem !important;
891
+ padding-bottom: 3rem !important;
892
+ }
893
+ .pt-md-0 {
894
+ padding-top: 0 !important;
895
+ }
896
+ .pt-md-1 {
897
+ padding-top: 0.25rem !important;
898
+ }
899
+ .pt-md-2 {
900
+ padding-top: 0.5rem !important;
901
+ }
902
+ .pt-md-3 {
903
+ padding-top: 1rem !important;
904
+ }
905
+ .pt-md-4 {
906
+ padding-top: 1.5rem !important;
907
+ }
908
+ .pt-md-5 {
909
+ padding-top: 3rem !important;
910
+ }
911
+ .pe-md-0 {
912
+ padding-right: 0 !important;
913
+ }
914
+ .pe-md-1 {
915
+ padding-right: 0.25rem !important;
916
+ }
917
+ .pe-md-2 {
918
+ padding-right: 0.5rem !important;
919
+ }
920
+ .pe-md-3 {
921
+ padding-right: 1rem !important;
922
+ }
923
+ .pe-md-4 {
924
+ padding-right: 1.5rem !important;
925
+ }
926
+ .pe-md-5 {
927
+ padding-right: 3rem !important;
928
+ }
929
+ .pb-md-0 {
930
+ padding-bottom: 0 !important;
931
+ }
932
+ .pb-md-1 {
933
+ padding-bottom: 0.25rem !important;
934
+ }
935
+ .pb-md-2 {
936
+ padding-bottom: 0.5rem !important;
937
+ }
938
+ .pb-md-3 {
939
+ padding-bottom: 1rem !important;
940
+ }
941
+ .pb-md-4 {
942
+ padding-bottom: 1.5rem !important;
943
+ }
944
+ .pb-md-5 {
945
+ padding-bottom: 3rem !important;
946
+ }
947
+ .ps-md-0 {
948
+ padding-left: 0 !important;
949
+ }
950
+ .ps-md-1 {
951
+ padding-left: 0.25rem !important;
952
+ }
953
+ .ps-md-2 {
954
+ padding-left: 0.5rem !important;
955
+ }
956
+ .ps-md-3 {
957
+ padding-left: 1rem !important;
958
+ }
959
+ .ps-md-4 {
960
+ padding-left: 1.5rem !important;
961
+ }
962
+ .ps-md-5 {
963
+ padding-left: 3rem !important;
964
+ }
965
+ .gap-md-0 {
966
+ gap: 0 !important;
967
+ }
968
+ .gap-md-1 {
969
+ gap: 0.25rem !important;
970
+ }
971
+ .gap-md-2 {
972
+ gap: 0.5rem !important;
973
+ }
974
+ .gap-md-3 {
975
+ gap: 1rem !important;
976
+ }
977
+ .gap-md-4 {
978
+ gap: 1.5rem !important;
979
+ }
980
+ .gap-md-5 {
981
+ gap: 3rem !important;
982
+ }
983
+ .text-md-start {
984
+ text-align: left !important;
985
+ }
986
+ .text-md-end {
987
+ text-align: right !important;
988
+ }
989
+ .text-md-center {
990
+ text-align: center !important;
991
+ }
992
+ }
993
+ @media (min-width: 992px) {
994
+ .float-lg-start {
995
+ float: left !important;
996
+ }
997
+ .float-lg-end {
998
+ float: right !important;
999
+ }
1000
+ .float-lg-none {
1001
+ float: none !important;
1002
+ }
1003
+ .d-lg-inline {
1004
+ display: inline !important;
1005
+ }
1006
+ .d-lg-inline-block {
1007
+ display: inline-block !important;
1008
+ }
1009
+ .d-lg-block {
1010
+ display: block !important;
1011
+ }
1012
+ .d-lg-grid {
1013
+ display: grid !important;
1014
+ }
1015
+ .d-lg-table {
1016
+ display: table !important;
1017
+ }
1018
+ .d-lg-table-row {
1019
+ display: table-row !important;
1020
+ }
1021
+ .d-lg-table-cell {
1022
+ display: table-cell !important;
1023
+ }
1024
+ .d-lg-flex {
1025
+ display: flex !important;
1026
+ }
1027
+ .d-lg-inline-flex {
1028
+ display: inline-flex !important;
1029
+ }
1030
+ .d-lg-none {
1031
+ display: none !important;
1032
+ }
1033
+ .flex-lg-fill {
1034
+ flex: 1 1 auto !important;
1035
+ }
1036
+ .flex-lg-row {
1037
+ flex-direction: row !important;
1038
+ }
1039
+ .flex-lg-column {
1040
+ flex-direction: column !important;
1041
+ }
1042
+ .flex-lg-row-reverse {
1043
+ flex-direction: row-reverse !important;
1044
+ }
1045
+ .flex-lg-column-reverse {
1046
+ flex-direction: column-reverse !important;
1047
+ }
1048
+ .flex-lg-grow-0 {
1049
+ flex-grow: 0 !important;
1050
+ }
1051
+ .flex-lg-grow-1 {
1052
+ flex-grow: 1 !important;
1053
+ }
1054
+ .flex-lg-shrink-0 {
1055
+ flex-shrink: 0 !important;
1056
+ }
1057
+ .flex-lg-shrink-1 {
1058
+ flex-shrink: 1 !important;
1059
+ }
1060
+ .flex-lg-wrap {
1061
+ flex-wrap: wrap !important;
1062
+ }
1063
+ .flex-lg-nowrap {
1064
+ flex-wrap: nowrap !important;
1065
+ }
1066
+ .flex-lg-wrap-reverse {
1067
+ flex-wrap: wrap-reverse !important;
1068
+ }
1069
+ .justify-content-lg-start {
1070
+ justify-content: flex-start !important;
1071
+ }
1072
+ .justify-content-lg-end {
1073
+ justify-content: flex-end !important;
1074
+ }
1075
+ .justify-content-lg-center {
1076
+ justify-content: center !important;
1077
+ }
1078
+ .justify-content-lg-between {
1079
+ justify-content: space-between !important;
1080
+ }
1081
+ .justify-content-lg-around {
1082
+ justify-content: space-around !important;
1083
+ }
1084
+ .justify-content-lg-evenly {
1085
+ justify-content: space-evenly !important;
1086
+ }
1087
+ .align-items-lg-start {
1088
+ align-items: flex-start !important;
1089
+ }
1090
+ .align-items-lg-end {
1091
+ align-items: flex-end !important;
1092
+ }
1093
+ .align-items-lg-center {
1094
+ align-items: center !important;
1095
+ }
1096
+ .align-items-lg-baseline {
1097
+ align-items: baseline !important;
1098
+ }
1099
+ .align-items-lg-stretch {
1100
+ align-items: stretch !important;
1101
+ }
1102
+ .align-content-lg-start {
1103
+ align-content: flex-start !important;
1104
+ }
1105
+ .align-content-lg-end {
1106
+ align-content: flex-end !important;
1107
+ }
1108
+ .align-content-lg-center {
1109
+ align-content: center !important;
1110
+ }
1111
+ .align-content-lg-between {
1112
+ align-content: space-between !important;
1113
+ }
1114
+ .align-content-lg-around {
1115
+ align-content: space-around !important;
1116
+ }
1117
+ .align-content-lg-stretch {
1118
+ align-content: stretch !important;
1119
+ }
1120
+ .align-self-lg-auto {
1121
+ align-self: auto !important;
1122
+ }
1123
+ .align-self-lg-start {
1124
+ align-self: flex-start !important;
1125
+ }
1126
+ .align-self-lg-end {
1127
+ align-self: flex-end !important;
1128
+ }
1129
+ .align-self-lg-center {
1130
+ align-self: center !important;
1131
+ }
1132
+ .align-self-lg-baseline {
1133
+ align-self: baseline !important;
1134
+ }
1135
+ .align-self-lg-stretch {
1136
+ align-self: stretch !important;
1137
+ }
1138
+ .order-lg-first {
1139
+ order: -1 !important;
1140
+ }
1141
+ .order-lg-0 {
1142
+ order: 0 !important;
1143
+ }
1144
+ .order-lg-1 {
1145
+ order: 1 !important;
1146
+ }
1147
+ .order-lg-2 {
1148
+ order: 2 !important;
1149
+ }
1150
+ .order-lg-3 {
1151
+ order: 3 !important;
1152
+ }
1153
+ .order-lg-4 {
1154
+ order: 4 !important;
1155
+ }
1156
+ .order-lg-5 {
1157
+ order: 5 !important;
1158
+ }
1159
+ .order-lg-last {
1160
+ order: 6 !important;
1161
+ }
1162
+ .m-lg-0 {
1163
+ margin: 0 !important;
1164
+ }
1165
+ .m-lg-1 {
1166
+ margin: 0.25rem !important;
1167
+ }
1168
+ .m-lg-2 {
1169
+ margin: 0.5rem !important;
1170
+ }
1171
+ .m-lg-3 {
1172
+ margin: 1rem !important;
1173
+ }
1174
+ .m-lg-4 {
1175
+ margin: 1.5rem !important;
1176
+ }
1177
+ .m-lg-5 {
1178
+ margin: 3rem !important;
1179
+ }
1180
+ .m-lg-auto {
1181
+ margin: auto !important;
1182
+ }
1183
+ .mx-lg-0 {
1184
+ margin-right: 0 !important;
1185
+ margin-left: 0 !important;
1186
+ }
1187
+ .mx-lg-1 {
1188
+ margin-right: 0.25rem !important;
1189
+ margin-left: 0.25rem !important;
1190
+ }
1191
+ .mx-lg-2 {
1192
+ margin-right: 0.5rem !important;
1193
+ margin-left: 0.5rem !important;
1194
+ }
1195
+ .mx-lg-3 {
1196
+ margin-right: 1rem !important;
1197
+ margin-left: 1rem !important;
1198
+ }
1199
+ .mx-lg-4 {
1200
+ margin-right: 1.5rem !important;
1201
+ margin-left: 1.5rem !important;
1202
+ }
1203
+ .mx-lg-5 {
1204
+ margin-right: 3rem !important;
1205
+ margin-left: 3rem !important;
1206
+ }
1207
+ .mx-lg-auto {
1208
+ margin-right: auto !important;
1209
+ margin-left: auto !important;
1210
+ }
1211
+ .my-lg-0 {
1212
+ margin-top: 0 !important;
1213
+ margin-bottom: 0 !important;
1214
+ }
1215
+ .my-lg-1 {
1216
+ margin-top: 0.25rem !important;
1217
+ margin-bottom: 0.25rem !important;
1218
+ }
1219
+ .my-lg-2 {
1220
+ margin-top: 0.5rem !important;
1221
+ margin-bottom: 0.5rem !important;
1222
+ }
1223
+ .my-lg-3 {
1224
+ margin-top: 1rem !important;
1225
+ margin-bottom: 1rem !important;
1226
+ }
1227
+ .my-lg-4 {
1228
+ margin-top: 1.5rem !important;
1229
+ margin-bottom: 1.5rem !important;
1230
+ }
1231
+ .my-lg-5 {
1232
+ margin-top: 3rem !important;
1233
+ margin-bottom: 3rem !important;
1234
+ }
1235
+ .my-lg-auto {
1236
+ margin-top: auto !important;
1237
+ margin-bottom: auto !important;
1238
+ }
1239
+ .mt-lg-0 {
1240
+ margin-top: 0 !important;
1241
+ }
1242
+ .mt-lg-1 {
1243
+ margin-top: 0.25rem !important;
1244
+ }
1245
+ .mt-lg-2 {
1246
+ margin-top: 0.5rem !important;
1247
+ }
1248
+ .mt-lg-3 {
1249
+ margin-top: 1rem !important;
1250
+ }
1251
+ .mt-lg-4 {
1252
+ margin-top: 1.5rem !important;
1253
+ }
1254
+ .mt-lg-5 {
1255
+ margin-top: 3rem !important;
1256
+ }
1257
+ .mt-lg-auto {
1258
+ margin-top: auto !important;
1259
+ }
1260
+ .me-lg-0 {
1261
+ margin-right: 0 !important;
1262
+ }
1263
+ .me-lg-1 {
1264
+ margin-right: 0.25rem !important;
1265
+ }
1266
+ .me-lg-2 {
1267
+ margin-right: 0.5rem !important;
1268
+ }
1269
+ .me-lg-3 {
1270
+ margin-right: 1rem !important;
1271
+ }
1272
+ .me-lg-4 {
1273
+ margin-right: 1.5rem !important;
1274
+ }
1275
+ .me-lg-5 {
1276
+ margin-right: 3rem !important;
1277
+ }
1278
+ .me-lg-auto {
1279
+ margin-right: auto !important;
1280
+ }
1281
+ .mb-lg-0 {
1282
+ margin-bottom: 0 !important;
1283
+ }
1284
+ .mb-lg-1 {
1285
+ margin-bottom: 0.25rem !important;
1286
+ }
1287
+ .mb-lg-2 {
1288
+ margin-bottom: 0.5rem !important;
1289
+ }
1290
+ .mb-lg-3 {
1291
+ margin-bottom: 1rem !important;
1292
+ }
1293
+ .mb-lg-4 {
1294
+ margin-bottom: 1.5rem !important;
1295
+ }
1296
+ .mb-lg-5 {
1297
+ margin-bottom: 3rem !important;
1298
+ }
1299
+ .mb-lg-auto {
1300
+ margin-bottom: auto !important;
1301
+ }
1302
+ .ms-lg-0 {
1303
+ margin-left: 0 !important;
1304
+ }
1305
+ .ms-lg-1 {
1306
+ margin-left: 0.25rem !important;
1307
+ }
1308
+ .ms-lg-2 {
1309
+ margin-left: 0.5rem !important;
1310
+ }
1311
+ .ms-lg-3 {
1312
+ margin-left: 1rem !important;
1313
+ }
1314
+ .ms-lg-4 {
1315
+ margin-left: 1.5rem !important;
1316
+ }
1317
+ .ms-lg-5 {
1318
+ margin-left: 3rem !important;
1319
+ }
1320
+ .ms-lg-auto {
1321
+ margin-left: auto !important;
1322
+ }
1323
+ .p-lg-0 {
1324
+ padding: 0 !important;
1325
+ }
1326
+ .p-lg-1 {
1327
+ padding: 0.25rem !important;
1328
+ }
1329
+ .p-lg-2 {
1330
+ padding: 0.5rem !important;
1331
+ }
1332
+ .p-lg-3 {
1333
+ padding: 1rem !important;
1334
+ }
1335
+ .p-lg-4 {
1336
+ padding: 1.5rem !important;
1337
+ }
1338
+ .p-lg-5 {
1339
+ padding: 3rem !important;
1340
+ }
1341
+ .px-lg-0 {
1342
+ padding-right: 0 !important;
1343
+ padding-left: 0 !important;
1344
+ }
1345
+ .px-lg-1 {
1346
+ padding-right: 0.25rem !important;
1347
+ padding-left: 0.25rem !important;
1348
+ }
1349
+ .px-lg-2 {
1350
+ padding-right: 0.5rem !important;
1351
+ padding-left: 0.5rem !important;
1352
+ }
1353
+ .px-lg-3 {
1354
+ padding-right: 1rem !important;
1355
+ padding-left: 1rem !important;
1356
+ }
1357
+ .px-lg-4 {
1358
+ padding-right: 1.5rem !important;
1359
+ padding-left: 1.5rem !important;
1360
+ }
1361
+ .px-lg-5 {
1362
+ padding-right: 3rem !important;
1363
+ padding-left: 3rem !important;
1364
+ }
1365
+ .py-lg-0 {
1366
+ padding-top: 0 !important;
1367
+ padding-bottom: 0 !important;
1368
+ }
1369
+ .py-lg-1 {
1370
+ padding-top: 0.25rem !important;
1371
+ padding-bottom: 0.25rem !important;
1372
+ }
1373
+ .py-lg-2 {
1374
+ padding-top: 0.5rem !important;
1375
+ padding-bottom: 0.5rem !important;
1376
+ }
1377
+ .py-lg-3 {
1378
+ padding-top: 1rem !important;
1379
+ padding-bottom: 1rem !important;
1380
+ }
1381
+ .py-lg-4 {
1382
+ padding-top: 1.5rem !important;
1383
+ padding-bottom: 1.5rem !important;
1384
+ }
1385
+ .py-lg-5 {
1386
+ padding-top: 3rem !important;
1387
+ padding-bottom: 3rem !important;
1388
+ }
1389
+ .pt-lg-0 {
1390
+ padding-top: 0 !important;
1391
+ }
1392
+ .pt-lg-1 {
1393
+ padding-top: 0.25rem !important;
1394
+ }
1395
+ .pt-lg-2 {
1396
+ padding-top: 0.5rem !important;
1397
+ }
1398
+ .pt-lg-3 {
1399
+ padding-top: 1rem !important;
1400
+ }
1401
+ .pt-lg-4 {
1402
+ padding-top: 1.5rem !important;
1403
+ }
1404
+ .pt-lg-5 {
1405
+ padding-top: 3rem !important;
1406
+ }
1407
+ .pe-lg-0 {
1408
+ padding-right: 0 !important;
1409
+ }
1410
+ .pe-lg-1 {
1411
+ padding-right: 0.25rem !important;
1412
+ }
1413
+ .pe-lg-2 {
1414
+ padding-right: 0.5rem !important;
1415
+ }
1416
+ .pe-lg-3 {
1417
+ padding-right: 1rem !important;
1418
+ }
1419
+ .pe-lg-4 {
1420
+ padding-right: 1.5rem !important;
1421
+ }
1422
+ .pe-lg-5 {
1423
+ padding-right: 3rem !important;
1424
+ }
1425
+ .pb-lg-0 {
1426
+ padding-bottom: 0 !important;
1427
+ }
1428
+ .pb-lg-1 {
1429
+ padding-bottom: 0.25rem !important;
1430
+ }
1431
+ .pb-lg-2 {
1432
+ padding-bottom: 0.5rem !important;
1433
+ }
1434
+ .pb-lg-3 {
1435
+ padding-bottom: 1rem !important;
1436
+ }
1437
+ .pb-lg-4 {
1438
+ padding-bottom: 1.5rem !important;
1439
+ }
1440
+ .pb-lg-5 {
1441
+ padding-bottom: 3rem !important;
1442
+ }
1443
+ .ps-lg-0 {
1444
+ padding-left: 0 !important;
1445
+ }
1446
+ .ps-lg-1 {
1447
+ padding-left: 0.25rem !important;
1448
+ }
1449
+ .ps-lg-2 {
1450
+ padding-left: 0.5rem !important;
1451
+ }
1452
+ .ps-lg-3 {
1453
+ padding-left: 1rem !important;
1454
+ }
1455
+ .ps-lg-4 {
1456
+ padding-left: 1.5rem !important;
1457
+ }
1458
+ .ps-lg-5 {
1459
+ padding-left: 3rem !important;
1460
+ }
1461
+ .gap-lg-0 {
1462
+ gap: 0 !important;
1463
+ }
1464
+ .gap-lg-1 {
1465
+ gap: 0.25rem !important;
1466
+ }
1467
+ .gap-lg-2 {
1468
+ gap: 0.5rem !important;
1469
+ }
1470
+ .gap-lg-3 {
1471
+ gap: 1rem !important;
1472
+ }
1473
+ .gap-lg-4 {
1474
+ gap: 1.5rem !important;
1475
+ }
1476
+ .gap-lg-5 {
1477
+ gap: 3rem !important;
1478
+ }
1479
+ .text-lg-start {
1480
+ text-align: left !important;
1481
+ }
1482
+ .text-lg-end {
1483
+ text-align: right !important;
1484
+ }
1485
+ .text-lg-center {
1486
+ text-align: center !important;
1487
+ }
1488
+ }
1489
+ @media (min-width: 1200px) {
1490
+ .float-xl-start {
1491
+ float: left !important;
1492
+ }
1493
+ .float-xl-end {
1494
+ float: right !important;
1495
+ }
1496
+ .float-xl-none {
1497
+ float: none !important;
1498
+ }
1499
+ .d-xl-inline {
1500
+ display: inline !important;
1501
+ }
1502
+ .d-xl-inline-block {
1503
+ display: inline-block !important;
1504
+ }
1505
+ .d-xl-block {
1506
+ display: block !important;
1507
+ }
1508
+ .d-xl-grid {
1509
+ display: grid !important;
1510
+ }
1511
+ .d-xl-table {
1512
+ display: table !important;
1513
+ }
1514
+ .d-xl-table-row {
1515
+ display: table-row !important;
1516
+ }
1517
+ .d-xl-table-cell {
1518
+ display: table-cell !important;
1519
+ }
1520
+ .d-xl-flex {
1521
+ display: flex !important;
1522
+ }
1523
+ .d-xl-inline-flex {
1524
+ display: inline-flex !important;
1525
+ }
1526
+ .d-xl-none {
1527
+ display: none !important;
1528
+ }
1529
+ .flex-xl-fill {
1530
+ flex: 1 1 auto !important;
1531
+ }
1532
+ .flex-xl-row {
1533
+ flex-direction: row !important;
1534
+ }
1535
+ .flex-xl-column {
1536
+ flex-direction: column !important;
1537
+ }
1538
+ .flex-xl-row-reverse {
1539
+ flex-direction: row-reverse !important;
1540
+ }
1541
+ .flex-xl-column-reverse {
1542
+ flex-direction: column-reverse !important;
1543
+ }
1544
+ .flex-xl-grow-0 {
1545
+ flex-grow: 0 !important;
1546
+ }
1547
+ .flex-xl-grow-1 {
1548
+ flex-grow: 1 !important;
1549
+ }
1550
+ .flex-xl-shrink-0 {
1551
+ flex-shrink: 0 !important;
1552
+ }
1553
+ .flex-xl-shrink-1 {
1554
+ flex-shrink: 1 !important;
1555
+ }
1556
+ .flex-xl-wrap {
1557
+ flex-wrap: wrap !important;
1558
+ }
1559
+ .flex-xl-nowrap {
1560
+ flex-wrap: nowrap !important;
1561
+ }
1562
+ .flex-xl-wrap-reverse {
1563
+ flex-wrap: wrap-reverse !important;
1564
+ }
1565
+ .justify-content-xl-start {
1566
+ justify-content: flex-start !important;
1567
+ }
1568
+ .justify-content-xl-end {
1569
+ justify-content: flex-end !important;
1570
+ }
1571
+ .justify-content-xl-center {
1572
+ justify-content: center !important;
1573
+ }
1574
+ .justify-content-xl-between {
1575
+ justify-content: space-between !important;
1576
+ }
1577
+ .justify-content-xl-around {
1578
+ justify-content: space-around !important;
1579
+ }
1580
+ .justify-content-xl-evenly {
1581
+ justify-content: space-evenly !important;
1582
+ }
1583
+ .align-items-xl-start {
1584
+ align-items: flex-start !important;
1585
+ }
1586
+ .align-items-xl-end {
1587
+ align-items: flex-end !important;
1588
+ }
1589
+ .align-items-xl-center {
1590
+ align-items: center !important;
1591
+ }
1592
+ .align-items-xl-baseline {
1593
+ align-items: baseline !important;
1594
+ }
1595
+ .align-items-xl-stretch {
1596
+ align-items: stretch !important;
1597
+ }
1598
+ .align-content-xl-start {
1599
+ align-content: flex-start !important;
1600
+ }
1601
+ .align-content-xl-end {
1602
+ align-content: flex-end !important;
1603
+ }
1604
+ .align-content-xl-center {
1605
+ align-content: center !important;
1606
+ }
1607
+ .align-content-xl-between {
1608
+ align-content: space-between !important;
1609
+ }
1610
+ .align-content-xl-around {
1611
+ align-content: space-around !important;
1612
+ }
1613
+ .align-content-xl-stretch {
1614
+ align-content: stretch !important;
1615
+ }
1616
+ .align-self-xl-auto {
1617
+ align-self: auto !important;
1618
+ }
1619
+ .align-self-xl-start {
1620
+ align-self: flex-start !important;
1621
+ }
1622
+ .align-self-xl-end {
1623
+ align-self: flex-end !important;
1624
+ }
1625
+ .align-self-xl-center {
1626
+ align-self: center !important;
1627
+ }
1628
+ .align-self-xl-baseline {
1629
+ align-self: baseline !important;
1630
+ }
1631
+ .align-self-xl-stretch {
1632
+ align-self: stretch !important;
1633
+ }
1634
+ .order-xl-first {
1635
+ order: -1 !important;
1636
+ }
1637
+ .order-xl-0 {
1638
+ order: 0 !important;
1639
+ }
1640
+ .order-xl-1 {
1641
+ order: 1 !important;
1642
+ }
1643
+ .order-xl-2 {
1644
+ order: 2 !important;
1645
+ }
1646
+ .order-xl-3 {
1647
+ order: 3 !important;
1648
+ }
1649
+ .order-xl-4 {
1650
+ order: 4 !important;
1651
+ }
1652
+ .order-xl-5 {
1653
+ order: 5 !important;
1654
+ }
1655
+ .order-xl-last {
1656
+ order: 6 !important;
1657
+ }
1658
+ .m-xl-0 {
1659
+ margin: 0 !important;
1660
+ }
1661
+ .m-xl-1 {
1662
+ margin: 0.25rem !important;
1663
+ }
1664
+ .m-xl-2 {
1665
+ margin: 0.5rem !important;
1666
+ }
1667
+ .m-xl-3 {
1668
+ margin: 1rem !important;
1669
+ }
1670
+ .m-xl-4 {
1671
+ margin: 1.5rem !important;
1672
+ }
1673
+ .m-xl-5 {
1674
+ margin: 3rem !important;
1675
+ }
1676
+ .m-xl-auto {
1677
+ margin: auto !important;
1678
+ }
1679
+ .mx-xl-0 {
1680
+ margin-right: 0 !important;
1681
+ margin-left: 0 !important;
1682
+ }
1683
+ .mx-xl-1 {
1684
+ margin-right: 0.25rem !important;
1685
+ margin-left: 0.25rem !important;
1686
+ }
1687
+ .mx-xl-2 {
1688
+ margin-right: 0.5rem !important;
1689
+ margin-left: 0.5rem !important;
1690
+ }
1691
+ .mx-xl-3 {
1692
+ margin-right: 1rem !important;
1693
+ margin-left: 1rem !important;
1694
+ }
1695
+ .mx-xl-4 {
1696
+ margin-right: 1.5rem !important;
1697
+ margin-left: 1.5rem !important;
1698
+ }
1699
+ .mx-xl-5 {
1700
+ margin-right: 3rem !important;
1701
+ margin-left: 3rem !important;
1702
+ }
1703
+ .mx-xl-auto {
1704
+ margin-right: auto !important;
1705
+ margin-left: auto !important;
1706
+ }
1707
+ .my-xl-0 {
1708
+ margin-top: 0 !important;
1709
+ margin-bottom: 0 !important;
1710
+ }
1711
+ .my-xl-1 {
1712
+ margin-top: 0.25rem !important;
1713
+ margin-bottom: 0.25rem !important;
1714
+ }
1715
+ .my-xl-2 {
1716
+ margin-top: 0.5rem !important;
1717
+ margin-bottom: 0.5rem !important;
1718
+ }
1719
+ .my-xl-3 {
1720
+ margin-top: 1rem !important;
1721
+ margin-bottom: 1rem !important;
1722
+ }
1723
+ .my-xl-4 {
1724
+ margin-top: 1.5rem !important;
1725
+ margin-bottom: 1.5rem !important;
1726
+ }
1727
+ .my-xl-5 {
1728
+ margin-top: 3rem !important;
1729
+ margin-bottom: 3rem !important;
1730
+ }
1731
+ .my-xl-auto {
1732
+ margin-top: auto !important;
1733
+ margin-bottom: auto !important;
1734
+ }
1735
+ .mt-xl-0 {
1736
+ margin-top: 0 !important;
1737
+ }
1738
+ .mt-xl-1 {
1739
+ margin-top: 0.25rem !important;
1740
+ }
1741
+ .mt-xl-2 {
1742
+ margin-top: 0.5rem !important;
1743
+ }
1744
+ .mt-xl-3 {
1745
+ margin-top: 1rem !important;
1746
+ }
1747
+ .mt-xl-4 {
1748
+ margin-top: 1.5rem !important;
1749
+ }
1750
+ .mt-xl-5 {
1751
+ margin-top: 3rem !important;
1752
+ }
1753
+ .mt-xl-auto {
1754
+ margin-top: auto !important;
1755
+ }
1756
+ .me-xl-0 {
1757
+ margin-right: 0 !important;
1758
+ }
1759
+ .me-xl-1 {
1760
+ margin-right: 0.25rem !important;
1761
+ }
1762
+ .me-xl-2 {
1763
+ margin-right: 0.5rem !important;
1764
+ }
1765
+ .me-xl-3 {
1766
+ margin-right: 1rem !important;
1767
+ }
1768
+ .me-xl-4 {
1769
+ margin-right: 1.5rem !important;
1770
+ }
1771
+ .me-xl-5 {
1772
+ margin-right: 3rem !important;
1773
+ }
1774
+ .me-xl-auto {
1775
+ margin-right: auto !important;
1776
+ }
1777
+ .mb-xl-0 {
1778
+ margin-bottom: 0 !important;
1779
+ }
1780
+ .mb-xl-1 {
1781
+ margin-bottom: 0.25rem !important;
1782
+ }
1783
+ .mb-xl-2 {
1784
+ margin-bottom: 0.5rem !important;
1785
+ }
1786
+ .mb-xl-3 {
1787
+ margin-bottom: 1rem !important;
1788
+ }
1789
+ .mb-xl-4 {
1790
+ margin-bottom: 1.5rem !important;
1791
+ }
1792
+ .mb-xl-5 {
1793
+ margin-bottom: 3rem !important;
1794
+ }
1795
+ .mb-xl-auto {
1796
+ margin-bottom: auto !important;
1797
+ }
1798
+ .ms-xl-0 {
1799
+ margin-left: 0 !important;
1800
+ }
1801
+ .ms-xl-1 {
1802
+ margin-left: 0.25rem !important;
1803
+ }
1804
+ .ms-xl-2 {
1805
+ margin-left: 0.5rem !important;
1806
+ }
1807
+ .ms-xl-3 {
1808
+ margin-left: 1rem !important;
1809
+ }
1810
+ .ms-xl-4 {
1811
+ margin-left: 1.5rem !important;
1812
+ }
1813
+ .ms-xl-5 {
1814
+ margin-left: 3rem !important;
1815
+ }
1816
+ .ms-xl-auto {
1817
+ margin-left: auto !important;
1818
+ }
1819
+ .p-xl-0 {
1820
+ padding: 0 !important;
1821
+ }
1822
+ .p-xl-1 {
1823
+ padding: 0.25rem !important;
1824
+ }
1825
+ .p-xl-2 {
1826
+ padding: 0.5rem !important;
1827
+ }
1828
+ .p-xl-3 {
1829
+ padding: 1rem !important;
1830
+ }
1831
+ .p-xl-4 {
1832
+ padding: 1.5rem !important;
1833
+ }
1834
+ .p-xl-5 {
1835
+ padding: 3rem !important;
1836
+ }
1837
+ .px-xl-0 {
1838
+ padding-right: 0 !important;
1839
+ padding-left: 0 !important;
1840
+ }
1841
+ .px-xl-1 {
1842
+ padding-right: 0.25rem !important;
1843
+ padding-left: 0.25rem !important;
1844
+ }
1845
+ .px-xl-2 {
1846
+ padding-right: 0.5rem !important;
1847
+ padding-left: 0.5rem !important;
1848
+ }
1849
+ .px-xl-3 {
1850
+ padding-right: 1rem !important;
1851
+ padding-left: 1rem !important;
1852
+ }
1853
+ .px-xl-4 {
1854
+ padding-right: 1.5rem !important;
1855
+ padding-left: 1.5rem !important;
1856
+ }
1857
+ .px-xl-5 {
1858
+ padding-right: 3rem !important;
1859
+ padding-left: 3rem !important;
1860
+ }
1861
+ .py-xl-0 {
1862
+ padding-top: 0 !important;
1863
+ padding-bottom: 0 !important;
1864
+ }
1865
+ .py-xl-1 {
1866
+ padding-top: 0.25rem !important;
1867
+ padding-bottom: 0.25rem !important;
1868
+ }
1869
+ .py-xl-2 {
1870
+ padding-top: 0.5rem !important;
1871
+ padding-bottom: 0.5rem !important;
1872
+ }
1873
+ .py-xl-3 {
1874
+ padding-top: 1rem !important;
1875
+ padding-bottom: 1rem !important;
1876
+ }
1877
+ .py-xl-4 {
1878
+ padding-top: 1.5rem !important;
1879
+ padding-bottom: 1.5rem !important;
1880
+ }
1881
+ .py-xl-5 {
1882
+ padding-top: 3rem !important;
1883
+ padding-bottom: 3rem !important;
1884
+ }
1885
+ .pt-xl-0 {
1886
+ padding-top: 0 !important;
1887
+ }
1888
+ .pt-xl-1 {
1889
+ padding-top: 0.25rem !important;
1890
+ }
1891
+ .pt-xl-2 {
1892
+ padding-top: 0.5rem !important;
1893
+ }
1894
+ .pt-xl-3 {
1895
+ padding-top: 1rem !important;
1896
+ }
1897
+ .pt-xl-4 {
1898
+ padding-top: 1.5rem !important;
1899
+ }
1900
+ .pt-xl-5 {
1901
+ padding-top: 3rem !important;
1902
+ }
1903
+ .pe-xl-0 {
1904
+ padding-right: 0 !important;
1905
+ }
1906
+ .pe-xl-1 {
1907
+ padding-right: 0.25rem !important;
1908
+ }
1909
+ .pe-xl-2 {
1910
+ padding-right: 0.5rem !important;
1911
+ }
1912
+ .pe-xl-3 {
1913
+ padding-right: 1rem !important;
1914
+ }
1915
+ .pe-xl-4 {
1916
+ padding-right: 1.5rem !important;
1917
+ }
1918
+ .pe-xl-5 {
1919
+ padding-right: 3rem !important;
1920
+ }
1921
+ .pb-xl-0 {
1922
+ padding-bottom: 0 !important;
1923
+ }
1924
+ .pb-xl-1 {
1925
+ padding-bottom: 0.25rem !important;
1926
+ }
1927
+ .pb-xl-2 {
1928
+ padding-bottom: 0.5rem !important;
1929
+ }
1930
+ .pb-xl-3 {
1931
+ padding-bottom: 1rem !important;
1932
+ }
1933
+ .pb-xl-4 {
1934
+ padding-bottom: 1.5rem !important;
1935
+ }
1936
+ .pb-xl-5 {
1937
+ padding-bottom: 3rem !important;
1938
+ }
1939
+ .ps-xl-0 {
1940
+ padding-left: 0 !important;
1941
+ }
1942
+ .ps-xl-1 {
1943
+ padding-left: 0.25rem !important;
1944
+ }
1945
+ .ps-xl-2 {
1946
+ padding-left: 0.5rem !important;
1947
+ }
1948
+ .ps-xl-3 {
1949
+ padding-left: 1rem !important;
1950
+ }
1951
+ .ps-xl-4 {
1952
+ padding-left: 1.5rem !important;
1953
+ }
1954
+ .ps-xl-5 {
1955
+ padding-left: 3rem !important;
1956
+ }
1957
+ .gap-xl-0 {
1958
+ gap: 0 !important;
1959
+ }
1960
+ .gap-xl-1 {
1961
+ gap: 0.25rem !important;
1962
+ }
1963
+ .gap-xl-2 {
1964
+ gap: 0.5rem !important;
1965
+ }
1966
+ .gap-xl-3 {
1967
+ gap: 1rem !important;
1968
+ }
1969
+ .gap-xl-4 {
1970
+ gap: 1.5rem !important;
1971
+ }
1972
+ .gap-xl-5 {
1973
+ gap: 3rem !important;
1974
+ }
1975
+ .text-xl-start {
1976
+ text-align: left !important;
1977
+ }
1978
+ .text-xl-end {
1979
+ text-align: right !important;
1980
+ }
1981
+ .text-xl-center {
1982
+ text-align: center !important;
1983
+ }
1984
+ }
1985
+ @media (min-width: 1400px) {
1986
+ .float-xxl-start {
1987
+ float: left !important;
1988
+ }
1989
+ .float-xxl-end {
1990
+ float: right !important;
1991
+ }
1992
+ .float-xxl-none {
1993
+ float: none !important;
1994
+ }
1995
+ .d-xxl-inline {
1996
+ display: inline !important;
1997
+ }
1998
+ .d-xxl-inline-block {
1999
+ display: inline-block !important;
2000
+ }
2001
+ .d-xxl-block {
2002
+ display: block !important;
2003
+ }
2004
+ .d-xxl-grid {
2005
+ display: grid !important;
2006
+ }
2007
+ .d-xxl-table {
2008
+ display: table !important;
2009
+ }
2010
+ .d-xxl-table-row {
2011
+ display: table-row !important;
2012
+ }
2013
+ .d-xxl-table-cell {
2014
+ display: table-cell !important;
2015
+ }
2016
+ .d-xxl-flex {
2017
+ display: flex !important;
2018
+ }
2019
+ .d-xxl-inline-flex {
2020
+ display: inline-flex !important;
2021
+ }
2022
+ .d-xxl-none {
2023
+ display: none !important;
2024
+ }
2025
+ .flex-xxl-fill {
2026
+ flex: 1 1 auto !important;
2027
+ }
2028
+ .flex-xxl-row {
2029
+ flex-direction: row !important;
2030
+ }
2031
+ .flex-xxl-column {
2032
+ flex-direction: column !important;
2033
+ }
2034
+ .flex-xxl-row-reverse {
2035
+ flex-direction: row-reverse !important;
2036
+ }
2037
+ .flex-xxl-column-reverse {
2038
+ flex-direction: column-reverse !important;
2039
+ }
2040
+ .flex-xxl-grow-0 {
2041
+ flex-grow: 0 !important;
2042
+ }
2043
+ .flex-xxl-grow-1 {
2044
+ flex-grow: 1 !important;
2045
+ }
2046
+ .flex-xxl-shrink-0 {
2047
+ flex-shrink: 0 !important;
2048
+ }
2049
+ .flex-xxl-shrink-1 {
2050
+ flex-shrink: 1 !important;
2051
+ }
2052
+ .flex-xxl-wrap {
2053
+ flex-wrap: wrap !important;
2054
+ }
2055
+ .flex-xxl-nowrap {
2056
+ flex-wrap: nowrap !important;
2057
+ }
2058
+ .flex-xxl-wrap-reverse {
2059
+ flex-wrap: wrap-reverse !important;
2060
+ }
2061
+ .justify-content-xxl-start {
2062
+ justify-content: flex-start !important;
2063
+ }
2064
+ .justify-content-xxl-end {
2065
+ justify-content: flex-end !important;
2066
+ }
2067
+ .justify-content-xxl-center {
2068
+ justify-content: center !important;
2069
+ }
2070
+ .justify-content-xxl-between {
2071
+ justify-content: space-between !important;
2072
+ }
2073
+ .justify-content-xxl-around {
2074
+ justify-content: space-around !important;
2075
+ }
2076
+ .justify-content-xxl-evenly {
2077
+ justify-content: space-evenly !important;
2078
+ }
2079
+ .align-items-xxl-start {
2080
+ align-items: flex-start !important;
2081
+ }
2082
+ .align-items-xxl-end {
2083
+ align-items: flex-end !important;
2084
+ }
2085
+ .align-items-xxl-center {
2086
+ align-items: center !important;
2087
+ }
2088
+ .align-items-xxl-baseline {
2089
+ align-items: baseline !important;
2090
+ }
2091
+ .align-items-xxl-stretch {
2092
+ align-items: stretch !important;
2093
+ }
2094
+ .align-content-xxl-start {
2095
+ align-content: flex-start !important;
2096
+ }
2097
+ .align-content-xxl-end {
2098
+ align-content: flex-end !important;
2099
+ }
2100
+ .align-content-xxl-center {
2101
+ align-content: center !important;
2102
+ }
2103
+ .align-content-xxl-between {
2104
+ align-content: space-between !important;
2105
+ }
2106
+ .align-content-xxl-around {
2107
+ align-content: space-around !important;
2108
+ }
2109
+ .align-content-xxl-stretch {
2110
+ align-content: stretch !important;
2111
+ }
2112
+ .align-self-xxl-auto {
2113
+ align-self: auto !important;
2114
+ }
2115
+ .align-self-xxl-start {
2116
+ align-self: flex-start !important;
2117
+ }
2118
+ .align-self-xxl-end {
2119
+ align-self: flex-end !important;
2120
+ }
2121
+ .align-self-xxl-center {
2122
+ align-self: center !important;
2123
+ }
2124
+ .align-self-xxl-baseline {
2125
+ align-self: baseline !important;
2126
+ }
2127
+ .align-self-xxl-stretch {
2128
+ align-self: stretch !important;
2129
+ }
2130
+ .order-xxl-first {
2131
+ order: -1 !important;
2132
+ }
2133
+ .order-xxl-0 {
2134
+ order: 0 !important;
2135
+ }
2136
+ .order-xxl-1 {
2137
+ order: 1 !important;
2138
+ }
2139
+ .order-xxl-2 {
2140
+ order: 2 !important;
2141
+ }
2142
+ .order-xxl-3 {
2143
+ order: 3 !important;
2144
+ }
2145
+ .order-xxl-4 {
2146
+ order: 4 !important;
2147
+ }
2148
+ .order-xxl-5 {
2149
+ order: 5 !important;
2150
+ }
2151
+ .order-xxl-last {
2152
+ order: 6 !important;
2153
+ }
2154
+ .m-xxl-0 {
2155
+ margin: 0 !important;
2156
+ }
2157
+ .m-xxl-1 {
2158
+ margin: 0.25rem !important;
2159
+ }
2160
+ .m-xxl-2 {
2161
+ margin: 0.5rem !important;
2162
+ }
2163
+ .m-xxl-3 {
2164
+ margin: 1rem !important;
2165
+ }
2166
+ .m-xxl-4 {
2167
+ margin: 1.5rem !important;
2168
+ }
2169
+ .m-xxl-5 {
2170
+ margin: 3rem !important;
2171
+ }
2172
+ .m-xxl-auto {
2173
+ margin: auto !important;
2174
+ }
2175
+ .mx-xxl-0 {
2176
+ margin-right: 0 !important;
2177
+ margin-left: 0 !important;
2178
+ }
2179
+ .mx-xxl-1 {
2180
+ margin-right: 0.25rem !important;
2181
+ margin-left: 0.25rem !important;
2182
+ }
2183
+ .mx-xxl-2 {
2184
+ margin-right: 0.5rem !important;
2185
+ margin-left: 0.5rem !important;
2186
+ }
2187
+ .mx-xxl-3 {
2188
+ margin-right: 1rem !important;
2189
+ margin-left: 1rem !important;
2190
+ }
2191
+ .mx-xxl-4 {
2192
+ margin-right: 1.5rem !important;
2193
+ margin-left: 1.5rem !important;
2194
+ }
2195
+ .mx-xxl-5 {
2196
+ margin-right: 3rem !important;
2197
+ margin-left: 3rem !important;
2198
+ }
2199
+ .mx-xxl-auto {
2200
+ margin-right: auto !important;
2201
+ margin-left: auto !important;
2202
+ }
2203
+ .my-xxl-0 {
2204
+ margin-top: 0 !important;
2205
+ margin-bottom: 0 !important;
2206
+ }
2207
+ .my-xxl-1 {
2208
+ margin-top: 0.25rem !important;
2209
+ margin-bottom: 0.25rem !important;
2210
+ }
2211
+ .my-xxl-2 {
2212
+ margin-top: 0.5rem !important;
2213
+ margin-bottom: 0.5rem !important;
2214
+ }
2215
+ .my-xxl-3 {
2216
+ margin-top: 1rem !important;
2217
+ margin-bottom: 1rem !important;
2218
+ }
2219
+ .my-xxl-4 {
2220
+ margin-top: 1.5rem !important;
2221
+ margin-bottom: 1.5rem !important;
2222
+ }
2223
+ .my-xxl-5 {
2224
+ margin-top: 3rem !important;
2225
+ margin-bottom: 3rem !important;
2226
+ }
2227
+ .my-xxl-auto {
2228
+ margin-top: auto !important;
2229
+ margin-bottom: auto !important;
2230
+ }
2231
+ .mt-xxl-0 {
2232
+ margin-top: 0 !important;
2233
+ }
2234
+ .mt-xxl-1 {
2235
+ margin-top: 0.25rem !important;
2236
+ }
2237
+ .mt-xxl-2 {
2238
+ margin-top: 0.5rem !important;
2239
+ }
2240
+ .mt-xxl-3 {
2241
+ margin-top: 1rem !important;
2242
+ }
2243
+ .mt-xxl-4 {
2244
+ margin-top: 1.5rem !important;
2245
+ }
2246
+ .mt-xxl-5 {
2247
+ margin-top: 3rem !important;
2248
+ }
2249
+ .mt-xxl-auto {
2250
+ margin-top: auto !important;
2251
+ }
2252
+ .me-xxl-0 {
2253
+ margin-right: 0 !important;
2254
+ }
2255
+ .me-xxl-1 {
2256
+ margin-right: 0.25rem !important;
2257
+ }
2258
+ .me-xxl-2 {
2259
+ margin-right: 0.5rem !important;
2260
+ }
2261
+ .me-xxl-3 {
2262
+ margin-right: 1rem !important;
2263
+ }
2264
+ .me-xxl-4 {
2265
+ margin-right: 1.5rem !important;
2266
+ }
2267
+ .me-xxl-5 {
2268
+ margin-right: 3rem !important;
2269
+ }
2270
+ .me-xxl-auto {
2271
+ margin-right: auto !important;
2272
+ }
2273
+ .mb-xxl-0 {
2274
+ margin-bottom: 0 !important;
2275
+ }
2276
+ .mb-xxl-1 {
2277
+ margin-bottom: 0.25rem !important;
2278
+ }
2279
+ .mb-xxl-2 {
2280
+ margin-bottom: 0.5rem !important;
2281
+ }
2282
+ .mb-xxl-3 {
2283
+ margin-bottom: 1rem !important;
2284
+ }
2285
+ .mb-xxl-4 {
2286
+ margin-bottom: 1.5rem !important;
2287
+ }
2288
+ .mb-xxl-5 {
2289
+ margin-bottom: 3rem !important;
2290
+ }
2291
+ .mb-xxl-auto {
2292
+ margin-bottom: auto !important;
2293
+ }
2294
+ .ms-xxl-0 {
2295
+ margin-left: 0 !important;
2296
+ }
2297
+ .ms-xxl-1 {
2298
+ margin-left: 0.25rem !important;
2299
+ }
2300
+ .ms-xxl-2 {
2301
+ margin-left: 0.5rem !important;
2302
+ }
2303
+ .ms-xxl-3 {
2304
+ margin-left: 1rem !important;
2305
+ }
2306
+ .ms-xxl-4 {
2307
+ margin-left: 1.5rem !important;
2308
+ }
2309
+ .ms-xxl-5 {
2310
+ margin-left: 3rem !important;
2311
+ }
2312
+ .ms-xxl-auto {
2313
+ margin-left: auto !important;
2314
+ }
2315
+ .p-xxl-0 {
2316
+ padding: 0 !important;
2317
+ }
2318
+ .p-xxl-1 {
2319
+ padding: 0.25rem !important;
2320
+ }
2321
+ .p-xxl-2 {
2322
+ padding: 0.5rem !important;
2323
+ }
2324
+ .p-xxl-3 {
2325
+ padding: 1rem !important;
2326
+ }
2327
+ .p-xxl-4 {
2328
+ padding: 1.5rem !important;
2329
+ }
2330
+ .p-xxl-5 {
2331
+ padding: 3rem !important;
2332
+ }
2333
+ .px-xxl-0 {
2334
+ padding-right: 0 !important;
2335
+ padding-left: 0 !important;
2336
+ }
2337
+ .px-xxl-1 {
2338
+ padding-right: 0.25rem !important;
2339
+ padding-left: 0.25rem !important;
2340
+ }
2341
+ .px-xxl-2 {
2342
+ padding-right: 0.5rem !important;
2343
+ padding-left: 0.5rem !important;
2344
+ }
2345
+ .px-xxl-3 {
2346
+ padding-right: 1rem !important;
2347
+ padding-left: 1rem !important;
2348
+ }
2349
+ .px-xxl-4 {
2350
+ padding-right: 1.5rem !important;
2351
+ padding-left: 1.5rem !important;
2352
+ }
2353
+ .px-xxl-5 {
2354
+ padding-right: 3rem !important;
2355
+ padding-left: 3rem !important;
2356
+ }
2357
+ .py-xxl-0 {
2358
+ padding-top: 0 !important;
2359
+ padding-bottom: 0 !important;
2360
+ }
2361
+ .py-xxl-1 {
2362
+ padding-top: 0.25rem !important;
2363
+ padding-bottom: 0.25rem !important;
2364
+ }
2365
+ .py-xxl-2 {
2366
+ padding-top: 0.5rem !important;
2367
+ padding-bottom: 0.5rem !important;
2368
+ }
2369
+ .py-xxl-3 {
2370
+ padding-top: 1rem !important;
2371
+ padding-bottom: 1rem !important;
2372
+ }
2373
+ .py-xxl-4 {
2374
+ padding-top: 1.5rem !important;
2375
+ padding-bottom: 1.5rem !important;
2376
+ }
2377
+ .py-xxl-5 {
2378
+ padding-top: 3rem !important;
2379
+ padding-bottom: 3rem !important;
2380
+ }
2381
+ .pt-xxl-0 {
2382
+ padding-top: 0 !important;
2383
+ }
2384
+ .pt-xxl-1 {
2385
+ padding-top: 0.25rem !important;
2386
+ }
2387
+ .pt-xxl-2 {
2388
+ padding-top: 0.5rem !important;
2389
+ }
2390
+ .pt-xxl-3 {
2391
+ padding-top: 1rem !important;
2392
+ }
2393
+ .pt-xxl-4 {
2394
+ padding-top: 1.5rem !important;
2395
+ }
2396
+ .pt-xxl-5 {
2397
+ padding-top: 3rem !important;
2398
+ }
2399
+ .pe-xxl-0 {
2400
+ padding-right: 0 !important;
2401
+ }
2402
+ .pe-xxl-1 {
2403
+ padding-right: 0.25rem !important;
2404
+ }
2405
+ .pe-xxl-2 {
2406
+ padding-right: 0.5rem !important;
2407
+ }
2408
+ .pe-xxl-3 {
2409
+ padding-right: 1rem !important;
2410
+ }
2411
+ .pe-xxl-4 {
2412
+ padding-right: 1.5rem !important;
2413
+ }
2414
+ .pe-xxl-5 {
2415
+ padding-right: 3rem !important;
2416
+ }
2417
+ .pb-xxl-0 {
2418
+ padding-bottom: 0 !important;
2419
+ }
2420
+ .pb-xxl-1 {
2421
+ padding-bottom: 0.25rem !important;
2422
+ }
2423
+ .pb-xxl-2 {
2424
+ padding-bottom: 0.5rem !important;
2425
+ }
2426
+ .pb-xxl-3 {
2427
+ padding-bottom: 1rem !important;
2428
+ }
2429
+ .pb-xxl-4 {
2430
+ padding-bottom: 1.5rem !important;
2431
+ }
2432
+ .pb-xxl-5 {
2433
+ padding-bottom: 3rem !important;
2434
+ }
2435
+ .ps-xxl-0 {
2436
+ padding-left: 0 !important;
2437
+ }
2438
+ .ps-xxl-1 {
2439
+ padding-left: 0.25rem !important;
2440
+ }
2441
+ .ps-xxl-2 {
2442
+ padding-left: 0.5rem !important;
2443
+ }
2444
+ .ps-xxl-3 {
2445
+ padding-left: 1rem !important;
2446
+ }
2447
+ .ps-xxl-4 {
2448
+ padding-left: 1.5rem !important;
2449
+ }
2450
+ .ps-xxl-5 {
2451
+ padding-left: 3rem !important;
2452
+ }
2453
+ .gap-xxl-0 {
2454
+ gap: 0 !important;
2455
+ }
2456
+ .gap-xxl-1 {
2457
+ gap: 0.25rem !important;
2458
+ }
2459
+ .gap-xxl-2 {
2460
+ gap: 0.5rem !important;
2461
+ }
2462
+ .gap-xxl-3 {
2463
+ gap: 1rem !important;
2464
+ }
2465
+ .gap-xxl-4 {
2466
+ gap: 1.5rem !important;
2467
+ }
2468
+ .gap-xxl-5 {
2469
+ gap: 3rem !important;
2470
+ }
2471
+ .text-xxl-start {
2472
+ text-align: left !important;
2473
+ }
2474
+ .text-xxl-end {
2475
+ text-align: right !important;
2476
+ }
2477
+ .text-xxl-center {
2478
+ text-align: center !important;
2479
+ }
2480
+ }