stargazer-ui 1.0.4 → 1.0.6

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 (139) hide show
  1. package/dist/cjs/components/Button/Button.d.ts +4 -0
  2. package/dist/cjs/components/Button/Button.types.d.ts +7 -0
  3. package/dist/cjs/components/Button/index.d.ts +1 -0
  4. package/dist/cjs/components/Card/Card.d.ts +34 -0
  5. package/dist/cjs/components/Card/Card.types.d.ts +24 -0
  6. package/dist/cjs/components/Card/index.d.ts +1 -0
  7. package/dist/{CloseButton/index.d.ts → cjs/components/CloseButton/CloseButton.d.ts} +1 -5
  8. package/dist/cjs/components/CloseButton/CloseButton.types.d.ts +5 -0
  9. package/dist/cjs/components/CloseButton/index.d.ts +1 -0
  10. package/dist/{Dropdown/index.d.ts → cjs/components/Dropdown/Dropdown.d.ts} +1 -54
  11. package/dist/cjs/components/Dropdown/Dropdown.types.d.ts +55 -0
  12. package/dist/cjs/components/Dropdown/index.d.ts +1 -0
  13. package/dist/cjs/components/FloatingLabel/FloatingLabel.d.ts +4 -0
  14. package/dist/cjs/components/FloatingLabel/FloatingLabel.types.d.ts +9 -0
  15. package/dist/cjs/components/FloatingLabel/index.d.ts +1 -0
  16. package/dist/cjs/components/Form/Form.d.ts +17 -0
  17. package/dist/cjs/components/Form/Form.types.d.ts +50 -0
  18. package/dist/cjs/components/Form/index.d.ts +1 -0
  19. package/dist/cjs/components/InputGroup/InputGroup.d.ts +6 -0
  20. package/dist/cjs/components/InputGroup/InputGroup.types.d.ts +10 -0
  21. package/dist/cjs/components/InputGroup/index.d.ts +1 -0
  22. package/dist/{Modal/index.d.ts → cjs/components/Modal/Modal.d.ts} +2 -32
  23. package/dist/cjs/components/Modal/Modal.types.d.ts +40 -0
  24. package/dist/cjs/components/Modal/index.d.ts +1 -0
  25. package/dist/{Nav/index.d.ts → cjs/components/Nav/Nav.d.ts} +0 -16
  26. package/dist/cjs/components/Nav/Nav.types.d.ts +17 -0
  27. package/dist/cjs/components/Nav/index.d.ts +1 -0
  28. package/dist/cjs/components/NavBar/Navbar.d.ts +20 -0
  29. package/dist/cjs/components/NavBar/Navbar.types.d.ts +18 -0
  30. package/dist/cjs/components/NavBar/index.d.ts +1 -0
  31. package/dist/{NavDropdown/index.d.ts → cjs/components/NavDropdown/NavDropdown.d.ts} +3 -7
  32. package/dist/cjs/components/NavDropdown/NavDropdown.types.d.ts +5 -0
  33. package/dist/cjs/components/NavDropdown/index.d.ts +1 -0
  34. package/dist/{Popout/index.d.ts → cjs/components/Popout/Popout.d.ts} +1 -35
  35. package/dist/cjs/components/Popout/Popout.types.d.ts +36 -0
  36. package/dist/cjs/components/Popout/index.d.ts +1 -0
  37. package/dist/{Spinner/index.d.ts → cjs/components/Spinner/Spinner.d.ts} +1 -7
  38. package/dist/cjs/components/Spinner/Spinner.types.d.ts +7 -0
  39. package/dist/cjs/components/Spinner/index.d.ts +1 -0
  40. package/dist/cjs/components/Table/Table.d.ts +4 -0
  41. package/dist/cjs/components/Table/Table.types.d.ts +7 -0
  42. package/dist/cjs/components/Table/index.d.ts +1 -0
  43. package/dist/cjs/components/Tabs/Tabs.d.ts +9 -0
  44. package/dist/{Tabs/index.d.ts → cjs/components/Tabs/Tabs.types.d.ts} +2 -9
  45. package/dist/cjs/components/Tabs/index.d.ts +1 -0
  46. package/dist/cjs/components/ToggleButton/ToggleButton.d.ts +9 -0
  47. package/dist/cjs/components/ToggleButton/index.d.ts +1 -0
  48. package/dist/cjs/components/index.d.ts +16 -0
  49. package/dist/cjs/index.d.ts +1 -0
  50. package/dist/cjs/index.js +2 -0
  51. package/dist/cjs/index.js.map +1 -0
  52. package/dist/esm/BaseTypes.d.ts +19 -0
  53. package/dist/esm/components/Button/Button.d.ts +4 -0
  54. package/dist/esm/components/Button/Button.types.d.ts +7 -0
  55. package/dist/esm/components/Button/index.d.ts +1 -0
  56. package/dist/esm/components/Card/Card.d.ts +34 -0
  57. package/dist/esm/components/Card/Card.types.d.ts +24 -0
  58. package/dist/esm/components/Card/index.d.ts +1 -0
  59. package/dist/esm/components/CloseButton/CloseButton.d.ts +4 -0
  60. package/dist/esm/components/CloseButton/CloseButton.types.d.ts +5 -0
  61. package/dist/esm/components/CloseButton/index.d.ts +1 -0
  62. package/dist/esm/components/Dropdown/Dropdown.d.ts +71 -0
  63. package/dist/esm/components/Dropdown/Dropdown.types.d.ts +55 -0
  64. package/dist/esm/components/Dropdown/index.d.ts +1 -0
  65. package/dist/esm/components/FloatingLabel/FloatingLabel.d.ts +4 -0
  66. package/dist/esm/components/FloatingLabel/FloatingLabel.types.d.ts +9 -0
  67. package/dist/esm/components/FloatingLabel/index.d.ts +1 -0
  68. package/dist/esm/components/Form/Form.d.ts +17 -0
  69. package/dist/esm/components/Form/Form.types.d.ts +50 -0
  70. package/dist/esm/components/Form/index.d.ts +1 -0
  71. package/dist/esm/components/InputGroup/InputGroup.d.ts +6 -0
  72. package/dist/esm/components/InputGroup/InputGroup.types.d.ts +10 -0
  73. package/dist/esm/components/InputGroup/index.d.ts +1 -0
  74. package/dist/esm/components/Modal/Modal.d.ts +40 -0
  75. package/dist/esm/components/Modal/Modal.types.d.ts +40 -0
  76. package/dist/esm/components/Modal/index.d.ts +1 -0
  77. package/dist/esm/components/Nav/Nav.d.ts +30 -0
  78. package/dist/esm/components/Nav/Nav.types.d.ts +17 -0
  79. package/dist/esm/components/Nav/index.d.ts +1 -0
  80. package/dist/esm/components/NavBar/Navbar.d.ts +20 -0
  81. package/dist/esm/components/NavBar/Navbar.types.d.ts +18 -0
  82. package/dist/esm/components/NavBar/index.d.ts +1 -0
  83. package/dist/esm/components/NavDropdown/NavDropdown.d.ts +35 -0
  84. package/dist/esm/components/NavDropdown/NavDropdown.types.d.ts +5 -0
  85. package/dist/esm/components/NavDropdown/index.d.ts +1 -0
  86. package/dist/esm/components/Popout/Popout.d.ts +22 -0
  87. package/dist/esm/components/Popout/Popout.types.d.ts +36 -0
  88. package/dist/esm/components/Popout/index.d.ts +1 -0
  89. package/dist/esm/components/Spinner/Spinner.d.ts +4 -0
  90. package/dist/esm/components/Spinner/Spinner.types.d.ts +7 -0
  91. package/dist/esm/components/Spinner/index.d.ts +1 -0
  92. package/dist/esm/components/Table/Table.d.ts +4 -0
  93. package/dist/esm/components/Table/Table.types.d.ts +7 -0
  94. package/dist/esm/components/Table/index.d.ts +1 -0
  95. package/dist/esm/components/Tabs/Tabs.d.ts +9 -0
  96. package/dist/esm/components/Tabs/Tabs.types.d.ts +35 -0
  97. package/dist/esm/components/Tabs/index.d.ts +1 -0
  98. package/dist/esm/components/ToggleButton/ToggleButton.d.ts +9 -0
  99. package/dist/esm/components/ToggleButton/index.d.ts +1 -0
  100. package/dist/esm/components/index.d.ts +16 -0
  101. package/dist/esm/index.d.ts +1 -0
  102. package/dist/esm/index.js +2 -0
  103. package/dist/esm/index.js.map +1 -0
  104. package/dist/types.d.ts +470 -0
  105. package/package.json +15 -4
  106. package/dist/BaseTypes.js +0 -1
  107. package/dist/Button/index.d.ts +0 -9
  108. package/dist/Button/index.js +0 -6
  109. package/dist/Card/index.d.ts +0 -92
  110. package/dist/Card/index.js +0 -18
  111. package/dist/CloseButton/index.js +0 -6
  112. package/dist/Dropdown/index.js +0 -205
  113. package/dist/FloatingLabel/index.d.ts +0 -11
  114. package/dist/FloatingLabel/index.js +0 -13
  115. package/dist/Form/index.d.ts +0 -65
  116. package/dist/Form/index.js +0 -63
  117. package/dist/Grid/Col.js +0 -19
  118. package/dist/Grid/Container.js +0 -9
  119. package/dist/Grid/Row.js +0 -17
  120. package/dist/InputGroup/index.d.ts +0 -14
  121. package/dist/InputGroup/index.js +0 -8
  122. package/dist/Modal/index.js +0 -99
  123. package/dist/Nav/index.js +0 -13
  124. package/dist/NavBar/index.d.ts +0 -46
  125. package/dist/NavBar/index.js +0 -17
  126. package/dist/NavDropdown/index.js +0 -858
  127. package/dist/OffCanvas/OffCanvas.js +0 -2266
  128. package/dist/Overlay/index.js +0 -125
  129. package/dist/Popout/index.js +0 -72
  130. package/dist/Spinner/index.js +0 -9
  131. package/dist/Table/index.d.ts +0 -9
  132. package/dist/Table/index.js +0 -9
  133. package/dist/Tabs/index.js +0 -77
  134. package/dist/ToggleButton/index.js +0 -11
  135. package/dist/main.js +0 -30
  136. package/dist/stylesheets/stargazerui.css +0 -4902
  137. package/dist/stylesheets/stargazerui.css.map +0 -1
  138. package/dist/vite-env.d.js +0 -1
  139. /package/dist/{BaseTypes.d.ts → cjs/BaseTypes.d.ts} +0 -0
