fokus-styles 2.0.0 → 2.3.0

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 (131) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/README.md +4 -3
  3. package/dist/css/components.css +510 -2
  4. package/dist/css/components.css.map +1 -1
  5. package/dist/css/components.min.css +1 -1
  6. package/dist/css/components.min.css.map +1 -1
  7. package/dist/css/fokus-components.css +4050 -0
  8. package/dist/css/fokus-components.css.map +1 -0
  9. package/dist/css/fokus-components.min.css +2 -0
  10. package/dist/css/fokus-components.min.css.map +1 -0
  11. package/dist/css/fokus-core.css +1563 -0
  12. package/dist/css/fokus-core.css.map +1 -0
  13. package/dist/css/fokus-core.min.css +2 -0
  14. package/dist/css/fokus-core.min.css.map +1 -0
  15. package/dist/css/fokus-dark.css +304 -0
  16. package/dist/css/fokus-dark.css.map +1 -0
  17. package/dist/css/fokus-dark.min.css +2 -0
  18. package/dist/css/fokus-dark.min.css.map +1 -0
  19. package/dist/css/fokus-utilities.css +4176 -0
  20. package/dist/css/fokus-utilities.css.map +1 -0
  21. package/dist/css/fokus-utilities.min.css +2 -0
  22. package/dist/css/fokus-utilities.min.css.map +1 -0
  23. package/dist/css/fokus.css +1339 -53
  24. package/dist/css/fokus.css.map +1 -1
  25. package/dist/css/fokus.min.css +1 -1
  26. package/dist/css/fokus.min.css.map +1 -1
  27. package/dist/css/forms.css +115 -2
  28. package/dist/css/forms.css.map +1 -1
  29. package/dist/css/forms.min.css +1 -1
  30. package/dist/css/forms.min.css.map +1 -1
  31. package/dist/css/helpers.css +376 -2
  32. package/dist/css/helpers.css.map +1 -1
  33. package/dist/css/helpers.min.css +1 -1
  34. package/dist/css/helpers.min.css.map +1 -1
  35. package/dist/css/layout.css +560 -2
  36. package/dist/css/layout.css.map +1 -1
  37. package/dist/css/layout.min.css +1 -1
  38. package/dist/css/layout.min.css.map +1 -1
  39. package/dist/js/fokus.js +347 -12
  40. package/dist/js/fokus.js.map +4 -4
  41. package/dist/js/fokus.min.js +17 -17
  42. package/dist/js/fokus.min.js.map +4 -4
  43. package/docs/components/accordion.md +3 -0
  44. package/docs/components/avatar.md +13 -0
  45. package/docs/components/button-group.md +13 -0
  46. package/docs/components/close-button.md +13 -0
  47. package/docs/components/code.md +13 -0
  48. package/docs/components/icon-link.md +13 -0
  49. package/docs/components/list-group.md +13 -0
  50. package/docs/components/modal.md +3 -0
  51. package/docs/components/navbar.md +3 -0
  52. package/docs/components/pagination.md +3 -0
  53. package/docs/components/placeholder.md +13 -0
  54. package/docs/components/ratio.md +13 -0
  55. package/docs/components/scrollspy.md +13 -0
  56. package/docs/components/skeleton.md +3 -0
  57. package/docs/components/table.md +3 -0
  58. package/docs/guides/javascript-api.md +9 -0
  59. package/docs/guides/utility-api.md +9 -0
  60. package/docs/reference/size-baseline.json +13 -13
  61. package/mockup/assets/example-theme.css +3 -1
  62. package/mockup/assets/example-theme.js +2 -0
  63. package/mockup/assets/showcase-contracts.js +2 -2
  64. package/mockup/assets/showcase.css +4 -2
  65. package/mockup/assets/showcase.js +2 -0
  66. package/mockup/examples/js-foundation.html +25 -0
  67. package/mockup/examples/tables-navbar.html +12 -8
  68. package/mockup/examples/theming.html +2 -1
  69. package/mockup/foundations.html +2 -2
  70. package/package.json +14 -1
  71. package/packages/fokus-cli/bin/fokus.mjs +18 -1
  72. package/packages/fokus-cli/lib/build.mjs +12 -2
  73. package/packages/fokus-components/scss/components/_accordion.scss +19 -0
  74. package/packages/fokus-components/scss/components/_avatar.scss +22 -0
  75. package/packages/fokus-components/scss/components/_button-group.scss +14 -0
  76. package/packages/fokus-components/scss/components/_close-button.scss +22 -0
  77. package/packages/fokus-components/scss/components/_code.scss +19 -0
  78. package/packages/fokus-components/scss/components/_icon-link.scss +8 -0
  79. package/packages/fokus-components/scss/components/_index.scss +10 -0
  80. package/packages/fokus-components/scss/components/_list-group.scss +26 -0
  81. package/packages/fokus-components/scss/components/_modal.scss +36 -0
  82. package/packages/fokus-components/scss/components/_navbar.scss +48 -0
  83. package/packages/fokus-components/scss/components/_offcanvas.scss +19 -0
  84. package/packages/fokus-components/scss/components/_pagination.scss +10 -0
  85. package/packages/fokus-components/scss/components/_placeholder.scss +13 -0
  86. package/packages/fokus-components/scss/components/_progress.scss +8 -0
  87. package/packages/fokus-components/scss/components/_ratio.scss +10 -0
  88. package/packages/fokus-components/scss/components/_scrollspy.scss +5 -0
  89. package/packages/fokus-components/scss/components/_skeleton.scss +19 -0
  90. package/packages/fokus-components/scss/components/_spinner.scss +9 -53
  91. package/packages/fokus-components/scss/components/_tables.scss +20 -0
  92. package/packages/fokus-components/scss/forms/_forms.scss +29 -0
  93. package/packages/fokus-core/scss/base/_accessibility.scss +45 -0
  94. package/packages/fokus-core/scss/base/_index.scss +1 -0
  95. package/packages/fokus-core/scss/layout/_grid.scss +18 -0
  96. package/packages/fokus-core/scss/settings/_config.scss +43 -0
  97. package/packages/fokus-core/scss/settings/_index.scss +1 -0
  98. package/packages/fokus-core/scss/themes/_dark.scss +38 -2
  99. package/packages/fokus-core/scss/tokens/_root.scss +14 -0
  100. package/packages/fokus-core/scss/tools/_mixins.scss +8 -0
  101. package/packages/fokus-js/js/accordion.js +7 -1
  102. package/packages/fokus-js/js/core/focus.js +20 -0
  103. package/packages/fokus-js/js/core/overlay.d.ts +2 -0
  104. package/packages/fokus-js/js/core/overlay.js +10 -0
  105. package/packages/fokus-js/js/core/register.js +4 -2
  106. package/packages/fokus-js/js/focus-trap.d.ts +3 -0
  107. package/packages/fokus-js/js/focus-trap.js +1 -0
  108. package/packages/fokus-js/js/fokus.d.ts +7 -0
  109. package/packages/fokus-js/js/fokus.js +7 -0
  110. package/packages/fokus-js/js/form-validation.d.ts +7 -0
  111. package/packages/fokus-js/js/form-validation.js +20 -0
  112. package/packages/fokus-js/js/modal.js +16 -2
  113. package/packages/fokus-js/js/navbar.d.ts +10 -0
  114. package/packages/fokus-js/js/navbar.js +27 -0
  115. package/packages/fokus-js/js/offcanvas.d.ts +4 -0
  116. package/packages/fokus-js/js/offcanvas.js +16 -2
  117. package/packages/fokus-js/js/pagination.d.ts +7 -0
  118. package/packages/fokus-js/js/pagination.js +38 -0
  119. package/packages/fokus-js/js/scrollspy.d.ts +7 -0
  120. package/packages/fokus-js/js/scrollspy.js +26 -0
  121. package/packages/fokus-js/js/spinner.d.ts +9 -0
  122. package/packages/fokus-js/js/spinner.js +18 -0
  123. package/packages/fokus-js/js/theme.d.ts +9 -0
  124. package/packages/fokus-js/js/theme.js +19 -0
  125. package/packages/fokus-js/js/toast.js +4 -0
  126. package/packages/fokus-utilities/scss/utilities/_api.scss +48 -0
  127. package/packages/fokus-utilities/scss/utilities/_index.scss +2 -0
  128. package/packages/fokus-utilities/scss/utilities/_states.scss +19 -0
  129. package/packages/fokus-utilities/scss/utilities/_visibility.scss +24 -0
  130. package/scss/entries/core-entry.scss +5 -0
  131. package/scss/entries/dark-entry.scss +3 -0
