stargazer-ui 1.5.11 → 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 -61
  149. package/{Dropdown → types/components/Dropdown}/Dropdown.types.d.ts +11 -10
  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 -129
  214. package/Dropdown/Dropdown.js +0 -378
  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 -93
  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,3762 @@
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
+ }
2481
+ /* Grid variables */
2482
+ /* z indices */
2483
+ /* Button */
2484
+ /* Input and forms */
2485
+ /* Card */
2486
+ .popover-header {
2487
+ background-color: var(--nav-color);
2488
+ color: white;
2489
+ }
2490
+
2491
+ .popover-body {
2492
+ background-color: var(--background-color);
2493
+ color: var(--text-color);
2494
+ border-bottom-right-radius: 0.5em;
2495
+ border-bottom-left-radius: 0.5em;
2496
+ max-height: 30em;
2497
+ overflow: auto;
2498
+ }
2499
+
2500
+ /* Table */
2501
+ /* Dropdown */
2502
+ .sg-visually-hidden {
2503
+ position: absolute !important;
2504
+ width: 1px !important;
2505
+ height: 1px !important;
2506
+ padding: 0 !important;
2507
+ margin: -1px !important;
2508
+ overflow: hidden !important;
2509
+ clip: rect(0, 0, 0, 0) !important;
2510
+ white-space: nowrap !important;
2511
+ border: 0 !important;
2512
+ }
2513
+
2514
+ .sg-card {
2515
+ display: flex;
2516
+ flex-direction: column;
2517
+ border-radius: 0.375em;
2518
+ }
2519
+ .sg-card.sg-card-overlay {
2520
+ background-color: #2e3236;
2521
+ color: white;
2522
+ border: 1px solid white;
2523
+ }
2524
+ .sg-card .sg-card-body {
2525
+ flex: 1 1 auto;
2526
+ padding: 1em;
2527
+ }
2528
+ .sg-card .sg-card-header {
2529
+ margin-bottom: 0;
2530
+ padding: 0.5em 1em;
2531
+ background-color: #212529;
2532
+ border-bottom: 1px solid white;
2533
+ }
2534
+ .sg-card .sg-card-header:first-child {
2535
+ border-radius: 0.375em 0.375em 0 0;
2536
+ }
2537
+ .sg-card .sg-card-footer {
2538
+ padding: 0.5em 1em;
2539
+ background-color: #212529;
2540
+ border-top: 1px solid white;
2541
+ }
2542
+ .sg-card .sg-card-footer:last-child {
2543
+ border-radius: 0 0 0.375em 0.375em;
2544
+ }
2545
+ .sg-card .sg-card-text:last-child {
2546
+ margin-bottom: 0;
2547
+ }
2548
+
2549
+ .sg-button-close {
2550
+ box-sizing: content-box;
2551
+ width: 1rem;
2552
+ height: 1rem;
2553
+ padding: 0.25rem 0.25rem;
2554
+ color: black;
2555
+ background: transparent url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='black'><path d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/></svg>") center/1rem auto no-repeat;
2556
+ border: 0;
2557
+ border-radius: 0.125rem;
2558
+ opacity: 0.5;
2559
+ }
2560
+ .sg-button-close:hover {
2561
+ color: black;
2562
+ text-decoration: none;
2563
+ opacity: 0.75;
2564
+ }
2565
+ .sg-button-close:focus-visible, .sg-button-close:focus:not(:focus-visible) {
2566
+ box-shadow: 0 0 0 3px black;
2567
+ outline: 2px solid white;
2568
+ opacity: 1;
2569
+ z-index: 5;
2570
+ }
2571
+ .sg-button-close:disabled, .sg-button-close.disabled {
2572
+ pointer-events: none;
2573
+ user-select: none;
2574
+ opacity: 0.25;
2575
+ }
2576
+
2577
+ .sg-button-close-white {
2578
+ filter: invert(1) grayscale(100%) brightness(200%);
2579
+ }
2580
+
2581
+ .sg-close-visually-hidden-label {
2582
+ position: absolute !important;
2583
+ width: 1px !important;
2584
+ height: 1px !important;
2585
+ padding: 0 !important;
2586
+ margin: -1px !important;
2587
+ overflow: hidden !important;
2588
+ clip: rect(0, 0, 0, 0) !important;
2589
+ white-space: nowrap !important;
2590
+ border: 0 !important;
2591
+ }
2592
+
2593
+ .sg-button {
2594
+ --text-color: white;
2595
+ --bg-color: #0d6efd;
2596
+ --border-color: #0d6efd;
2597
+ --bg-hover-color: color.mix(white, #0d6efd, 15%);
2598
+ --border-hover-color: color.mix(white, #0d6efd, 15%);
2599
+ --bg-active-color: color.mix(white, #0d6efd, 20%);
2600
+ --border-active-color: color.mix(white, #0d6efd, 20%);
2601
+ --focus-visible-border-color: white;
2602
+ --focus-visible-outline-color: #0d6efd;
2603
+ --focus-visible-boxshadow-color: white;
2604
+ border-radius: 0.375rem;
2605
+ min-width: fit-content;
2606
+ display: inline-block;
2607
+ text-align: center;
2608
+ vertical-align: middle;
2609
+ padding: 0.375rem 0.75rem;
2610
+ background-color: var(--bg-color);
2611
+ border: 1px solid var(--border-color);
2612
+ color: var(--text-color);
2613
+ }
2614
+ .sg-button:hover, .sg-button:focus {
2615
+ background-color: var(--bg-hover-color);
2616
+ border-color: var(--border-hover-color);
2617
+ }
2618
+ .sg-button:active {
2619
+ background-color: var(--bg-active-color);
2620
+ border-color: var(--border-active-color);
2621
+ }
2622
+ .sg-button:focus-visible {
2623
+ box-shadow: 0 0 0 3px var(--focus-visible-boxshadow-color);
2624
+ border: 1px solid var(--focus-visible-border-color);
2625
+ outline: 2px solid var(--focus-visible-outline-color);
2626
+ z-index: 5;
2627
+ }
2628
+
2629
+ .sg-button-primary {
2630
+ --text-color: white;
2631
+ --bg-color: #0d6efd;
2632
+ --border-color: #0d6efd;
2633
+ --bg-hover-color: #0b5ed7;
2634
+ --border-hover-color: #0b5ed7;
2635
+ --bg-active-color: #0a58ca;
2636
+ --border-active-color: #0a58ca;
2637
+ --focus-visible-border-color: white;
2638
+ --focus-visible-outline-color: #0d6efd;
2639
+ --focus-visible-boxshadow-color: white;
2640
+ }
2641
+
2642
+ .sg-button-group > .btn-primary {
2643
+ position: relative;
2644
+ flex: 1 1 auto;
2645
+ }
2646
+
2647
+ .sg-button-secondary {
2648
+ --text-color: white;
2649
+ --bg-color: #6c757d;
2650
+ --border-color: #6c757d;
2651
+ --bg-hover-color: #5c636a;
2652
+ --border-hover-color: #5c636a;
2653
+ --bg-active-color: #565e64;
2654
+ --border-active-color: #565e64;
2655
+ --focus-visible-border-color: white;
2656
+ --focus-visible-outline-color: #6c757d;
2657
+ --focus-visible-boxshadow-color: white;
2658
+ }
2659
+
2660
+ .sg-button-group > .btn-secondary {
2661
+ position: relative;
2662
+ flex: 1 1 auto;
2663
+ }
2664
+
2665
+ .sg-button-success {
2666
+ --text-color: white;
2667
+ --bg-color: #198754;
2668
+ --border-color: #198754;
2669
+ --bg-hover-color: #157347;
2670
+ --border-hover-color: #157347;
2671
+ --bg-active-color: #146c43;
2672
+ --border-active-color: #146c43;
2673
+ --focus-visible-border-color: white;
2674
+ --focus-visible-outline-color: #198754;
2675
+ --focus-visible-boxshadow-color: white;
2676
+ }
2677
+
2678
+ .sg-button-group > .btn-success {
2679
+ position: relative;
2680
+ flex: 1 1 auto;
2681
+ }
2682
+
2683
+ .sg-button-info {
2684
+ --text-color: black;
2685
+ --bg-color: #0dcaf0;
2686
+ --border-color: #0dcaf0;
2687
+ --bg-hover-color: #31d2f2;
2688
+ --border-hover-color: #31d2f2;
2689
+ --bg-active-color: #3dd5f3;
2690
+ --border-active-color: #3dd5f3;
2691
+ --focus-visible-border-color: black;
2692
+ --focus-visible-outline-color: #0dcaf0;
2693
+ --focus-visible-boxshadow-color: black;
2694
+ }
2695
+
2696
+ .sg-button-group > .btn-info {
2697
+ position: relative;
2698
+ flex: 1 1 auto;
2699
+ }
2700
+
2701
+ .sg-button-warning {
2702
+ --text-color: black;
2703
+ --bg-color: #ffc107;
2704
+ --border-color: #ffc107;
2705
+ --bg-hover-color: #ffca2c;
2706
+ --border-hover-color: #ffca2c;
2707
+ --bg-active-color: #ffcd39;
2708
+ --border-active-color: #ffcd39;
2709
+ --focus-visible-border-color: black;
2710
+ --focus-visible-outline-color: #ffc107;
2711
+ --focus-visible-boxshadow-color: black;
2712
+ }
2713
+
2714
+ .sg-button-group > .btn-warning {
2715
+ position: relative;
2716
+ flex: 1 1 auto;
2717
+ }
2718
+
2719
+ .sg-button-danger {
2720
+ --text-color: white;
2721
+ --bg-color: #dc3545;
2722
+ --border-color: #dc3545;
2723
+ --bg-hover-color: #bb2d3b;
2724
+ --border-hover-color: #bb2d3b;
2725
+ --bg-active-color: #b02a37;
2726
+ --border-active-color: #b02a37;
2727
+ --focus-visible-border-color: white;
2728
+ --focus-visible-outline-color: #dc3545;
2729
+ --focus-visible-boxshadow-color: white;
2730
+ }
2731
+
2732
+ .sg-button-group > .btn-danger {
2733
+ position: relative;
2734
+ flex: 1 1 auto;
2735
+ }
2736
+
2737
+ .sg-button-light {
2738
+ --text-color: black;
2739
+ --bg-color: #f8f9fa;
2740
+ --border-color: #f8f9fa;
2741
+ --bg-hover-color: #f9fafb;
2742
+ --border-hover-color: #f9fafb;
2743
+ --bg-active-color: #f9fafb;
2744
+ --border-active-color: #f9fafb;
2745
+ --focus-visible-border-color: black;
2746
+ --focus-visible-outline-color: #f8f9fa;
2747
+ --focus-visible-boxshadow-color: black;
2748
+ }
2749
+
2750
+ .sg-button-group > .btn-light {
2751
+ position: relative;
2752
+ flex: 1 1 auto;
2753
+ }
2754
+
2755
+ .sg-button-dark {
2756
+ --text-color: white;
2757
+ --bg-color: #212529;
2758
+ --border-color: #212529;
2759
+ --bg-hover-color: #1c1f23;
2760
+ --border-hover-color: #1c1f23;
2761
+ --bg-active-color: #1a1e21;
2762
+ --border-active-color: #1a1e21;
2763
+ --focus-visible-border-color: white;
2764
+ --focus-visible-outline-color: #212529;
2765
+ --focus-visible-boxshadow-color: white;
2766
+ }
2767
+
2768
+ .sg-button-group > .btn-dark {
2769
+ position: relative;
2770
+ flex: 1 1 auto;
2771
+ }
2772
+
2773
+ .sg-button-group, .sg-button-group-vertical {
2774
+ position: relative;
2775
+ display: inline-flex;
2776
+ vertical-align: middle;
2777
+ border-radius: 0.375rem;
2778
+ }
2779
+ .sg-button-group > .sg-button, .sg-button-group-vertical > .sg-button {
2780
+ position: relative;
2781
+ flex: 1 1 auto;
2782
+ }
2783
+
2784
+ .sg-button-group > :not(.sg-button-check:first-child) + .sg-button, .sg-button-group > .sg-button-group:not(:first-child) {
2785
+ margin-left: -1px;
2786
+ }
2787
+ .sg-button-group > .sg-button:not(:last-child), .sg-button-group > .sg-button-group:not(:last-child) > .sg-button {
2788
+ border-top-right-radius: 0;
2789
+ border-bottom-right-radius: 0;
2790
+ }
2791
+ .sg-button-group > .sg-button:nth-child(n+3), .sg-button-group > :not(.sg-button-check) + .sg-button, .sg-button-group > .sg-button-group:not(:first-child) > .sg-button {
2792
+ border-top-left-radius: 0;
2793
+ border-bottom-left-radius: 0;
2794
+ }
2795
+
2796
+ .sg-button-group-vertical {
2797
+ flex-direction: column;
2798
+ align-items: flex-start;
2799
+ justify-content: center;
2800
+ }
2801
+ .sg-button-group-vertical > .sg-button,
2802
+ .sg-button-group-vertical > .sg-button-group {
2803
+ width: 100%;
2804
+ }
2805
+ .sg-button-group-vertical > .sg-button:not(:first-child),
2806
+ .sg-button-group-vertical > .sg-button-group:not(:first-child) {
2807
+ margin-top: -1px;
2808
+ }
2809
+ .sg-button-group-vertical > .sg-button:not(:last-child):not(.dropdown-toggle),
2810
+ .sg-button-group-vertical > .sg-button-group:not(:last-child) > .sg-button {
2811
+ border-bottom-left-radius: 0;
2812
+ border-bottom-right-radius: 0;
2813
+ }
2814
+ .sg-button-group-vertical > .sg-button ~ .sg-button,
2815
+ .sg-button-group-vertical > .sg-button-group:not(:first-child) > .sg-button {
2816
+ border-top-left-radius: 0;
2817
+ border-top-right-radius: 0;
2818
+ }
2819
+
2820
+ .dropup,
2821
+ .dropend,
2822
+ .dropdown,
2823
+ .dropstart,
2824
+ .dropup-center,
2825
+ .dropdown-center {
2826
+ position: relative;
2827
+ }
2828
+
2829
+ .sg-dropdown-list {
2830
+ position: absolute;
2831
+ z-index: 1000;
2832
+ display: none;
2833
+ min-width: 10rem;
2834
+ padding: 0.5rem 0rem;
2835
+ margin: 0;
2836
+ text-align: left;
2837
+ list-style: none;
2838
+ background-color: #343a40;
2839
+ color: white;
2840
+ background-clip: padding-box;
2841
+ border: 1px solid white;
2842
+ border-radius: 0.375rem;
2843
+ }
2844
+ .sg-dropdown-list[data-bs-popper] {
2845
+ top: 100%;
2846
+ left: 0;
2847
+ margin-top: 0.125rem;
2848
+ }
2849
+
2850
+ .sg-dropdown-list.show {
2851
+ display: block;
2852
+ }
2853
+
2854
+ .sg-dropdown-toggle {
2855
+ white-space: nowrap;
2856
+ }
2857
+ .sg-dropdown-toggle::after {
2858
+ display: inline-block;
2859
+ margin-left: 0.255em;
2860
+ vertical-align: 0.255em;
2861
+ content: "";
2862
+ border-top: 0.3em solid;
2863
+ border-right: 0.3em solid transparent;
2864
+ border-bottom: 0;
2865
+ border-left: 0.3em solid transparent;
2866
+ }
2867
+
2868
+ .sg-dropdown-divider {
2869
+ --line-color: rgba(0, 0, 0, 0.175);
2870
+ height: 0;
2871
+ margin: 0.5rem 0;
2872
+ overflow: hidden;
2873
+ border-top: 1px solid var(--line-color);
2874
+ opacity: 1;
2875
+ }
2876
+
2877
+ .sg-dropdown-item {
2878
+ display: block;
2879
+ width: 100%;
2880
+ padding: 0.25rem 1rem;
2881
+ clear: both;
2882
+ text-align: inherit;
2883
+ white-space: nowrap;
2884
+ background-color: transparent;
2885
+ color: inherit;
2886
+ border: 1px solid transparent;
2887
+ }
2888
+ .sg-dropdown-item:hover {
2889
+ background-color: #2c3136;
2890
+ }
2891
+ .sg-dropdown-item.active, .sg-dropdown-item:active {
2892
+ background-color: #2a2e33;
2893
+ }
2894
+ .sg-dropdown-item.disabled, .sg-dropdown-item:disabled {
2895
+ background-color: #52585d;
2896
+ opacity: 0.5;
2897
+ }
2898
+ .sg-dropdown-item.sg-dropdown-item-visual-focus {
2899
+ background-color: #2c3136;
2900
+ border-top: 1px solid white;
2901
+ border-bottom: 1px solid white;
2902
+ }
2903
+
2904
+ .sg-form-floating {
2905
+ position: relative;
2906
+ --sg-form-floating-height: calc(3.5rem + 2px);
2907
+ }
2908
+ .sg-form-floating > .sg-form-control, .sg-form-floating > .sg-form-control-plaintext, .sg-form-floating > .sg-form-select {
2909
+ height: var(--sg-form-floating-height);
2910
+ }
2911
+ .sg-form-floating > .sg-form-control, .sg-form-floating > .sg-form-control-plaintext {
2912
+ padding-inline: 1rem;
2913
+ }
2914
+ .sg-form-floating > .sg-form-control::placeholder, .sg-form-floating > .sg-form-control-plaintext::placeholder {
2915
+ color: transparent;
2916
+ }
2917
+ .sg-form-floating > .sg-form-control:focus, .sg-form-floating > .sg-form-control:not(:placeholder-shown), .sg-form-floating > .sg-form-control-plaintext:focus, .sg-form-floating > .sg-form-control-plaintext:not(:placeholder-shown) {
2918
+ padding-top: 1.5rem;
2919
+ }
2920
+ .sg-form-floating > .sg-form-control:-webkit-autofill, .sg-form-floating > .sg-form-control-plaintext:-webkit-autofill {
2921
+ padding-top: 1.5rem;
2922
+ }
2923
+ .sg-form-floating > .sg-form-floating-label {
2924
+ position: absolute;
2925
+ top: 0;
2926
+ left: 0;
2927
+ color: #212529;
2928
+ width: 100%;
2929
+ height: 100%;
2930
+ padding-inline: 1rem;
2931
+ padding-block: 1rem;
2932
+ border-radius: 50%;
2933
+ pointer-events: none;
2934
+ transition: 0.1s ease-in-out;
2935
+ transform-origin: 0 0;
2936
+ z-index: 5;
2937
+ text-overflow: ellipsis;
2938
+ white-space: nowrap;
2939
+ }
2940
+ .sg-form-floating > .sg-form-select {
2941
+ padding-inline: 1rem;
2942
+ padding-block: 1.5rem 0.5rem;
2943
+ }
2944
+ .sg-form-floating > .sg-form-control:focus ~ .sg-form-floating-label,
2945
+ .sg-form-floating > .sg-form-control:not(:placeholder-shown) ~ .sg-form-floating-label,
2946
+ .sg-form-floating > .sg-form-control-plaintext ~ .sg-form-floating-label,
2947
+ .sg-form-floating > .sg-form-select ~ .sg-form-floating-label {
2948
+ padding: 0.5rem 0.75rem;
2949
+ transform: translate(0, -0.25rem);
2950
+ opacity: 0.75;
2951
+ }
2952
+
2953
+ .sg-form-check {
2954
+ display: block;
2955
+ min-height: 1.4em;
2956
+ padding-left: 1.4em;
2957
+ margin-bottom: 0.125em;
2958
+ }
2959
+ .sg-form-check .sg-form-check-input {
2960
+ float: left;
2961
+ margin-left: -1.4em;
2962
+ }
2963
+
2964
+ .sg-form-check-reverse {
2965
+ display: block;
2966
+ min-height: 1.4em;
2967
+ padding-right: 1.4em;
2968
+ margin-bottom: 0.125em;
2969
+ text-align: right;
2970
+ }
2971
+ .sg-form-check-reverse .sg-form-check-input {
2972
+ float: right;
2973
+ margin-right: -1.4em;
2974
+ margin-left: 0;
2975
+ }
2976
+
2977
+ .sg-form-check-input {
2978
+ width: 1em;
2979
+ height: 1em;
2980
+ margin-top: 0.2em;
2981
+ vertical-align: top;
2982
+ background-color: white;
2983
+ background-repeat: no-repeat;
2984
+ background-position: center;
2985
+ background-size: contain;
2986
+ border: 1px;
2987
+ appearance: none;
2988
+ print-color-adjust: exact;
2989
+ }
2990
+ .sg-form-check-input[type=checkbox] {
2991
+ border-radius: 0.25em;
2992
+ }
2993
+ .sg-form-check-input[type=radio] {
2994
+ border-radius: 50%;
2995
+ }
2996
+ .sg-form-check-input:active {
2997
+ filter: brightness(90%);
2998
+ }
2999
+ .sg-form-check-input:focus-visible {
3000
+ box-shadow: 0 0 0 3px white;
3001
+ outline: 2px solid #0d6efd;
3002
+ z-index: 5;
3003
+ border: 1px solid white;
3004
+ }
3005
+ .sg-form-check-input:checked {
3006
+ background-color: #0d6efd;
3007
+ border-color: #0d6efd;
3008
+ }
3009
+ .sg-form-check-input:checked[type=checkbox] {
3010
+ background-image: url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 20 20'><path fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/></svg>");
3011
+ }
3012
+ .sg-form-check-input:checked[type=radio] {
3013
+ background-image: url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='-4 -4 8 8'><circle r='2' fill='white' /></svg>");
3014
+ }
3015
+ .sg-form-check-input:checked:focus-visible {
3016
+ border: 1px solid white;
3017
+ }
3018
+ .sg-form-check-input[type=checkbox]:indeterminate {
3019
+ background-color: #0d6efd;
3020
+ border-color: #0d6efd;
3021
+ background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/></svg>");
3022
+ }
3023
+ .sg-form-check-input:disabled {
3024
+ pointer-events: none;
3025
+ filter: none;
3026
+ opacity: 0.5;
3027
+ }
3028
+ .sg-form-check-input[disabled] ~ .form-check-label, .sg-form-check-input:disabled ~ .form-check-label {
3029
+ cursor: default;
3030
+ opacity: 0.5;
3031
+ }
3032
+
3033
+ .sg-form-switch {
3034
+ padding-left: 2.5em;
3035
+ }
3036
+ .sg-form-switch .sg-form-check-input {
3037
+ width: 2em;
3038
+ margin-left: -2.5em;
3039
+ background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='rgba(0, 0, 0, 0.25)'/></svg>");
3040
+ background-position: left center;
3041
+ border-radius: 2em;
3042
+ transition: background-position 0.15s ease-in-out;
3043
+ }
3044
+ .sg-form-switch .sg-form-check-input:focus-visible {
3045
+ box-shadow: 0 0 0 3px white;
3046
+ outline: 2px solid #0d6efd;
3047
+ z-index: 5;
3048
+ }
3049
+ .sg-form-switch .sg-form-check-input:checked {
3050
+ background-position: right center;
3051
+ background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='white'/></svg>");
3052
+ }
3053
+
3054
+ .sg-form-control {
3055
+ position: relative;
3056
+ display: block;
3057
+ width: 100%;
3058
+ padding: 0.375em 0.5em;
3059
+ color: #212529;
3060
+ background-color: white;
3061
+ background-clip: padding-box;
3062
+ border: 1px solid #ced4da;
3063
+ appearance: none;
3064
+ border-radius: 0.375em;
3065
+ transition: border-color 0.15s ease-in-out;
3066
+ }
3067
+ .sg-form-control[type=file] {
3068
+ overflow: hidden;
3069
+ }
3070
+ .sg-form-control[type=file]:not(:disabled):not([readonly]) {
3071
+ cursor: pointer;
3072
+ }
3073
+ .sg-form-control:focus-visible {
3074
+ box-shadow: 0 0 0 3px white;
3075
+ outline: 2px solid #0d6efd;
3076
+ z-index: 5;
3077
+ }
3078
+ .sg-form-control::-webkit-date-and-time-value {
3079
+ height: 1.4em;
3080
+ }
3081
+ .sg-form-control::placeholder {
3082
+ color: #6c757d;
3083
+ opacity: 1;
3084
+ }
3085
+ .sg-form-control:disabled {
3086
+ background-color: #e9ecef;
3087
+ opacity: 1;
3088
+ }
3089
+ .sg-form-control::file-selector-button {
3090
+ padding: 0.375em 0.5em;
3091
+ margin: -0.375em -0.5em;
3092
+ margin-inline-end: 0.375em;
3093
+ pointer-events: none;
3094
+ border-color: inherit;
3095
+ border-style: solid;
3096
+ border-width: 0;
3097
+ border-inline-end-width: 1px;
3098
+ border-radius: 0;
3099
+ transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
3100
+ }
3101
+ .sg-form-control:hover:not(:disabled):not([readonly])::file-selector-button {
3102
+ background-color: #1f2327;
3103
+ }
3104
+
3105
+ .sg-form-control-plaintext {
3106
+ display: block;
3107
+ width: 100%;
3108
+ padding: 0.375em 0;
3109
+ margin-bottom: 0;
3110
+ color: #212529;
3111
+ background-color: transparent;
3112
+ border: solid transparent;
3113
+ border-width: 1px 0;
3114
+ }
3115
+ .sg-form-control-plaintext:focus-visible {
3116
+ outline: 0;
3117
+ }
3118
+
3119
+ textarea.sg-form-control {
3120
+ min-height: calc(2.15em + 2px);
3121
+ }
3122
+
3123
+ .sg-form-control-color {
3124
+ width: 3em;
3125
+ height: calc(2.15em + 2px);
3126
+ padding: 0.375em;
3127
+ }
3128
+ .sg-form-control-color:not(:disabled):not([readonly]) {
3129
+ cursor: pointer;
3130
+ }
3131
+ .sg-form-control-color::-moz-color-swatch {
3132
+ border: 0 !important;
3133
+ border-radius: 0.375em;
3134
+ }
3135
+ .sg-form-control-color::-webkit-color-swatch {
3136
+ border-radius: 0.375em;
3137
+ }
3138
+
3139
+ .sg-form-label {
3140
+ margin-bottom: 0.5em;
3141
+ }
3142
+
3143
+ .sg-form-select {
3144
+ position: relative;
3145
+ display: block;
3146
+ width: 100%;
3147
+ padding-block: 0.375em;
3148
+ padding-inline: 0.5em 1.5em;
3149
+ color: #212529;
3150
+ background-color: white;
3151
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
3152
+ background-repeat: no-repeat;
3153
+ background-position: right 0.375em center;
3154
+ background-size: 1em 0.75em;
3155
+ border: 1px solid #ced4da;
3156
+ border-radius: 0.375em;
3157
+ appearance: none;
3158
+ }
3159
+ .sg-form-select:focus-visible {
3160
+ box-shadow: 0 0 0 3px white;
3161
+ outline: 2px solid #0d6efd;
3162
+ z-index: 5;
3163
+ }
3164
+ .sg-form-select[multiple], .sg-form-select[size]:not([size="1"]) {
3165
+ padding-right: 0.375em;
3166
+ background-image: none;
3167
+ }
3168
+ .sg-form-select:disabled {
3169
+ background-color: #e9ecef;
3170
+ opacity: 1;
3171
+ }
3172
+
3173
+ .sg-form-text {
3174
+ font-size: 0.75em;
3175
+ padding-inline: 0.5em;
3176
+ opacity: 0.8;
3177
+ margin-top: 0.25em;
3178
+ }
3179
+
3180
+ .sg-input-group {
3181
+ display: flex;
3182
+ flex-wrap: wrap;
3183
+ align-items: stretch;
3184
+ width: 100%;
3185
+ }
3186
+ .sg-input-group > .sg-form-control,
3187
+ .sg-input-group > .sg-form-control-plaintext,
3188
+ .sg-input-group > .sg-form-select,
3189
+ .sg-input-group > .sg-form-floating {
3190
+ flex: 1 1 auto;
3191
+ width: 1%;
3192
+ min-width: 0;
3193
+ }
3194
+ .sg-input-group > .sg-button, .sg-input-group > button {
3195
+ position: relative;
3196
+ z-index: 2;
3197
+ }
3198
+ .sg-input-group > :not(:first-child):not(:last-child) {
3199
+ border-radius: 0;
3200
+ }
3201
+ .sg-input-group > :not(:first-child):not(:last-child).sg-form-floating > .sg-form-control, .sg-input-group > :not(:first-child):not(:last-child).sg-form-floating > .sg-form-select {
3202
+ border-radius: 0;
3203
+ }
3204
+ .sg-input-group > :first-child {
3205
+ border-top-right-radius: 0;
3206
+ border-bottom-right-radius: 0;
3207
+ }
3208
+ .sg-input-group > :first-child.sg-form-floating > .sg-form-control, .sg-input-group > :first-child.sg-form-floating > .sg-form-select {
3209
+ border-top-right-radius: 0;
3210
+ border-bottom-right-radius: 0;
3211
+ }
3212
+ .sg-input-group > :last-child {
3213
+ border-top-left-radius: 0;
3214
+ border-bottom-left-radius: 0;
3215
+ }
3216
+ .sg-input-group > :last-child.sg-form-floating > .sg-form-control, .sg-input-group > :last-child.sg-form-floating > .sg-form-select {
3217
+ border-top-left-radius: 0;
3218
+ border-bottom-left-radius: 0;
3219
+ }
3220
+
3221
+ .sg-input-group-text {
3222
+ display: flex;
3223
+ width: fit-content;
3224
+ align-items: center;
3225
+ text-align: center;
3226
+ font-size: 0.8rem;
3227
+ padding: 0.375em 0.5em;
3228
+ white-space: nowrap;
3229
+ background-color: #e9ecef;
3230
+ color: #212529;
3231
+ border: 1px solid #dde0e3;
3232
+ border-radius: 0.375em;
3233
+ }
3234
+
3235
+ .sg-modal-tag::backdrop {
3236
+ z-index: 1060;
3237
+ background: hsla(0, 0%, 0%, 0.5);
3238
+ }
3239
+
3240
+ .sg-modal-tag {
3241
+ z-index: 1061;
3242
+ padding: 0;
3243
+ margin: 2rem;
3244
+ width: 100%;
3245
+ height: fit-content;
3246
+ color: white;
3247
+ background-color: #2e3236;
3248
+ background-clip: padding-box;
3249
+ border: 1px solid white;
3250
+ border-radius: 0.5rem;
3251
+ outline: 0;
3252
+ }
3253
+ .sg-modal.sg-modal-static .sg-modal-tag {
3254
+ transition: transform 0.3s ease-out;
3255
+ transform: scale(1.02);
3256
+ }
3257
+
3258
+ .sg-modal-dialog-centered {
3259
+ display: flex;
3260
+ justify-content: center;
3261
+ align-items: center;
3262
+ height: 100dvh;
3263
+ max-width: 100dvw;
3264
+ margin: 0;
3265
+ }
3266
+
3267
+ .sg-modal-header {
3268
+ display: flex;
3269
+ flex-shrink: 0;
3270
+ align-items: center;
3271
+ justify-content: space-between;
3272
+ padding: 0.75rem;
3273
+ border-bottom: 1px solid white;
3274
+ border-top-left-radius: 0.5rem;
3275
+ border-top-right-radius: 0.5rem;
3276
+ }
3277
+ .sg-modal-header .sg-button-close {
3278
+ padding: 0.5rem 0.5rem;
3279
+ margin: -0.25rem -0.25rem -0.25rem auto;
3280
+ }
3281
+
3282
+ .sg-modal-title {
3283
+ margin-bottom: 0;
3284
+ }
3285
+
3286
+ .sg-modal-body {
3287
+ position: relative;
3288
+ flex: 1 1 auto;
3289
+ padding: 1rem;
3290
+ background-color: #43474a;
3291
+ }
3292
+
3293
+ .sg-modal-footer {
3294
+ display: flex;
3295
+ flex-shrink: 0;
3296
+ flex-wrap: wrap;
3297
+ align-items: center;
3298
+ justify-content: flex-end;
3299
+ padding: 0.75rem;
3300
+ background-color: #2e3236;
3301
+ border-top: 1px solid white;
3302
+ border-bottom-right-radius: 0.5rem;
3303
+ border-bottom-left-radius: 0.5rem;
3304
+ gap: 0.5rem;
3305
+ }
3306
+
3307
+ @media (max-width: 575px) {
3308
+ .sg-modal-tag {
3309
+ margin: 0.5rem;
3310
+ }
3311
+ }
3312
+ @media (min-width: 576px) {
3313
+ .sg-modal-tag {
3314
+ max-width: 500px;
3315
+ margin-right: auto;
3316
+ margin-left: auto;
3317
+ }
3318
+ .sg-modal-sm {
3319
+ max-width: 300px;
3320
+ }
3321
+ }
3322
+ @media (min-width: 992px) {
3323
+ .modal-lg, .modal-xl {
3324
+ max-width: 800px;
3325
+ }
3326
+ }
3327
+ @media (min-width: 1200px) {
3328
+ .modal-xl {
3329
+ max-width: 1140px;
3330
+ }
3331
+ }
3332
+ .sg-modal-open {
3333
+ overflow: hidden;
3334
+ }
3335
+
3336
+ .sg-modal-backdrop {
3337
+ position: fixed;
3338
+ top: 0;
3339
+ left: 0;
3340
+ z-index: 1050;
3341
+ width: 100vw;
3342
+ height: 100vh;
3343
+ background-color: black;
3344
+ }
3345
+ .sg-modal-backdrop.fadeIn {
3346
+ animation-name: fadeInBackdrop;
3347
+ animation-duration: 0.3s;
3348
+ animation-timing-function: ease-out;
3349
+ animation-fill-mode: forwards;
3350
+ }
3351
+ .sg-modal-backdrop.fadeOut {
3352
+ animation-name: fadeOutBackdrop;
3353
+ animation-duration: 0.3s;
3354
+ animation-timing-function: ease-out;
3355
+ animation-fill-mode: forwards;
3356
+ }
3357
+
3358
+ @keyframes fadeInBackdrop {
3359
+ 0% {
3360
+ opacity: 0;
3361
+ }
3362
+ 100% {
3363
+ opacity: 0.5;
3364
+ }
3365
+ }
3366
+ @keyframes fadeOutBackdrop {
3367
+ 0% {
3368
+ opacity: 0.5;
3369
+ }
3370
+ 100% {
3371
+ opacity: 0;
3372
+ }
3373
+ }
3374
+ .sg-modal {
3375
+ position: fixed;
3376
+ top: 0;
3377
+ left: 0;
3378
+ z-index: 1060;
3379
+ display: block;
3380
+ width: 100%;
3381
+ height: 100%;
3382
+ overflow-x: hidden;
3383
+ overflow-y: auto;
3384
+ outline: 0;
3385
+ }
3386
+
3387
+ .sg-modal-dialog {
3388
+ z-index: 1061;
3389
+ position: relative;
3390
+ width: auto;
3391
+ margin: 2rem;
3392
+ pointer-events: none;
3393
+ }
3394
+ .sg-modal.fadeIn .sg-modal-dialog {
3395
+ animation-name: fadeIn;
3396
+ animation-duration: 0.3s;
3397
+ animation-timing-function: ease-out;
3398
+ animation-fill-mode: forwards;
3399
+ }
3400
+ .sg-modal.fadeOut .sg-modal-dialog {
3401
+ animation-name: fadeOut;
3402
+ animation-duration: 0.3s;
3403
+ animation-timing-function: ease-out;
3404
+ animation-fill-mode: forwards;
3405
+ }
3406
+ @keyframes fadeIn {
3407
+ 0% {
3408
+ opacity: 0;
3409
+ top: -50px;
3410
+ }
3411
+ 100% {
3412
+ opacity: 1;
3413
+ top: 0px;
3414
+ }
3415
+ }
3416
+ @keyframes fadeOut {
3417
+ 0% {
3418
+ opacity: 1;
3419
+ top: 0px;
3420
+ }
3421
+ 100% {
3422
+ opacity: 0;
3423
+ top: -50px;
3424
+ }
3425
+ }
3426
+ .sg-modal.sg-modal-static .sg-modal-dialog {
3427
+ transition: transform 0.3s ease-out;
3428
+ transform: scale(1.02);
3429
+ }
3430
+
3431
+ .sg-modal-dialog-scrollable {
3432
+ height: calc(100% - 1rem);
3433
+ }
3434
+ .sg-modal-dialog-scrollable .sg-modal-content {
3435
+ max-height: 100%;
3436
+ overflow: hidden;
3437
+ }
3438
+ .sg-modal-dialog-scrollable .sg-modal-body {
3439
+ overflow-y: auto;
3440
+ }
3441
+
3442
+ .sg-modal-dialog-centered {
3443
+ display: flex;
3444
+ justify-content: center;
3445
+ align-items: center;
3446
+ height: 100dvh;
3447
+ max-width: 100dvw;
3448
+ margin: 0;
3449
+ }
3450
+
3451
+ .sg-modal-content {
3452
+ position: relative;
3453
+ display: flex;
3454
+ flex-direction: column;
3455
+ width: 100%;
3456
+ color: white;
3457
+ pointer-events: auto;
3458
+ background-color: #2e3236;
3459
+ background-clip: padding-box;
3460
+ border: 1px solid white;
3461
+ border-radius: 0.5rem;
3462
+ outline: 0;
3463
+ }
3464
+
3465
+ .sg-modal-header {
3466
+ display: flex;
3467
+ flex-shrink: 0;
3468
+ align-items: center;
3469
+ justify-content: space-between;
3470
+ padding: 0.75rem;
3471
+ border-bottom: 1px solid white;
3472
+ border-top-left-radius: 0.5rem;
3473
+ border-top-right-radius: 0.5rem;
3474
+ }
3475
+ .sg-modal-header .sg-button-close {
3476
+ padding: 0.5rem 0.5rem;
3477
+ margin: -0.25rem -0.25rem -0.25rem auto;
3478
+ }
3479
+
3480
+ .sg-modal-title {
3481
+ margin-bottom: 0;
3482
+ }
3483
+
3484
+ .sg-modal-body {
3485
+ position: relative;
3486
+ flex: 1 1 auto;
3487
+ padding: 1rem;
3488
+ background-color: #43474a;
3489
+ }
3490
+
3491
+ .sg-modal-footer {
3492
+ display: flex;
3493
+ flex-shrink: 0;
3494
+ flex-wrap: wrap;
3495
+ align-items: center;
3496
+ justify-content: flex-end;
3497
+ padding: 0.75rem;
3498
+ background-color: #2e3236;
3499
+ border-top: 1px solid white;
3500
+ border-bottom-right-radius: 0.5rem;
3501
+ border-bottom-left-radius: 0.5rem;
3502
+ gap: 0.5rem;
3503
+ }
3504
+
3505
+ @media (max-width: 575px) {
3506
+ .sg-modal-dialog {
3507
+ margin: 0.5rem;
3508
+ }
3509
+ }
3510
+ @media (min-width: 576px) {
3511
+ .sg-modal-dialog {
3512
+ max-width: 500px;
3513
+ margin-right: auto;
3514
+ margin-left: auto;
3515
+ }
3516
+ .sg-modal-sm {
3517
+ max-width: 300px;
3518
+ }
3519
+ }
3520
+ @media (min-width: 992px) {
3521
+ .modal-lg, .modal-xl {
3522
+ max-width: 800px;
3523
+ }
3524
+ }
3525
+ @media (min-width: 1200px) {
3526
+ .modal-xl {
3527
+ max-width: 1140px;
3528
+ }
3529
+ }
3530
+ .sg-nav {
3531
+ display: flex;
3532
+ flex-wrap: wrap;
3533
+ padding-left: 0;
3534
+ margin-bottom: 0;
3535
+ list-style: none;
3536
+ }
3537
+
3538
+ .sg-nav-link {
3539
+ display: block;
3540
+ padding: 0.5rem 1rem;
3541
+ text-decoration: none;
3542
+ }
3543
+ .sg-nav-link.disabled {
3544
+ pointer-events: none;
3545
+ cursor: default;
3546
+ }
3547
+
3548
+ .sg-nav-item {
3549
+ margin-block: auto;
3550
+ }
3551
+
3552
+ .sg-navbar {
3553
+ --sg-navbar-bg: #212529;
3554
+ --sg-navbar-color: rgba(white, .55);
3555
+ --sg-navbar-hover-color: rgba(white, .75);
3556
+ --sg-navbar-disabled-color: rgba(white, .25);
3557
+ --sg-navbar-active-color: white;
3558
+ --sg-navbar-brand-color: white;
3559
+ --sg-navbar-brand-hover-color: white;
3560
+ background-color: --sg-navbar-bg;
3561
+ position: relative;
3562
+ display: flex;
3563
+ flex-wrap: wrap;
3564
+ align-items: center;
3565
+ padding: 0.5rem 0rem;
3566
+ }
3567
+ .sg-navbar > .container-xxl, .sg-navbar > .container-xl, .sg-navbar > .container-lg, .sg-navbar > .container-md, .sg-navbar > .container-sm, .sg-navbar > .sg-container,
3568
+ .sg-navbar > .sg-container-fluid {
3569
+ display: flex;
3570
+ flex-wrap: inherit;
3571
+ align-items: center;
3572
+ justify-content: space-between;
3573
+ }
3574
+ .sg-navbar-brand {
3575
+ padding-top: 0.25rem;
3576
+ padding-bottom: 0.25rem;
3577
+ margin-inline: 1rem;
3578
+ margin-block: auto;
3579
+ color: var(--sg-navbar-brand-color);
3580
+ text-decoration: none;
3581
+ white-space: nowrap;
3582
+ }
3583
+ .sg-navbar-brand:hover, .sg-navbar-brand:focus {
3584
+ color: var(--sg-navbar-brand-hover-color);
3585
+ text-decoration: none;
3586
+ }
3587
+
3588
+ .sg-navbar-nav {
3589
+ --nav-link-padding-x: 0;
3590
+ --nav-link-padding-y: 0.5rem;
3591
+ --nav-link-color: var(--sg-navbar-color);
3592
+ --nav-link-hover-color: var(--sg-navbar-hover-color);
3593
+ --nav-link-disabled-color: var(--sg-navbar-disabled-color);
3594
+ display: flex;
3595
+ flex-direction: row;
3596
+ padding-left: 0;
3597
+ margin-bottom: 0;
3598
+ list-style: none;
3599
+ }
3600
+ .sg-navbar-nav .show > .nav-link,
3601
+ .sg-navbar-nav .nav-link.active {
3602
+ color: var(--sg-navbar-active-color);
3603
+ }
3604
+ .sg-navbar-nav .dropdown-menu {
3605
+ position: static;
3606
+ }
3607
+
3608
+ .sg-navbar-text {
3609
+ padding-top: 0.5rem;
3610
+ padding-bottom: 0.5rem;
3611
+ color: var(--sg-navbar-color);
3612
+ }
3613
+ .sg-navbar-text a,
3614
+ .sg-navbar-text a:hover,
3615
+ .sg-navbar-text a:focus {
3616
+ color: var(--sg-navbar-active-color);
3617
+ }
3618
+
3619
+ .nav-item a {
3620
+ color: white;
3621
+ text-decoration: none;
3622
+ }
3623
+
3624
+ .sg-nav-dropdown-toggle {
3625
+ background-color: transparent;
3626
+ display: block;
3627
+ padding: 0.25rem 0.5rem;
3628
+ color: white;
3629
+ text-decoration: none;
3630
+ border-radius: 0.375rem;
3631
+ border: 1px solid transparent;
3632
+ }
3633
+ .sg-nav-dropdown-toggle:hover, .sg-nav-dropdown-toggle:focus {
3634
+ border-color: white;
3635
+ background-color: transparent;
3636
+ }
3637
+ .sg-nav-dropdown-toggle:active {
3638
+ background-color: transparent;
3639
+ }
3640
+ .sg-nav-dropdown-toggle.disabled {
3641
+ color: rgba(0, 0, 0, 0.24);
3642
+ pointer-events: none;
3643
+ cursor: default;
3644
+ }
3645
+
3646
+ .sg-overlay-arrow {
3647
+ background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 20 20"> <polygon points="1,1 1,19, 14,10" fill="black" stroke-width="1.5" stroke="black" /> </svg>');
3648
+ background-repeat: no-repeat no-repeat;
3649
+ background-position: center center;
3650
+ background-size: cover;
3651
+ height: 20px;
3652
+ width: 15px;
3653
+ z-index: 1010;
3654
+ }
3655
+ .sg-overlay-arrow.overlay-position-right {
3656
+ transform: rotate(180deg);
3657
+ }
3658
+ .sg-overlay-arrow.overlay-position-left {
3659
+ transform: rotate(0deg);
3660
+ }
3661
+ .sg-overlay-arrow.overlay-position-top {
3662
+ transform: rotate(90deg);
3663
+ }
3664
+ .sg-overlay-arrow.overlay-position-bottom {
3665
+ transform: rotate(270deg);
3666
+ }
3667
+
3668
+ .sg-moveable-popout {
3669
+ --popout-index: 1010;
3670
+ position: absolute;
3671
+ display: flex;
3672
+ flex-direction: column;
3673
+ border-radius: 0.375em;
3674
+ padding: 0;
3675
+ margin: 0;
3676
+ border: 1px solid white;
3677
+ width: 15rem;
3678
+ min-width: min(18rem, 100%);
3679
+ min-height: min(9rem, 100%);
3680
+ box-shadow: 0 0 0.5rem rgba(255, 255, 255, 0.3764705882);
3681
+ color: white;
3682
+ overflow: hidden;
3683
+ z-index: var(--popout-index);
3684
+ }
3685
+ .sg-moveable-popout .sg-popout-header {
3686
+ user-select: inherit;
3687
+ margin-bottom: 0;
3688
+ padding: 0.25em 0.5em;
3689
+ background-color: #212529;
3690
+ border-bottom: 1px solid white;
3691
+ }
3692
+ .sg-moveable-popout .sg-popout-header > * {
3693
+ margin: 0;
3694
+ }
3695
+ .sg-moveable-popout .sg-popout-header:first-child {
3696
+ border-radius: 0.375em 0.375em 0 0;
3697
+ }
3698
+ .sg-moveable-popout[data-move=true] .sg-popout-header {
3699
+ cursor: move;
3700
+ }
3701
+ .sg-moveable-popout .sg-popout-body {
3702
+ flex: 1 1 auto;
3703
+ padding: 0.5em;
3704
+ user-select: inherit;
3705
+ background-color: color-mix(in srgb, white 4%, #212529);
3706
+ }
3707
+ .sg-moveable-popout .sg-popout-footer {
3708
+ user-select: inherit;
3709
+ padding: 0.25em 0.5em;
3710
+ background-color: #212529;
3711
+ border-top: 1px solid white;
3712
+ }
3713
+ .sg-moveable-popout .sg-popout-footer:last-child {
3714
+ border-radius: 0 0 0.375em 0.375em;
3715
+ }
3716
+ .sg-moveable-popout .sg-popout-text:last-child {
3717
+ margin-bottom: 0;
3718
+ }
3719
+ .sg-moveable-popout[data-resize=true] {
3720
+ resize: both;
3721
+ }
3722
+ .sg-moveable-popout[data-resize=true]::before {
3723
+ content: "";
3724
+ position: absolute;
3725
+ bottom: 0;
3726
+ right: 0;
3727
+ z-index: calc(var(--popout-index) + 1);
3728
+ width: 1em;
3729
+ height: 1em;
3730
+ background-image: url('data:image/svg+xml, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"/><line x1="208" y1="128" x2="128" y2="208" fill="none" stroke="white" stroke-linecap="round" stroke-linejoin="round" stroke-width="16"/><line x1="192" y1="40" x2="40" y2="192" fill="none" stroke="white" stroke-linecap="round" stroke-linejoin="round" stroke-width="16"/></svg>');
3731
+ }
3732
+
3733
+ .sg-tabs {
3734
+ width: 100%;
3735
+ }
3736
+
3737
+ .sg-tabs-controls {
3738
+ display: flex;
3739
+ flex-direction: row;
3740
+ }
3741
+
3742
+ .sg-tabs-button {
3743
+ display: block;
3744
+ }
3745
+ .sg-tabs-button.sg-active {
3746
+ background-color: #202020;
3747
+ color: white;
3748
+ }
3749
+
3750
+ .sg-tabs-content {
3751
+ width: 100%;
3752
+ }
3753
+
3754
+ .sg-tabs-page {
3755
+ display: none;
3756
+ }
3757
+ .sg-tabs-page.sg-active {
3758
+ display: flex;
3759
+ flex-direction: row;
3760
+ }
3761
+
3762
+ /*# sourceMappingURL=stargazerui.css.map */