@@ -1,4902 +0,0 @@
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-row {
3181
- --sg-gutter-x: 1.5rem;
3182
- --sg-gutter-y: 0;
3183
- display: flex;
3184
- flex-wrap: wrap;
3185
- margin-top: calc(-1 * var(--sg-gutter-y));
3186
- margin-right: calc(-0.5 * var(--sg-gutter-x));
3187
- margin-left: calc(-0.5 * var(--sg-gutter-x));
3188
- }
3189
- .sg-row > * {
3190
- flex-shrink: 0;
3191
- width: 100%;
3192
- max-width: 100%;
3193
- padding-right: calc(var(--sg-gutter-x) * 0.5);
3194
- padding-left: calc(var(--sg-gutter-x) * 0.5);
3195
- margin-top: var(--sg-gutter-y);
3196
- }
3197
-
3198
- .sg-col {
3199
- flex: 1 0 0%;
3200
- }
3201
-
3202
- .sg-row-cols-auto > * {
3203
- flex: 0 0 auto;
3204
- width: auto;
3205
- }
3206
-
3207
- .sg-row-cols-1 > * {
3208
- flex: 0 0 auto;
3209
- width: 100%;
3210
- }
3211
-
3212
- .sg-row-cols-2 > * {
3213
- flex: 0 0 auto;
3214
- width: 50%;
3215
- }
3216
-
3217
- .sg-row-cols-3 > * {
3218
- flex: 0 0 auto;
3219
- width: 33.3333333333%;
3220
- }
3221
-
3222
- .sg-row-cols-4 > * {
3223
- flex: 0 0 auto;
3224
- width: 25%;
3225
- }
3226
-
3227
- .sg-row-cols-5 > * {
3228
- flex: 0 0 auto;
3229
- width: 20%;
3230
- }
3231
-
3232
- .sg-row-cols-6 > * {
3233
- flex: 0 0 auto;
3234
- width: 16.6666666667%;
3235
- }
3236
-
3237
- .sg-col-auto {
3238
- flex: 0 0 auto;
3239
- width: auto;
3240
- }
3241
-
3242
- .sg-col-1 {
3243
- flex: 0 0 auto;
3244
- width: 8.3333333333%;
3245
- }
3246
-
3247
- .sg-col-2 {
3248
- flex: 0 0 auto;
3249
- width: 16.6666666667%;
3250
- }
3251
-
3252
- .sg-col-3 {
3253
- flex: 0 0 auto;
3254
- width: 25%;
3255
- }
3256
-
3257
- .sg-col-4 {
3258
- flex: 0 0 auto;
3259
- width: 33.3333333333%;
3260
- }
3261
-
3262
- .sg-col-5 {
3263
- flex: 0 0 auto;
3264
- width: 41.6666666667%;
3265
- }
3266
-
3267
- .sg-col-6 {
3268
- flex: 0 0 auto;
3269
- width: 50%;
3270
- }
3271
-
3272
- .sg-col-7 {
3273
- flex: 0 0 auto;
3274
- width: 58.3333333333%;
3275
- }
3276
-
3277
- .sg-col-8 {
3278
- flex: 0 0 auto;
3279
- width: 66.6666666667%;
3280
- }
3281
-
3282
- .sg-col-9 {
3283
- flex: 0 0 auto;
3284
- width: 75%;
3285
- }
3286
-
3287
- .sg-col-10 {
3288
- flex: 0 0 auto;
3289
- width: 83.3333333333%;
3290
- }
3291
-
3292
- .sg-col-11 {
3293
- flex: 0 0 auto;
3294
- width: 91.6666666667%;
3295
- }
3296
-
3297
- .sg-col-12 {
3298
- flex: 0 0 auto;
3299
- width: 100%;
3300
- }
3301
-
3302
- .sg-offset-1 {
3303
- margin-left: 8.3333333333%;
3304
- }
3305
-
3306
- .sg-offset-2 {
3307
- margin-left: 16.6666666667%;
3308
- }
3309
-
3310
- .sg-offset-3 {
3311
- margin-left: 25%;
3312
- }
3313
-
3314
- .sg-offset-4 {
3315
- margin-left: 33.3333333333%;
3316
- }
3317
-
3318
- .sg-offset-5 {
3319
- margin-left: 41.6666666667%;
3320
- }
3321
-
3322
- .sg-offset-6 {
3323
- margin-left: 50%;
3324
- }
3325
-
3326
- .sg-offset-7 {
3327
- margin-left: 58.3333333333%;
3328
- }
3329
-
3330
- .sg-offset-8 {
3331
- margin-left: 66.6666666667%;
3332
- }
3333
-
3334
- .sg-offset-9 {
3335
- margin-left: 75%;
3336
- }
3337
-
3338
- .sg-offset-10 {
3339
- margin-left: 83.3333333333%;
3340
- }
3341
-
3342
- .sg-offset-11 {
3343
- margin-left: 91.6666666667%;
3344
- }
3345
-
3346
- @media (min-width: 576px) {
3347
- .sg-col-sm {
3348
- flex: 1 0 0%;
3349
- }
3350
- .sg-row-cols-sm-auto > * {
3351
- flex: 0 0 auto;
3352
- width: auto;
3353
- }
3354
- .sg-row-cols-sm-1 > * {
3355
- flex: 0 0 auto;
3356
- width: 100%;
3357
- }
3358
- .sg-row-cols-sm-2 > * {
3359
- flex: 0 0 auto;
3360
- width: 50%;
3361
- }
3362
- .sg-row-cols-sm-3 > * {
3363
- flex: 0 0 auto;
3364
- width: 33.3333333333%;
3365
- }
3366
- .sg-row-cols-sm-4 > * {
3367
- flex: 0 0 auto;
3368
- width: 25%;
3369
- }
3370
- .sg-row-cols-sm-5 > * {
3371
- flex: 0 0 auto;
3372
- width: 20%;
3373
- }
3374
- .sg-row-cols-sm-6 > * {
3375
- flex: 0 0 auto;
3376
- width: 16.6666666667%;
3377
- }
3378
- .sg-col-sm-auto {
3379
- flex: 0 0 auto;
3380
- width: auto;
3381
- }
3382
- .sg-col-sm-1 {
3383
- flex: 0 0 auto;
3384
- width: 8.3333333333%;
3385
- }
3386
- .sg-col-sm-2 {
3387
- flex: 0 0 auto;
3388
- width: 16.6666666667%;
3389
- }
3390
- .sg-col-sm-3 {
3391
- flex: 0 0 auto;
3392
- width: 25%;
3393
- }
3394
- .sg-col-sm-4 {
3395
- flex: 0 0 auto;
3396
- width: 33.3333333333%;
3397
- }
3398
- .sg-col-sm-5 {
3399
- flex: 0 0 auto;
3400
- width: 41.6666666667%;
3401
- }
3402
- .sg-col-sm-6 {
3403
- flex: 0 0 auto;
3404
- width: 50%;
3405
- }
3406
- .sg-col-sm-7 {
3407
- flex: 0 0 auto;
3408
- width: 58.3333333333%;
3409
- }
3410
- .sg-col-sm-8 {
3411
- flex: 0 0 auto;
3412
- width: 66.6666666667%;
3413
- }
3414
- .sg-col-sm-9 {
3415
- flex: 0 0 auto;
3416
- width: 75%;
3417
- }
3418
- .sg-col-sm-10 {
3419
- flex: 0 0 auto;
3420
- width: 83.3333333333%;
3421
- }
3422
- .sg-col-sm-11 {
3423
- flex: 0 0 auto;
3424
- width: 91.6666666667%;
3425
- }
3426
- .sg-col-sm-12 {
3427
- flex: 0 0 auto;
3428
- width: 100%;
3429
- }
3430
- .sg-offset-sm-0 {
3431
- margin-left: 0;
3432
- }
3433
- .sg-offset-sm-1 {
3434
- margin-left: 8.3333333333%;
3435
- }
3436
- .sg-offset-sm-2 {
3437
- margin-left: 16.6666666667%;
3438
- }
3439
- .sg-offset-sm-3 {
3440
- margin-left: 25%;
3441
- }
3442
- .sg-offset-sm-4 {
3443
- margin-left: 33.3333333333%;
3444
- }
3445
- .sg-offset-sm-5 {
3446
- margin-left: 41.6666666667%;
3447
- }
3448
- .sg-offset-sm-6 {
3449
- margin-left: 50%;
3450
- }
3451
- .sg-offset-sm-7 {
3452
- margin-left: 58.3333333333%;
3453
- }
3454
- .sg-offset-sm-8 {
3455
- margin-left: 66.6666666667%;
3456
- }
3457
- .sg-offset-sm-9 {
3458
- margin-left: 75%;
3459
- }
3460
- .sg-offset-sm-10 {
3461
- margin-left: 83.3333333333%;
3462
- }
3463
- .sg-offset-sm-11 {
3464
- margin-left: 91.6666666667%;
3465
- }
3466
- }
3467
- @media (min-width: 768px) {
3468
- .sg-col-md {
3469
- flex: 1 0 0%;
3470
- }
3471
- .sg-row-cols-md-auto > * {
3472
- flex: 0 0 auto;
3473
- width: auto;
3474
- }
3475
- .sg-row-cols-md-1 > * {
3476
- flex: 0 0 auto;
3477
- width: 100%;
3478
- }
3479
- .sg-row-cols-md-2 > * {
3480
- flex: 0 0 auto;
3481
- width: 50%;
3482
- }
3483
- .sg-row-cols-md-3 > * {
3484
- flex: 0 0 auto;
3485
- width: 33.3333333333%;
3486
- }
3487
- .sg-row-cols-md-4 > * {
3488
- flex: 0 0 auto;
3489
- width: 25%;
3490
- }
3491
- .sg-row-cols-md-5 > * {
3492
- flex: 0 0 auto;
3493
- width: 20%;
3494
- }
3495
- .sg-row-cols-md-6 > * {
3496
- flex: 0 0 auto;
3497
- width: 16.6666666667%;
3498
- }
3499
- .sg-col-md-auto {
3500
- flex: 0 0 auto;
3501
- width: auto;
3502
- }
3503
- .sg-col-md-1 {
3504
- flex: 0 0 auto;
3505
- width: 8.3333333333%;
3506
- }
3507
- .sg-col-md-2 {
3508
- flex: 0 0 auto;
3509
- width: 16.6666666667%;
3510
- }
3511
- .sg-col-md-3 {
3512
- flex: 0 0 auto;
3513
- width: 25%;
3514
- }
3515
- .sg-col-md-4 {
3516
- flex: 0 0 auto;
3517
- width: 33.3333333333%;
3518
- }
3519
- .sg-col-md-5 {
3520
- flex: 0 0 auto;
3521
- width: 41.6666666667%;
3522
- }
3523
- .sg-col-md-6 {
3524
- flex: 0 0 auto;
3525
- width: 50%;
3526
- }
3527
- .sg-col-md-7 {
3528
- flex: 0 0 auto;
3529
- width: 58.3333333333%;
3530
- }
3531
- .sg-col-md-8 {
3532
- flex: 0 0 auto;
3533
- width: 66.6666666667%;
3534
- }
3535
- .sg-col-md-9 {
3536
- flex: 0 0 auto;
3537
- width: 75%;
3538
- }
3539
- .sg-col-md-10 {
3540
- flex: 0 0 auto;
3541
- width: 83.3333333333%;
3542
- }
3543
- .sg-col-md-11 {
3544
- flex: 0 0 auto;
3545
- width: 91.6666666667%;
3546
- }
3547
- .sg-col-md-12 {
3548
- flex: 0 0 auto;
3549
- width: 100%;
3550
- }
3551
- .sg-offset-md-0 {
3552
- margin-left: 0;
3553
- }
3554
- .sg-offset-md-1 {
3555
- margin-left: 8.3333333333%;
3556
- }
3557
- .sg-offset-md-2 {
3558
- margin-left: 16.6666666667%;
3559
- }
3560
- .sg-offset-md-3 {
3561
- margin-left: 25%;
3562
- }
3563
- .sg-offset-md-4 {
3564
- margin-left: 33.3333333333%;
3565
- }
3566
- .sg-offset-md-5 {
3567
- margin-left: 41.6666666667%;
3568
- }
3569
- .sg-offset-md-6 {
3570
- margin-left: 50%;
3571
- }
3572
- .sg-offset-md-7 {
3573
- margin-left: 58.3333333333%;
3574
- }
3575
- .sg-offset-md-8 {
3576
- margin-left: 66.6666666667%;
3577
- }
3578
- .sg-offset-md-9 {
3579
- margin-left: 75%;
3580
- }
3581
- .sg-offset-md-10 {
3582
- margin-left: 83.3333333333%;
3583
- }
3584
- .sg-offset-md-11 {
3585
- margin-left: 91.6666666667%;
3586
- }
3587
- }
3588
- @media (min-width: 992px) {
3589
- .sg-col-lg {
3590
- flex: 1 0 0%;
3591
- }
3592
- .sg-row-cols-lg-auto > * {
3593
- flex: 0 0 auto;
3594
- width: auto;
3595
- }
3596
- .sg-row-cols-lg-1 > * {
3597
- flex: 0 0 auto;
3598
- width: 100%;
3599
- }
3600
- .sg-row-cols-lg-2 > * {
3601
- flex: 0 0 auto;
3602
- width: 50%;
3603
- }
3604
- .sg-row-cols-lg-3 > * {
3605
- flex: 0 0 auto;
3606
- width: 33.3333333333%;
3607
- }
3608
- .sg-row-cols-lg-4 > * {
3609
- flex: 0 0 auto;
3610
- width: 25%;
3611
- }
3612
- .sg-row-cols-lg-5 > * {
3613
- flex: 0 0 auto;
3614
- width: 20%;
3615
- }
3616
- .sg-row-cols-lg-6 > * {
3617
- flex: 0 0 auto;
3618
- width: 16.6666666667%;
3619
- }
3620
- .sg-col-lg-auto {
3621
- flex: 0 0 auto;
3622
- width: auto;
3623
- }
3624
- .sg-col-lg-1 {
3625
- flex: 0 0 auto;
3626
- width: 8.3333333333%;
3627
- }
3628
- .sg-col-lg-2 {
3629
- flex: 0 0 auto;
3630
- width: 16.6666666667%;
3631
- }
3632
- .sg-col-lg-3 {
3633
- flex: 0 0 auto;
3634
- width: 25%;
3635
- }
3636
- .sg-col-lg-4 {
3637
- flex: 0 0 auto;
3638
- width: 33.3333333333%;
3639
- }
3640
- .sg-col-lg-5 {
3641
- flex: 0 0 auto;
3642
- width: 41.6666666667%;
3643
- }
3644
- .sg-col-lg-6 {
3645
- flex: 0 0 auto;
3646
- width: 50%;
3647
- }
3648
- .sg-col-lg-7 {
3649
- flex: 0 0 auto;
3650
- width: 58.3333333333%;
3651
- }
3652
- .sg-col-lg-8 {
3653
- flex: 0 0 auto;
3654
- width: 66.6666666667%;
3655
- }
3656
- .sg-col-lg-9 {
3657
- flex: 0 0 auto;
3658
- width: 75%;
3659
- }
3660
- .sg-col-lg-10 {
3661
- flex: 0 0 auto;
3662
- width: 83.3333333333%;
3663
- }
3664
- .sg-col-lg-11 {
3665
- flex: 0 0 auto;
3666
- width: 91.6666666667%;
3667
- }
3668
- .sg-col-lg-12 {
3669
- flex: 0 0 auto;
3670
- width: 100%;
3671
- }
3672
- .sg-offset-lg-0 {
3673
- margin-left: 0;
3674
- }
3675
- .sg-offset-lg-1 {
3676
- margin-left: 8.3333333333%;
3677
- }
3678
- .sg-offset-lg-2 {
3679
- margin-left: 16.6666666667%;
3680
- }
3681
- .sg-offset-lg-3 {
3682
- margin-left: 25%;
3683
- }
3684
- .sg-offset-lg-4 {
3685
- margin-left: 33.3333333333%;
3686
- }
3687
- .sg-offset-lg-5 {
3688
- margin-left: 41.6666666667%;
3689
- }
3690
- .sg-offset-lg-6 {
3691
- margin-left: 50%;
3692
- }
3693
- .sg-offset-lg-7 {
3694
- margin-left: 58.3333333333%;
3695
- }
3696
- .sg-offset-lg-8 {
3697
- margin-left: 66.6666666667%;
3698
- }
3699
- .sg-offset-lg-9 {
3700
- margin-left: 75%;
3701
- }
3702
- .sg-offset-lg-10 {
3703
- margin-left: 83.3333333333%;
3704
- }
3705
- .sg-offset-lg-11 {
3706
- margin-left: 91.6666666667%;
3707
- }
3708
- }
3709
- @media (min-width: 1200px) {
3710
- .sg-col-xl {
3711
- flex: 1 0 0%;
3712
- }
3713
- .sg-row-cols-xl-auto > * {
3714
- flex: 0 0 auto;
3715
- width: auto;
3716
- }
3717
- .sg-row-cols-xl-1 > * {
3718
- flex: 0 0 auto;
3719
- width: 100%;
3720
- }
3721
- .sg-row-cols-xl-2 > * {
3722
- flex: 0 0 auto;
3723
- width: 50%;
3724
- }
3725
- .sg-row-cols-xl-3 > * {
3726
- flex: 0 0 auto;
3727
- width: 33.3333333333%;
3728
- }
3729
- .sg-row-cols-xl-4 > * {
3730
- flex: 0 0 auto;
3731
- width: 25%;
3732
- }
3733
- .sg-row-cols-xl-5 > * {
3734
- flex: 0 0 auto;
3735
- width: 20%;
3736
- }
3737
- .sg-row-cols-xl-6 > * {
3738
- flex: 0 0 auto;
3739
- width: 16.6666666667%;
3740
- }
3741
- .sg-col-xl-auto {
3742
- flex: 0 0 auto;
3743
- width: auto;
3744
- }
3745
- .sg-col-xl-1 {
3746
- flex: 0 0 auto;
3747
- width: 8.3333333333%;
3748
- }
3749
- .sg-col-xl-2 {
3750
- flex: 0 0 auto;
3751
- width: 16.6666666667%;
3752
- }
3753
- .sg-col-xl-3 {
3754
- flex: 0 0 auto;
3755
- width: 25%;
3756
- }
3757
- .sg-col-xl-4 {
3758
- flex: 0 0 auto;
3759
- width: 33.3333333333%;
3760
- }
3761
- .sg-col-xl-5 {
3762
- flex: 0 0 auto;
3763
- width: 41.6666666667%;
3764
- }
3765
- .sg-col-xl-6 {
3766
- flex: 0 0 auto;
3767
- width: 50%;
3768
- }
3769
- .sg-col-xl-7 {
3770
- flex: 0 0 auto;
3771
- width: 58.3333333333%;
3772
- }
3773
- .sg-col-xl-8 {
3774
- flex: 0 0 auto;
3775
- width: 66.6666666667%;
3776
- }
3777
- .sg-col-xl-9 {
3778
- flex: 0 0 auto;
3779
- width: 75%;
3780
- }
3781
- .sg-col-xl-10 {
3782
- flex: 0 0 auto;
3783
- width: 83.3333333333%;
3784
- }
3785
- .sg-col-xl-11 {
3786
- flex: 0 0 auto;
3787
- width: 91.6666666667%;
3788
- }
3789
- .sg-col-xl-12 {
3790
- flex: 0 0 auto;
3791
- width: 100%;
3792
- }
3793
- .sg-offset-xl-0 {
3794
- margin-left: 0;
3795
- }
3796
- .sg-offset-xl-1 {
3797
- margin-left: 8.3333333333%;
3798
- }
3799
- .sg-offset-xl-2 {
3800
- margin-left: 16.6666666667%;
3801
- }
3802
- .sg-offset-xl-3 {
3803
- margin-left: 25%;
3804
- }
3805
- .sg-offset-xl-4 {
3806
- margin-left: 33.3333333333%;
3807
- }
3808
- .sg-offset-xl-5 {
3809
- margin-left: 41.6666666667%;
3810
- }
3811
- .sg-offset-xl-6 {
3812
- margin-left: 50%;
3813
- }
3814
- .sg-offset-xl-7 {
3815
- margin-left: 58.3333333333%;
3816
- }
3817
- .sg-offset-xl-8 {
3818
- margin-left: 66.6666666667%;
3819
- }
3820
- .sg-offset-xl-9 {
3821
- margin-left: 75%;
3822
- }
3823
- .sg-offset-xl-10 {
3824
- margin-left: 83.3333333333%;
3825
- }
3826
- .sg-offset-xl-11 {
3827
- margin-left: 91.6666666667%;
3828
- }
3829
- }
3830
- @media (min-width: 1400px) {
3831
- .sg-col-xxl {
3832
- flex: 1 0 0%;
3833
- }
3834
- .sg-row-cols-xxl-auto > * {
3835
- flex: 0 0 auto;
3836
- width: auto;
3837
- }
3838
- .sg-row-cols-xxl-1 > * {
3839
- flex: 0 0 auto;
3840
- width: 100%;
3841
- }
3842
- .sg-row-cols-xxl-2 > * {
3843
- flex: 0 0 auto;
3844
- width: 50%;
3845
- }
3846
- .sg-row-cols-xxl-3 > * {
3847
- flex: 0 0 auto;
3848
- width: 33.3333333333%;
3849
- }
3850
- .sg-row-cols-xxl-4 > * {
3851
- flex: 0 0 auto;
3852
- width: 25%;
3853
- }
3854
- .sg-row-cols-xxl-5 > * {
3855
- flex: 0 0 auto;
3856
- width: 20%;
3857
- }
3858
- .sg-row-cols-xxl-6 > * {
3859
- flex: 0 0 auto;
3860
- width: 16.6666666667%;
3861
- }
3862
- .sg-col-xxl-auto {
3863
- flex: 0 0 auto;
3864
- width: auto;
3865
- }
3866
- .sg-col-xxl-1 {
3867
- flex: 0 0 auto;
3868
- width: 8.3333333333%;
3869
- }
3870
- .sg-col-xxl-2 {
3871
- flex: 0 0 auto;
3872
- width: 16.6666666667%;
3873
- }
3874
- .sg-col-xxl-3 {
3875
- flex: 0 0 auto;
3876
- width: 25%;
3877
- }
3878
- .sg-col-xxl-4 {
3879
- flex: 0 0 auto;
3880
- width: 33.3333333333%;
3881
- }
3882
- .sg-col-xxl-5 {
3883
- flex: 0 0 auto;
3884
- width: 41.6666666667%;
3885
- }
3886
- .sg-col-xxl-6 {
3887
- flex: 0 0 auto;
3888
- width: 50%;
3889
- }
3890
- .sg-col-xxl-7 {
3891
- flex: 0 0 auto;
3892
- width: 58.3333333333%;
3893
- }
3894
- .sg-col-xxl-8 {
3895
- flex: 0 0 auto;
3896
- width: 66.6666666667%;
3897
- }
3898
- .sg-col-xxl-9 {
3899
- flex: 0 0 auto;
3900
- width: 75%;
3901
- }
3902
- .sg-col-xxl-10 {
3903
- flex: 0 0 auto;
3904
- width: 83.3333333333%;
3905
- }
3906
- .sg-col-xxl-11 {
3907
- flex: 0 0 auto;
3908
- width: 91.6666666667%;
3909
- }
3910
- .sg-col-xxl-12 {
3911
- flex: 0 0 auto;
3912
- width: 100%;
3913
- }
3914
- .sg-offset-xxl-0 {
3915
- margin-left: 0;
3916
- }
3917
- .sg-offset-xxl-1 {
3918
- margin-left: 8.3333333333%;
3919
- }
3920
- .sg-offset-xxl-2 {
3921
- margin-left: 16.6666666667%;
3922
- }
3923
- .sg-offset-xxl-3 {
3924
- margin-left: 25%;
3925
- }
3926
- .sg-offset-xxl-4 {
3927
- margin-left: 33.3333333333%;
3928
- }
3929
- .sg-offset-xxl-5 {
3930
- margin-left: 41.6666666667%;
3931
- }
3932
- .sg-offset-xxl-6 {
3933
- margin-left: 50%;
3934
- }
3935
- .sg-offset-xxl-7 {
3936
- margin-left: 58.3333333333%;
3937
- }
3938
- .sg-offset-xxl-8 {
3939
- margin-left: 66.6666666667%;
3940
- }
3941
- .sg-offset-xxl-9 {
3942
- margin-left: 75%;
3943
- }
3944
- .sg-offset-xxl-10 {
3945
- margin-left: 83.3333333333%;
3946
- }
3947
- .sg-offset-xxl-11 {
3948
- margin-left: 91.6666666667%;
3949
- }
3950
- }
3951
- /* Containers */
3952
- .sg-container,
3953
- .sg-container-fluid,
3954
- .sg-container-xxl,
3955
- .sg-container-xl,
3956
- .sg-container-lg,
3957
- .sg-container-md,
3958
- .sg-container-sm {
3959
- --sg-gutter-x: 1.5rem;
3960
- --sg-gutter-y: 0;
3961
- width: 100%;
3962
- padding-right: calc(var(--sg-gutter-x) * 0.5);
3963
- padding-left: calc(var(--sg-gutter-x) * 0.5);
3964
- margin-right: auto;
3965
- margin-left: auto;
3966
- }
3967
-
3968
- @media (min-width: 576px) {
3969
- .sg-container-sm, .sg-container {
3970
- max-width: 540px;
3971
- }
3972
- }
3973
- @media (min-width: 768px) {
3974
- .sg-container-md, .sg-container-sm, .sg-container {
3975
- max-width: 720px;
3976
- }
3977
- }
3978
- @media (min-width: 992px) {
3979
- .sg-container-lg, .sg-container-md, .sg-container-sm, .sg-container {
3980
- max-width: 960px;
3981
- }
3982
- }
3983
- @media (min-width: 1200px) {
3984
- .sg-container-xl, .sg-container-lg, .sg-container-md, .sg-container-sm, .sg-container {
3985
- max-width: 1140px;
3986
- }
3987
- }
3988
- @media (min-width: 1400px) {
3989
- .sg-container-xxl, .sg-container-xl, .sg-container-lg, .sg-container-md, .sg-container-sm, .sg-container {
3990
- max-width: 1320px;
3991
- }
3992
- }
3993
- .sg-input-group {
3994
- display: flex;
3995
- flex-wrap: wrap;
3996
- align-items: stretch;
3997
- width: 100%;
3998
- }
3999
- .sg-input-group > .sg-form-control,
4000
- .sg-input-group > .sg-form-control-plaintext,
4001
- .sg-input-group > .sg-form-select,
4002
- .sg-input-group > .sg-form-floating {
4003
- flex: 1 1 auto;
4004
- width: 1%;
4005
- min-width: 0;
4006
- }
4007
- .sg-input-group > .sg-button, .sg-input-group > button {
4008
- position: relative;
4009
- z-index: 2;
4010
- }
4011
- .sg-input-group > :not(:first-child):not(:last-child) {
4012
- border-radius: 0;
4013
- }
4014
- .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 {
4015
- border-radius: 0;
4016
- }
4017
- .sg-input-group > :first-child {
4018
- border-top-right-radius: 0;
4019
- border-bottom-right-radius: 0;
4020
- }
4021
- .sg-input-group > :first-child.sg-form-floating > .sg-form-control, .sg-input-group > :first-child.sg-form-floating > .sg-form-select {
4022
- border-top-right-radius: 0;
4023
- border-bottom-right-radius: 0;
4024
- }
4025
- .sg-input-group > :last-child {
4026
- border-top-left-radius: 0;
4027
- border-bottom-left-radius: 0;
4028
- }
4029
- .sg-input-group > :last-child.sg-form-floating > .sg-form-control, .sg-input-group > :last-child.sg-form-floating > .sg-form-select {
4030
- border-top-left-radius: 0;
4031
- border-bottom-left-radius: 0;
4032
- }
4033
-
4034
- .sg-input-group-text {
4035
- display: flex;
4036
- width: fit-content;
4037
- align-items: center;
4038
- text-align: center;
4039
- font-size: 0.8rem;
4040
- padding: 0.375em 0.5em;
4041
- white-space: nowrap;
4042
- background-color: #e9ecef;
4043
- color: #212529;
4044
- border: 1px solid #dde0e3;
4045
- border-radius: 0.375em;
4046
- }
4047
-
4048
- .sg-modal-tag::backdrop {
4049
- z-index: 1060;
4050
- background: hsl(0, 0%, 0%);
4051
- opacity: 0.5;
4052
- animation-name: fadeInBackdrop;
4053
- animation-duration: 0.3s;
4054
- animation-timing-function: ease-in-out;
4055
- animation-fill-mode: forwards;
4056
- }
4057
- .sg-modal-tag::backdrop.close {
4058
- background: transparent;
4059
- opacity: 0;
4060
- animation-name: fadeInBackdrop;
4061
- animation-duration: 0.3s;
4062
- animation-timing-function: ease-in-out;
4063
- animation-fill-mode: backwards;
4064
- }
4065
-
4066
- @keyframes fadeInBackdrop {
4067
- from {
4068
- opacity: 0;
4069
- }
4070
- to {
4071
- opacity: 0.5;
4072
- }
4073
- }
4074
- @keyframes fadeOutBackdrop {
4075
- from {
4076
- opacity: 0.5;
4077
- }
4078
- to {
4079
- opacity: 0;
4080
- }
4081
- }
4082
- .sg-modal-tag {
4083
- z-index: 1061;
4084
- padding: 0;
4085
- margin: 2rem;
4086
- width: 100%;
4087
- height: fit-content;
4088
- color: white;
4089
- background-color: #2e3236;
4090
- background-clip: padding-box;
4091
- border: 1px solid white;
4092
- border-radius: 0.5rem;
4093
- outline: 0;
4094
- }
4095
- .sg-modal-tag[open=""] {
4096
- animation-name: slide-in-up;
4097
- animation-duration: 0.3s;
4098
- animation-timing-function: ease-in-out;
4099
- animation-fill-mode: forwards;
4100
- }
4101
- .sg-modal-tag.close {
4102
- animation: scale-down 0.3s ease-in-out;
4103
- }
4104
-
4105
- @keyframes scale-down {
4106
- to {
4107
- transform: translateY(10%);
4108
- opacity: 0;
4109
- }
4110
- }
4111
- @keyframes slide-in-up {
4112
- from {
4113
- transform: translateY(-10%);
4114
- opacity: 0.5;
4115
- }
4116
- }
4117
- .sg-modal-dialog-centered {
4118
- display: flex;
4119
- justify-content: center;
4120
- align-items: center;
4121
- height: 100dvh;
4122
- max-width: 100dvw;
4123
- margin: 0;
4124
- }
4125
-
4126
- .sg-modal-header {
4127
- display: flex;
4128
- flex-shrink: 0;
4129
- align-items: center;
4130
- justify-content: space-between;
4131
- padding: 0.75rem;
4132
- border-bottom: 1px solid white;
4133
- border-top-left-radius: 0.5rem;
4134
- border-top-right-radius: 0.5rem;
4135
- margin: 0;
4136
- }
4137
- .sg-modal-header .sg-button-close {
4138
- padding: 0.5rem 0.5rem;
4139
- margin: -0.25rem -0.25rem -0.25rem auto;
4140
- }
4141
-
4142
- .sg-modal-title {
4143
- margin: 0;
4144
- }
4145
-
4146
- .sg-modal-body {
4147
- position: relative;
4148
- flex: 1 1 auto;
4149
- padding: 1rem;
4150
- background-color: #43474a;
4151
- }
4152
-
4153
- .sg-modal-footer {
4154
- display: flex;
4155
- flex-shrink: 0;
4156
- flex-wrap: wrap;
4157
- align-items: center;
4158
- justify-content: flex-end;
4159
- padding: 0.75rem;
4160
- background-color: #2e3236;
4161
- border-top: 1px solid white;
4162
- border-bottom-right-radius: 0.5rem;
4163
- border-bottom-left-radius: 0.5rem;
4164
- gap: 0.5rem;
4165
- }
4166
-
4167
- @media (max-width: 575px) {
4168
- .sg-modal-tag {
4169
- margin: 0.5rem;
4170
- }
4171
- }
4172
- @media (min-width: 576px) {
4173
- .sg-modal-tag {
4174
- max-width: 500px;
4175
- margin-right: auto;
4176
- margin-left: auto;
4177
- }
4178
- .sg-modal-sm {
4179
- max-width: 300px;
4180
- }
4181
- }
4182
- @media (min-width: 992px) {
4183
- .modal-lg, .modal-xl {
4184
- max-width: 800px;
4185
- }
4186
- }
4187
- @media (min-width: 1200px) {
4188
- .modal-xl {
4189
- max-width: 1140px;
4190
- }
4191
- }
4192
- .sg-modal-open {
4193
- overflow: hidden;
4194
- }
4195
-
4196
- .sg-modal-backdrop {
4197
- position: fixed;
4198
- top: 0;
4199
- left: 0;
4200
- z-index: 1050;
4201
- width: 100vw;
4202
- height: 100vh;
4203
- background-color: black;
4204
- }
4205
- .sg-modal-backdrop.fadeIn {
4206
- animation-name: fadeInBackdrop;
4207
- animation-duration: 0.3s;
4208
- animation-timing-function: ease-out;
4209
- animation-fill-mode: forwards;
4210
- }
4211
- .sg-modal-backdrop.fadeOut {
4212
- animation-name: fadeOutBackdrop;
4213
- animation-duration: 0.3s;
4214
- animation-timing-function: ease-out;
4215
- animation-fill-mode: forwards;
4216
- }
4217
-
4218
- @keyframes fadeInBackdrop {
4219
- 0% {
4220
- opacity: 0;
4221
- }
4222
- 100% {
4223
- opacity: 0.5;
4224
- }
4225
- }
4226
- @keyframes fadeOutBackdrop {
4227
- 0% {
4228
- opacity: 0.5;
4229
- }
4230
- 100% {
4231
- opacity: 0;
4232
- }
4233
- }
4234
- .sg-modal {
4235
- position: fixed;
4236
- top: 0;
4237
- left: 0;
4238
- z-index: 1060;
4239
- display: block;
4240
- width: 100%;
4241
- height: 100%;
4242
- overflow-x: hidden;
4243
- overflow-y: auto;
4244
- outline: 0;
4245
- }
4246
-
4247
- .sg-modal-dialog {
4248
- z-index: 1061;
4249
- position: relative;
4250
- width: auto;
4251
- margin: 2rem;
4252
- pointer-events: none;
4253
- }
4254
- .sg-modal.fadeIn .sg-modal-dialog {
4255
- animation-name: fadeIn;
4256
- animation-duration: 0.3s;
4257
- animation-timing-function: ease-out;
4258
- animation-fill-mode: forwards;
4259
- }
4260
- .sg-modal.fadeOut .sg-modal-dialog {
4261
- animation-name: fadeOut;
4262
- animation-duration: 0.3s;
4263
- animation-timing-function: ease-out;
4264
- animation-fill-mode: forwards;
4265
- }
4266
- @keyframes fadeIn {
4267
- 0% {
4268
- opacity: 0;
4269
- top: -50px;
4270
- }
4271
- 100% {
4272
- opacity: 1;
4273
- top: 0px;
4274
- }
4275
- }
4276
- @keyframes fadeOut {
4277
- 0% {
4278
- opacity: 1;
4279
- top: 0px;
4280
- }
4281
- 100% {
4282
- opacity: 0;
4283
- top: -50px;
4284
- }
4285
- }
4286
- .sg-modal.sg-modal-static .sg-modal-dialog {
4287
- transition: transform 0.3s ease-out;
4288
- transform: scale(1.02);
4289
- }
4290
-
4291
- .sg-modal-dialog-scrollable {
4292
- height: calc(100% - 1rem);
4293
- }
4294
- .sg-modal-dialog-scrollable .sg-modal-content {
4295
- max-height: 100%;
4296
- overflow: hidden;
4297
- }
4298
- .sg-modal-dialog-scrollable .sg-modal-body {
4299
- overflow-y: auto;
4300
- }
4301
-
4302
- .sg-modal-dialog-centered {
4303
- display: flex;
4304
- justify-content: center;
4305
- align-items: center;
4306
- height: 100dvh;
4307
- max-width: 100dvw;
4308
- margin: 0;
4309
- }
4310
-
4311
- .sg-modal-content {
4312
- position: relative;
4313
- display: flex;
4314
- flex-direction: column;
4315
- width: 100%;
4316
- color: white;
4317
- pointer-events: auto;
4318
- background-color: #2e3236;
4319
- background-clip: padding-box;
4320
- border: 1px solid white;
4321
- border-radius: 0.5rem;
4322
- outline: 0;
4323
- }
4324
-
4325
- .sg-modal-header {
4326
- display: flex;
4327
- flex-shrink: 0;
4328
- align-items: center;
4329
- justify-content: space-between;
4330
- padding: 0.75rem;
4331
- border-bottom: 1px solid white;
4332
- border-top-left-radius: 0.5rem;
4333
- border-top-right-radius: 0.5rem;
4334
- }
4335
- .sg-modal-header .sg-button-close {
4336
- padding: 0.5rem 0.5rem;
4337
- margin: -0.25rem -0.25rem -0.25rem auto;
4338
- }
4339
-
4340
- .sg-modal-title {
4341
- margin-bottom: 0;
4342
- }
4343
-
4344
- .sg-modal-body {
4345
- position: relative;
4346
- flex: 1 1 auto;
4347
- padding: 1rem;
4348
- background-color: #43474a;
4349
- }
4350
-
4351
- .sg-modal-footer {
4352
- display: flex;
4353
- flex-shrink: 0;
4354
- flex-wrap: wrap;
4355
- align-items: center;
4356
- justify-content: flex-end;
4357
- padding: 0.75rem;
4358
- background-color: #2e3236;
4359
- border-top: 1px solid white;
4360
- border-bottom-right-radius: 0.5rem;
4361
- border-bottom-left-radius: 0.5rem;
4362
- gap: 0.5rem;
4363
- }
4364
-
4365
- @media (max-width: 575px) {
4366
- .sg-modal-dialog {
4367
- margin: 0.5rem;
4368
- }
4369
- }
4370
- @media (min-width: 576px) {
4371
- .sg-modal-dialog {
4372
- max-width: 500px;
4373
- margin-right: auto;
4374
- margin-left: auto;
4375
- }
4376
- .sg-modal-sm {
4377
- max-width: 300px;
4378
- }
4379
- }
4380
- @media (min-width: 992px) {
4381
- .modal-lg, .modal-xl {
4382
- max-width: 800px;
4383
- }
4384
- }
4385
- @media (min-width: 1200px) {
4386
- .modal-xl {
4387
- max-width: 1140px;
4388
- }
4389
- }
4390
- .sg-nav {
4391
- display: flex;
4392
- flex-wrap: wrap;
4393
- padding-left: 0;
4394
- margin-bottom: 0;
4395
- list-style: none;
4396
- }
4397
-
4398
- .sg-nav-link {
4399
- display: block;
4400
- padding: 0.5rem 1rem;
4401
- text-decoration: none;
4402
- }
4403
- .sg-nav-link.disabled {
4404
- pointer-events: none;
4405
- cursor: default;
4406
- }
4407
-
4408
- .sg-nav-item {
4409
- margin-block: auto;
4410
- }
4411
-
4412
- .sg-navbar {
4413
- --sg-navbar-bg: #212529;
4414
- --sg-navbar-color: rgba(white, .55);
4415
- --sg-navbar-hover-color: rgba(white, .75);
4416
- --sg-navbar-disabled-color: rgba(white, .25);
4417
- --sg-navbar-active-color: white;
4418
- --sg-navbar-brand-color: white;
4419
- --sg-navbar-brand-hover-color: white;
4420
- background-color: --sg-navbar-bg;
4421
- position: relative;
4422
- display: flex;
4423
- flex-wrap: wrap;
4424
- align-items: center;
4425
- padding: 0.5rem 0rem;
4426
- }
4427
- .sg-navbar > .container-xxl, .sg-navbar > .container-xl, .sg-navbar > .container-lg, .sg-navbar > .container-md, .sg-navbar > .container-sm, .sg-navbar > .sg-container,
4428
- .sg-navbar > .sg-container-fluid,
4429
- .sg-navbar > .sg-container-sm,
4430
- .sg-navbar > .sg-container-md,
4431
- .sg-navbar > .sg-container-lg,
4432
- .sg-navbar > .sg-container-xl,
4433
- .sg-navbar > .sg-container-xxl {
4434
- display: flex;
4435
- flex-wrap: inherit;
4436
- align-items: center;
4437
- justify-content: space-between;
4438
- }
4439
- .sg-navbar-brand {
4440
- padding-top: 0.25rem;
4441
- padding-bottom: 0.25rem;
4442
- margin-inline: 1rem;
4443
- margin-block: auto;
4444
- color: var(--sg-navbar-brand-color);
4445
- text-decoration: none;
4446
- white-space: nowrap;
4447
- }
4448
- .sg-navbar-brand:hover, .sg-navbar-brand:focus {
4449
- color: var(--sg-navbar-brand-hover-color);
4450
- text-decoration: none;
4451
- }
4452
-
4453
- .sg-navbar-nav {
4454
- --nav-link-padding-x: 0;
4455
- --nav-link-padding-y: 0.5rem;
4456
- --nav-link-color: var(--sg-navbar-color);
4457
- --nav-link-hover-color: var(--sg-navbar-hover-color);
4458
- --nav-link-disabled-color: var(--sg-navbar-disabled-color);
4459
- display: flex;
4460
- flex-direction: row;
4461
- padding-left: 0;
4462
- margin-bottom: 0;
4463
- list-style: none;
4464
- }
4465
- .sg-navbar-nav .show > .nav-link,
4466
- .sg-navbar-nav .nav-link.active {
4467
- color: var(--sg-navbar-active-color);
4468
- }
4469
- .sg-navbar-nav .dropdown-menu {
4470
- position: static;
4471
- }
4472
-
4473
- .sg-navbar-text {
4474
- padding-top: 0.5rem;
4475
- padding-bottom: 0.5rem;
4476
- color: var(--sg-navbar-color);
4477
- }
4478
- .sg-navbar-text a,
4479
- .sg-navbar-text a:hover,
4480
- .sg-navbar-text a:focus {
4481
- color: var(--sg-navbar-active-color);
4482
- }
4483
-
4484
- .nav-item a {
4485
- color: white;
4486
- text-decoration: none;
4487
- }
4488
-
4489
- .sg-nav-dropdown-toggle {
4490
- background-color: transparent;
4491
- display: block;
4492
- padding: 0.25rem 0.5rem;
4493
- color: white;
4494
- text-decoration: none;
4495
- border-radius: 0.375rem;
4496
- border: 1px solid transparent;
4497
- }
4498
- .sg-nav-dropdown-toggle:hover, .sg-nav-dropdown-toggle:focus {
4499
- border-color: white;
4500
- background-color: transparent;
4501
- }
4502
- .sg-nav-dropdown-toggle:active {
4503
- background-color: transparent;
4504
- }
4505
- .sg-nav-dropdown-toggle.disabled {
4506
- color: rgba(0, 0, 0, 0.24);
4507
- pointer-events: none;
4508
- cursor: default;
4509
- }
4510
-
4511
- .sg-offCanvas-open {
4512
- overflow: hidden;
4513
- }
4514
-
4515
- .sg-offCanvas-backdrop {
4516
- position: fixed;
4517
- top: 0;
4518
- left: 0;
4519
- z-index: 1050;
4520
- width: 100vw;
4521
- height: 100vh;
4522
- background-color: black;
4523
- }
4524
- .sg-offCanvas-backdrop.fadeIn {
4525
- animation-name: fadeInBackdrop;
4526
- animation-duration: 0.3s;
4527
- animation-timing-function: ease-out;
4528
- animation-fill-mode: forwards;
4529
- }
4530
- .sg-offCanvas-backdrop.fadeOut {
4531
- animation-name: fadeOutBackdrop;
4532
- animation-duration: 0.3s;
4533
- animation-timing-function: ease-out;
4534
- animation-fill-mode: forwards;
4535
- }
4536
-
4537
- @keyframes fadeInBackdrop {
4538
- 0% {
4539
- opacity: 0;
4540
- }
4541
- 100% {
4542
- opacity: 0.5;
4543
- }
4544
- }
4545
- @keyframes fadeOutBackdrop {
4546
- 0% {
4547
- opacity: 0.5;
4548
- }
4549
- 100% {
4550
- opacity: 0;
4551
- }
4552
- }
4553
- .sg-offCanvas {
4554
- position: fixed;
4555
- top: 0;
4556
- left: 0;
4557
- z-index: 1060;
4558
- display: block;
4559
- width: 100%;
4560
- height: 100%;
4561
- overflow-x: hidden;
4562
- overflow-y: auto;
4563
- outline: 0;
4564
- }
4565
-
4566
- .sg-offCanvas-dialog {
4567
- z-index: 1061;
4568
- position: relative;
4569
- width: auto;
4570
- max-height: 100vh;
4571
- pointer-events: none;
4572
- }
4573
- .sg-offCanvas.fadeIn .sg-offCanvas-dialog {
4574
- animation-name: fadeIn;
4575
- animation-duration: 0.6s;
4576
- animation-timing-function: ease-out;
4577
- animation-fill-mode: forwards;
4578
- }
4579
- .sg-offCanvas.fadeOut .sg-offCanvas-dialog {
4580
- animation-name: fadeOut;
4581
- animation-duration: 0.3s;
4582
- animation-timing-function: ease-out;
4583
- animation-fill-mode: forwards;
4584
- }
4585
- @keyframes fadeIn {
4586
- 0% {
4587
- opacity: 0;
4588
- }
4589
- 100% {
4590
- opacity: 1;
4591
- }
4592
- }
4593
- @keyframes fadeOut {
4594
- 0% {
4595
- opacity: 1;
4596
- }
4597
- 100% {
4598
- opacity: 0;
4599
- }
4600
- }
4601
-
4602
- .sg-offCanvas-content {
4603
- --sg-offcanvas-size: 478px;
4604
- position: fixed;
4605
- bottom: 0;
4606
- display: flex;
4607
- flex-direction: column;
4608
- max-width: 100%;
4609
- max-height: 100%;
4610
- color: white;
4611
- pointer-events: auto;
4612
- background-color: #2e3236;
4613
- background-clip: padding-box;
4614
- outline: 0;
4615
- transition: transform 0.3s ease-in-out;
4616
- /*
4617
- &.sg-offCanvas-footer {
4618
- display: flex;
4619
- flex-shrink: 0;
4620
- flex-wrap: wrap;
4621
- align-items: center;
4622
- justify-content: flex-end;
4623
- padding: 0.75em;
4624
- background-color: $sg-offCanvas-background-color;
4625
- border-top: 1px solid $sg-offCanvas-text-color;
4626
- @include border-bottom-radius($sg-offCanvas-radius);
4627
-
4628
- gap: 0.5em;
4629
- }
4630
- */
4631
- }
4632
- .sg-offCanvas-content.sg-offcanvas-start {
4633
- top: 0;
4634
- left: 0;
4635
- width: var(--sg-offcanvas-size);
4636
- border-right: 1px solid #2e3236;
4637
- transform: translateX(-100%);
4638
- }
4639
- .sg-offCanvas-content.sg-offcanvas-end {
4640
- top: 0;
4641
- right: 0;
4642
- width: var(--sg-offcanvas-size);
4643
- border-left: 1px solid #2e3236;
4644
- transform: translateX(100%);
4645
- }
4646
- .sg-offCanvas-content.sg-offcanvas-top {
4647
- top: 0;
4648
- right: 0;
4649
- left: 0;
4650
- height: var(--sg-offcanvas-size);
4651
- max-height: 100%;
4652
- border-bottom: 1px solid #2e3236;
4653
- transform: translateY(-100%);
4654
- }
4655
- .sg-offCanvas-content.sg-offcanvas-bottom {
4656
- right: 0;
4657
- left: 0;
4658
- height: var(--sg-offcanvas-size);
4659
- max-height: 100%;
4660
- border-top: 1px solid #2e3236;
4661
- transform: translateY(100%);
4662
- }
4663
- .sg-offCanvas-content.sg-slide-in {
4664
- transform: none;
4665
- }
4666
- .sg-offCanvas-content.sg-offCanvas-static {
4667
- transition: transform 0.3s ease-out;
4668
- transform: scaleX(1.02);
4669
- }
4670
- .sg-offCanvas-content .sg-offCanvas-header {
4671
- display: flex;
4672
- flex-shrink: 0;
4673
- align-items: center;
4674
- justify-content: space-between;
4675
- padding: 1em;
4676
- }
4677
- .sg-offCanvas-content .sg-offCanvas-header .sg-button-close {
4678
- padding: 0.5em 0.5em;
4679
- margin: -0.25em -0.25em -0.25em auto;
4680
- }
4681
- .sg-offCanvas-content .sg-offCanvas-title {
4682
- margin-bottom: 0;
4683
- }
4684
- .sg-offCanvas-content .sg-offCanvas-body {
4685
- position: relative;
4686
- flex: 1 1 auto;
4687
- padding: 1em;
4688
- background-color: #43474a;
4689
- overflow: auto;
4690
- }
4691
-
4692
- /*
4693
- $offCanvas-lg: 800px !default;
4694
- $offCanvas-xl: 1140px !default;
4695
-
4696
- $container-max-widths: ( sm: 540px, md: 720px, lg: 960px, xl: 1140px, xxl: 1320px ) !default;
4697
- $grid-breakpoints: (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px ) !default;
4698
-
4699
- @each $breakpoint, $value in $grid-breakpoints {
4700
- @if $breakpoint == "xs" {
4701
- @media (max-width: 575px) {
4702
- .sg-offCanvas-dialog {
4703
- margin: 0.5em;
4704
- }
4705
- }
4706
- }
4707
- @if $breakpoint == "sm" {
4708
- @media (min-width: 576px) {
4709
- .sg-offCanvas-dialog {
4710
- max-width: 500px;
4711
- margin-right: auto;
4712
- margin-left: auto;
4713
- }
4714
- .sg-offCanvas-sm {
4715
- max-width: 300px
4716
- }
4717
- }
4718
- }
4719
- @else if $breakpoint == "lg" {
4720
- @media (min-width: 992px) {
4721
- .offCanvas-lg, .offCanvas-xl {
4722
- max-width: 800px;
4723
- }
4724
- }
4725
- }
4726
- @else if $breakpoint == "xl" {
4727
- @media (min-width: 1200px) {
4728
- .offCanvas-xl {
4729
- max-width: 1140px;
4730
- }
4731
- }
4732
- }
4733
- }
4734
- */
4735
- .sg-overlay-arrow {
4736
- 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>');
4737
- background-repeat: no-repeat no-repeat;
4738
- background-position: center center;
4739
- background-size: cover;
4740
- height: 20px;
4741
- width: 15px;
4742
- z-index: 1010;
4743
- }
4744
- .sg-overlay-arrow.overlay-position-right {
4745
- transform: rotate(180deg);
4746
- }
4747
- .sg-overlay-arrow.overlay-position-left {
4748
- transform: rotate(0deg);
4749
- }
4750
- .sg-overlay-arrow.overlay-position-top {
4751
- transform: rotate(90deg);
4752
- }
4753
- .sg-overlay-arrow.overlay-position-bottom {
4754
- transform: rotate(270deg);
4755
- }
4756
-
4757
- .sg-moveable-popout {
4758
- --popout-index: 1010;
4759
- position: absolute;
4760
- display: flex;
4761
- flex-direction: column;
4762
- border-radius: 0.375em;
4763
- padding: 0;
4764
- margin: 0;
4765
- border: 1px solid white;
4766
- width: 15rem;
4767
- min-width: min(18rem, 100%);
4768
- min-height: min(9rem, 100%);
4769
- box-shadow: 0 0 0.5rem rgba(255, 255, 255, 0.3764705882);
4770
- color: white;
4771
- overflow: hidden;
4772
- z-index: var(--popout-index);
4773
- }
4774
- .sg-moveable-popout .sg-popout-header {
4775
- user-select: inherit;
4776
- margin-bottom: 0;
4777
- padding: 0.25em 0.5em;
4778
- background-color: #212529;
4779
- border-bottom: 1px solid white;
4780
- }
4781
- .sg-moveable-popout .sg-popout-header > * {
4782
- margin: 0;
4783
- }
4784
- .sg-moveable-popout .sg-popout-header:first-child {
4785
- border-radius: 0.375em 0.375em 0 0;
4786
- }
4787
- .sg-moveable-popout[data-move=true] {
4788
- touch-action: none;
4789
- }
4790
- .sg-moveable-popout[data-move=true] .sg-popout-header {
4791
- cursor: move;
4792
- }
4793
- .sg-moveable-popout .sg-popout-body {
4794
- flex: 1 1 auto;
4795
- padding: 0.5em;
4796
- user-select: inherit;
4797
- background-color: color-mix(in srgb, white 4%, #212529);
4798
- }
4799
- .sg-moveable-popout .sg-popout-footer {
4800
- user-select: inherit;
4801
- padding: 0.25em 0.5em;
4802
- background-color: #212529;
4803
- border-top: 1px solid white;
4804
- }
4805
- .sg-moveable-popout .sg-popout-footer:last-child {
4806
- border-radius: 0 0 0.375em 0.375em;
4807
- }
4808
- .sg-moveable-popout .sg-popout-text:last-child {
4809
- margin-bottom: 0;
4810
- }
4811
- .sg-moveable-popout[data-resize=true] {
4812
- resize: both;
4813
- }
4814
- .sg-moveable-popout[data-resize=true]::before {
4815
- content: "";
4816
- position: absolute;
4817
- bottom: 0;
4818
- right: 0;
4819
- z-index: calc(var(--popout-index) + 1);
4820
- width: 1em;
4821
- height: 1em;
4822
- 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>');
4823
- }
4824
-
4825
- .sg-spinner {
4826
- display: inline-block;
4827
- border-radius: 50%;
4828
- width: 1em;
4829
- height: 1em;
4830
- border: 0.2em solid white;
4831
- border-right-color: transparent;
4832
- margin: auto;
4833
- animation-name: spinny;
4834
- animation-duration: 0.5s;
4835
- animation-timing-function: linear;
4836
- animation-iteration-count: infinite;
4837
- }
4838
-
4839
- @keyframes spinny {
4840
- 100% {
4841
- transform: rotate(360deg);
4842
- }
4843
- }
4844
- .sg-table {
4845
- --sg-table-padding: $sg-table-padding;
4846
- width: 100%;
4847
- margin-bottom: 1rem;
4848
- color: black;
4849
- vertical-align: top;
4850
- border-color: black;
4851
- }
4852
- .sg-table > :not(caption) > * > * {
4853
- padding: 0.5rem 0.5rem;
4854
- background-color: transparent;
4855
- border-bottom-width: 1px;
4856
- box-shadow: inset 0 0 0 9999px transparent;
4857
- }
4858
- .sg-table > tbody {
4859
- vertical-align: inherit;
4860
- }
4861
- .sg-table > thead {
4862
- vertical-align: bottom;
4863
- }
4864
-
4865
- .sg-caption-top {
4866
- caption-side: top;
4867
- }
4868
-
4869
- .sg-table-sm > :not(caption) > * > * {
4870
- padding: 0.25rem 0.25rem;
4871
- }
4872
-
4873
- .sg-tabs {
4874
- width: 100%;
4875
- }
4876
-
4877
- .sg-tabs-controls {
4878
- display: flex;
4879
- flex-direction: row;
4880
- }
4881
-
4882
- .sg-tabs-button {
4883
- display: block;
4884
- }
4885
- .sg-tabs-button.sg-active {
4886
- background-color: #202020;
4887
- color: white;
4888
- }
4889
-
4890
- .sg-tabs-content {
4891
- width: 100%;
4892
- }
4893
-
4894
- .sg-tabs-page {
4895
- display: none;
4896
- }
4897
- .sg-tabs-page.sg-active {
4898
- display: flex;
4899
- flex-direction: row;
4900
- }
4901
-
4902
- /*# sourceMappingURL=stargazerui.css.map */