@@ -0,0 +1,1563 @@
1
+ @layer reset, tokens, base, layout, components, utilities, overrides;
2
+ @layer tokens {
3
+ :root {
4
+ --fs-color-white: #ffffff;
5
+ --fs-color-black: #000000;
6
+ --fs-color-text: #1e293b;
7
+ --fs-color-muted: #64748b;
8
+ --fs-color-border: #e2e8f0;
9
+ --fs-color-surface: #ffffff;
10
+ --fs-color-subtle: #f8fafc;
11
+ --fs-font-sans: Plus Jakarta Sans, sans-serif;
12
+ --fs-font-mono: Source Code Pro, monospace;
13
+ --fs-font-size-md: 0.8125rem;
14
+ --fs-font-size-h1: 1.75rem;
15
+ --fs-font-size-h2: 1.5rem;
16
+ --fs-font-size-h3: 1.3125rem;
17
+ --fs-font-size-h4: 1.125rem;
18
+ --fs-font-size-h5: 1rem;
19
+ --fs-font-size-h6: 0.875rem;
20
+ --fs-font-weight-semibold: 600;
21
+ --fs-line-height-base: 1.5;
22
+ --fs-line-height-heading: 1.25;
23
+ --fs-radius-sm: 4px;
24
+ --fs-radius-md: 6px;
25
+ --fs-radius-lg: 8px;
26
+ --fs-gutter-x: 1.5rem;
27
+ --fs-gutter-y: 0px;
28
+ --fs-space-0: 0;
29
+ --fs-space-1: 0.25rem;
30
+ --fs-space-2: 0.5rem;
31
+ --fs-space-3: 1rem;
32
+ --fs-space-4: 1.5rem;
33
+ --fs-space-5: 3rem;
34
+ --fs-z-base: 0;
35
+ --fs-z-dropdown: 1000;
36
+ --fs-z-sticky: 1020;
37
+ --fs-z-modal: 1050;
38
+ --fs-z-offcanvas: 1060;
39
+ --fs-z-notification: 1080;
40
+ --fs-z-toast: 1090;
41
+ --fs-z-tooltip: 1100;
42
+ --fs-control-height: 38px;
43
+ --fs-control-height-sm: 30px;
44
+ --fs-control-height-lg: 46px;
45
+ --fs-control-padding-x: 12px;
46
+ --fs-control-padding-x-sm: 8px;
47
+ --fs-control-padding-x-lg: 16px;
48
+ --fs-focus-width: 2px;
49
+ --fs-focus-offset: 2px;
50
+ --fs-focus-color: var(--fs-color-primary);
51
+ --fs-focus-ring-size: 3px;
52
+ --fs-focus-ring-color: color-mix(in srgb, var(--fs-focus-color) 22%, transparent);
53
+ --fs-focus-ring-alpha: 22%;
54
+ --fs-transition-fast: 150ms;
55
+ --fs-transition-normal: 220ms;
56
+ --fs-motion-duration-fast: var(--fs-transition-fast);
57
+ --fs-motion-duration-normal: var(--fs-transition-normal);
58
+ --fs-motion-ease-standard: var(--fs-ease-standard);
59
+ --fs-ease-standard: cubic-bezier(0.2, 0, 0, 1);
60
+ --fs-border-width: 1px;
61
+ --fs-disabled-opacity: 0.5;
62
+ --fs-safe-area-top: env(safe-area-inset-top, 0px);
63
+ --fs-safe-area-right: env(safe-area-inset-right, 0px);
64
+ --fs-safe-area-bottom: env(safe-area-inset-bottom, 0px);
65
+ --fs-safe-area-left: env(safe-area-inset-left, 0px);
66
+ --fs-component-control-height: var(--fs-control-height);
67
+ --fs-component-overlay-backdrop: rgb(0 0 0 / 55%);
68
+ --fs-component-panel-radius: var(--fs-radius-md);
69
+ --fs-component-panel-shadow: var(--fs-shadow-lg);
70
+ --fs-cq-sm: 320px;
71
+ --fs-cq-md: 480px;
72
+ --fs-cq-lg: 640px;
73
+ --fs-shadow-sm: 0 1px 3px rgb(0 0 0 / 15%), 0 1px 2px rgb(0 0 0 / 10%);
74
+ --fs-shadow-md: 0 6px 12px rgb(0 0 0 / 15%), 0 3px 6px rgb(0 0 0 / 10%);
75
+ --fs-shadow-lg: 0 15px 30px rgb(0 0 0 / 18%), 0 6px 12px rgb(0 0 0 / 12%);
76
+ --fs-tooltip-bg: #1e293b;
77
+ --fs-tooltip-text: #ffffff;
78
+ --fs-color-primary: #1a61e6;
79
+ --fs-color-on-primary: #ffffff;
80
+ --fs-alert-primary-bg: rgb(220.3846532222, 232.689549371, 254.1042117072);
81
+ --fs-alert-primary-text: rgb(4.2540793692, 32.6552622518, 88.5748738661);
82
+ --fs-color-secondary: #64748b;
83
+ --fs-color-on-secondary: #ffffff;
84
+ --fs-alert-secondary-bg: rgb(230.2895610064, 233.0325853352, 236.9919508609);
85
+ --fs-alert-secondary-text: rgb(33.9166068747, 40.6437781967, 50.3140869721);
86
+ --fs-color-success: rgb(13, 209, 87);
87
+ --fs-color-on-success: #000000;
88
+ --fs-alert-success-bg: rgb(228.9046733915, 249.1514320752, 230.8709345684);
89
+ --fs-alert-success-text: rgb(1.6574790861, 79.745461506, 28.4507801755);
90
+ --fs-color-warning: #fab633;
91
+ --fs-color-on-warning: #000000;
92
+ --fs-alert-warning-bg: rgb(254.9170612621, 244.6528756631, 228.9710928247);
93
+ --fs-alert-warning-text: rgb(96.9838380187, 68.3933599001, 13.3146447009);
94
+ --fs-color-danger: #cc3335;
95
+ --fs-color-on-danger: #ffffff;
96
+ --fs-alert-danger-bg: rgb(251.9225977632, 226.389403069, 223.5618211362);
97
+ --fs-alert-danger-text: rgb(77.6432204678, 13.3146447009, 14.1555411162);
98
+ --fs-color-info: #5e5cc7;
99
+ --fs-color-on-info: #ffffff;
100
+ --fs-alert-info-bg: rgb(228.2395257626, 230.4806192824, 248.3934544766);
101
+ --fs-alert-info-text: rgb(31.3939176289, 30.5530212136, 75.5409794297);
102
+ --fs-feedback-primary-bg: #e6f0ff;
103
+ --fs-feedback-secondary-bg: #f8fafc;
104
+ --fs-feedback-success-bg: #e6fff2;
105
+ --fs-feedback-warning-bg: #fff9e6;
106
+ --fs-feedback-danger-bg: #fff2f3;
107
+ --fs-feedback-info-bg: #f2f2ff;
108
+ }
109
+ @supports (color: oklch(0% 0 0deg)) {
110
+ :root {
111
+ --fs-color-text: oklch(27.9495237712% 0.0368481257 260.0309873929deg);
112
+ --fs-color-muted: oklch(55.4391007662% 0.040717043 257.4166191214deg);
113
+ --fs-color-border: oklch(92.876126719% 0.0126187744 255.5078854448deg);
114
+ --fs-color-subtle: oklch(98.4151869501% 0.0034126992 247.8577745944deg);
115
+ --fs-tooltip-bg: oklch(27.9495237712% 0.0368481257 260.0309873929deg);
116
+ --fs-color-primary: oklch(53.5630074284% 0.2132145174 261.6264320248deg);
117
+ --fs-color-on-primary: #ffffff;
118
+ --fs-alert-primary-bg: oklch(93.0344511143% 0.0319821776 261.6264320248deg);
119
+ --fs-alert-primary-text: oklch(26.7815037142% 0.1066072587 261.6264320248deg);
120
+ --fs-color-secondary: oklch(55.4391007662% 0.040717043 257.4166191214deg);
121
+ --fs-color-on-secondary: #ffffff;
122
+ --fs-alert-secondary-bg: oklch(93.3158651149% 0.0061075564 257.4166191214deg);
123
+ --fs-alert-secondary-text: oklch(27.7195503831% 0.0203585215 257.4166191214deg);
124
+ --fs-color-success: oklch(75.151587899% 0.2146126169 148.125846236deg);
125
+ --fs-color-on-success: #000000;
126
+ --fs-alert-success-bg: oklch(96.2727381849% 0.0321918925 148.125846236deg);
127
+ --fs-alert-success-text: oklch(37.5757939495% 0.1073063085 148.125846236deg);
128
+ --fs-color-warning: oklch(81.9510815663% 0.1562613975 78.6575213966deg);
129
+ --fs-color-on-warning: #000000;
130
+ --fs-alert-warning-bg: oklch(97.2926622349% 0.0234392096 78.6575213966deg);
131
+ --fs-alert-warning-text: oklch(40.9755407832% 0.0781306987 78.6575213966deg);
132
+ --fs-color-danger: oklch(55.9653139301% 0.1897270855 25.2407937498deg);
133
+ --fs-color-on-danger: #ffffff;
134
+ --fs-alert-danger-bg: oklch(93.3947970895% 0.0284590628 25.2407937498deg);
135
+ --fs-alert-danger-text: oklch(27.982656965% 0.0948635427 25.2407937498deg);
136
+ --fs-color-info: oklch(53.3359780029% 0.1620131129 280.2231949375deg);
137
+ --fs-color-on-info: #ffffff;
138
+ --fs-alert-info-bg: oklch(93.0003967004% 0.0243019669 280.2231949375deg);
139
+ --fs-alert-info-text: oklch(26.6679890014% 0.0810065564 280.2231949375deg);
140
+ --fs-feedback-primary-bg: oklch(95.2067827456% 0.0228899025 258.359342143deg);
141
+ --fs-feedback-secondary-bg: oklch(98.4151869501% 0.0034126992 247.8577745944deg);
142
+ --fs-feedback-success-bg: oklch(97.8305614459% 0.0311593614 163.2740567608deg);
143
+ --fs-feedback-warning-bg: oklch(98.17094418% 0.025708244 92.3886876566deg);
144
+ --fs-feedback-danger-bg: oklch(97.1603097552% 0.0140720277 12.0135639679deg);
145
+ --fs-feedback-info-bg: oklch(96.4918490239% 0.0173174767 286.0707018324deg);
146
+ }
147
+ }
148
+ }
149
+ @layer tokens {
150
+ :root {
151
+ --fs-color-bg-surface: var(--fs-color-surface);
152
+ --fs-color-bg-subtle: var(--fs-color-subtle);
153
+ --fs-color-text-primary: var(--fs-color-text);
154
+ --fs-color-text-muted: var(--fs-color-muted);
155
+ --fs-color-border-default: var(--fs-color-border);
156
+ --fs-color-focus: var(--fs-color-primary);
157
+ --fs-color-surface-raised: var(--fs-color-surface);
158
+ --fs-color-surface-interactive: var(--fs-color-subtle);
159
+ --fs-color-action-primary: var(--fs-color-primary);
160
+ --fs-color-action-danger: var(--fs-color-danger);
161
+ }
162
+ }
163
+ @layer tokens {
164
+ :root {
165
+ --fs-chart-series-1: var(--fs-color-primary);
166
+ --fs-chart-series-2: var(--fs-color-success);
167
+ --fs-chart-series-3: var(--fs-color-warning);
168
+ --fs-chart-series-4: var(--fs-color-danger);
169
+ --fs-chart-series-5: var(--fs-color-info);
170
+ --fs-chart-series-6: var(--fs-color-secondary);
171
+ --fs-chart-grid: var(--fs-color-border);
172
+ --fs-chart-axis: var(--fs-color-muted);
173
+ --fs-chart-tooltip-bg: var(--fs-tooltip-bg);
174
+ --fs-chart-tooltip-text: var(--fs-tooltip-text);
175
+ }
176
+ }
177
+ @layer reset {
178
+ *,
179
+ *::before,
180
+ *::after {
181
+ box-sizing: border-box;
182
+ }
183
+ html {
184
+ line-height: var(--fs-line-height-base);
185
+ -webkit-text-size-adjust: 100%;
186
+ text-size-adjust: 100%;
187
+ }
188
+ body {
189
+ margin: 0;
190
+ color: var(--fs-color-text);
191
+ background-color: var(--fs-color-surface);
192
+ }
193
+ [hidden] {
194
+ display: none !important;
195
+ }
196
+ }
197
+ @layer base {
198
+ body,
199
+ button,
200
+ input,
201
+ select,
202
+ textarea {
203
+ font-family: var(--fs-font-sans);
204
+ font-size: var(--fs-font-size-md);
205
+ }
206
+ code,
207
+ kbd,
208
+ pre,
209
+ samp {
210
+ font-family: var(--fs-font-mono);
211
+ }
212
+ h1,
213
+ h2,
214
+ h3,
215
+ h4,
216
+ h5,
217
+ h6 {
218
+ margin-top: 0;
219
+ font-weight: var(--fs-font-weight-semibold);
220
+ line-height: var(--fs-line-height-heading);
221
+ }
222
+ h1 {
223
+ font-size: var(--fs-font-size-h1);
224
+ }
225
+ h2 {
226
+ font-size: var(--fs-font-size-h2);
227
+ }
228
+ h3 {
229
+ font-size: var(--fs-font-size-h3);
230
+ }
231
+ h4 {
232
+ font-size: var(--fs-font-size-h4);
233
+ }
234
+ h5 {
235
+ font-size: var(--fs-font-size-h5);
236
+ }
237
+ h6 {
238
+ font-size: var(--fs-font-size-h6);
239
+ }
240
+ }
241
+ @layer base {
242
+ @media (prefers-reduced-motion: reduce) {
243
+ *,
244
+ *::before,
245
+ *::after {
246
+ scroll-behavior: auto !important;
247
+ transition-duration: 0.01ms !important;
248
+ animation-duration: 0.01ms !important;
249
+ animation-iteration-count: 1 !important;
250
+ }
251
+ .fs-spinner,
252
+ .fs-progress-bar-animated,
253
+ .fs-progress-indeterminate .fs-progress-bar {
254
+ animation-duration: 1.5s !important;
255
+ animation-iteration-count: infinite !important;
256
+ }
257
+ }
258
+ }
259
+ /* stylelint-disable property-no-deprecated, selector-not-notation */
260
+ @layer reset {
261
+ :focus-visible {
262
+ outline: var(--fs-focus-width) solid var(--fs-focus-color);
263
+ outline-offset: var(--fs-focus-offset);
264
+ }
265
+ @media (forced-colors: active) {
266
+ :focus-visible {
267
+ outline: 2px solid CanvasText;
268
+ outline-offset: 2px;
269
+ }
270
+ }
271
+ }
272
+ @layer utilities {
273
+ .fs-u-visually-hidden:not(:focus):not(:focus-within),
274
+ .fs-u-visually-hidden-focusable:not(:focus):not(:focus-within) {
275
+ position: absolute !important;
276
+ width: 1px !important;
277
+ height: 1px !important;
278
+ padding: 0 !important;
279
+ margin: -1px !important;
280
+ overflow: hidden !important;
281
+ clip-path: inset(50%) !important;
282
+ white-space: nowrap !important;
283
+ border: 0 !important;
284
+ }
285
+ .fs-skip-link {
286
+ position: fixed;
287
+ z-index: 1000;
288
+ inset-block-start: var(--fs-space-2);
289
+ inset-inline-start: var(--fs-space-2);
290
+ transform: translateY(-200%);
291
+ padding: var(--fs-space-2) var(--fs-space-3);
292
+ color: var(--fs-color-on-primary);
293
+ background: var(--fs-color-primary);
294
+ border-radius: var(--fs-radius-sm);
295
+ }
296
+ .fs-skip-link:focus {
297
+ transform: translateY(0);
298
+ }
299
+ }
300
+ @layer layout {
301
+ .fs-cluster {
302
+ display: flex;
303
+ flex-wrap: wrap;
304
+ align-items: center;
305
+ gap: var(--fs-cluster-gap, 0.5rem);
306
+ }
307
+ .fs-cluster-gap-0 {
308
+ --fs-cluster-gap: 0;
309
+ }
310
+ .fs-cluster-gap-1 {
311
+ --fs-cluster-gap: 0.25rem;
312
+ }
313
+ .fs-cluster-gap-2 {
314
+ --fs-cluster-gap: 0.5rem;
315
+ }
316
+ .fs-cluster-gap-3 {
317
+ --fs-cluster-gap: 1rem;
318
+ }
319
+ .fs-cluster-gap-4 {
320
+ --fs-cluster-gap: 1.5rem;
321
+ }
322
+ .fs-cluster-gap-5 {
323
+ --fs-cluster-gap: 3rem;
324
+ }
325
+ }
326
+ @layer layout {
327
+ .fs-container,
328
+ .fs-container-sm,
329
+ .fs-container-md,
330
+ .fs-container-lg,
331
+ .fs-container-xl,
332
+ .fs-container-xxl,
333
+ .fs-container-xxxl,
334
+ .fs-container-fluid {
335
+ width: 100%;
336
+ margin-right: auto;
337
+ margin-left: auto;
338
+ }
339
+ @media (min-width: 640px) {
340
+ .fs-container,
341
+ .fs-container-sm {
342
+ max-width: 600px;
343
+ }
344
+ }
345
+ @media (min-width: 768px) {
346
+ .fs-container,
347
+ .fs-container-md {
348
+ max-width: 720px;
349
+ }
350
+ }
351
+ @media (min-width: 1024px) {
352
+ .fs-container,
353
+ .fs-container-lg {
354
+ max-width: 960px;
355
+ }
356
+ }
357
+ @media (min-width: 1280px) {
358
+ .fs-container,
359
+ .fs-container-xl {
360
+ max-width: 1200px;
361
+ }
362
+ }
363
+ @media (min-width: 1536px) {
364
+ .fs-container,
365
+ .fs-container-xxl {
366
+ max-width: 1440px;
367
+ }
368
+ }
369
+ @media (min-width: 1920px) {
370
+ .fs-container,
371
+ .fs-container-xxxl {
372
+ max-width: 1800px;
373
+ }
374
+ }
375
+ }
376
+ @layer layout {
377
+ .fs-row {
378
+ display: flex;
379
+ flex-wrap: wrap;
380
+ margin-top: calc(var(--fs-gutter-y) * -1);
381
+ margin-right: calc(var(--fs-gutter-x) / -2);
382
+ margin-left: calc(var(--fs-gutter-x) / -2);
383
+ }
384
+ .fs-row > * {
385
+ margin-top: var(--fs-gutter-y);
386
+ padding-right: calc(var(--fs-gutter-x) / 2);
387
+ padding-left: calc(var(--fs-gutter-x) / 2);
388
+ }
389
+ .fs-row-fluid {
390
+ width: 100%;
391
+ }
392
+ .fs-col-fluid {
393
+ width: 100%;
394
+ }
395
+ .fs-row-cols-auto > * {
396
+ flex: 0 0 auto;
397
+ width: auto;
398
+ }
399
+ .fs-row-cols-1 > * {
400
+ flex: 0 0 auto;
401
+ width: 100%;
402
+ }
403
+ .fs-row-cols-2 > * {
404
+ flex: 0 0 auto;
405
+ width: 50%;
406
+ }
407
+ .fs-row-cols-3 > * {
408
+ flex: 0 0 auto;
409
+ width: 33.3333333333%;
410
+ }
411
+ .fs-row-cols-4 > * {
412
+ flex: 0 0 auto;
413
+ width: 25%;
414
+ }
415
+ .fs-row-cols-5 > * {
416
+ flex: 0 0 auto;
417
+ width: 20%;
418
+ }
419
+ .fs-row-cols-6 > * {
420
+ flex: 0 0 auto;
421
+ width: 16.6666666667%;
422
+ }
423
+ .fs-order-0 {
424
+ order: 0;
425
+ }
426
+ .fs-order-1 {
427
+ order: 1;
428
+ }
429
+ .fs-order-2 {
430
+ order: 2;
431
+ }
432
+ .fs-order-3 {
433
+ order: 3;
434
+ }
435
+ .fs-order-4 {
436
+ order: 4;
437
+ }
438
+ .fs-order-5 {
439
+ order: 5;
440
+ }
441
+ .fs-order-6 {
442
+ order: 6;
443
+ }
444
+ .fs-order-7 {
445
+ order: 7;
446
+ }
447
+ .fs-order-8 {
448
+ order: 8;
449
+ }
450
+ .fs-order-9 {
451
+ order: 9;
452
+ }
453
+ .fs-order-10 {
454
+ order: 10;
455
+ }
456
+ .fs-order-11 {
457
+ order: 11;
458
+ }
459
+ .fs-order-12 {
460
+ order: 12;
461
+ }
462
+ .fs-col {
463
+ flex: 1 0 0%;
464
+ }
465
+ .fs-col-auto {
466
+ flex: 0 0 auto;
467
+ width: auto;
468
+ }
469
+ .fs-col-1 {
470
+ flex: 0 0 auto;
471
+ width: 8.3333333333%;
472
+ }
473
+ .fs-col-2 {
474
+ flex: 0 0 auto;
475
+ width: 16.6666666667%;
476
+ }
477
+ .fs-col-3 {
478
+ flex: 0 0 auto;
479
+ width: 25%;
480
+ }
481
+ .fs-col-4 {
482
+ flex: 0 0 auto;
483
+ width: 33.3333333333%;
484
+ }
485
+ .fs-col-5 {
486
+ flex: 0 0 auto;
487
+ width: 41.6666666667%;
488
+ }
489
+ .fs-col-6 {
490
+ flex: 0 0 auto;
491
+ width: 50%;
492
+ }
493
+ .fs-col-7 {
494
+ flex: 0 0 auto;
495
+ width: 58.3333333333%;
496
+ }
497
+ .fs-col-8 {
498
+ flex: 0 0 auto;
499
+ width: 66.6666666667%;
500
+ }
501
+ .fs-col-9 {
502
+ flex: 0 0 auto;
503
+ width: 75%;
504
+ }
505
+ .fs-col-10 {
506
+ flex: 0 0 auto;
507
+ width: 83.3333333333%;
508
+ }
509
+ .fs-col-11 {
510
+ flex: 0 0 auto;
511
+ width: 91.6666666667%;
512
+ }
513
+ .fs-col-12 {
514
+ flex: 0 0 auto;
515
+ width: 100%;
516
+ }
517
+ @media (min-width: 640px) {
518
+ .fs-row-cols-sm-auto > * {
519
+ flex: 0 0 auto;
520
+ width: auto;
521
+ }
522
+ .fs-row-cols-sm-1 > * {
523
+ flex: 0 0 auto;
524
+ width: 100%;
525
+ }
526
+ .fs-row-cols-sm-2 > * {
527
+ flex: 0 0 auto;
528
+ width: 50%;
529
+ }
530
+ .fs-row-cols-sm-3 > * {
531
+ flex: 0 0 auto;
532
+ width: 33.3333333333%;
533
+ }
534
+ .fs-row-cols-sm-4 > * {
535
+ flex: 0 0 auto;
536
+ width: 25%;
537
+ }
538
+ .fs-row-cols-sm-5 > * {
539
+ flex: 0 0 auto;
540
+ width: 20%;
541
+ }
542
+ .fs-row-cols-sm-6 > * {
543
+ flex: 0 0 auto;
544
+ width: 16.6666666667%;
545
+ }
546
+ .fs-order-sm-0 {
547
+ order: 0;
548
+ }
549
+ .fs-order-sm-1 {
550
+ order: 1;
551
+ }
552
+ .fs-order-sm-2 {
553
+ order: 2;
554
+ }
555
+ .fs-order-sm-3 {
556
+ order: 3;
557
+ }
558
+ .fs-order-sm-4 {
559
+ order: 4;
560
+ }
561
+ .fs-order-sm-5 {
562
+ order: 5;
563
+ }
564
+ .fs-order-sm-6 {
565
+ order: 6;
566
+ }
567
+ .fs-order-sm-7 {
568
+ order: 7;
569
+ }
570
+ .fs-order-sm-8 {
571
+ order: 8;
572
+ }
573
+ .fs-order-sm-9 {
574
+ order: 9;
575
+ }
576
+ .fs-order-sm-10 {
577
+ order: 10;
578
+ }
579
+ .fs-order-sm-11 {
580
+ order: 11;
581
+ }
582
+ .fs-order-sm-12 {
583
+ order: 12;
584
+ }
585
+ .fs-col-sm {
586
+ flex: 1 0 0%;
587
+ }
588
+ .fs-col-sm-auto {
589
+ flex: 0 0 auto;
590
+ width: auto;
591
+ }
592
+ .fs-col-sm-1 {
593
+ flex: 0 0 auto;
594
+ width: 8.3333333333%;
595
+ }
596
+ .fs-col-sm-2 {
597
+ flex: 0 0 auto;
598
+ width: 16.6666666667%;
599
+ }
600
+ .fs-col-sm-3 {
601
+ flex: 0 0 auto;
602
+ width: 25%;
603
+ }
604
+ .fs-col-sm-4 {
605
+ flex: 0 0 auto;
606
+ width: 33.3333333333%;
607
+ }
608
+ .fs-col-sm-5 {
609
+ flex: 0 0 auto;
610
+ width: 41.6666666667%;
611
+ }
612
+ .fs-col-sm-6 {
613
+ flex: 0 0 auto;
614
+ width: 50%;
615
+ }
616
+ .fs-col-sm-7 {
617
+ flex: 0 0 auto;
618
+ width: 58.3333333333%;
619
+ }
620
+ .fs-col-sm-8 {
621
+ flex: 0 0 auto;
622
+ width: 66.6666666667%;
623
+ }
624
+ .fs-col-sm-9 {
625
+ flex: 0 0 auto;
626
+ width: 75%;
627
+ }
628
+ .fs-col-sm-10 {
629
+ flex: 0 0 auto;
630
+ width: 83.3333333333%;
631
+ }
632
+ .fs-col-sm-11 {
633
+ flex: 0 0 auto;
634
+ width: 91.6666666667%;
635
+ }
636
+ .fs-col-sm-12 {
637
+ flex: 0 0 auto;
638
+ width: 100%;
639
+ }
640
+ }
641
+ @media (min-width: 768px) {
642
+ .fs-row-cols-md-auto > * {
643
+ flex: 0 0 auto;
644
+ width: auto;
645
+ }
646
+ .fs-row-cols-md-1 > * {
647
+ flex: 0 0 auto;
648
+ width: 100%;
649
+ }
650
+ .fs-row-cols-md-2 > * {
651
+ flex: 0 0 auto;
652
+ width: 50%;
653
+ }
654
+ .fs-row-cols-md-3 > * {
655
+ flex: 0 0 auto;
656
+ width: 33.3333333333%;
657
+ }
658
+ .fs-row-cols-md-4 > * {
659
+ flex: 0 0 auto;
660
+ width: 25%;
661
+ }
662
+ .fs-row-cols-md-5 > * {
663
+ flex: 0 0 auto;
664
+ width: 20%;
665
+ }
666
+ .fs-row-cols-md-6 > * {
667
+ flex: 0 0 auto;
668
+ width: 16.6666666667%;
669
+ }
670
+ .fs-order-md-0 {
671
+ order: 0;
672
+ }
673
+ .fs-order-md-1 {
674
+ order: 1;
675
+ }
676
+ .fs-order-md-2 {
677
+ order: 2;
678
+ }
679
+ .fs-order-md-3 {
680
+ order: 3;
681
+ }
682
+ .fs-order-md-4 {
683
+ order: 4;
684
+ }
685
+ .fs-order-md-5 {
686
+ order: 5;
687
+ }
688
+ .fs-order-md-6 {
689
+ order: 6;
690
+ }
691
+ .fs-order-md-7 {
692
+ order: 7;
693
+ }
694
+ .fs-order-md-8 {
695
+ order: 8;
696
+ }
697
+ .fs-order-md-9 {
698
+ order: 9;
699
+ }
700
+ .fs-order-md-10 {
701
+ order: 10;
702
+ }
703
+ .fs-order-md-11 {
704
+ order: 11;
705
+ }
706
+ .fs-order-md-12 {
707
+ order: 12;
708
+ }
709
+ .fs-col-md {
710
+ flex: 1 0 0%;
711
+ }
712
+ .fs-col-md-auto {
713
+ flex: 0 0 auto;
714
+ width: auto;
715
+ }
716
+ .fs-col-md-1 {
717
+ flex: 0 0 auto;
718
+ width: 8.3333333333%;
719
+ }
720
+ .fs-col-md-2 {
721
+ flex: 0 0 auto;
722
+ width: 16.6666666667%;
723
+ }
724
+ .fs-col-md-3 {
725
+ flex: 0 0 auto;
726
+ width: 25%;
727
+ }
728
+ .fs-col-md-4 {
729
+ flex: 0 0 auto;
730
+ width: 33.3333333333%;
731
+ }
732
+ .fs-col-md-5 {
733
+ flex: 0 0 auto;
734
+ width: 41.6666666667%;
735
+ }
736
+ .fs-col-md-6 {
737
+ flex: 0 0 auto;
738
+ width: 50%;
739
+ }
740
+ .fs-col-md-7 {
741
+ flex: 0 0 auto;
742
+ width: 58.3333333333%;
743
+ }
744
+ .fs-col-md-8 {
745
+ flex: 0 0 auto;
746
+ width: 66.6666666667%;
747
+ }
748
+ .fs-col-md-9 {
749
+ flex: 0 0 auto;
750
+ width: 75%;
751
+ }
752
+ .fs-col-md-10 {
753
+ flex: 0 0 auto;
754
+ width: 83.3333333333%;
755
+ }
756
+ .fs-col-md-11 {
757
+ flex: 0 0 auto;
758
+ width: 91.6666666667%;
759
+ }
760
+ .fs-col-md-12 {
761
+ flex: 0 0 auto;
762
+ width: 100%;
763
+ }
764
+ }
765
+ @media (min-width: 1024px) {
766
+ .fs-row-cols-lg-auto > * {
767
+ flex: 0 0 auto;
768
+ width: auto;
769
+ }
770
+ .fs-row-cols-lg-1 > * {
771
+ flex: 0 0 auto;
772
+ width: 100%;
773
+ }
774
+ .fs-row-cols-lg-2 > * {
775
+ flex: 0 0 auto;
776
+ width: 50%;
777
+ }
778
+ .fs-row-cols-lg-3 > * {
779
+ flex: 0 0 auto;
780
+ width: 33.3333333333%;
781
+ }
782
+ .fs-row-cols-lg-4 > * {
783
+ flex: 0 0 auto;
784
+ width: 25%;
785
+ }
786
+ .fs-row-cols-lg-5 > * {
787
+ flex: 0 0 auto;
788
+ width: 20%;
789
+ }
790
+ .fs-row-cols-lg-6 > * {
791
+ flex: 0 0 auto;
792
+ width: 16.6666666667%;
793
+ }
794
+ .fs-order-lg-0 {
795
+ order: 0;
796
+ }
797
+ .fs-order-lg-1 {
798
+ order: 1;
799
+ }
800
+ .fs-order-lg-2 {
801
+ order: 2;
802
+ }
803
+ .fs-order-lg-3 {
804
+ order: 3;
805
+ }
806
+ .fs-order-lg-4 {
807
+ order: 4;
808
+ }
809
+ .fs-order-lg-5 {
810
+ order: 5;
811
+ }
812
+ .fs-order-lg-6 {
813
+ order: 6;
814
+ }
815
+ .fs-order-lg-7 {
816
+ order: 7;
817
+ }
818
+ .fs-order-lg-8 {
819
+ order: 8;
820
+ }
821
+ .fs-order-lg-9 {
822
+ order: 9;
823
+ }
824
+ .fs-order-lg-10 {
825
+ order: 10;
826
+ }
827
+ .fs-order-lg-11 {
828
+ order: 11;
829
+ }
830
+ .fs-order-lg-12 {
831
+ order: 12;
832
+ }
833
+ .fs-col-lg {
834
+ flex: 1 0 0%;
835
+ }
836
+ .fs-col-lg-auto {
837
+ flex: 0 0 auto;
838
+ width: auto;
839
+ }
840
+ .fs-col-lg-1 {
841
+ flex: 0 0 auto;
842
+ width: 8.3333333333%;
843
+ }
844
+ .fs-col-lg-2 {
845
+ flex: 0 0 auto;
846
+ width: 16.6666666667%;
847
+ }
848
+ .fs-col-lg-3 {
849
+ flex: 0 0 auto;
850
+ width: 25%;
851
+ }
852
+ .fs-col-lg-4 {
853
+ flex: 0 0 auto;
854
+ width: 33.3333333333%;
855
+ }
856
+ .fs-col-lg-5 {
857
+ flex: 0 0 auto;
858
+ width: 41.6666666667%;
859
+ }
860
+ .fs-col-lg-6 {
861
+ flex: 0 0 auto;
862
+ width: 50%;
863
+ }
864
+ .fs-col-lg-7 {
865
+ flex: 0 0 auto;
866
+ width: 58.3333333333%;
867
+ }
868
+ .fs-col-lg-8 {
869
+ flex: 0 0 auto;
870
+ width: 66.6666666667%;
871
+ }
872
+ .fs-col-lg-9 {
873
+ flex: 0 0 auto;
874
+ width: 75%;
875
+ }
876
+ .fs-col-lg-10 {
877
+ flex: 0 0 auto;
878
+ width: 83.3333333333%;
879
+ }
880
+ .fs-col-lg-11 {
881
+ flex: 0 0 auto;
882
+ width: 91.6666666667%;
883
+ }
884
+ .fs-col-lg-12 {
885
+ flex: 0 0 auto;
886
+ width: 100%;
887
+ }
888
+ }
889
+ @media (min-width: 1280px) {
890
+ .fs-row-cols-xl-auto > * {
891
+ flex: 0 0 auto;
892
+ width: auto;
893
+ }
894
+ .fs-row-cols-xl-1 > * {
895
+ flex: 0 0 auto;
896
+ width: 100%;
897
+ }
898
+ .fs-row-cols-xl-2 > * {
899
+ flex: 0 0 auto;
900
+ width: 50%;
901
+ }
902
+ .fs-row-cols-xl-3 > * {
903
+ flex: 0 0 auto;
904
+ width: 33.3333333333%;
905
+ }
906
+ .fs-row-cols-xl-4 > * {
907
+ flex: 0 0 auto;
908
+ width: 25%;
909
+ }
910
+ .fs-row-cols-xl-5 > * {
911
+ flex: 0 0 auto;
912
+ width: 20%;
913
+ }
914
+ .fs-row-cols-xl-6 > * {
915
+ flex: 0 0 auto;
916
+ width: 16.6666666667%;
917
+ }
918
+ .fs-order-xl-0 {
919
+ order: 0;
920
+ }
921
+ .fs-order-xl-1 {
922
+ order: 1;
923
+ }
924
+ .fs-order-xl-2 {
925
+ order: 2;
926
+ }
927
+ .fs-order-xl-3 {
928
+ order: 3;
929
+ }
930
+ .fs-order-xl-4 {
931
+ order: 4;
932
+ }
933
+ .fs-order-xl-5 {
934
+ order: 5;
935
+ }
936
+ .fs-order-xl-6 {
937
+ order: 6;
938
+ }
939
+ .fs-order-xl-7 {
940
+ order: 7;
941
+ }
942
+ .fs-order-xl-8 {
943
+ order: 8;
944
+ }
945
+ .fs-order-xl-9 {
946
+ order: 9;
947
+ }
948
+ .fs-order-xl-10 {
949
+ order: 10;
950
+ }
951
+ .fs-order-xl-11 {
952
+ order: 11;
953
+ }
954
+ .fs-order-xl-12 {
955
+ order: 12;
956
+ }
957
+ .fs-col-xl {
958
+ flex: 1 0 0%;
959
+ }
960
+ .fs-col-xl-auto {
961
+ flex: 0 0 auto;
962
+ width: auto;
963
+ }
964
+ .fs-col-xl-1 {
965
+ flex: 0 0 auto;
966
+ width: 8.3333333333%;
967
+ }
968
+ .fs-col-xl-2 {
969
+ flex: 0 0 auto;
970
+ width: 16.6666666667%;
971
+ }
972
+ .fs-col-xl-3 {
973
+ flex: 0 0 auto;
974
+ width: 25%;
975
+ }
976
+ .fs-col-xl-4 {
977
+ flex: 0 0 auto;
978
+ width: 33.3333333333%;
979
+ }
980
+ .fs-col-xl-5 {
981
+ flex: 0 0 auto;
982
+ width: 41.6666666667%;
983
+ }
984
+ .fs-col-xl-6 {
985
+ flex: 0 0 auto;
986
+ width: 50%;
987
+ }
988
+ .fs-col-xl-7 {
989
+ flex: 0 0 auto;
990
+ width: 58.3333333333%;
991
+ }
992
+ .fs-col-xl-8 {
993
+ flex: 0 0 auto;
994
+ width: 66.6666666667%;
995
+ }
996
+ .fs-col-xl-9 {
997
+ flex: 0 0 auto;
998
+ width: 75%;
999
+ }
1000
+ .fs-col-xl-10 {
1001
+ flex: 0 0 auto;
1002
+ width: 83.3333333333%;
1003
+ }
1004
+ .fs-col-xl-11 {
1005
+ flex: 0 0 auto;
1006
+ width: 91.6666666667%;
1007
+ }
1008
+ .fs-col-xl-12 {
1009
+ flex: 0 0 auto;
1010
+ width: 100%;
1011
+ }
1012
+ }
1013
+ @media (min-width: 1536px) {
1014
+ .fs-row-cols-xxl-auto > * {
1015
+ flex: 0 0 auto;
1016
+ width: auto;
1017
+ }
1018
+ .fs-row-cols-xxl-1 > * {
1019
+ flex: 0 0 auto;
1020
+ width: 100%;
1021
+ }
1022
+ .fs-row-cols-xxl-2 > * {
1023
+ flex: 0 0 auto;
1024
+ width: 50%;
1025
+ }
1026
+ .fs-row-cols-xxl-3 > * {
1027
+ flex: 0 0 auto;
1028
+ width: 33.3333333333%;
1029
+ }
1030
+ .fs-row-cols-xxl-4 > * {
1031
+ flex: 0 0 auto;
1032
+ width: 25%;
1033
+ }
1034
+ .fs-row-cols-xxl-5 > * {
1035
+ flex: 0 0 auto;
1036
+ width: 20%;
1037
+ }
1038
+ .fs-row-cols-xxl-6 > * {
1039
+ flex: 0 0 auto;
1040
+ width: 16.6666666667%;
1041
+ }
1042
+ .fs-order-xxl-0 {
1043
+ order: 0;
1044
+ }
1045
+ .fs-order-xxl-1 {
1046
+ order: 1;
1047
+ }
1048
+ .fs-order-xxl-2 {
1049
+ order: 2;
1050
+ }
1051
+ .fs-order-xxl-3 {
1052
+ order: 3;
1053
+ }
1054
+ .fs-order-xxl-4 {
1055
+ order: 4;
1056
+ }
1057
+ .fs-order-xxl-5 {
1058
+ order: 5;
1059
+ }
1060
+ .fs-order-xxl-6 {
1061
+ order: 6;
1062
+ }
1063
+ .fs-order-xxl-7 {
1064
+ order: 7;
1065
+ }
1066
+ .fs-order-xxl-8 {
1067
+ order: 8;
1068
+ }
1069
+ .fs-order-xxl-9 {
1070
+ order: 9;
1071
+ }
1072
+ .fs-order-xxl-10 {
1073
+ order: 10;
1074
+ }
1075
+ .fs-order-xxl-11 {
1076
+ order: 11;
1077
+ }
1078
+ .fs-order-xxl-12 {
1079
+ order: 12;
1080
+ }
1081
+ .fs-col-xxl {
1082
+ flex: 1 0 0%;
1083
+ }
1084
+ .fs-col-xxl-auto {
1085
+ flex: 0 0 auto;
1086
+ width: auto;
1087
+ }
1088
+ .fs-col-xxl-1 {
1089
+ flex: 0 0 auto;
1090
+ width: 8.3333333333%;
1091
+ }
1092
+ .fs-col-xxl-2 {
1093
+ flex: 0 0 auto;
1094
+ width: 16.6666666667%;
1095
+ }
1096
+ .fs-col-xxl-3 {
1097
+ flex: 0 0 auto;
1098
+ width: 25%;
1099
+ }
1100
+ .fs-col-xxl-4 {
1101
+ flex: 0 0 auto;
1102
+ width: 33.3333333333%;
1103
+ }
1104
+ .fs-col-xxl-5 {
1105
+ flex: 0 0 auto;
1106
+ width: 41.6666666667%;
1107
+ }
1108
+ .fs-col-xxl-6 {
1109
+ flex: 0 0 auto;
1110
+ width: 50%;
1111
+ }
1112
+ .fs-col-xxl-7 {
1113
+ flex: 0 0 auto;
1114
+ width: 58.3333333333%;
1115
+ }
1116
+ .fs-col-xxl-8 {
1117
+ flex: 0 0 auto;
1118
+ width: 66.6666666667%;
1119
+ }
1120
+ .fs-col-xxl-9 {
1121
+ flex: 0 0 auto;
1122
+ width: 75%;
1123
+ }
1124
+ .fs-col-xxl-10 {
1125
+ flex: 0 0 auto;
1126
+ width: 83.3333333333%;
1127
+ }
1128
+ .fs-col-xxl-11 {
1129
+ flex: 0 0 auto;
1130
+ width: 91.6666666667%;
1131
+ }
1132
+ .fs-col-xxl-12 {
1133
+ flex: 0 0 auto;
1134
+ width: 100%;
1135
+ }
1136
+ }
1137
+ @media (min-width: 1920px) {
1138
+ .fs-row-cols-xxxl-auto > * {
1139
+ flex: 0 0 auto;
1140
+ width: auto;
1141
+ }
1142
+ .fs-row-cols-xxxl-1 > * {
1143
+ flex: 0 0 auto;
1144
+ width: 100%;
1145
+ }
1146
+ .fs-row-cols-xxxl-2 > * {
1147
+ flex: 0 0 auto;
1148
+ width: 50%;
1149
+ }
1150
+ .fs-row-cols-xxxl-3 > * {
1151
+ flex: 0 0 auto;
1152
+ width: 33.3333333333%;
1153
+ }
1154
+ .fs-row-cols-xxxl-4 > * {
1155
+ flex: 0 0 auto;
1156
+ width: 25%;
1157
+ }
1158
+ .fs-row-cols-xxxl-5 > * {
1159
+ flex: 0 0 auto;
1160
+ width: 20%;
1161
+ }
1162
+ .fs-row-cols-xxxl-6 > * {
1163
+ flex: 0 0 auto;
1164
+ width: 16.6666666667%;
1165
+ }
1166
+ .fs-order-xxxl-0 {
1167
+ order: 0;
1168
+ }
1169
+ .fs-order-xxxl-1 {
1170
+ order: 1;
1171
+ }
1172
+ .fs-order-xxxl-2 {
1173
+ order: 2;
1174
+ }
1175
+ .fs-order-xxxl-3 {
1176
+ order: 3;
1177
+ }
1178
+ .fs-order-xxxl-4 {
1179
+ order: 4;
1180
+ }
1181
+ .fs-order-xxxl-5 {
1182
+ order: 5;
1183
+ }
1184
+ .fs-order-xxxl-6 {
1185
+ order: 6;
1186
+ }
1187
+ .fs-order-xxxl-7 {
1188
+ order: 7;
1189
+ }
1190
+ .fs-order-xxxl-8 {
1191
+ order: 8;
1192
+ }
1193
+ .fs-order-xxxl-9 {
1194
+ order: 9;
1195
+ }
1196
+ .fs-order-xxxl-10 {
1197
+ order: 10;
1198
+ }
1199
+ .fs-order-xxxl-11 {
1200
+ order: 11;
1201
+ }
1202
+ .fs-order-xxxl-12 {
1203
+ order: 12;
1204
+ }
1205
+ .fs-col-xxxl {
1206
+ flex: 1 0 0%;
1207
+ }
1208
+ .fs-col-xxxl-auto {
1209
+ flex: 0 0 auto;
1210
+ width: auto;
1211
+ }
1212
+ .fs-col-xxxl-1 {
1213
+ flex: 0 0 auto;
1214
+ width: 8.3333333333%;
1215
+ }
1216
+ .fs-col-xxxl-2 {
1217
+ flex: 0 0 auto;
1218
+ width: 16.6666666667%;
1219
+ }
1220
+ .fs-col-xxxl-3 {
1221
+ flex: 0 0 auto;
1222
+ width: 25%;
1223
+ }
1224
+ .fs-col-xxxl-4 {
1225
+ flex: 0 0 auto;
1226
+ width: 33.3333333333%;
1227
+ }
1228
+ .fs-col-xxxl-5 {
1229
+ flex: 0 0 auto;
1230
+ width: 41.6666666667%;
1231
+ }
1232
+ .fs-col-xxxl-6 {
1233
+ flex: 0 0 auto;
1234
+ width: 50%;
1235
+ }
1236
+ .fs-col-xxxl-7 {
1237
+ flex: 0 0 auto;
1238
+ width: 58.3333333333%;
1239
+ }
1240
+ .fs-col-xxxl-8 {
1241
+ flex: 0 0 auto;
1242
+ width: 66.6666666667%;
1243
+ }
1244
+ .fs-col-xxxl-9 {
1245
+ flex: 0 0 auto;
1246
+ width: 75%;
1247
+ }
1248
+ .fs-col-xxxl-10 {
1249
+ flex: 0 0 auto;
1250
+ width: 83.3333333333%;
1251
+ }
1252
+ .fs-col-xxxl-11 {
1253
+ flex: 0 0 auto;
1254
+ width: 91.6666666667%;
1255
+ }
1256
+ .fs-col-xxxl-12 {
1257
+ flex: 0 0 auto;
1258
+ width: 100%;
1259
+ }
1260
+ }
1261
+ }
1262
+ @layer layout {
1263
+ .fs-sidebar {
1264
+ display: flex;
1265
+ flex-wrap: wrap;
1266
+ gap: var(--fs-sidebar-gap, 1rem);
1267
+ }
1268
+ .fs-sidebar-aside {
1269
+ flex-basis: var(--fs-sidebar-width, 16rem);
1270
+ flex-grow: 1;
1271
+ }
1272
+ .fs-sidebar-content {
1273
+ flex-basis: 0;
1274
+ flex-grow: 999;
1275
+ min-width: 50%;
1276
+ }
1277
+ .fs-sidebar-reverse {
1278
+ flex-direction: row-reverse;
1279
+ }
1280
+ .fs-sidebar-gap-0 {
1281
+ --fs-sidebar-gap: 0;
1282
+ }
1283
+ .fs-sidebar-gap-1 {
1284
+ --fs-sidebar-gap: 0.25rem;
1285
+ }
1286
+ .fs-sidebar-gap-2 {
1287
+ --fs-sidebar-gap: 0.5rem;
1288
+ }
1289
+ .fs-sidebar-gap-3 {
1290
+ --fs-sidebar-gap: 1rem;
1291
+ }
1292
+ .fs-sidebar-gap-4 {
1293
+ --fs-sidebar-gap: 1.5rem;
1294
+ }
1295
+ .fs-sidebar-gap-5 {
1296
+ --fs-sidebar-gap: 3rem;
1297
+ }
1298
+ .fs-sidebar-width-sm {
1299
+ --fs-sidebar-width: 120px;
1300
+ }
1301
+ .fs-sidebar-width-md {
1302
+ --fs-sidebar-width: 240px;
1303
+ }
1304
+ .fs-sidebar-width-lg {
1305
+ --fs-sidebar-width: 360px;
1306
+ }
1307
+ .fs-sidebar-width-xl {
1308
+ --fs-sidebar-width: 480px;
1309
+ }
1310
+ .fs-sidebar-width-xxl {
1311
+ --fs-sidebar-width: 600px;
1312
+ }
1313
+ .fs-sidebar-width-xxxl {
1314
+ --fs-sidebar-width: 720px;
1315
+ }
1316
+ }
1317
+ @layer layout {
1318
+ .fs-stack {
1319
+ display: flex;
1320
+ flex-direction: column;
1321
+ gap: var(--fs-stack-gap, 1rem);
1322
+ }
1323
+ .fs-stack-gap-0 {
1324
+ --fs-stack-gap: 0;
1325
+ }
1326
+ .fs-stack-gap-1 {
1327
+ --fs-stack-gap: 0.25rem;
1328
+ }
1329
+ .fs-stack-gap-2 {
1330
+ --fs-stack-gap: 0.5rem;
1331
+ }
1332
+ .fs-stack-gap-3 {
1333
+ --fs-stack-gap: 1rem;
1334
+ }
1335
+ .fs-stack-gap-4 {
1336
+ --fs-stack-gap: 1.5rem;
1337
+ }
1338
+ .fs-stack-gap-5 {
1339
+ --fs-stack-gap: 3rem;
1340
+ }
1341
+ }
1342
+ @layer tokens {
1343
+ [data-fs-brand=violet] {
1344
+ --fs-color-primary: #6d28d9;
1345
+ --fs-alert-primary-bg: rgb(229.8834406263, 225.8717327657, 252.5458384302);
1346
+ --fs-alert-primary-text: rgb(37.7006407433, 8.7385189481, 83.109047167);
1347
+ --fs-feedback-primary-bg: rgb(229.8834406263, 225.8717327657, 252.5458384302);
1348
+ }
1349
+ [data-fs-brand=violet][data-theme=dark],
1350
+ [data-theme=dark] [data-fs-brand=violet] {
1351
+ --fs-color-primary: rgb(114.6495158739, 57.1165361442, 219.9746158745);
1352
+ --fs-alert-primary-bg: rgb(31.4819726714, 47.0564006856, 82.6607876597);
1353
+ --fs-alert-primary-text: rgb(167.4962913963, 147.746130571, 240.0249534535);
1354
+ --fs-feedback-primary-bg: rgb(31.4819726714, 47.0564006856, 82.6607876597);
1355
+ }
1356
+ @supports (color: oklch(0% 0 0deg)) {
1357
+ [data-fs-brand=violet] {
1358
+ --fs-color-primary: oklch(49.0666497236% 0.2412317343 292.5809393311deg);
1359
+ --fs-alert-primary-bg: oklch(92.3599974585% 0.0361847601 292.5809393311deg);
1360
+ --fs-alert-primary-text: oklch(24.5333248618% 0.1206158672 292.5809393311deg);
1361
+ --fs-feedback-primary-bg: oklch(92.3599974585% 0.0361847601 292.5809393311deg);
1362
+ }
1363
+ [data-fs-brand=violet][data-theme=dark],
1364
+ [data-theme=dark] [data-fs-brand=violet] {
1365
+ --fs-color-primary: oklch(51.6133172374% 0.2291701476 292.5809393311deg);
1366
+ --fs-alert-primary-bg: oklch(31.117092664% 0.067505667 264.9134801836deg);
1367
+ --fs-alert-primary-text: oklch(71.986657348% 0.1326774539 292.5809393311deg);
1368
+ --fs-feedback-primary-bg: oklch(31.117092664% 0.067505667 264.9134801836deg);
1369
+ }
1370
+ }
1371
+ [data-fs-brand=corporate] {
1372
+ --fs-color-primary: #1d4e89;
1373
+ --fs-alert-primary-bg: rgb(219.2237954153, 227.2186121739, 237.6990809983);
1374
+ --fs-alert-primary-text: rgb(5.0598830676, 24.6667463069, 49.4731905568);
1375
+ --fs-feedback-primary-bg: rgb(219.2237954153, 227.2186121739, 237.6990809983);
1376
+ }
1377
+ [data-fs-brand=corporate][data-theme=dark],
1378
+ [data-theme=dark] [data-fs-brand=corporate] {
1379
+ --fs-color-primary: rgb(40.8593466225, 86.5224214637, 143.0926598584);
1380
+ --fs-alert-primary-bg: rgb(31.2586947979, 46.3186220749, 70.1321749545);
1381
+ --fs-alert-primary-text: rgb(127.9940036809, 155.4045223568, 190.9765129762);
1382
+ --fs-feedback-primary-bg: rgb(31.2586947979, 46.3186220749, 70.1321749545);
1383
+ }
1384
+ [data-fs-brand=vibrant] {
1385
+ --fs-color-primary: #f2542d;
1386
+ --fs-alert-primary-bg: rgb(255, 231.3637253432, 224.6456124112);
1387
+ --fs-alert-primary-text: rgb(93.6202523577, 27.1894355526, 10.7919554552);
1388
+ --fs-feedback-primary-bg: rgb(255, 231.3637253432, 224.6456124112);
1389
+ }
1390
+ [data-fs-brand=vibrant][data-theme=dark],
1391
+ [data-theme=dark] [data-fs-brand=vibrant] {
1392
+ --fs-color-primary: rgb(244.0763687777, 94.774513804, 58.7750761343);
1393
+ --fs-alert-primary-bg: rgb(48.9487024594, 50.7990197305, 85.9119190034);
1394
+ --fs-alert-primary-text: rgb(255, 166.953251087, 144.6609410048);
1395
+ --fs-feedback-primary-bg: rgb(48.9487024594, 50.7990197305, 85.9119190034);
1396
+ }
1397
+ @supports (color: oklch(0% 0 0deg)) {
1398
+ [data-fs-brand=corporate] {
1399
+ --fs-color-primary: oklch(42.3377990386% 0.1112359961 255.1073474093deg);
1400
+ --fs-alert-primary-bg: oklch(91.3506698558% 0.0166853994 255.1073474093deg);
1401
+ --fs-alert-primary-text: oklch(21.1688995193% 0.055617998 255.1073474093deg);
1402
+ --fs-feedback-primary-bg: oklch(91.3506698558% 0.0166853994 255.1073474093deg);
1403
+ }
1404
+ [data-fs-brand=corporate][data-theme=dark],
1405
+ [data-theme=dark] [data-fs-brand=corporate] {
1406
+ --fs-color-primary: oklch(45.2209090867% 0.1056741963 255.1073474093deg);
1407
+ --fs-alert-primary-bg: oklch(30.1077650613% 0.0480063062 259.2924413953deg);
1408
+ --fs-alert-primary-text: oklch(68.2857894712% 0.0611797979 255.1073474093deg);
1409
+ --fs-feedback-primary-bg: oklch(30.1077650613% 0.0480063062 259.2924413953deg);
1410
+ }
1411
+ [data-fs-brand=vibrant] {
1412
+ --fs-color-primary: oklch(65.5786741493% 0.2007639921 34.7814711243deg);
1413
+ --fs-alert-primary-bg: oklch(94.8368011224% 0.0301145988 34.7814711243deg);
1414
+ --fs-alert-primary-text: oklch(32.7893370747% 0.1003819961 34.7814711243deg);
1415
+ --fs-feedback-primary-bg: oklch(94.8368011224% 0.0301145988 34.7814711243deg);
1416
+ }
1417
+ [data-fs-brand=vibrant][data-theme=dark],
1418
+ [data-theme=dark] [data-fs-brand=vibrant] {
1419
+ --fs-color-primary: oklch(67.2997404419% 0.1907257925 34.7814711243deg);
1420
+ --fs-alert-primary-bg: oklch(33.5938963279% 0.0614355056 280.2435599526deg);
1421
+ --fs-alert-primary-text: oklch(81.0682707821% 0.1104201957 34.7814711243deg);
1422
+ --fs-feedback-primary-bg: oklch(33.5938963279% 0.0614355056 280.2435599526deg);
1423
+ }
1424
+ }
1425
+ }
1426
+ @layer overrides {
1427
+ [data-fs-brand=vibrant] .fs-btn-primary,
1428
+ [data-fs-brand=vibrant] .fs-badge-primary {
1429
+ --fs-btn-color: #000000;
1430
+ --fs-badge-color: #000000;
1431
+ }
1432
+ [data-fs-brand=vibrant] .fs-check {
1433
+ --fs-check-mark: #000000;
1434
+ }
1435
+ }
1436
+ @layer tokens {
1437
+ [data-theme=dark],
1438
+ [data-fs-theme=dark] {
1439
+ --fs-color-text: #f1f3f4;
1440
+ --fs-color-muted: #bdc1c6;
1441
+ --fs-color-border: #3c4043;
1442
+ --fs-color-surface: #202124;
1443
+ --fs-color-subtle: #2b2c2f;
1444
+ --fs-color-bg-surface: var(--fs-color-surface);
1445
+ --fs-color-bg-subtle: var(--fs-color-subtle);
1446
+ --fs-color-surface-raised: var(--fs-color-surface);
1447
+ --fs-color-surface-interactive: var(--fs-color-subtle);
1448
+ --fs-color-text-primary: var(--fs-color-text);
1449
+ --fs-color-text-muted: var(--fs-color-muted);
1450
+ --fs-color-border-default: var(--fs-color-border);
1451
+ --fs-color-focus: var(--fs-color-primary);
1452
+ --fs-color-action-primary: var(--fs-color-primary);
1453
+ --fs-color-action-danger: var(--fs-color-danger);
1454
+ --fs-shadow-sm: 0 1px 3px rgb(0 0 0 / 50%), 0 1px 2px rgb(0 0 0 / 40%);
1455
+ --fs-shadow-md: 0 6px 12px rgb(0 0 0 / 55%), 0 3px 6px rgb(0 0 0 / 45%);
1456
+ --fs-shadow-lg: 0 15px 30px rgb(0 0 0 / 60%), 0 6px 12px rgb(0 0 0 / 50%);
1457
+ --fs-tooltip-bg: #f8fafc;
1458
+ --fs-tooltip-text: #1e293b;
1459
+ --fs-color-primary: rgb(39.8728684152, 106.2372587275, 232.1894887664);
1460
+ --fs-alert-primary-bg: rgb(30.765779113, 49.9974662348, 82.3021425489);
1461
+ --fs-alert-primary-text: rgb(130.6636212695, 172.0850768824, 246.4419684583);
1462
+ --fs-feedback-primary-bg: rgb(30.765779113, 49.9974662348, 82.3021425489);
1463
+ --fs-color-secondary: rgb(114.3557068426, 129.039220146, 150.1520317181);
1464
+ --fs-alert-secondary-bg: rgb(39.6548148226, 51.4270943358, 70.2648514061);
1465
+ --fs-alert-secondary-text: rgb(166.7597509121, 176.2809684237, 189.9919576187);
1466
+ --fs-feedback-secondary-bg: rgb(39.6548148226, 51.4270943358, 70.2648514061);
1467
+ --fs-color-success: rgb(134.4501166043, 226.9563331209, 149.6185042518);
1468
+ --fs-alert-success-bg: rgb(24.8621518491, 61.9088085702, 89.0318819222);
1469
+ --fs-alert-success-text: rgb(155.0475916512, 231.7231823866, 166.1609492581);
1470
+ --fs-feedback-success-bg: rgb(24.8621518491, 61.9088085702, 89.0318819222);
1471
+ --fs-color-warning: rgb(252.9400238762, 208.7461261831, 137.9221837268);
1472
+ --fs-alert-warning-bg: rgb(59.1359779173, 56.6792370273, 88.6687774507);
1473
+ --fs-alert-warning-text: rgb(253.5439861058, 216.1213263099, 157.1705651606);
1474
+ --fs-feedback-warning-bg: rgb(59.1359779173, 56.6792370273, 88.6687774507);
1475
+ --fs-color-danger: rgb(208.1189955268, 64.9740184262, 63.4302936954);
1476
+ --fs-alert-danger-bg: rgb(44.6823973866, 47.5125073063, 81.2083778204);
1477
+ --fs-alert-danger-text: rgb(235.4050745756, 149.9650253478, 142.4924034553);
1478
+ --fs-feedback-danger-bg: rgb(44.6823973866, 47.5125073063, 81.2083778204);
1479
+ --fs-color-info: #5e5cc7;
1480
+ --fs-alert-info-bg: rgb(35.0058091619, 49.6887857769, 78.5757788254);
1481
+ --fs-alert-info-text: rgb(160.628671266, 165.881962789, 227.610600335);
1482
+ --fs-feedback-info-bg: rgb(35.0058091619, 49.6887857769, 78.5757788254);
1483
+ }
1484
+ @supports (color: oklch(0% 0 0deg)) {
1485
+ [data-theme=dark],
1486
+ [data-fs-theme=dark] {
1487
+ --fs-color-text: oklch(96.2913383165% 0.002529697 228.7848682695deg);
1488
+ --fs-color-muted: oklch(80.9268110646% 0.0083071608 253.8653061211deg);
1489
+ --fs-color-border: oklch(36.8827622528% 0.0074489239 240.018838067deg);
1490
+ --fs-color-surface: oklch(24.7936263361% 0.0058460141 271.1764187765deg);
1491
+ --fs-color-subtle: oklch(29.3286259539% 0.0055990771 271.2234269855deg);
1492
+ --fs-color-bg-surface: var(--fs-color-surface);
1493
+ --fs-color-bg-subtle: var(--fs-color-subtle);
1494
+ --fs-color-surface-raised: var(--fs-color-surface);
1495
+ --fs-color-surface-interactive: var(--fs-color-subtle);
1496
+ --fs-color-text-primary: var(--fs-color-text);
1497
+ --fs-color-text-muted: var(--fs-color-muted);
1498
+ --fs-color-border-default: var(--fs-color-border);
1499
+ --fs-color-focus: var(--fs-color-primary);
1500
+ --fs-color-action-primary: var(--fs-color-primary);
1501
+ --fs-color-action-danger: var(--fs-color-danger);
1502
+ --fs-tooltip-bg: oklch(98.4151869501% 0.0034126992 247.8577745944deg);
1503
+ --fs-tooltip-text: oklch(27.9495237712% 0.0368481257 260.0309873929deg);
1504
+ --fs-color-primary: oklch(55.884857057% 0.2025537915 261.6264320248deg);
1505
+ --fs-alert-primary-bg: oklch(31.7915463198% 0.0633030844 260.2703040876deg);
1506
+ --fs-alert-primary-text: oklch(74.4596540856% 0.1172679846 261.6264320248deg);
1507
+ --fs-feedback-primary-bg: oklch(31.7915463198% 0.0633030844 260.2703040876deg);
1508
+ --fs-color-secondary: oklch(59.8951906896% 0.0366453387 257.4166191214deg);
1509
+ --fs-alert-secondary-bg: oklch(32.0729603204% 0.0374284633 259.6388321521deg);
1510
+ --fs-alert-secondary-text: oklch(75.4915054214% 0.0223943736 257.4166191214deg);
1511
+ --fs-feedback-secondary-bg: oklch(32.0729603204% 0.0374284633 259.6388321521deg);
1512
+ --fs-color-success: oklch(83.8485321344% 0.139498201 148.125846236deg);
1513
+ --fs-alert-success-bg: oklch(35.0298333903% 0.0635127994 243.2452162193deg);
1514
+ --fs-alert-success-text: oklch(86.3333733445% 0.1180369393 148.125846236deg);
1515
+ --fs-feedback-success-bg: oklch(35.0298333903% 0.0635127994 243.2452162193deg);
1516
+ --fs-color-warning: oklch(88.2682030181% 0.1015699084 78.6575213966deg);
1517
+ --fs-alert-warning-bg: oklch(36.0497574404% 0.0547601164 286.8249674934deg);
1518
+ --fs-alert-warning-text: oklch(90.0730948615% 0.0859437686 78.6575213966deg);
1519
+ --fs-feedback-warning-bg: oklch(36.0497574404% 0.0547601164 286.8249674934deg);
1520
+ --fs-color-danger: oklch(58.1670482336% 0.1802407312 25.2407937498deg);
1521
+ --fs-alert-danger-bg: oklch(32.151892295% 0.0597799696 278.8124583464deg);
1522
+ --fs-alert-danger-text: oklch(75.7809226615% 0.104349897 25.2407937498deg);
1523
+ --fs-feedback-danger-bg: oklch(32.151892295% 0.0597799696 278.8124583464deg);
1524
+ --fs-color-info: oklch(53.3359780029% 0.1620131129 280.2231949375deg);
1525
+ --fs-alert-info-bg: oklch(31.7574919059% 0.0556228738 263.0598185246deg);
1526
+ --fs-alert-info-text: oklch(74.3347879016% 0.0891072121 280.2231949375deg);
1527
+ --fs-feedback-info-bg: oklch(31.7574919059% 0.0556228738 263.0598185246deg);
1528
+ }
1529
+ }
1530
+ @media (prefers-color-scheme: dark) {
1531
+ [data-fs-theme=auto] {
1532
+ --fs-color-text: #f1f3f4;
1533
+ --fs-color-muted: #bdc1c6;
1534
+ --fs-color-border: #3c4043;
1535
+ --fs-color-surface: #202124;
1536
+ --fs-color-subtle: #2b2c2f;
1537
+ --fs-color-bg-surface: var(--fs-color-surface);
1538
+ --fs-color-bg-subtle: var(--fs-color-subtle);
1539
+ --fs-color-surface-raised: var(--fs-color-surface);
1540
+ --fs-color-surface-interactive: var(--fs-color-subtle);
1541
+ --fs-color-text-primary: var(--fs-color-text);
1542
+ --fs-color-text-muted: var(--fs-color-muted);
1543
+ --fs-color-border-default: var(--fs-color-border);
1544
+ --fs-color-focus: var(--fs-color-primary);
1545
+ --fs-tooltip-bg: #f8fafc;
1546
+ --fs-tooltip-text: #1e293b;
1547
+ }
1548
+ }
1549
+ @media (forced-colors: active) {
1550
+ :root,
1551
+ [data-theme=dark],
1552
+ [data-fs-theme=light],
1553
+ [data-fs-theme=dark],
1554
+ [data-fs-theme=auto] {
1555
+ --fs-color-border: CanvasText;
1556
+ --fs-color-text: CanvasText;
1557
+ --fs-color-surface: Canvas;
1558
+ --fs-color-subtle: Canvas;
1559
+ --fs-focus-color: Highlight;
1560
+ }
1561
+ }
1562
+ }
1563
+ /*# sourceMappingURL=fokus-core.css.map */