css-is-awesome 1.1.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 (198) hide show
  1. package/AGENTS.md +343 -0
  2. package/CHANGELOG.md +1036 -0
  3. package/CLAUDE.md +9 -0
  4. package/CONTRACT.md +580 -0
  5. package/GEMINI.md +9 -0
  6. package/LICENSE +21 -0
  7. package/LICENSE-third-party +88 -0
  8. package/MIGRATION.md +312 -0
  9. package/README.md +380 -0
  10. package/ROADMAP.md +714 -0
  11. package/THEMING.md +290 -0
  12. package/THREE-TIERS.md +158 -0
  13. package/VERSIONING.md +200 -0
  14. package/_index.scss +34 -0
  15. package/api.scss +16 -0
  16. package/bin/README.md +57 -0
  17. package/bin/cia.cjs +114 -0
  18. package/bin/migrate-bootstrap.cjs +427 -0
  19. package/bin/migrate-tailwind.cjs +832 -0
  20. package/css-is-awesome.instructions.md +533 -0
  21. package/dist/css-is-awesome.core.css +598 -0
  22. package/dist/css-is-awesome.core.min.css +1 -0
  23. package/dist/css-is-awesome.css +3733 -0
  24. package/dist/css-is-awesome.min.css +1 -0
  25. package/dist/css-is-awesome.utilities.css +2445 -0
  26. package/dist/css-is-awesome.utilities.min.css +1 -0
  27. package/dist/tokens.css +508 -0
  28. package/dist/tokens.d.ts +266 -0
  29. package/dist/tokens.min.css +1 -0
  30. package/figma-tokens/README.md +57 -0
  31. package/figma-tokens/primitives-brand.scss +121 -0
  32. package/figma-tokens/semantic-dark.scss +61 -0
  33. package/figma-tokens/semantic-light.scss +61 -0
  34. package/figma-tokens/tokens.json +144 -0
  35. package/llm.txt +183 -0
  36. package/mcp/server.cjs +1495 -0
  37. package/package.json +199 -0
  38. package/public/icons/README.md +278 -0
  39. package/public/icons/arrow-right.svg +4 -0
  40. package/public/icons/check.svg +4 -0
  41. package/public/icons/chevron-down.svg +4 -0
  42. package/public/icons/close.svg +4 -0
  43. package/public/icons/core/arrow-down.svg +13 -0
  44. package/public/icons/core/arrow-left.svg +13 -0
  45. package/public/icons/core/arrow-right.svg +13 -0
  46. package/public/icons/core/arrow-up.svg +13 -0
  47. package/public/icons/core/bell.svg +13 -0
  48. package/public/icons/core/calendar.svg +15 -0
  49. package/public/icons/core/check.svg +12 -0
  50. package/public/icons/core/chevron-down.svg +12 -0
  51. package/public/icons/core/chevron-left.svg +12 -0
  52. package/public/icons/core/chevron-right.svg +12 -0
  53. package/public/icons/core/chevron-up.svg +12 -0
  54. package/public/icons/core/clock.svg +13 -0
  55. package/public/icons/core/close.svg +13 -0
  56. package/public/icons/core/copy.svg +13 -0
  57. package/public/icons/core/download.svg +14 -0
  58. package/public/icons/core/edit.svg +13 -0
  59. package/public/icons/core/error.svg +14 -0
  60. package/public/icons/core/external-link.svg +14 -0
  61. package/public/icons/core/eye-off.svg +15 -0
  62. package/public/icons/core/eye.svg +13 -0
  63. package/public/icons/core/filter.svg +12 -0
  64. package/public/icons/core/heart.svg +12 -0
  65. package/public/icons/core/help.svg +14 -0
  66. package/public/icons/core/home.svg +13 -0
  67. package/public/icons/core/info.svg +14 -0
  68. package/public/icons/core/loading.svg +12 -0
  69. package/public/icons/core/lock.svg +13 -0
  70. package/public/icons/core/mail.svg +13 -0
  71. package/public/icons/core/menu.svg +14 -0
  72. package/public/icons/core/message.svg +12 -0
  73. package/public/icons/core/minus.svg +12 -0
  74. package/public/icons/core/more-horizontal.svg +14 -0
  75. package/public/icons/core/pause.svg +13 -0
  76. package/public/icons/core/play.svg +12 -0
  77. package/public/icons/core/plus.svg +13 -0
  78. package/public/icons/core/refresh.svg +15 -0
  79. package/public/icons/core/save.svg +14 -0
  80. package/public/icons/core/search.svg +13 -0
  81. package/public/icons/core/settings.svg +13 -0
  82. package/public/icons/core/share.svg +14 -0
  83. package/public/icons/core/sort.svg +15 -0
  84. package/public/icons/core/star.svg +12 -0
  85. package/public/icons/core/success.svg +13 -0
  86. package/public/icons/core/trash.svg +16 -0
  87. package/public/icons/core/unlock.svg +13 -0
  88. package/public/icons/core/upload.svg +14 -0
  89. package/public/icons/core/user.svg +13 -0
  90. package/public/icons/core/users.svg +15 -0
  91. package/public/icons/core/warning.svg +14 -0
  92. package/public/icons/download.svg +4 -0
  93. package/public/icons/edit.svg +4 -0
  94. package/public/icons/menu.svg +4 -0
  95. package/public/icons/search.svg +4 -0
  96. package/public/theme.css +4179 -0
  97. package/public/themes/README.md +102 -0
  98. package/public/themes/boilerplate/theme.css +154 -0
  99. package/public/themes/boilerplate-dark/theme.css +171 -0
  100. package/public/themes/boilerplate-light/theme.css +171 -0
  101. package/public/themes/cupertino/theme.css +165 -0
  102. package/public/themes/cupertino-dark/theme.css +200 -0
  103. package/public/themes/cupertino-light/theme.css +227 -0
  104. package/public/themes/glass/theme.css +190 -0
  105. package/public/themes/glass-dark/theme.css +201 -0
  106. package/public/themes/glass-light/theme.css +229 -0
  107. package/public/themes/graphite/theme.css +155 -0
  108. package/public/themes/graphite-dark/theme.css +223 -0
  109. package/public/themes/graphite-light/theme.css +191 -0
  110. package/public/themes/press/theme.css +189 -0
  111. package/public/themes/press-dark/theme.css +199 -0
  112. package/public/themes/press-light/theme.css +235 -0
  113. package/public/themes/prism/theme.css +159 -0
  114. package/public/themes/prism-dark/theme.css +185 -0
  115. package/public/themes/prism-light/theme.css +188 -0
  116. package/public/themes/sketchbook/theme.css +152 -0
  117. package/public/themes/sketchbook-dark/theme.css +194 -0
  118. package/public/themes/sketchbook-light/theme.css +188 -0
  119. package/public/themes/terminal/theme.css +159 -0
  120. package/public/themes/terminal-dark/theme.css +229 -0
  121. package/public/themes/terminal-light/theme.css +152 -0
  122. package/scripts/README.md +70 -0
  123. package/scripts/icon-contract.json +67 -0
  124. package/scripts/icon-validator.js +205 -0
  125. package/scripts/prepare-dist.mjs +65 -0
  126. package/scripts/theme-a11y.js +415 -0
  127. package/scripts/theme-contract.json +171 -0
  128. package/scripts/theme-validator.js +674 -0
  129. package/scss/README.md +55 -0
  130. package/scss/_animations-utilities.scss +107 -0
  131. package/scss/_animations.scss +248 -0
  132. package/scss/_app-styles.scss +15 -0
  133. package/scss/_generator.scss +174 -0
  134. package/scss/_icons.scss +475 -0
  135. package/scss/_index.scss +17 -0
  136. package/scss/_layout.scss +597 -0
  137. package/scss/_mixins.scss +1036 -0
  138. package/scss/_system.scss +291 -0
  139. package/scss/_utilities.scss +377 -0
  140. package/scss/api.scss +61 -0
  141. package/scss/components/_accordion.scss +72 -0
  142. package/scss/components/_buttons.scss +171 -0
  143. package/scss/components/_copy-button.scss +69 -0
  144. package/scss/components/_data.scss +190 -0
  145. package/scss/components/_feedback.scss +197 -0
  146. package/scss/components/_forms.scss +272 -0
  147. package/scss/components/_index.scss +17 -0
  148. package/scss/components/_navigation.scss +186 -0
  149. package/scss/components/_overlay.scss +259 -0
  150. package/scss/components/_stepper.scss +159 -0
  151. package/scss/components/_tabs.scss +72 -0
  152. package/scss/core.scss +54 -0
  153. package/scss/examples/_theming.scss +107 -0
  154. package/scss/examples/_usage.scss +317 -0
  155. package/scss/main.scss +64 -0
  156. package/scss/recipes/README.md +110 -0
  157. package/scss/recipes/_bare-tags.scss +232 -0
  158. package/scss/recipes/_recipe-template.md +119 -0
  159. package/scss/recipes/combobox.md +509 -0
  160. package/scss/recipes/dialog.md +265 -0
  161. package/scss/recipes/print-to-pdf.md +263 -0
  162. package/scss/theme/README.md +67 -0
  163. package/scss/theme/_brand.scss +18 -0
  164. package/scss/theme/_colors-dark.scss +68 -0
  165. package/scss/theme/_colors-light.scss +70 -0
  166. package/scss/theme/_components.scss +94 -0
  167. package/scss/theme/_icons.scss +104 -0
  168. package/scss/theme/_index.scss +62 -0
  169. package/scss/theme/_shadows.scss +65 -0
  170. package/scss/theme/_shape.scss +13 -0
  171. package/scss/theme/_typography.scss +9 -0
  172. package/scss/theme/registry.json +447 -0
  173. package/scss/themes/boilerplate-dark.scss +212 -0
  174. package/scss/themes/boilerplate-light.scss +209 -0
  175. package/scss/themes/boilerplate.scss +181 -0
  176. package/scss/themes/cupertino-dark.scss +238 -0
  177. package/scss/themes/cupertino-light.scss +266 -0
  178. package/scss/themes/cupertino.scss +194 -0
  179. package/scss/themes/glass-dark.scss +238 -0
  180. package/scss/themes/glass-light.scss +266 -0
  181. package/scss/themes/glass.scss +220 -0
  182. package/scss/themes/graphite-dark.scss +260 -0
  183. package/scss/themes/graphite-light.scss +228 -0
  184. package/scss/themes/graphite.scss +182 -0
  185. package/scss/themes/press-dark.scss +237 -0
  186. package/scss/themes/press-light.scss +273 -0
  187. package/scss/themes/press.scss +241 -0
  188. package/scss/themes/prism-dark.scss +217 -0
  189. package/scss/themes/prism-light.scss +220 -0
  190. package/scss/themes/prism.scss +190 -0
  191. package/scss/themes/sketchbook-dark.scss +231 -0
  192. package/scss/themes/sketchbook-light.scss +231 -0
  193. package/scss/themes/sketchbook.scss +178 -0
  194. package/scss/themes/terminal-dark.scss +267 -0
  195. package/scss/themes/terminal-light.scss +175 -0
  196. package/scss/themes/terminal.scss +185 -0
  197. package/scss/tokens.scss +23 -0
  198. package/scss/utilities-only.scss +4 -0
@@ -0,0 +1,3733 @@
1
+ @keyframes cia-fade-in {
2
+ from {
3
+ opacity: 0;
4
+ }
5
+ to {
6
+ opacity: 1;
7
+ }
8
+ }
9
+ @keyframes cia-fade-out {
10
+ from {
11
+ opacity: 1;
12
+ }
13
+ to {
14
+ opacity: 0;
15
+ }
16
+ }
17
+ @keyframes cia-slide-up {
18
+ from {
19
+ opacity: 0;
20
+ transform: translateY(8px);
21
+ }
22
+ to {
23
+ opacity: 1;
24
+ transform: translateY(0);
25
+ }
26
+ }
27
+ @keyframes cia-slide-down {
28
+ from {
29
+ opacity: 0;
30
+ transform: translateY(-8px);
31
+ }
32
+ to {
33
+ opacity: 1;
34
+ transform: translateY(0);
35
+ }
36
+ }
37
+ @keyframes cia-slide-left {
38
+ from {
39
+ opacity: 0;
40
+ transform: translateX(8px);
41
+ }
42
+ to {
43
+ opacity: 1;
44
+ transform: translateX(0);
45
+ }
46
+ }
47
+ @keyframes cia-slide-right {
48
+ from {
49
+ opacity: 0;
50
+ transform: translateX(-8px);
51
+ }
52
+ to {
53
+ opacity: 1;
54
+ transform: translateX(0);
55
+ }
56
+ }
57
+ @keyframes cia-scale-in {
58
+ from {
59
+ opacity: 0;
60
+ transform: scale(0.96);
61
+ }
62
+ to {
63
+ opacity: 1;
64
+ transform: scale(1);
65
+ }
66
+ }
67
+ @keyframes cia-pop {
68
+ 0% {
69
+ transform: scale(1);
70
+ }
71
+ 40% {
72
+ transform: scale(1.06);
73
+ }
74
+ 100% {
75
+ transform: scale(1);
76
+ }
77
+ }
78
+ @keyframes cia-pulse {
79
+ 0%, 100% {
80
+ opacity: 1;
81
+ }
82
+ 50% {
83
+ opacity: 0.55;
84
+ }
85
+ }
86
+ @keyframes cia-shimmer {
87
+ 0% {
88
+ background-position: -200% 0;
89
+ }
90
+ 100% {
91
+ background-position: 200% 0;
92
+ }
93
+ }
94
+ @keyframes cia-spin {
95
+ from {
96
+ transform: rotate(0deg);
97
+ }
98
+ to {
99
+ transform: rotate(360deg);
100
+ }
101
+ }
102
+ @keyframes cia-wiggle {
103
+ 0%, 100% {
104
+ transform: rotate(0deg);
105
+ }
106
+ 25% {
107
+ transform: rotate(-2deg);
108
+ }
109
+ 75% {
110
+ transform: rotate(2deg);
111
+ }
112
+ }
113
+ .cia-anim-fade-in {
114
+ animation-name: cia-fade-in;
115
+ animation-duration: var(--duration-normal, 240ms);
116
+ animation-delay: 0s;
117
+ animation-iteration-count: 1;
118
+ animation-fill-mode: both;
119
+ animation-timing-function: var(--ease, cubic-bezier(0.33, 0.66, 0.33, 1));
120
+ }
121
+ @media (prefers-reduced-motion: reduce) {
122
+ .cia-anim-fade-in {
123
+ /* stylelint-disable declaration-no-important -- !important is the canonical pattern for honoring prefers-reduced-motion: it must override any inline animation declared by component author or third-party CSS. */
124
+ animation-duration: 0.01ms !important;
125
+ animation-iteration-count: 1 !important;
126
+ /* stylelint-enable declaration-no-important */
127
+ }
128
+ }
129
+
130
+ .cia-anim-fade-in-fast {
131
+ animation-name: cia-fade-in;
132
+ animation-duration: var(--duration-fast, 180ms);
133
+ animation-delay: 0s;
134
+ animation-iteration-count: 1;
135
+ animation-fill-mode: both;
136
+ animation-timing-function: var(--ease, cubic-bezier(0.33, 0.66, 0.33, 1));
137
+ }
138
+ @media (prefers-reduced-motion: reduce) {
139
+ .cia-anim-fade-in-fast {
140
+ /* stylelint-disable declaration-no-important -- !important is the canonical pattern for honoring prefers-reduced-motion: it must override any inline animation declared by component author or third-party CSS. */
141
+ animation-duration: 0.01ms !important;
142
+ animation-iteration-count: 1 !important;
143
+ /* stylelint-enable declaration-no-important */
144
+ }
145
+ }
146
+
147
+ .cia-anim-fade-in-slow {
148
+ animation-name: cia-fade-in;
149
+ animation-duration: var(--duration-slow, 380ms);
150
+ animation-delay: 0s;
151
+ animation-iteration-count: 1;
152
+ animation-fill-mode: both;
153
+ animation-timing-function: var(--ease, cubic-bezier(0.33, 0.66, 0.33, 1));
154
+ }
155
+ @media (prefers-reduced-motion: reduce) {
156
+ .cia-anim-fade-in-slow {
157
+ /* stylelint-disable declaration-no-important -- !important is the canonical pattern for honoring prefers-reduced-motion: it must override any inline animation declared by component author or third-party CSS. */
158
+ animation-duration: 0.01ms !important;
159
+ animation-iteration-count: 1 !important;
160
+ /* stylelint-enable declaration-no-important */
161
+ }
162
+ }
163
+
164
+ .cia-anim-fade-out {
165
+ animation-name: cia-fade-out;
166
+ animation-duration: var(--duration-normal, 240ms);
167
+ animation-delay: 0s;
168
+ animation-iteration-count: 1;
169
+ animation-fill-mode: both;
170
+ animation-timing-function: var(--ease, cubic-bezier(0.33, 0.66, 0.33, 1));
171
+ }
172
+ @media (prefers-reduced-motion: reduce) {
173
+ .cia-anim-fade-out {
174
+ /* stylelint-disable declaration-no-important -- !important is the canonical pattern for honoring prefers-reduced-motion: it must override any inline animation declared by component author or third-party CSS. */
175
+ animation-duration: 0.01ms !important;
176
+ animation-iteration-count: 1 !important;
177
+ /* stylelint-enable declaration-no-important */
178
+ }
179
+ }
180
+
181
+ .cia-anim-fade-out-fast {
182
+ animation-name: cia-fade-out;
183
+ animation-duration: var(--duration-fast, 180ms);
184
+ animation-delay: 0s;
185
+ animation-iteration-count: 1;
186
+ animation-fill-mode: both;
187
+ animation-timing-function: var(--ease, cubic-bezier(0.33, 0.66, 0.33, 1));
188
+ }
189
+ @media (prefers-reduced-motion: reduce) {
190
+ .cia-anim-fade-out-fast {
191
+ /* stylelint-disable declaration-no-important -- !important is the canonical pattern for honoring prefers-reduced-motion: it must override any inline animation declared by component author or third-party CSS. */
192
+ animation-duration: 0.01ms !important;
193
+ animation-iteration-count: 1 !important;
194
+ /* stylelint-enable declaration-no-important */
195
+ }
196
+ }
197
+
198
+ .cia-anim-fade-out-slow {
199
+ animation-name: cia-fade-out;
200
+ animation-duration: var(--duration-slow, 380ms);
201
+ animation-delay: 0s;
202
+ animation-iteration-count: 1;
203
+ animation-fill-mode: both;
204
+ animation-timing-function: var(--ease, cubic-bezier(0.33, 0.66, 0.33, 1));
205
+ }
206
+ @media (prefers-reduced-motion: reduce) {
207
+ .cia-anim-fade-out-slow {
208
+ /* stylelint-disable declaration-no-important -- !important is the canonical pattern for honoring prefers-reduced-motion: it must override any inline animation declared by component author or third-party CSS. */
209
+ animation-duration: 0.01ms !important;
210
+ animation-iteration-count: 1 !important;
211
+ /* stylelint-enable declaration-no-important */
212
+ }
213
+ }
214
+
215
+ .cia-anim-slide-up {
216
+ animation-name: cia-slide-up;
217
+ animation-duration: var(--duration-normal, 240ms);
218
+ animation-delay: 0s;
219
+ animation-iteration-count: 1;
220
+ animation-fill-mode: both;
221
+ animation-timing-function: var(--ease, cubic-bezier(0.33, 0.66, 0.33, 1));
222
+ }
223
+ @media (prefers-reduced-motion: reduce) {
224
+ .cia-anim-slide-up {
225
+ /* stylelint-disable declaration-no-important -- !important is the canonical pattern for honoring prefers-reduced-motion: it must override any inline animation declared by component author or third-party CSS. */
226
+ animation-duration: 0.01ms !important;
227
+ animation-iteration-count: 1 !important;
228
+ /* stylelint-enable declaration-no-important */
229
+ }
230
+ }
231
+
232
+ .cia-anim-slide-up-fast {
233
+ animation-name: cia-slide-up;
234
+ animation-duration: var(--duration-fast, 180ms);
235
+ animation-delay: 0s;
236
+ animation-iteration-count: 1;
237
+ animation-fill-mode: both;
238
+ animation-timing-function: var(--ease, cubic-bezier(0.33, 0.66, 0.33, 1));
239
+ }
240
+ @media (prefers-reduced-motion: reduce) {
241
+ .cia-anim-slide-up-fast {
242
+ /* stylelint-disable declaration-no-important -- !important is the canonical pattern for honoring prefers-reduced-motion: it must override any inline animation declared by component author or third-party CSS. */
243
+ animation-duration: 0.01ms !important;
244
+ animation-iteration-count: 1 !important;
245
+ /* stylelint-enable declaration-no-important */
246
+ }
247
+ }
248
+
249
+ .cia-anim-slide-up-slow {
250
+ animation-name: cia-slide-up;
251
+ animation-duration: var(--duration-slow, 380ms);
252
+ animation-delay: 0s;
253
+ animation-iteration-count: 1;
254
+ animation-fill-mode: both;
255
+ animation-timing-function: var(--ease, cubic-bezier(0.33, 0.66, 0.33, 1));
256
+ }
257
+ @media (prefers-reduced-motion: reduce) {
258
+ .cia-anim-slide-up-slow {
259
+ /* stylelint-disable declaration-no-important -- !important is the canonical pattern for honoring prefers-reduced-motion: it must override any inline animation declared by component author or third-party CSS. */
260
+ animation-duration: 0.01ms !important;
261
+ animation-iteration-count: 1 !important;
262
+ /* stylelint-enable declaration-no-important */
263
+ }
264
+ }
265
+
266
+ .cia-anim-slide-down {
267
+ animation-name: cia-slide-down;
268
+ animation-duration: var(--duration-normal, 240ms);
269
+ animation-delay: 0s;
270
+ animation-iteration-count: 1;
271
+ animation-fill-mode: both;
272
+ animation-timing-function: var(--ease, cubic-bezier(0.33, 0.66, 0.33, 1));
273
+ }
274
+ @media (prefers-reduced-motion: reduce) {
275
+ .cia-anim-slide-down {
276
+ /* stylelint-disable declaration-no-important -- !important is the canonical pattern for honoring prefers-reduced-motion: it must override any inline animation declared by component author or third-party CSS. */
277
+ animation-duration: 0.01ms !important;
278
+ animation-iteration-count: 1 !important;
279
+ /* stylelint-enable declaration-no-important */
280
+ }
281
+ }
282
+
283
+ .cia-anim-slide-down-fast {
284
+ animation-name: cia-slide-down;
285
+ animation-duration: var(--duration-fast, 180ms);
286
+ animation-delay: 0s;
287
+ animation-iteration-count: 1;
288
+ animation-fill-mode: both;
289
+ animation-timing-function: var(--ease, cubic-bezier(0.33, 0.66, 0.33, 1));
290
+ }
291
+ @media (prefers-reduced-motion: reduce) {
292
+ .cia-anim-slide-down-fast {
293
+ /* stylelint-disable declaration-no-important -- !important is the canonical pattern for honoring prefers-reduced-motion: it must override any inline animation declared by component author or third-party CSS. */
294
+ animation-duration: 0.01ms !important;
295
+ animation-iteration-count: 1 !important;
296
+ /* stylelint-enable declaration-no-important */
297
+ }
298
+ }
299
+
300
+ .cia-anim-slide-down-slow {
301
+ animation-name: cia-slide-down;
302
+ animation-duration: var(--duration-slow, 380ms);
303
+ animation-delay: 0s;
304
+ animation-iteration-count: 1;
305
+ animation-fill-mode: both;
306
+ animation-timing-function: var(--ease, cubic-bezier(0.33, 0.66, 0.33, 1));
307
+ }
308
+ @media (prefers-reduced-motion: reduce) {
309
+ .cia-anim-slide-down-slow {
310
+ /* stylelint-disable declaration-no-important -- !important is the canonical pattern for honoring prefers-reduced-motion: it must override any inline animation declared by component author or third-party CSS. */
311
+ animation-duration: 0.01ms !important;
312
+ animation-iteration-count: 1 !important;
313
+ /* stylelint-enable declaration-no-important */
314
+ }
315
+ }
316
+
317
+ .cia-anim-slide-left {
318
+ animation-name: cia-slide-left;
319
+ animation-duration: var(--duration-normal, 240ms);
320
+ animation-delay: 0s;
321
+ animation-iteration-count: 1;
322
+ animation-fill-mode: both;
323
+ animation-timing-function: var(--ease, cubic-bezier(0.33, 0.66, 0.33, 1));
324
+ }
325
+ @media (prefers-reduced-motion: reduce) {
326
+ .cia-anim-slide-left {
327
+ /* stylelint-disable declaration-no-important -- !important is the canonical pattern for honoring prefers-reduced-motion: it must override any inline animation declared by component author or third-party CSS. */
328
+ animation-duration: 0.01ms !important;
329
+ animation-iteration-count: 1 !important;
330
+ /* stylelint-enable declaration-no-important */
331
+ }
332
+ }
333
+
334
+ .cia-anim-slide-left-fast {
335
+ animation-name: cia-slide-left;
336
+ animation-duration: var(--duration-fast, 180ms);
337
+ animation-delay: 0s;
338
+ animation-iteration-count: 1;
339
+ animation-fill-mode: both;
340
+ animation-timing-function: var(--ease, cubic-bezier(0.33, 0.66, 0.33, 1));
341
+ }
342
+ @media (prefers-reduced-motion: reduce) {
343
+ .cia-anim-slide-left-fast {
344
+ /* stylelint-disable declaration-no-important -- !important is the canonical pattern for honoring prefers-reduced-motion: it must override any inline animation declared by component author or third-party CSS. */
345
+ animation-duration: 0.01ms !important;
346
+ animation-iteration-count: 1 !important;
347
+ /* stylelint-enable declaration-no-important */
348
+ }
349
+ }
350
+
351
+ .cia-anim-slide-left-slow {
352
+ animation-name: cia-slide-left;
353
+ animation-duration: var(--duration-slow, 380ms);
354
+ animation-delay: 0s;
355
+ animation-iteration-count: 1;
356
+ animation-fill-mode: both;
357
+ animation-timing-function: var(--ease, cubic-bezier(0.33, 0.66, 0.33, 1));
358
+ }
359
+ @media (prefers-reduced-motion: reduce) {
360
+ .cia-anim-slide-left-slow {
361
+ /* stylelint-disable declaration-no-important -- !important is the canonical pattern for honoring prefers-reduced-motion: it must override any inline animation declared by component author or third-party CSS. */
362
+ animation-duration: 0.01ms !important;
363
+ animation-iteration-count: 1 !important;
364
+ /* stylelint-enable declaration-no-important */
365
+ }
366
+ }
367
+
368
+ .cia-anim-slide-right {
369
+ animation-name: cia-slide-right;
370
+ animation-duration: var(--duration-normal, 240ms);
371
+ animation-delay: 0s;
372
+ animation-iteration-count: 1;
373
+ animation-fill-mode: both;
374
+ animation-timing-function: var(--ease, cubic-bezier(0.33, 0.66, 0.33, 1));
375
+ }
376
+ @media (prefers-reduced-motion: reduce) {
377
+ .cia-anim-slide-right {
378
+ /* stylelint-disable declaration-no-important -- !important is the canonical pattern for honoring prefers-reduced-motion: it must override any inline animation declared by component author or third-party CSS. */
379
+ animation-duration: 0.01ms !important;
380
+ animation-iteration-count: 1 !important;
381
+ /* stylelint-enable declaration-no-important */
382
+ }
383
+ }
384
+
385
+ .cia-anim-slide-right-fast {
386
+ animation-name: cia-slide-right;
387
+ animation-duration: var(--duration-fast, 180ms);
388
+ animation-delay: 0s;
389
+ animation-iteration-count: 1;
390
+ animation-fill-mode: both;
391
+ animation-timing-function: var(--ease, cubic-bezier(0.33, 0.66, 0.33, 1));
392
+ }
393
+ @media (prefers-reduced-motion: reduce) {
394
+ .cia-anim-slide-right-fast {
395
+ /* stylelint-disable declaration-no-important -- !important is the canonical pattern for honoring prefers-reduced-motion: it must override any inline animation declared by component author or third-party CSS. */
396
+ animation-duration: 0.01ms !important;
397
+ animation-iteration-count: 1 !important;
398
+ /* stylelint-enable declaration-no-important */
399
+ }
400
+ }
401
+
402
+ .cia-anim-slide-right-slow {
403
+ animation-name: cia-slide-right;
404
+ animation-duration: var(--duration-slow, 380ms);
405
+ animation-delay: 0s;
406
+ animation-iteration-count: 1;
407
+ animation-fill-mode: both;
408
+ animation-timing-function: var(--ease, cubic-bezier(0.33, 0.66, 0.33, 1));
409
+ }
410
+ @media (prefers-reduced-motion: reduce) {
411
+ .cia-anim-slide-right-slow {
412
+ /* stylelint-disable declaration-no-important -- !important is the canonical pattern for honoring prefers-reduced-motion: it must override any inline animation declared by component author or third-party CSS. */
413
+ animation-duration: 0.01ms !important;
414
+ animation-iteration-count: 1 !important;
415
+ /* stylelint-enable declaration-no-important */
416
+ }
417
+ }
418
+
419
+ .cia-anim-scale-in {
420
+ animation-name: cia-scale-in;
421
+ animation-duration: var(--duration-normal, 240ms);
422
+ animation-delay: 0s;
423
+ animation-iteration-count: 1;
424
+ animation-fill-mode: both;
425
+ animation-timing-function: var(--ease, cubic-bezier(0.33, 0.66, 0.33, 1));
426
+ }
427
+ @media (prefers-reduced-motion: reduce) {
428
+ .cia-anim-scale-in {
429
+ /* stylelint-disable declaration-no-important -- !important is the canonical pattern for honoring prefers-reduced-motion: it must override any inline animation declared by component author or third-party CSS. */
430
+ animation-duration: 0.01ms !important;
431
+ animation-iteration-count: 1 !important;
432
+ /* stylelint-enable declaration-no-important */
433
+ }
434
+ }
435
+
436
+ .cia-anim-scale-in-fast {
437
+ animation-name: cia-scale-in;
438
+ animation-duration: var(--duration-fast, 180ms);
439
+ animation-delay: 0s;
440
+ animation-iteration-count: 1;
441
+ animation-fill-mode: both;
442
+ animation-timing-function: var(--ease, cubic-bezier(0.33, 0.66, 0.33, 1));
443
+ }
444
+ @media (prefers-reduced-motion: reduce) {
445
+ .cia-anim-scale-in-fast {
446
+ /* stylelint-disable declaration-no-important -- !important is the canonical pattern for honoring prefers-reduced-motion: it must override any inline animation declared by component author or third-party CSS. */
447
+ animation-duration: 0.01ms !important;
448
+ animation-iteration-count: 1 !important;
449
+ /* stylelint-enable declaration-no-important */
450
+ }
451
+ }
452
+
453
+ .cia-anim-scale-in-slow {
454
+ animation-name: cia-scale-in;
455
+ animation-duration: var(--duration-slow, 380ms);
456
+ animation-delay: 0s;
457
+ animation-iteration-count: 1;
458
+ animation-fill-mode: both;
459
+ animation-timing-function: var(--ease, cubic-bezier(0.33, 0.66, 0.33, 1));
460
+ }
461
+ @media (prefers-reduced-motion: reduce) {
462
+ .cia-anim-scale-in-slow {
463
+ /* stylelint-disable declaration-no-important -- !important is the canonical pattern for honoring prefers-reduced-motion: it must override any inline animation declared by component author or third-party CSS. */
464
+ animation-duration: 0.01ms !important;
465
+ animation-iteration-count: 1 !important;
466
+ /* stylelint-enable declaration-no-important */
467
+ }
468
+ }
469
+
470
+ .cia-anim-pop {
471
+ animation-name: cia-pop;
472
+ animation-duration: var(--duration-normal, 240ms);
473
+ animation-delay: 0s;
474
+ animation-iteration-count: 1;
475
+ animation-fill-mode: both;
476
+ animation-timing-function: var(--ease, cubic-bezier(0.33, 0.66, 0.33, 1));
477
+ }
478
+ @media (prefers-reduced-motion: reduce) {
479
+ .cia-anim-pop {
480
+ /* stylelint-disable declaration-no-important -- !important is the canonical pattern for honoring prefers-reduced-motion: it must override any inline animation declared by component author or third-party CSS. */
481
+ animation-duration: 0.01ms !important;
482
+ animation-iteration-count: 1 !important;
483
+ /* stylelint-enable declaration-no-important */
484
+ }
485
+ }
486
+
487
+ .cia-anim-pop-fast {
488
+ animation-name: cia-pop;
489
+ animation-duration: var(--duration-fast, 180ms);
490
+ animation-delay: 0s;
491
+ animation-iteration-count: 1;
492
+ animation-fill-mode: both;
493
+ animation-timing-function: var(--ease, cubic-bezier(0.33, 0.66, 0.33, 1));
494
+ }
495
+ @media (prefers-reduced-motion: reduce) {
496
+ .cia-anim-pop-fast {
497
+ /* stylelint-disable declaration-no-important -- !important is the canonical pattern for honoring prefers-reduced-motion: it must override any inline animation declared by component author or third-party CSS. */
498
+ animation-duration: 0.01ms !important;
499
+ animation-iteration-count: 1 !important;
500
+ /* stylelint-enable declaration-no-important */
501
+ }
502
+ }
503
+
504
+ .cia-anim-pop-slow {
505
+ animation-name: cia-pop;
506
+ animation-duration: var(--duration-slow, 380ms);
507
+ animation-delay: 0s;
508
+ animation-iteration-count: 1;
509
+ animation-fill-mode: both;
510
+ animation-timing-function: var(--ease, cubic-bezier(0.33, 0.66, 0.33, 1));
511
+ }
512
+ @media (prefers-reduced-motion: reduce) {
513
+ .cia-anim-pop-slow {
514
+ /* stylelint-disable declaration-no-important -- !important is the canonical pattern for honoring prefers-reduced-motion: it must override any inline animation declared by component author or third-party CSS. */
515
+ animation-duration: 0.01ms !important;
516
+ animation-iteration-count: 1 !important;
517
+ /* stylelint-enable declaration-no-important */
518
+ }
519
+ }
520
+
521
+ .cia-anim-wiggle {
522
+ animation-name: cia-wiggle;
523
+ animation-duration: var(--duration-normal, 240ms);
524
+ animation-delay: 0s;
525
+ animation-iteration-count: 1;
526
+ animation-fill-mode: both;
527
+ animation-timing-function: var(--ease, cubic-bezier(0.33, 0.66, 0.33, 1));
528
+ }
529
+ @media (prefers-reduced-motion: reduce) {
530
+ .cia-anim-wiggle {
531
+ /* stylelint-disable declaration-no-important -- !important is the canonical pattern for honoring prefers-reduced-motion: it must override any inline animation declared by component author or third-party CSS. */
532
+ animation-duration: 0.01ms !important;
533
+ animation-iteration-count: 1 !important;
534
+ /* stylelint-enable declaration-no-important */
535
+ }
536
+ }
537
+
538
+ .cia-anim-wiggle-fast {
539
+ animation-name: cia-wiggle;
540
+ animation-duration: var(--duration-fast, 180ms);
541
+ animation-delay: 0s;
542
+ animation-iteration-count: 1;
543
+ animation-fill-mode: both;
544
+ animation-timing-function: var(--ease, cubic-bezier(0.33, 0.66, 0.33, 1));
545
+ }
546
+ @media (prefers-reduced-motion: reduce) {
547
+ .cia-anim-wiggle-fast {
548
+ /* stylelint-disable declaration-no-important -- !important is the canonical pattern for honoring prefers-reduced-motion: it must override any inline animation declared by component author or third-party CSS. */
549
+ animation-duration: 0.01ms !important;
550
+ animation-iteration-count: 1 !important;
551
+ /* stylelint-enable declaration-no-important */
552
+ }
553
+ }
554
+
555
+ .cia-anim-wiggle-slow {
556
+ animation-name: cia-wiggle;
557
+ animation-duration: var(--duration-slow, 380ms);
558
+ animation-delay: 0s;
559
+ animation-iteration-count: 1;
560
+ animation-fill-mode: both;
561
+ animation-timing-function: var(--ease, cubic-bezier(0.33, 0.66, 0.33, 1));
562
+ }
563
+ @media (prefers-reduced-motion: reduce) {
564
+ .cia-anim-wiggle-slow {
565
+ /* stylelint-disable declaration-no-important -- !important is the canonical pattern for honoring prefers-reduced-motion: it must override any inline animation declared by component author or third-party CSS. */
566
+ animation-duration: 0.01ms !important;
567
+ animation-iteration-count: 1 !important;
568
+ /* stylelint-enable declaration-no-important */
569
+ }
570
+ }
571
+
572
+ .cia-anim-spin {
573
+ animation-name: cia-spin;
574
+ animation-duration: var(--duration-slow, 380ms);
575
+ animation-delay: 0s;
576
+ animation-iteration-count: infinite;
577
+ animation-fill-mode: both;
578
+ animation-timing-function: linear;
579
+ }
580
+ @media (prefers-reduced-motion: reduce) {
581
+ .cia-anim-spin {
582
+ /* stylelint-disable declaration-no-important -- !important is the canonical pattern for honoring prefers-reduced-motion: it must override any inline animation declared by component author or third-party CSS. */
583
+ animation-duration: 0.01ms !important;
584
+ animation-iteration-count: 1 !important;
585
+ /* stylelint-enable declaration-no-important */
586
+ }
587
+ }
588
+
589
+ .cia-anim-pulse {
590
+ animation-name: cia-pulse;
591
+ animation-duration: var(--duration-slow, 380ms);
592
+ animation-delay: 0s;
593
+ animation-iteration-count: infinite;
594
+ animation-fill-mode: both;
595
+ animation-timing-function: var(--ease, cubic-bezier(0.33, 0.66, 0.33, 1));
596
+ }
597
+ @media (prefers-reduced-motion: reduce) {
598
+ .cia-anim-pulse {
599
+ /* stylelint-disable declaration-no-important -- !important is the canonical pattern for honoring prefers-reduced-motion: it must override any inline animation declared by component author or third-party CSS. */
600
+ animation-duration: 0.01ms !important;
601
+ animation-iteration-count: 1 !important;
602
+ /* stylelint-enable declaration-no-important */
603
+ }
604
+ }
605
+
606
+ .cia-anim-shimmer {
607
+ animation-name: cia-shimmer;
608
+ animation-duration: var(--duration-slow, 380ms);
609
+ animation-delay: 0s;
610
+ animation-iteration-count: infinite;
611
+ animation-fill-mode: both;
612
+ animation-timing-function: linear;
613
+ }
614
+ @media (prefers-reduced-motion: reduce) {
615
+ .cia-anim-shimmer {
616
+ /* stylelint-disable declaration-no-important -- !important is the canonical pattern for honoring prefers-reduced-motion: it must override any inline animation declared by component author or third-party CSS. */
617
+ animation-duration: 0.01ms !important;
618
+ animation-iteration-count: 1 !important;
619
+ /* stylelint-enable declaration-no-important */
620
+ }
621
+ }
622
+
623
+ .cia-hover-lift {
624
+ transition: transform var(--duration-fast, 180ms) var(--ease, ease), box-shadow var(--duration-fast, 180ms) var(--ease, ease), opacity var(--duration-fast, 180ms) var(--ease, ease);
625
+ }
626
+ .cia-hover-lift:hover {
627
+ transform: translateY(-2px);
628
+ box-shadow: var(--shadow-md);
629
+ }
630
+ @media (prefers-reduced-motion: reduce) {
631
+ .cia-hover-lift {
632
+ transition: none;
633
+ }
634
+ .cia-hover-lift:hover {
635
+ transform: none;
636
+ }
637
+ }
638
+
639
+ .cia-hover-glow {
640
+ transition: transform var(--duration-fast, 180ms) var(--ease, ease), box-shadow var(--duration-fast, 180ms) var(--ease, ease), opacity var(--duration-fast, 180ms) var(--ease, ease);
641
+ }
642
+ .cia-hover-glow:hover {
643
+ box-shadow: var(--glow-md);
644
+ }
645
+ @media (prefers-reduced-motion: reduce) {
646
+ .cia-hover-glow {
647
+ transition: none;
648
+ }
649
+ .cia-hover-glow:hover {
650
+ transform: none;
651
+ }
652
+ }
653
+
654
+ .cia-hover-press {
655
+ transition: transform var(--duration-fast, 180ms) var(--ease, ease), box-shadow var(--duration-fast, 180ms) var(--ease, ease), opacity var(--duration-fast, 180ms) var(--ease, ease);
656
+ }
657
+ .cia-hover-press:hover {
658
+ transform: translateY(1px) scale(0.99);
659
+ }
660
+ @media (prefers-reduced-motion: reduce) {
661
+ .cia-hover-press {
662
+ transition: none;
663
+ }
664
+ .cia-hover-press:hover {
665
+ transform: none;
666
+ }
667
+ }
668
+
669
+ .cia-hover-fade {
670
+ transition: transform var(--duration-fast, 180ms) var(--ease, ease), box-shadow var(--duration-fast, 180ms) var(--ease, ease), opacity var(--duration-fast, 180ms) var(--ease, ease);
671
+ }
672
+ .cia-hover-fade:hover {
673
+ opacity: 0.7;
674
+ }
675
+ @media (prefers-reduced-motion: reduce) {
676
+ .cia-hover-fade {
677
+ transition: none;
678
+ }
679
+ .cia-hover-fade:hover {
680
+ transform: none;
681
+ }
682
+ }
683
+
684
+ @media (prefers-reduced-motion: reduce) {
685
+ *, *::before, *::after {
686
+ /* stylelint-disable declaration-no-important -- !important is the canonical pattern for the global reduced-motion safety net: it must override any animation/transition declared anywhere in the document. */
687
+ animation-duration: 0.01ms !important;
688
+ animation-iteration-count: 1 !important;
689
+ transition-duration: 0.01ms !important;
690
+ scroll-behavior: auto !important;
691
+ /* stylelint-enable declaration-no-important */
692
+ }
693
+ }
694
+ .cia-m-1 {
695
+ margin: 0.5rem;
696
+ }
697
+
698
+ .cia-mt-1 {
699
+ margin-top: 0.5rem;
700
+ }
701
+
702
+ .cia-mr-1 {
703
+ margin-right: 0.5rem;
704
+ }
705
+
706
+ .cia-mb-1 {
707
+ margin-bottom: 0.5rem;
708
+ }
709
+
710
+ .cia-ml-1 {
711
+ margin-left: 0.5rem;
712
+ }
713
+
714
+ .cia-p-1 {
715
+ padding: 0.5rem;
716
+ }
717
+
718
+ .cia-pt-1 {
719
+ padding-top: 0.5rem;
720
+ }
721
+
722
+ .cia-pr-1 {
723
+ padding-right: 0.5rem;
724
+ }
725
+
726
+ .cia-pb-1 {
727
+ padding-bottom: 0.5rem;
728
+ }
729
+
730
+ .cia-pl-1 {
731
+ padding-left: 0.5rem;
732
+ }
733
+
734
+ .cia-mx-1 {
735
+ margin-left: 0.5rem;
736
+ margin-right: 0.5rem;
737
+ }
738
+
739
+ .cia-my-1 {
740
+ margin-top: 0.5rem;
741
+ margin-bottom: 0.5rem;
742
+ }
743
+
744
+ .cia-px-1 {
745
+ padding-left: 0.5rem;
746
+ padding-right: 0.5rem;
747
+ }
748
+
749
+ .cia-py-1 {
750
+ padding-top: 0.5rem;
751
+ padding-bottom: 0.5rem;
752
+ }
753
+
754
+ .cia-m-2 {
755
+ margin: 0.75rem;
756
+ }
757
+
758
+ .cia-mt-2 {
759
+ margin-top: 0.75rem;
760
+ }
761
+
762
+ .cia-mr-2 {
763
+ margin-right: 0.75rem;
764
+ }
765
+
766
+ .cia-mb-2 {
767
+ margin-bottom: 0.75rem;
768
+ }
769
+
770
+ .cia-ml-2 {
771
+ margin-left: 0.75rem;
772
+ }
773
+
774
+ .cia-p-2 {
775
+ padding: 0.75rem;
776
+ }
777
+
778
+ .cia-pt-2 {
779
+ padding-top: 0.75rem;
780
+ }
781
+
782
+ .cia-pr-2 {
783
+ padding-right: 0.75rem;
784
+ }
785
+
786
+ .cia-pb-2 {
787
+ padding-bottom: 0.75rem;
788
+ }
789
+
790
+ .cia-pl-2 {
791
+ padding-left: 0.75rem;
792
+ }
793
+
794
+ .cia-mx-2 {
795
+ margin-left: 0.75rem;
796
+ margin-right: 0.75rem;
797
+ }
798
+
799
+ .cia-my-2 {
800
+ margin-top: 0.75rem;
801
+ margin-bottom: 0.75rem;
802
+ }
803
+
804
+ .cia-px-2 {
805
+ padding-left: 0.75rem;
806
+ padding-right: 0.75rem;
807
+ }
808
+
809
+ .cia-py-2 {
810
+ padding-top: 0.75rem;
811
+ padding-bottom: 0.75rem;
812
+ }
813
+
814
+ .cia-m-3 {
815
+ margin: 0.875rem;
816
+ }
817
+
818
+ .cia-mt-3 {
819
+ margin-top: 0.875rem;
820
+ }
821
+
822
+ .cia-mr-3 {
823
+ margin-right: 0.875rem;
824
+ }
825
+
826
+ .cia-mb-3 {
827
+ margin-bottom: 0.875rem;
828
+ }
829
+
830
+ .cia-ml-3 {
831
+ margin-left: 0.875rem;
832
+ }
833
+
834
+ .cia-p-3 {
835
+ padding: 0.875rem;
836
+ }
837
+
838
+ .cia-pt-3 {
839
+ padding-top: 0.875rem;
840
+ }
841
+
842
+ .cia-pr-3 {
843
+ padding-right: 0.875rem;
844
+ }
845
+
846
+ .cia-pb-3 {
847
+ padding-bottom: 0.875rem;
848
+ }
849
+
850
+ .cia-pl-3 {
851
+ padding-left: 0.875rem;
852
+ }
853
+
854
+ .cia-mx-3 {
855
+ margin-left: 0.875rem;
856
+ margin-right: 0.875rem;
857
+ }
858
+
859
+ .cia-my-3 {
860
+ margin-top: 0.875rem;
861
+ margin-bottom: 0.875rem;
862
+ }
863
+
864
+ .cia-px-3 {
865
+ padding-left: 0.875rem;
866
+ padding-right: 0.875rem;
867
+ }
868
+
869
+ .cia-py-3 {
870
+ padding-top: 0.875rem;
871
+ padding-bottom: 0.875rem;
872
+ }
873
+
874
+ .cia-m-4 {
875
+ margin: 1rem;
876
+ }
877
+
878
+ .cia-mt-4 {
879
+ margin-top: 1rem;
880
+ }
881
+
882
+ .cia-mr-4 {
883
+ margin-right: 1rem;
884
+ }
885
+
886
+ .cia-mb-4 {
887
+ margin-bottom: 1rem;
888
+ }
889
+
890
+ .cia-ml-4 {
891
+ margin-left: 1rem;
892
+ }
893
+
894
+ .cia-p-4 {
895
+ padding: 1rem;
896
+ }
897
+
898
+ .cia-pt-4 {
899
+ padding-top: 1rem;
900
+ }
901
+
902
+ .cia-pr-4 {
903
+ padding-right: 1rem;
904
+ }
905
+
906
+ .cia-pb-4 {
907
+ padding-bottom: 1rem;
908
+ }
909
+
910
+ .cia-pl-4 {
911
+ padding-left: 1rem;
912
+ }
913
+
914
+ .cia-mx-4 {
915
+ margin-left: 1rem;
916
+ margin-right: 1rem;
917
+ }
918
+
919
+ .cia-my-4 {
920
+ margin-top: 1rem;
921
+ margin-bottom: 1rem;
922
+ }
923
+
924
+ .cia-px-4 {
925
+ padding-left: 1rem;
926
+ padding-right: 1rem;
927
+ }
928
+
929
+ .cia-py-4 {
930
+ padding-top: 1rem;
931
+ padding-bottom: 1rem;
932
+ }
933
+
934
+ .cia-m-5 {
935
+ margin: 1.5rem;
936
+ }
937
+
938
+ .cia-mt-5 {
939
+ margin-top: 1.5rem;
940
+ }
941
+
942
+ .cia-mr-5 {
943
+ margin-right: 1.5rem;
944
+ }
945
+
946
+ .cia-mb-5 {
947
+ margin-bottom: 1.5rem;
948
+ }
949
+
950
+ .cia-ml-5 {
951
+ margin-left: 1.5rem;
952
+ }
953
+
954
+ .cia-p-5 {
955
+ padding: 1.5rem;
956
+ }
957
+
958
+ .cia-pt-5 {
959
+ padding-top: 1.5rem;
960
+ }
961
+
962
+ .cia-pr-5 {
963
+ padding-right: 1.5rem;
964
+ }
965
+
966
+ .cia-pb-5 {
967
+ padding-bottom: 1.5rem;
968
+ }
969
+
970
+ .cia-pl-5 {
971
+ padding-left: 1.5rem;
972
+ }
973
+
974
+ .cia-mx-5 {
975
+ margin-left: 1.5rem;
976
+ margin-right: 1.5rem;
977
+ }
978
+
979
+ .cia-my-5 {
980
+ margin-top: 1.5rem;
981
+ margin-bottom: 1.5rem;
982
+ }
983
+
984
+ .cia-px-5 {
985
+ padding-left: 1.5rem;
986
+ padding-right: 1.5rem;
987
+ }
988
+
989
+ .cia-py-5 {
990
+ padding-top: 1.5rem;
991
+ padding-bottom: 1.5rem;
992
+ }
993
+
994
+ .cia-m-6 {
995
+ margin: 2rem;
996
+ }
997
+
998
+ .cia-mt-6 {
999
+ margin-top: 2rem;
1000
+ }
1001
+
1002
+ .cia-mr-6 {
1003
+ margin-right: 2rem;
1004
+ }
1005
+
1006
+ .cia-mb-6 {
1007
+ margin-bottom: 2rem;
1008
+ }
1009
+
1010
+ .cia-ml-6 {
1011
+ margin-left: 2rem;
1012
+ }
1013
+
1014
+ .cia-p-6 {
1015
+ padding: 2rem;
1016
+ }
1017
+
1018
+ .cia-pt-6 {
1019
+ padding-top: 2rem;
1020
+ }
1021
+
1022
+ .cia-pr-6 {
1023
+ padding-right: 2rem;
1024
+ }
1025
+
1026
+ .cia-pb-6 {
1027
+ padding-bottom: 2rem;
1028
+ }
1029
+
1030
+ .cia-pl-6 {
1031
+ padding-left: 2rem;
1032
+ }
1033
+
1034
+ .cia-mx-6 {
1035
+ margin-left: 2rem;
1036
+ margin-right: 2rem;
1037
+ }
1038
+
1039
+ .cia-my-6 {
1040
+ margin-top: 2rem;
1041
+ margin-bottom: 2rem;
1042
+ }
1043
+
1044
+ .cia-px-6 {
1045
+ padding-left: 2rem;
1046
+ padding-right: 2rem;
1047
+ }
1048
+
1049
+ .cia-py-6 {
1050
+ padding-top: 2rem;
1051
+ padding-bottom: 2rem;
1052
+ }
1053
+
1054
+ .cia-m-7 {
1055
+ margin: 3rem;
1056
+ }
1057
+
1058
+ .cia-mt-7 {
1059
+ margin-top: 3rem;
1060
+ }
1061
+
1062
+ .cia-mr-7 {
1063
+ margin-right: 3rem;
1064
+ }
1065
+
1066
+ .cia-mb-7 {
1067
+ margin-bottom: 3rem;
1068
+ }
1069
+
1070
+ .cia-ml-7 {
1071
+ margin-left: 3rem;
1072
+ }
1073
+
1074
+ .cia-p-7 {
1075
+ padding: 3rem;
1076
+ }
1077
+
1078
+ .cia-pt-7 {
1079
+ padding-top: 3rem;
1080
+ }
1081
+
1082
+ .cia-pr-7 {
1083
+ padding-right: 3rem;
1084
+ }
1085
+
1086
+ .cia-pb-7 {
1087
+ padding-bottom: 3rem;
1088
+ }
1089
+
1090
+ .cia-pl-7 {
1091
+ padding-left: 3rem;
1092
+ }
1093
+
1094
+ .cia-mx-7 {
1095
+ margin-left: 3rem;
1096
+ margin-right: 3rem;
1097
+ }
1098
+
1099
+ .cia-my-7 {
1100
+ margin-top: 3rem;
1101
+ margin-bottom: 3rem;
1102
+ }
1103
+
1104
+ .cia-px-7 {
1105
+ padding-left: 3rem;
1106
+ padding-right: 3rem;
1107
+ }
1108
+
1109
+ .cia-py-7 {
1110
+ padding-top: 3rem;
1111
+ padding-bottom: 3rem;
1112
+ }
1113
+
1114
+ .cia-m-8 {
1115
+ margin: 4rem;
1116
+ }
1117
+
1118
+ .cia-mt-8 {
1119
+ margin-top: 4rem;
1120
+ }
1121
+
1122
+ .cia-mr-8 {
1123
+ margin-right: 4rem;
1124
+ }
1125
+
1126
+ .cia-mb-8 {
1127
+ margin-bottom: 4rem;
1128
+ }
1129
+
1130
+ .cia-ml-8 {
1131
+ margin-left: 4rem;
1132
+ }
1133
+
1134
+ .cia-p-8 {
1135
+ padding: 4rem;
1136
+ }
1137
+
1138
+ .cia-pt-8 {
1139
+ padding-top: 4rem;
1140
+ }
1141
+
1142
+ .cia-pr-8 {
1143
+ padding-right: 4rem;
1144
+ }
1145
+
1146
+ .cia-pb-8 {
1147
+ padding-bottom: 4rem;
1148
+ }
1149
+
1150
+ .cia-pl-8 {
1151
+ padding-left: 4rem;
1152
+ }
1153
+
1154
+ .cia-mx-8 {
1155
+ margin-left: 4rem;
1156
+ margin-right: 4rem;
1157
+ }
1158
+
1159
+ .cia-my-8 {
1160
+ margin-top: 4rem;
1161
+ margin-bottom: 4rem;
1162
+ }
1163
+
1164
+ .cia-px-8 {
1165
+ padding-left: 4rem;
1166
+ padding-right: 4rem;
1167
+ }
1168
+
1169
+ .cia-py-8 {
1170
+ padding-top: 4rem;
1171
+ padding-bottom: 4rem;
1172
+ }
1173
+
1174
+ .cia-m-9 {
1175
+ margin: 6rem;
1176
+ }
1177
+
1178
+ .cia-mt-9 {
1179
+ margin-top: 6rem;
1180
+ }
1181
+
1182
+ .cia-mr-9 {
1183
+ margin-right: 6rem;
1184
+ }
1185
+
1186
+ .cia-mb-9 {
1187
+ margin-bottom: 6rem;
1188
+ }
1189
+
1190
+ .cia-ml-9 {
1191
+ margin-left: 6rem;
1192
+ }
1193
+
1194
+ .cia-p-9 {
1195
+ padding: 6rem;
1196
+ }
1197
+
1198
+ .cia-pt-9 {
1199
+ padding-top: 6rem;
1200
+ }
1201
+
1202
+ .cia-pr-9 {
1203
+ padding-right: 6rem;
1204
+ }
1205
+
1206
+ .cia-pb-9 {
1207
+ padding-bottom: 6rem;
1208
+ }
1209
+
1210
+ .cia-pl-9 {
1211
+ padding-left: 6rem;
1212
+ }
1213
+
1214
+ .cia-mx-9 {
1215
+ margin-left: 6rem;
1216
+ margin-right: 6rem;
1217
+ }
1218
+
1219
+ .cia-my-9 {
1220
+ margin-top: 6rem;
1221
+ margin-bottom: 6rem;
1222
+ }
1223
+
1224
+ .cia-px-9 {
1225
+ padding-left: 6rem;
1226
+ padding-right: 6rem;
1227
+ }
1228
+
1229
+ .cia-py-9 {
1230
+ padding-top: 6rem;
1231
+ padding-bottom: 6rem;
1232
+ }
1233
+
1234
+ .cia-m-0 {
1235
+ margin: 0;
1236
+ }
1237
+
1238
+ .cia-mt-0 {
1239
+ margin-top: 0;
1240
+ }
1241
+
1242
+ .cia-mr-0 {
1243
+ margin-right: 0;
1244
+ }
1245
+
1246
+ .cia-mb-0 {
1247
+ margin-bottom: 0;
1248
+ }
1249
+
1250
+ .cia-ml-0 {
1251
+ margin-left: 0;
1252
+ }
1253
+
1254
+ .cia-p-0 {
1255
+ padding: 0;
1256
+ }
1257
+
1258
+ .cia-pt-0 {
1259
+ padding-top: 0;
1260
+ }
1261
+
1262
+ .cia-pr-0 {
1263
+ padding-right: 0;
1264
+ }
1265
+
1266
+ .cia-pb-0 {
1267
+ padding-bottom: 0;
1268
+ }
1269
+
1270
+ .cia-pl-0 {
1271
+ padding-left: 0;
1272
+ }
1273
+
1274
+ .cia-mx-0 {
1275
+ margin-left: 0;
1276
+ margin-right: 0;
1277
+ }
1278
+
1279
+ .cia-my-0 {
1280
+ margin-top: 0;
1281
+ margin-bottom: 0;
1282
+ }
1283
+
1284
+ .cia-px-0 {
1285
+ padding-left: 0;
1286
+ padding-right: 0;
1287
+ }
1288
+
1289
+ .cia-py-0 {
1290
+ padding-top: 0;
1291
+ padding-bottom: 0;
1292
+ }
1293
+
1294
+ .cia-m-none {
1295
+ margin: 0;
1296
+ }
1297
+
1298
+ .cia-mt-none {
1299
+ margin-top: 0;
1300
+ }
1301
+
1302
+ .cia-mr-none {
1303
+ margin-right: 0;
1304
+ }
1305
+
1306
+ .cia-mb-none {
1307
+ margin-bottom: 0;
1308
+ }
1309
+
1310
+ .cia-ml-none {
1311
+ margin-left: 0;
1312
+ }
1313
+
1314
+ .cia-p-none {
1315
+ padding: 0;
1316
+ }
1317
+
1318
+ .cia-pt-none {
1319
+ padding-top: 0;
1320
+ }
1321
+
1322
+ .cia-pr-none {
1323
+ padding-right: 0;
1324
+ }
1325
+
1326
+ .cia-pb-none {
1327
+ padding-bottom: 0;
1328
+ }
1329
+
1330
+ .cia-pl-none {
1331
+ padding-left: 0;
1332
+ }
1333
+
1334
+ .cia-mx-none {
1335
+ margin-left: 0;
1336
+ margin-right: 0;
1337
+ }
1338
+
1339
+ .cia-my-none {
1340
+ margin-top: 0;
1341
+ margin-bottom: 0;
1342
+ }
1343
+
1344
+ .cia-px-none {
1345
+ padding-left: 0;
1346
+ padding-right: 0;
1347
+ }
1348
+
1349
+ .cia-py-none {
1350
+ padding-top: 0;
1351
+ padding-bottom: 0;
1352
+ }
1353
+
1354
+ .cia-m-2xs {
1355
+ margin: 0.25rem;
1356
+ }
1357
+
1358
+ .cia-mt-2xs {
1359
+ margin-top: 0.25rem;
1360
+ }
1361
+
1362
+ .cia-mr-2xs {
1363
+ margin-right: 0.25rem;
1364
+ }
1365
+
1366
+ .cia-mb-2xs {
1367
+ margin-bottom: 0.25rem;
1368
+ }
1369
+
1370
+ .cia-ml-2xs {
1371
+ margin-left: 0.25rem;
1372
+ }
1373
+
1374
+ .cia-p-2xs {
1375
+ padding: 0.25rem;
1376
+ }
1377
+
1378
+ .cia-pt-2xs {
1379
+ padding-top: 0.25rem;
1380
+ }
1381
+
1382
+ .cia-pr-2xs {
1383
+ padding-right: 0.25rem;
1384
+ }
1385
+
1386
+ .cia-pb-2xs {
1387
+ padding-bottom: 0.25rem;
1388
+ }
1389
+
1390
+ .cia-pl-2xs {
1391
+ padding-left: 0.25rem;
1392
+ }
1393
+
1394
+ .cia-mx-2xs {
1395
+ margin-left: 0.25rem;
1396
+ margin-right: 0.25rem;
1397
+ }
1398
+
1399
+ .cia-my-2xs {
1400
+ margin-top: 0.25rem;
1401
+ margin-bottom: 0.25rem;
1402
+ }
1403
+
1404
+ .cia-px-2xs {
1405
+ padding-left: 0.25rem;
1406
+ padding-right: 0.25rem;
1407
+ }
1408
+
1409
+ .cia-py-2xs {
1410
+ padding-top: 0.25rem;
1411
+ padding-bottom: 0.25rem;
1412
+ }
1413
+
1414
+ .cia-m-xs {
1415
+ margin: 0.5rem;
1416
+ }
1417
+
1418
+ .cia-mt-xs {
1419
+ margin-top: 0.5rem;
1420
+ }
1421
+
1422
+ .cia-mr-xs {
1423
+ margin-right: 0.5rem;
1424
+ }
1425
+
1426
+ .cia-mb-xs {
1427
+ margin-bottom: 0.5rem;
1428
+ }
1429
+
1430
+ .cia-ml-xs {
1431
+ margin-left: 0.5rem;
1432
+ }
1433
+
1434
+ .cia-p-xs {
1435
+ padding: 0.5rem;
1436
+ }
1437
+
1438
+ .cia-pt-xs {
1439
+ padding-top: 0.5rem;
1440
+ }
1441
+
1442
+ .cia-pr-xs {
1443
+ padding-right: 0.5rem;
1444
+ }
1445
+
1446
+ .cia-pb-xs {
1447
+ padding-bottom: 0.5rem;
1448
+ }
1449
+
1450
+ .cia-pl-xs {
1451
+ padding-left: 0.5rem;
1452
+ }
1453
+
1454
+ .cia-mx-xs {
1455
+ margin-left: 0.5rem;
1456
+ margin-right: 0.5rem;
1457
+ }
1458
+
1459
+ .cia-my-xs {
1460
+ margin-top: 0.5rem;
1461
+ margin-bottom: 0.5rem;
1462
+ }
1463
+
1464
+ .cia-px-xs {
1465
+ padding-left: 0.5rem;
1466
+ padding-right: 0.5rem;
1467
+ }
1468
+
1469
+ .cia-py-xs {
1470
+ padding-top: 0.5rem;
1471
+ padding-bottom: 0.5rem;
1472
+ }
1473
+
1474
+ .cia-m-sm {
1475
+ margin: 0.75rem;
1476
+ }
1477
+
1478
+ .cia-mt-sm {
1479
+ margin-top: 0.75rem;
1480
+ }
1481
+
1482
+ .cia-mr-sm {
1483
+ margin-right: 0.75rem;
1484
+ }
1485
+
1486
+ .cia-mb-sm {
1487
+ margin-bottom: 0.75rem;
1488
+ }
1489
+
1490
+ .cia-ml-sm {
1491
+ margin-left: 0.75rem;
1492
+ }
1493
+
1494
+ .cia-p-sm {
1495
+ padding: 0.75rem;
1496
+ }
1497
+
1498
+ .cia-pt-sm {
1499
+ padding-top: 0.75rem;
1500
+ }
1501
+
1502
+ .cia-pr-sm {
1503
+ padding-right: 0.75rem;
1504
+ }
1505
+
1506
+ .cia-pb-sm {
1507
+ padding-bottom: 0.75rem;
1508
+ }
1509
+
1510
+ .cia-pl-sm {
1511
+ padding-left: 0.75rem;
1512
+ }
1513
+
1514
+ .cia-mx-sm {
1515
+ margin-left: 0.75rem;
1516
+ margin-right: 0.75rem;
1517
+ }
1518
+
1519
+ .cia-my-sm {
1520
+ margin-top: 0.75rem;
1521
+ margin-bottom: 0.75rem;
1522
+ }
1523
+
1524
+ .cia-px-sm {
1525
+ padding-left: 0.75rem;
1526
+ padding-right: 0.75rem;
1527
+ }
1528
+
1529
+ .cia-py-sm {
1530
+ padding-top: 0.75rem;
1531
+ padding-bottom: 0.75rem;
1532
+ }
1533
+
1534
+ .cia-m-md {
1535
+ margin: 1rem;
1536
+ }
1537
+
1538
+ .cia-mt-md {
1539
+ margin-top: 1rem;
1540
+ }
1541
+
1542
+ .cia-mr-md {
1543
+ margin-right: 1rem;
1544
+ }
1545
+
1546
+ .cia-mb-md {
1547
+ margin-bottom: 1rem;
1548
+ }
1549
+
1550
+ .cia-ml-md {
1551
+ margin-left: 1rem;
1552
+ }
1553
+
1554
+ .cia-p-md {
1555
+ padding: 1rem;
1556
+ }
1557
+
1558
+ .cia-pt-md {
1559
+ padding-top: 1rem;
1560
+ }
1561
+
1562
+ .cia-pr-md {
1563
+ padding-right: 1rem;
1564
+ }
1565
+
1566
+ .cia-pb-md {
1567
+ padding-bottom: 1rem;
1568
+ }
1569
+
1570
+ .cia-pl-md {
1571
+ padding-left: 1rem;
1572
+ }
1573
+
1574
+ .cia-mx-md {
1575
+ margin-left: 1rem;
1576
+ margin-right: 1rem;
1577
+ }
1578
+
1579
+ .cia-my-md {
1580
+ margin-top: 1rem;
1581
+ margin-bottom: 1rem;
1582
+ }
1583
+
1584
+ .cia-px-md {
1585
+ padding-left: 1rem;
1586
+ padding-right: 1rem;
1587
+ }
1588
+
1589
+ .cia-py-md {
1590
+ padding-top: 1rem;
1591
+ padding-bottom: 1rem;
1592
+ }
1593
+
1594
+ .cia-m-lg {
1595
+ margin: 1.5rem;
1596
+ }
1597
+
1598
+ .cia-mt-lg {
1599
+ margin-top: 1.5rem;
1600
+ }
1601
+
1602
+ .cia-mr-lg {
1603
+ margin-right: 1.5rem;
1604
+ }
1605
+
1606
+ .cia-mb-lg {
1607
+ margin-bottom: 1.5rem;
1608
+ }
1609
+
1610
+ .cia-ml-lg {
1611
+ margin-left: 1.5rem;
1612
+ }
1613
+
1614
+ .cia-p-lg {
1615
+ padding: 1.5rem;
1616
+ }
1617
+
1618
+ .cia-pt-lg {
1619
+ padding-top: 1.5rem;
1620
+ }
1621
+
1622
+ .cia-pr-lg {
1623
+ padding-right: 1.5rem;
1624
+ }
1625
+
1626
+ .cia-pb-lg {
1627
+ padding-bottom: 1.5rem;
1628
+ }
1629
+
1630
+ .cia-pl-lg {
1631
+ padding-left: 1.5rem;
1632
+ }
1633
+
1634
+ .cia-mx-lg {
1635
+ margin-left: 1.5rem;
1636
+ margin-right: 1.5rem;
1637
+ }
1638
+
1639
+ .cia-my-lg {
1640
+ margin-top: 1.5rem;
1641
+ margin-bottom: 1.5rem;
1642
+ }
1643
+
1644
+ .cia-px-lg {
1645
+ padding-left: 1.5rem;
1646
+ padding-right: 1.5rem;
1647
+ }
1648
+
1649
+ .cia-py-lg {
1650
+ padding-top: 1.5rem;
1651
+ padding-bottom: 1.5rem;
1652
+ }
1653
+
1654
+ .cia-m-xl {
1655
+ margin: 2rem;
1656
+ }
1657
+
1658
+ .cia-mt-xl {
1659
+ margin-top: 2rem;
1660
+ }
1661
+
1662
+ .cia-mr-xl {
1663
+ margin-right: 2rem;
1664
+ }
1665
+
1666
+ .cia-mb-xl {
1667
+ margin-bottom: 2rem;
1668
+ }
1669
+
1670
+ .cia-ml-xl {
1671
+ margin-left: 2rem;
1672
+ }
1673
+
1674
+ .cia-p-xl {
1675
+ padding: 2rem;
1676
+ }
1677
+
1678
+ .cia-pt-xl {
1679
+ padding-top: 2rem;
1680
+ }
1681
+
1682
+ .cia-pr-xl {
1683
+ padding-right: 2rem;
1684
+ }
1685
+
1686
+ .cia-pb-xl {
1687
+ padding-bottom: 2rem;
1688
+ }
1689
+
1690
+ .cia-pl-xl {
1691
+ padding-left: 2rem;
1692
+ }
1693
+
1694
+ .cia-mx-xl {
1695
+ margin-left: 2rem;
1696
+ margin-right: 2rem;
1697
+ }
1698
+
1699
+ .cia-my-xl {
1700
+ margin-top: 2rem;
1701
+ margin-bottom: 2rem;
1702
+ }
1703
+
1704
+ .cia-px-xl {
1705
+ padding-left: 2rem;
1706
+ padding-right: 2rem;
1707
+ }
1708
+
1709
+ .cia-py-xl {
1710
+ padding-top: 2rem;
1711
+ padding-bottom: 2rem;
1712
+ }
1713
+
1714
+ .cia-m-2xl {
1715
+ margin: 3rem;
1716
+ }
1717
+
1718
+ .cia-mt-2xl {
1719
+ margin-top: 3rem;
1720
+ }
1721
+
1722
+ .cia-mr-2xl {
1723
+ margin-right: 3rem;
1724
+ }
1725
+
1726
+ .cia-mb-2xl {
1727
+ margin-bottom: 3rem;
1728
+ }
1729
+
1730
+ .cia-ml-2xl {
1731
+ margin-left: 3rem;
1732
+ }
1733
+
1734
+ .cia-p-2xl {
1735
+ padding: 3rem;
1736
+ }
1737
+
1738
+ .cia-pt-2xl {
1739
+ padding-top: 3rem;
1740
+ }
1741
+
1742
+ .cia-pr-2xl {
1743
+ padding-right: 3rem;
1744
+ }
1745
+
1746
+ .cia-pb-2xl {
1747
+ padding-bottom: 3rem;
1748
+ }
1749
+
1750
+ .cia-pl-2xl {
1751
+ padding-left: 3rem;
1752
+ }
1753
+
1754
+ .cia-mx-2xl {
1755
+ margin-left: 3rem;
1756
+ margin-right: 3rem;
1757
+ }
1758
+
1759
+ .cia-my-2xl {
1760
+ margin-top: 3rem;
1761
+ margin-bottom: 3rem;
1762
+ }
1763
+
1764
+ .cia-px-2xl {
1765
+ padding-left: 3rem;
1766
+ padding-right: 3rem;
1767
+ }
1768
+
1769
+ .cia-py-2xl {
1770
+ padding-top: 3rem;
1771
+ padding-bottom: 3rem;
1772
+ }
1773
+
1774
+ .cia-m-3xl {
1775
+ margin: 4rem;
1776
+ }
1777
+
1778
+ .cia-mt-3xl {
1779
+ margin-top: 4rem;
1780
+ }
1781
+
1782
+ .cia-mr-3xl {
1783
+ margin-right: 4rem;
1784
+ }
1785
+
1786
+ .cia-mb-3xl {
1787
+ margin-bottom: 4rem;
1788
+ }
1789
+
1790
+ .cia-ml-3xl {
1791
+ margin-left: 4rem;
1792
+ }
1793
+
1794
+ .cia-p-3xl {
1795
+ padding: 4rem;
1796
+ }
1797
+
1798
+ .cia-pt-3xl {
1799
+ padding-top: 4rem;
1800
+ }
1801
+
1802
+ .cia-pr-3xl {
1803
+ padding-right: 4rem;
1804
+ }
1805
+
1806
+ .cia-pb-3xl {
1807
+ padding-bottom: 4rem;
1808
+ }
1809
+
1810
+ .cia-pl-3xl {
1811
+ padding-left: 4rem;
1812
+ }
1813
+
1814
+ .cia-mx-3xl {
1815
+ margin-left: 4rem;
1816
+ margin-right: 4rem;
1817
+ }
1818
+
1819
+ .cia-my-3xl {
1820
+ margin-top: 4rem;
1821
+ margin-bottom: 4rem;
1822
+ }
1823
+
1824
+ .cia-px-3xl {
1825
+ padding-left: 4rem;
1826
+ padding-right: 4rem;
1827
+ }
1828
+
1829
+ .cia-py-3xl {
1830
+ padding-top: 4rem;
1831
+ padding-bottom: 4rem;
1832
+ }
1833
+
1834
+ .cia-m-4xl {
1835
+ margin: 6rem;
1836
+ }
1837
+
1838
+ .cia-mt-4xl {
1839
+ margin-top: 6rem;
1840
+ }
1841
+
1842
+ .cia-mr-4xl {
1843
+ margin-right: 6rem;
1844
+ }
1845
+
1846
+ .cia-mb-4xl {
1847
+ margin-bottom: 6rem;
1848
+ }
1849
+
1850
+ .cia-ml-4xl {
1851
+ margin-left: 6rem;
1852
+ }
1853
+
1854
+ .cia-p-4xl {
1855
+ padding: 6rem;
1856
+ }
1857
+
1858
+ .cia-pt-4xl {
1859
+ padding-top: 6rem;
1860
+ }
1861
+
1862
+ .cia-pr-4xl {
1863
+ padding-right: 6rem;
1864
+ }
1865
+
1866
+ .cia-pb-4xl {
1867
+ padding-bottom: 6rem;
1868
+ }
1869
+
1870
+ .cia-pl-4xl {
1871
+ padding-left: 6rem;
1872
+ }
1873
+
1874
+ .cia-mx-4xl {
1875
+ margin-left: 6rem;
1876
+ margin-right: 6rem;
1877
+ }
1878
+
1879
+ .cia-my-4xl {
1880
+ margin-top: 6rem;
1881
+ margin-bottom: 6rem;
1882
+ }
1883
+
1884
+ .cia-px-4xl {
1885
+ padding-left: 6rem;
1886
+ padding-right: 6rem;
1887
+ }
1888
+
1889
+ .cia-py-4xl {
1890
+ padding-top: 6rem;
1891
+ padding-bottom: 6rem;
1892
+ }
1893
+
1894
+ .cia-sr-only {
1895
+ position: absolute;
1896
+ width: 1px;
1897
+ height: 1px;
1898
+ padding: 0;
1899
+ margin: -1px;
1900
+ overflow: hidden;
1901
+ clip: rect(0, 0, 0, 0);
1902
+ border: 0;
1903
+ }
1904
+
1905
+ .cia-m-auto {
1906
+ margin: auto;
1907
+ }
1908
+
1909
+ .cia-mx-auto {
1910
+ margin-left: auto;
1911
+ margin-right: auto;
1912
+ }
1913
+
1914
+ .cia-my-auto {
1915
+ margin-top: auto;
1916
+ margin-bottom: auto;
1917
+ }
1918
+
1919
+ .cia-ml-auto {
1920
+ margin-left: auto;
1921
+ }
1922
+
1923
+ .cia-mr-auto {
1924
+ margin-right: auto;
1925
+ }
1926
+
1927
+ .cia-mt-auto {
1928
+ margin-top: auto;
1929
+ }
1930
+
1931
+ .cia-mb-auto {
1932
+ margin-bottom: auto;
1933
+ }
1934
+
1935
+ .cia-gap-1 {
1936
+ gap: 0.5rem;
1937
+ }
1938
+
1939
+ .cia-gap-x-1 {
1940
+ column-gap: 0.5rem;
1941
+ }
1942
+
1943
+ .cia-gap-y-1 {
1944
+ row-gap: 0.5rem;
1945
+ }
1946
+
1947
+ .cia-gap-2 {
1948
+ gap: 0.75rem;
1949
+ }
1950
+
1951
+ .cia-gap-x-2 {
1952
+ column-gap: 0.75rem;
1953
+ }
1954
+
1955
+ .cia-gap-y-2 {
1956
+ row-gap: 0.75rem;
1957
+ }
1958
+
1959
+ .cia-gap-3 {
1960
+ gap: 0.875rem;
1961
+ }
1962
+
1963
+ .cia-gap-x-3 {
1964
+ column-gap: 0.875rem;
1965
+ }
1966
+
1967
+ .cia-gap-y-3 {
1968
+ row-gap: 0.875rem;
1969
+ }
1970
+
1971
+ .cia-gap-4 {
1972
+ gap: 1rem;
1973
+ }
1974
+
1975
+ .cia-gap-x-4 {
1976
+ column-gap: 1rem;
1977
+ }
1978
+
1979
+ .cia-gap-y-4 {
1980
+ row-gap: 1rem;
1981
+ }
1982
+
1983
+ .cia-gap-5 {
1984
+ gap: 1.5rem;
1985
+ }
1986
+
1987
+ .cia-gap-x-5 {
1988
+ column-gap: 1.5rem;
1989
+ }
1990
+
1991
+ .cia-gap-y-5 {
1992
+ row-gap: 1.5rem;
1993
+ }
1994
+
1995
+ .cia-gap-6 {
1996
+ gap: 2rem;
1997
+ }
1998
+
1999
+ .cia-gap-x-6 {
2000
+ column-gap: 2rem;
2001
+ }
2002
+
2003
+ .cia-gap-y-6 {
2004
+ row-gap: 2rem;
2005
+ }
2006
+
2007
+ .cia-gap-7 {
2008
+ gap: 3rem;
2009
+ }
2010
+
2011
+ .cia-gap-x-7 {
2012
+ column-gap: 3rem;
2013
+ }
2014
+
2015
+ .cia-gap-y-7 {
2016
+ row-gap: 3rem;
2017
+ }
2018
+
2019
+ .cia-gap-8 {
2020
+ gap: 4rem;
2021
+ }
2022
+
2023
+ .cia-gap-x-8 {
2024
+ column-gap: 4rem;
2025
+ }
2026
+
2027
+ .cia-gap-y-8 {
2028
+ row-gap: 4rem;
2029
+ }
2030
+
2031
+ .cia-gap-9 {
2032
+ gap: 6rem;
2033
+ }
2034
+
2035
+ .cia-gap-x-9 {
2036
+ column-gap: 6rem;
2037
+ }
2038
+
2039
+ .cia-gap-y-9 {
2040
+ row-gap: 6rem;
2041
+ }
2042
+
2043
+ .cia-gap-0 {
2044
+ gap: 0;
2045
+ }
2046
+
2047
+ .cia-gap-x-0 {
2048
+ column-gap: 0;
2049
+ }
2050
+
2051
+ .cia-gap-y-0 {
2052
+ row-gap: 0;
2053
+ }
2054
+
2055
+ .cia-gap-none {
2056
+ gap: 0;
2057
+ }
2058
+
2059
+ .cia-gap-x-none {
2060
+ column-gap: 0;
2061
+ }
2062
+
2063
+ .cia-gap-y-none {
2064
+ row-gap: 0;
2065
+ }
2066
+
2067
+ .cia-gap-2xs {
2068
+ gap: 0.25rem;
2069
+ }
2070
+
2071
+ .cia-gap-x-2xs {
2072
+ column-gap: 0.25rem;
2073
+ }
2074
+
2075
+ .cia-gap-y-2xs {
2076
+ row-gap: 0.25rem;
2077
+ }
2078
+
2079
+ .cia-gap-xs {
2080
+ gap: 0.5rem;
2081
+ }
2082
+
2083
+ .cia-gap-x-xs {
2084
+ column-gap: 0.5rem;
2085
+ }
2086
+
2087
+ .cia-gap-y-xs {
2088
+ row-gap: 0.5rem;
2089
+ }
2090
+
2091
+ .cia-gap-sm {
2092
+ gap: 0.75rem;
2093
+ }
2094
+
2095
+ .cia-gap-x-sm {
2096
+ column-gap: 0.75rem;
2097
+ }
2098
+
2099
+ .cia-gap-y-sm {
2100
+ row-gap: 0.75rem;
2101
+ }
2102
+
2103
+ .cia-gap-md {
2104
+ gap: 1rem;
2105
+ }
2106
+
2107
+ .cia-gap-x-md {
2108
+ column-gap: 1rem;
2109
+ }
2110
+
2111
+ .cia-gap-y-md {
2112
+ row-gap: 1rem;
2113
+ }
2114
+
2115
+ .cia-gap-lg {
2116
+ gap: 1.5rem;
2117
+ }
2118
+
2119
+ .cia-gap-x-lg {
2120
+ column-gap: 1.5rem;
2121
+ }
2122
+
2123
+ .cia-gap-y-lg {
2124
+ row-gap: 1.5rem;
2125
+ }
2126
+
2127
+ .cia-gap-xl {
2128
+ gap: 2rem;
2129
+ }
2130
+
2131
+ .cia-gap-x-xl {
2132
+ column-gap: 2rem;
2133
+ }
2134
+
2135
+ .cia-gap-y-xl {
2136
+ row-gap: 2rem;
2137
+ }
2138
+
2139
+ .cia-gap-2xl {
2140
+ gap: 3rem;
2141
+ }
2142
+
2143
+ .cia-gap-x-2xl {
2144
+ column-gap: 3rem;
2145
+ }
2146
+
2147
+ .cia-gap-y-2xl {
2148
+ row-gap: 3rem;
2149
+ }
2150
+
2151
+ .cia-gap-3xl {
2152
+ gap: 4rem;
2153
+ }
2154
+
2155
+ .cia-gap-x-3xl {
2156
+ column-gap: 4rem;
2157
+ }
2158
+
2159
+ .cia-gap-y-3xl {
2160
+ row-gap: 4rem;
2161
+ }
2162
+
2163
+ .cia-gap-4xl {
2164
+ gap: 6rem;
2165
+ }
2166
+
2167
+ .cia-gap-x-4xl {
2168
+ column-gap: 6rem;
2169
+ }
2170
+
2171
+ .cia-gap-y-4xl {
2172
+ row-gap: 6rem;
2173
+ }
2174
+
2175
+ .cia-text-1 {
2176
+ font-size: var(--font-size-1, 0.75rem);
2177
+ }
2178
+
2179
+ .cia-text-2 {
2180
+ font-size: var(--font-size-2, 0.875rem);
2181
+ }
2182
+
2183
+ .cia-text-3 {
2184
+ font-size: var(--font-size-3, 1rem);
2185
+ }
2186
+
2187
+ .cia-text-4 {
2188
+ font-size: var(--font-size-4, 1.125rem);
2189
+ }
2190
+
2191
+ .cia-text-5 {
2192
+ font-size: var(--font-size-5, 1.25rem);
2193
+ }
2194
+
2195
+ .cia-text-6 {
2196
+ font-size: var(--font-size-6, 1.5rem);
2197
+ }
2198
+
2199
+ .cia-text-7 {
2200
+ font-size: var(--font-size-7, 1.875rem);
2201
+ }
2202
+
2203
+ .cia-text-8 {
2204
+ font-size: var(--font-size-8, 2.25rem);
2205
+ }
2206
+
2207
+ .cia-text-9 {
2208
+ font-size: var(--font-size-9, 3rem);
2209
+ }
2210
+
2211
+ .cia-text-10 {
2212
+ font-size: var(--font-size-10, 3.75rem);
2213
+ }
2214
+
2215
+ .cia-text-xs {
2216
+ font-size: var(--font-size-xs, 0.75rem);
2217
+ }
2218
+
2219
+ .cia-text-sm {
2220
+ font-size: var(--font-size-sm, 0.875rem);
2221
+ }
2222
+
2223
+ .cia-text-base {
2224
+ font-size: var(--font-size-base, 1rem);
2225
+ }
2226
+
2227
+ .cia-text-lg {
2228
+ font-size: var(--font-size-lg, 1.125rem);
2229
+ }
2230
+
2231
+ .cia-text-xl {
2232
+ font-size: var(--font-size-xl, 1.25rem);
2233
+ }
2234
+
2235
+ .cia-text-2xl {
2236
+ font-size: var(--font-size-2xl, 1.5rem);
2237
+ }
2238
+
2239
+ .cia-text-3xl {
2240
+ font-size: var(--font-size-3xl, 1.875rem);
2241
+ }
2242
+
2243
+ .cia-text-4xl {
2244
+ font-size: var(--font-size-4xl, 2.25rem);
2245
+ }
2246
+
2247
+ .cia-text-5xl {
2248
+ font-size: var(--font-size-5xl, 3rem);
2249
+ }
2250
+
2251
+ .cia-text-6xl {
2252
+ font-size: var(--font-size-6xl, 3.75rem);
2253
+ }
2254
+
2255
+ .cia-font-light {
2256
+ font-weight: var(--font-weight-light, 300);
2257
+ }
2258
+
2259
+ .cia-font-normal {
2260
+ font-weight: var(--font-weight-normal, 400);
2261
+ }
2262
+
2263
+ .cia-font-medium {
2264
+ font-weight: var(--font-weight-medium, 500);
2265
+ }
2266
+
2267
+ .cia-font-semibold {
2268
+ font-weight: var(--font-weight-semibold, 600);
2269
+ }
2270
+
2271
+ .cia-font-bold {
2272
+ font-weight: var(--font-weight-bold, 700);
2273
+ }
2274
+
2275
+ .cia-font-black {
2276
+ font-weight: var(--font-weight-black, 900);
2277
+ }
2278
+
2279
+ .cia-leading-1 {
2280
+ line-height: 1;
2281
+ }
2282
+
2283
+ .cia-leading-2 {
2284
+ line-height: 1.25;
2285
+ }
2286
+
2287
+ .cia-leading-3 {
2288
+ line-height: 1.375;
2289
+ }
2290
+
2291
+ .cia-leading-4 {
2292
+ line-height: 1.5;
2293
+ }
2294
+
2295
+ .cia-leading-5 {
2296
+ line-height: 1.625;
2297
+ }
2298
+
2299
+ .cia-leading-6 {
2300
+ line-height: 2;
2301
+ }
2302
+
2303
+ .cia-leading-none {
2304
+ line-height: 1;
2305
+ }
2306
+
2307
+ .cia-leading-tight {
2308
+ line-height: 1.25;
2309
+ }
2310
+
2311
+ .cia-leading-snug {
2312
+ line-height: 1.375;
2313
+ }
2314
+
2315
+ .cia-leading-normal {
2316
+ line-height: 1.5;
2317
+ }
2318
+
2319
+ .cia-leading-relaxed {
2320
+ line-height: 1.625;
2321
+ }
2322
+
2323
+ .cia-leading-loose {
2324
+ line-height: 2;
2325
+ }
2326
+
2327
+ .cia-tracking-tighter {
2328
+ letter-spacing: -0.05em;
2329
+ }
2330
+
2331
+ .cia-tracking-tight {
2332
+ letter-spacing: -0.025em;
2333
+ }
2334
+
2335
+ .cia-tracking-normal {
2336
+ letter-spacing: 0em;
2337
+ }
2338
+
2339
+ .cia-tracking-wide {
2340
+ letter-spacing: 0.025em;
2341
+ }
2342
+
2343
+ .cia-tracking-wider {
2344
+ letter-spacing: 0.05em;
2345
+ }
2346
+
2347
+ .cia-tracking-widest {
2348
+ letter-spacing: 0.1em;
2349
+ }
2350
+
2351
+ .cia-text-left {
2352
+ text-align: left;
2353
+ }
2354
+
2355
+ .cia-text-center {
2356
+ text-align: center;
2357
+ }
2358
+
2359
+ .cia-text-right {
2360
+ text-align: right;
2361
+ }
2362
+
2363
+ .cia-text-justify {
2364
+ text-align: justify;
2365
+ }
2366
+
2367
+ .cia-uppercase {
2368
+ text-transform: uppercase;
2369
+ }
2370
+
2371
+ .cia-lowercase {
2372
+ text-transform: lowercase;
2373
+ }
2374
+
2375
+ .cia-capitalize {
2376
+ text-transform: capitalize;
2377
+ }
2378
+
2379
+ .cia-normal-case {
2380
+ text-transform: none;
2381
+ }
2382
+
2383
+ .cia-underline {
2384
+ text-decoration: underline;
2385
+ }
2386
+
2387
+ .cia-line-through {
2388
+ text-decoration: line-through;
2389
+ }
2390
+
2391
+ .cia-no-underline {
2392
+ text-decoration: none;
2393
+ }
2394
+
2395
+ .cia-truncate {
2396
+ overflow: hidden;
2397
+ text-overflow: ellipsis;
2398
+ white-space: nowrap;
2399
+ }
2400
+
2401
+ .cia-whitespace-nowrap {
2402
+ white-space: nowrap;
2403
+ }
2404
+
2405
+ .cia-whitespace-normal {
2406
+ white-space: normal;
2407
+ }
2408
+
2409
+ .cia-break-words {
2410
+ overflow-wrap: break-word;
2411
+ }
2412
+
2413
+ .cia-text-text-primary {
2414
+ color: var(--text-primary);
2415
+ }
2416
+
2417
+ .cia-text-text-secondary {
2418
+ color: var(--text-secondary);
2419
+ }
2420
+
2421
+ .cia-text-text-muted {
2422
+ color: var(--text-muted);
2423
+ }
2424
+
2425
+ .cia-text-text-inverse {
2426
+ color: var(--text-inverse);
2427
+ }
2428
+
2429
+ .cia-text-text-link {
2430
+ color: var(--text-link);
2431
+ }
2432
+
2433
+ .cia-text-success-text {
2434
+ color: var(--success-text);
2435
+ }
2436
+
2437
+ .cia-text-warning-text {
2438
+ color: var(--warning-text);
2439
+ }
2440
+
2441
+ .cia-text-error-text {
2442
+ color: var(--error-text);
2443
+ }
2444
+
2445
+ .cia-text-info-text {
2446
+ color: var(--info-text);
2447
+ }
2448
+
2449
+ .cia-bg-background-default {
2450
+ background-color: var(--background-default);
2451
+ }
2452
+
2453
+ .cia-bg-background-subtle {
2454
+ background-color: var(--background-subtle);
2455
+ }
2456
+
2457
+ .cia-bg-background-navbar {
2458
+ background-color: var(--background-navbar);
2459
+ }
2460
+
2461
+ .cia-bg-surface-default {
2462
+ background-color: var(--surface-default);
2463
+ }
2464
+
2465
+ .cia-bg-surface-subtle {
2466
+ background-color: var(--surface-subtle);
2467
+ }
2468
+
2469
+ .cia-bg-surface-muted {
2470
+ background-color: var(--surface-muted);
2471
+ }
2472
+
2473
+ .cia-bg-surface-emphasis {
2474
+ background-color: var(--surface-emphasis);
2475
+ }
2476
+
2477
+ .cia-bg-success-subtle {
2478
+ background-color: var(--success-subtle);
2479
+ }
2480
+
2481
+ .cia-bg-warning-subtle {
2482
+ background-color: var(--warning-subtle);
2483
+ }
2484
+
2485
+ .cia-bg-error-subtle {
2486
+ background-color: var(--error-subtle);
2487
+ }
2488
+
2489
+ .cia-bg-info-subtle {
2490
+ background-color: var(--info-subtle);
2491
+ }
2492
+
2493
+ .cia-bg-action-primary-default {
2494
+ background-color: var(--action-primary-default);
2495
+ }
2496
+
2497
+ .cia-bg-action-secondary-default {
2498
+ background-color: var(--action-secondary-default);
2499
+ }
2500
+
2501
+ .cia-border-border-default {
2502
+ border-color: var(--border-default);
2503
+ }
2504
+
2505
+ .cia-border-border-subtle {
2506
+ border-color: var(--border-subtle);
2507
+ }
2508
+
2509
+ .cia-border-border-emphasis {
2510
+ border-color: var(--border-emphasis);
2511
+ }
2512
+
2513
+ .cia-border-border-focus {
2514
+ border-color: var(--border-focus);
2515
+ }
2516
+
2517
+ .cia-block {
2518
+ display: block;
2519
+ }
2520
+
2521
+ .cia-inline-block {
2522
+ display: inline-block;
2523
+ }
2524
+
2525
+ .cia-inline {
2526
+ display: inline;
2527
+ }
2528
+
2529
+ .cia-flex {
2530
+ display: flex;
2531
+ }
2532
+
2533
+ .cia-inline-flex {
2534
+ display: inline-flex;
2535
+ }
2536
+
2537
+ .cia-grid {
2538
+ display: grid;
2539
+ }
2540
+
2541
+ .cia-inline-grid {
2542
+ display: inline-grid;
2543
+ }
2544
+
2545
+ .cia-hidden {
2546
+ display: none;
2547
+ }
2548
+
2549
+ .cia-contents {
2550
+ display: contents;
2551
+ }
2552
+
2553
+ .cia-flex-row {
2554
+ flex-direction: row;
2555
+ }
2556
+
2557
+ .cia-flex-row-reverse {
2558
+ flex-direction: row-reverse;
2559
+ }
2560
+
2561
+ .cia-flex-col {
2562
+ flex-direction: column;
2563
+ }
2564
+
2565
+ .cia-flex-col-reverse {
2566
+ flex-direction: column-reverse;
2567
+ }
2568
+
2569
+ .cia-flex-wrap {
2570
+ flex-wrap: wrap;
2571
+ }
2572
+
2573
+ .cia-flex-nowrap {
2574
+ flex-wrap: nowrap;
2575
+ }
2576
+
2577
+ .cia-flex-wrap-reverse {
2578
+ flex-wrap: wrap-reverse;
2579
+ }
2580
+
2581
+ .cia-flex-1 {
2582
+ flex: 1 1 0%;
2583
+ }
2584
+
2585
+ .cia-flex-auto {
2586
+ flex: 1 1 auto;
2587
+ }
2588
+
2589
+ .cia-flex-initial {
2590
+ flex: 0 1 auto;
2591
+ }
2592
+
2593
+ .cia-flex-none {
2594
+ flex: none;
2595
+ }
2596
+
2597
+ .cia-flex-grow {
2598
+ flex-grow: 1;
2599
+ }
2600
+
2601
+ .cia-flex-grow-0 {
2602
+ flex-grow: 0;
2603
+ }
2604
+
2605
+ .cia-flex-shrink {
2606
+ flex-shrink: 1;
2607
+ }
2608
+
2609
+ .cia-flex-shrink-0 {
2610
+ flex-shrink: 0;
2611
+ }
2612
+
2613
+ .cia-items-start {
2614
+ align-items: flex-start;
2615
+ }
2616
+
2617
+ .cia-items-end {
2618
+ align-items: flex-end;
2619
+ }
2620
+
2621
+ .cia-items-center {
2622
+ align-items: center;
2623
+ }
2624
+
2625
+ .cia-items-baseline {
2626
+ align-items: baseline;
2627
+ }
2628
+
2629
+ .cia-items-stretch {
2630
+ align-items: stretch;
2631
+ }
2632
+
2633
+ .cia-justify-start {
2634
+ justify-content: flex-start;
2635
+ }
2636
+
2637
+ .cia-justify-end {
2638
+ justify-content: flex-end;
2639
+ }
2640
+
2641
+ .cia-justify-center {
2642
+ justify-content: center;
2643
+ }
2644
+
2645
+ .cia-justify-between {
2646
+ justify-content: space-between;
2647
+ }
2648
+
2649
+ .cia-justify-around {
2650
+ justify-content: space-around;
2651
+ }
2652
+
2653
+ .cia-justify-evenly {
2654
+ justify-content: space-evenly;
2655
+ }
2656
+
2657
+ .cia-self-auto {
2658
+ align-self: auto;
2659
+ }
2660
+
2661
+ .cia-self-start {
2662
+ align-self: flex-start;
2663
+ }
2664
+
2665
+ .cia-self-end {
2666
+ align-self: flex-end;
2667
+ }
2668
+
2669
+ .cia-self-center {
2670
+ align-self: center;
2671
+ }
2672
+
2673
+ .cia-self-stretch {
2674
+ align-self: stretch;
2675
+ }
2676
+
2677
+ .cia-flex-center {
2678
+ display: flex;
2679
+ align-items: center;
2680
+ justify-content: center;
2681
+ }
2682
+
2683
+ .cia-flex-between {
2684
+ display: flex;
2685
+ align-items: center;
2686
+ justify-content: space-between;
2687
+ }
2688
+
2689
+ .cia-stack {
2690
+ display: flex;
2691
+ flex-direction: column;
2692
+ }
2693
+
2694
+ .cia-grid-cols-1 {
2695
+ grid-template-columns: repeat(1, minmax(0, 1fr));
2696
+ }
2697
+
2698
+ .cia-grid-cols-2 {
2699
+ grid-template-columns: repeat(2, minmax(0, 1fr));
2700
+ }
2701
+
2702
+ .cia-grid-cols-3 {
2703
+ grid-template-columns: repeat(3, minmax(0, 1fr));
2704
+ }
2705
+
2706
+ .cia-grid-cols-4 {
2707
+ grid-template-columns: repeat(4, minmax(0, 1fr));
2708
+ }
2709
+
2710
+ .cia-grid-cols-6 {
2711
+ grid-template-columns: repeat(6, minmax(0, 1fr));
2712
+ }
2713
+
2714
+ .cia-grid-cols-12 {
2715
+ grid-template-columns: repeat(12, minmax(0, 1fr));
2716
+ }
2717
+
2718
+ .cia-col-span-1 {
2719
+ grid-column: span 1/span 1;
2720
+ }
2721
+
2722
+ .cia-col-span-2 {
2723
+ grid-column: span 2/span 2;
2724
+ }
2725
+
2726
+ .cia-col-span-3 {
2727
+ grid-column: span 3/span 3;
2728
+ }
2729
+
2730
+ .cia-col-span-4 {
2731
+ grid-column: span 4/span 4;
2732
+ }
2733
+
2734
+ .cia-col-span-6 {
2735
+ grid-column: span 6/span 6;
2736
+ }
2737
+
2738
+ .cia-col-span-12 {
2739
+ grid-column: span 12/span 12;
2740
+ }
2741
+
2742
+ .cia-col-span-full {
2743
+ grid-column: 1/-1;
2744
+ }
2745
+
2746
+ .cia-static {
2747
+ position: static;
2748
+ }
2749
+
2750
+ .cia-relative {
2751
+ position: relative;
2752
+ }
2753
+
2754
+ .cia-absolute {
2755
+ position: absolute;
2756
+ }
2757
+
2758
+ .cia-fixed {
2759
+ position: fixed;
2760
+ }
2761
+
2762
+ .cia-sticky {
2763
+ position: sticky;
2764
+ }
2765
+
2766
+ .cia-inset-0 {
2767
+ inset: 0;
2768
+ }
2769
+
2770
+ .cia-top-0 {
2771
+ top: 0;
2772
+ }
2773
+
2774
+ .cia-right-0 {
2775
+ right: 0;
2776
+ }
2777
+
2778
+ .cia-bottom-0 {
2779
+ bottom: 0;
2780
+ }
2781
+
2782
+ .cia-left-0 {
2783
+ left: 0;
2784
+ }
2785
+
2786
+ .cia-w-full {
2787
+ width: 100%;
2788
+ }
2789
+
2790
+ .cia-w-screen {
2791
+ width: 100vw;
2792
+ }
2793
+
2794
+ .cia-w-auto {
2795
+ width: auto;
2796
+ }
2797
+
2798
+ .cia-w-fit {
2799
+ width: fit-content;
2800
+ }
2801
+
2802
+ .cia-w-min {
2803
+ width: min-content;
2804
+ }
2805
+
2806
+ .cia-w-max {
2807
+ width: max-content;
2808
+ }
2809
+
2810
+ .cia-min-w-0 {
2811
+ min-width: 0;
2812
+ }
2813
+
2814
+ .cia-min-w-full {
2815
+ min-width: 100%;
2816
+ }
2817
+
2818
+ .cia-max-w-none {
2819
+ max-width: none;
2820
+ }
2821
+
2822
+ .cia-max-w-full {
2823
+ max-width: 100%;
2824
+ }
2825
+
2826
+ .cia-h-full {
2827
+ height: 100%;
2828
+ }
2829
+
2830
+ .cia-h-screen {
2831
+ height: 100vh;
2832
+ }
2833
+
2834
+ .cia-h-auto {
2835
+ height: auto;
2836
+ }
2837
+
2838
+ .cia-h-fit {
2839
+ height: fit-content;
2840
+ }
2841
+
2842
+ .cia-min-h-0 {
2843
+ min-height: 0;
2844
+ }
2845
+
2846
+ .cia-min-h-screen {
2847
+ min-height: 100vh;
2848
+ }
2849
+
2850
+ .cia-min-h-full {
2851
+ min-height: 100%;
2852
+ }
2853
+
2854
+ .cia-border {
2855
+ border: 1px solid var(--border-default);
2856
+ }
2857
+
2858
+ .cia-border-0 {
2859
+ border: 0;
2860
+ }
2861
+
2862
+ .cia-border-t {
2863
+ border-top: 1px solid var(--border-default);
2864
+ }
2865
+
2866
+ .cia-border-r {
2867
+ border-right: 1px solid var(--border-default);
2868
+ }
2869
+
2870
+ .cia-border-b {
2871
+ border-bottom: 1px solid var(--border-default);
2872
+ }
2873
+
2874
+ .cia-border-l {
2875
+ border-left: 1px solid var(--border-default);
2876
+ }
2877
+
2878
+ .cia-rounded-none {
2879
+ border-radius: var(--radius-none, 0);
2880
+ }
2881
+
2882
+ .cia-rounded-sm {
2883
+ border-radius: var(--radius-sm, 0.25rem);
2884
+ }
2885
+
2886
+ .cia-rounded-md {
2887
+ border-radius: var(--radius-md, 0.375rem);
2888
+ }
2889
+
2890
+ .cia-rounded-lg {
2891
+ border-radius: var(--radius-lg, 0.5rem);
2892
+ }
2893
+
2894
+ .cia-rounded-xl {
2895
+ border-radius: var(--radius-xl, 0.75rem);
2896
+ }
2897
+
2898
+ .cia-rounded-2xl {
2899
+ border-radius: var(--radius-2xl, 1rem);
2900
+ }
2901
+
2902
+ .cia-rounded-full {
2903
+ border-radius: var(--radius-full, 9999px);
2904
+ }
2905
+
2906
+ .cia-shadow-1 {
2907
+ box-shadow: var(--shadow-1, 0 1px 2px 0 rgba(0, 0, 0, 0.05));
2908
+ }
2909
+
2910
+ .cia-shadow-2 {
2911
+ box-shadow: var(--shadow-2, 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1));
2912
+ }
2913
+
2914
+ .cia-shadow-3 {
2915
+ box-shadow: var(--shadow-3, 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1));
2916
+ }
2917
+
2918
+ .cia-shadow-4 {
2919
+ box-shadow: var(--shadow-4, 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1));
2920
+ }
2921
+
2922
+ .cia-shadow-5 {
2923
+ box-shadow: var(--shadow-5, 0 25px 50px -12px rgba(0, 0, 0, 0.25));
2924
+ }
2925
+
2926
+ .cia-shadow-sm {
2927
+ box-shadow: var(--shadow-sm, 0 1px 2px 0 rgba(0, 0, 0, 0.05));
2928
+ }
2929
+
2930
+ .cia-shadow-md {
2931
+ box-shadow: var(--shadow-md, 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1));
2932
+ }
2933
+
2934
+ .cia-shadow-lg {
2935
+ box-shadow: var(--shadow-lg, 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1));
2936
+ }
2937
+
2938
+ .cia-shadow-xl {
2939
+ box-shadow: var(--shadow-xl, 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1));
2940
+ }
2941
+
2942
+ .cia-shadow-2xl {
2943
+ box-shadow: var(--shadow-2xl, 0 25px 50px -12px rgba(0, 0, 0, 0.25));
2944
+ }
2945
+
2946
+ .cia-shadow-inner {
2947
+ box-shadow: var(--shadow-inner, inset 0 2px 4px 0 rgba(0, 0, 0, 0.05));
2948
+ }
2949
+
2950
+ .cia-shadow-none {
2951
+ box-shadow: var(--shadow-none, none);
2952
+ }
2953
+
2954
+ .cia-opacity-0 {
2955
+ opacity: 0;
2956
+ }
2957
+
2958
+ .cia-opacity-5 {
2959
+ opacity: 0.05;
2960
+ }
2961
+
2962
+ .cia-opacity-10 {
2963
+ opacity: 0.1;
2964
+ }
2965
+
2966
+ .cia-opacity-20 {
2967
+ opacity: 0.2;
2968
+ }
2969
+
2970
+ .cia-opacity-25 {
2971
+ opacity: 0.25;
2972
+ }
2973
+
2974
+ .cia-opacity-30 {
2975
+ opacity: 0.3;
2976
+ }
2977
+
2978
+ .cia-opacity-40 {
2979
+ opacity: 0.4;
2980
+ }
2981
+
2982
+ .cia-opacity-50 {
2983
+ opacity: 0.5;
2984
+ }
2985
+
2986
+ .cia-opacity-60 {
2987
+ opacity: 0.6;
2988
+ }
2989
+
2990
+ .cia-opacity-70 {
2991
+ opacity: 0.7;
2992
+ }
2993
+
2994
+ .cia-opacity-75 {
2995
+ opacity: 0.75;
2996
+ }
2997
+
2998
+ .cia-opacity-80 {
2999
+ opacity: 0.8;
3000
+ }
3001
+
3002
+ .cia-opacity-90 {
3003
+ opacity: 0.9;
3004
+ }
3005
+
3006
+ .cia-opacity-95 {
3007
+ opacity: 0.95;
3008
+ }
3009
+
3010
+ .cia-opacity-100 {
3011
+ opacity: 1;
3012
+ }
3013
+
3014
+ .cia-z-hide {
3015
+ z-index: -1;
3016
+ }
3017
+
3018
+ .cia-z-base {
3019
+ z-index: 0;
3020
+ }
3021
+
3022
+ .cia-z-dropdown {
3023
+ z-index: 1000;
3024
+ }
3025
+
3026
+ .cia-z-sticky {
3027
+ z-index: 1100;
3028
+ }
3029
+
3030
+ .cia-z-fixed {
3031
+ z-index: 1200;
3032
+ }
3033
+
3034
+ .cia-z-backdrop {
3035
+ z-index: 1300;
3036
+ }
3037
+
3038
+ .cia-z-modal {
3039
+ z-index: 1400;
3040
+ }
3041
+
3042
+ .cia-z-popover {
3043
+ z-index: 1500;
3044
+ }
3045
+
3046
+ .cia-z-tooltip {
3047
+ z-index: 1600;
3048
+ }
3049
+
3050
+ .cia-z-toast {
3051
+ z-index: 1700;
3052
+ }
3053
+
3054
+ .cia-overflow-auto {
3055
+ overflow: auto;
3056
+ }
3057
+
3058
+ .cia-overflow-hidden {
3059
+ overflow: hidden;
3060
+ }
3061
+
3062
+ .cia-overflow-visible {
3063
+ overflow: visible;
3064
+ }
3065
+
3066
+ .cia-overflow-scroll {
3067
+ overflow: scroll;
3068
+ }
3069
+
3070
+ .cia-overflow-x-auto {
3071
+ overflow-x: auto;
3072
+ }
3073
+
3074
+ .cia-overflow-y-auto {
3075
+ overflow-y: auto;
3076
+ }
3077
+
3078
+ .cia-overflow-x-hidden {
3079
+ overflow-x: hidden;
3080
+ }
3081
+
3082
+ .cia-overflow-y-hidden {
3083
+ overflow-y: hidden;
3084
+ }
3085
+
3086
+ .cia-cursor-pointer {
3087
+ cursor: pointer;
3088
+ }
3089
+
3090
+ .cia-cursor-default {
3091
+ cursor: default;
3092
+ }
3093
+
3094
+ .cia-cursor-not-allowed {
3095
+ cursor: not-allowed;
3096
+ }
3097
+
3098
+ .cia-pointer-events-none {
3099
+ pointer-events: none;
3100
+ }
3101
+
3102
+ .cia-pointer-events-auto {
3103
+ pointer-events: auto;
3104
+ }
3105
+
3106
+ .cia-select-none {
3107
+ user-select: none;
3108
+ }
3109
+
3110
+ .cia-select-text {
3111
+ user-select: text;
3112
+ }
3113
+
3114
+ .cia-select-all {
3115
+ user-select: all;
3116
+ }
3117
+
3118
+ .cia-sr-only {
3119
+ position: absolute;
3120
+ width: 1px;
3121
+ height: 1px;
3122
+ padding: 0;
3123
+ margin: -1px;
3124
+ overflow: hidden;
3125
+ clip: rect(0, 0, 0, 0);
3126
+ border: 0;
3127
+ }
3128
+
3129
+ .cia-not-sr-only {
3130
+ position: static;
3131
+ width: auto;
3132
+ height: auto;
3133
+ padding: 0;
3134
+ margin: 0;
3135
+ overflow: visible;
3136
+ clip: auto;
3137
+ border: 0;
3138
+ }
3139
+
3140
+ :where(:root) {
3141
+ --brand-primary: #3A5FCD;
3142
+ --brand-primary-hover: #2E4A99;
3143
+ --brand-primary-active: #1E3A8A;
3144
+ --brand-secondary: #FF6B6B;
3145
+ --brand-secondary-hover: #E85555;
3146
+ --brand-secondary-active: #C55;
3147
+ --brand-accent: #09F;
3148
+ --brand-accent-hover: #0088E6;
3149
+ --background-default: #FFF;
3150
+ --background-subtle: #F8F6F0;
3151
+ --background-navbar: #FAFAFA;
3152
+ --surface-default: #FFF;
3153
+ --surface-subtle: #F8F6F0;
3154
+ --surface-muted: #F5F5F5;
3155
+ --surface-emphasis: #E5E5E5;
3156
+ --text-primary: #0f0f0f;
3157
+ --text-secondary: #525252;
3158
+ --text-muted: #6b6b6b;
3159
+ --text-inverse: #fff;
3160
+ --text-link: #384fff;
3161
+ --text-link-hover: #2a3acc;
3162
+ --border-default: #e5e5e5;
3163
+ --border-subtle: #f5f5f5;
3164
+ --border-emphasis: #d4d4d4;
3165
+ --border-focus: #384fff;
3166
+ --interactive-hover: rgba(0, 0, 0, 0.03);
3167
+ --interactive-active: rgba(0, 0, 0, 0.06);
3168
+ --action-primary-default: #3A5FCD;
3169
+ --action-primary-hover: #2E4A99;
3170
+ --action-primary-active: #1E3A8A;
3171
+ --action-secondary-default: #FF6B6B;
3172
+ --action-secondary-hover: #E85555;
3173
+ --action-secondary-active: #C55;
3174
+ --success-default: #10b981;
3175
+ --success-hover: #059669;
3176
+ --success-subtle: #ecfdf5;
3177
+ --success-text: #065f46;
3178
+ --warning-default: #f59e0b;
3179
+ --warning-hover: #d97706;
3180
+ --warning-subtle: #fffbeb;
3181
+ --warning-text: #92400e;
3182
+ --error-default: #DC2626;
3183
+ --error-hover: #B91C1C;
3184
+ --error-subtle: #FEF2F2;
3185
+ --error-text: #991B1B;
3186
+ --info-default: #3A5FCD;
3187
+ --info-hover: #2E4A99;
3188
+ --info-subtle: #EFF6FF;
3189
+ --info-text: #1E3A8A;
3190
+ --radius-none: 0;
3191
+ --radius-sm: 0.25rem;
3192
+ --radius-md: 0.375rem;
3193
+ --radius-lg: 0.5rem;
3194
+ --radius-xl: 0.75rem;
3195
+ --radius-2xl: 1rem;
3196
+ --radius-full: 9999px;
3197
+ --shadow-1: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
3198
+ --shadow-2: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
3199
+ --shadow-3: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
3200
+ --shadow-4: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
3201
+ --shadow-5: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
3202
+ --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
3203
+ --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
3204
+ --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
3205
+ --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
3206
+ --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
3207
+ --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
3208
+ --shadow-none: none;
3209
+ --font-primary: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
3210
+ --font-secondary: Georgia, Times New Roman, serif;
3211
+ --font-mono: Fira Code, Consolas, Monaco, monospace;
3212
+ --space-1: 0.5rem;
3213
+ --space-2: 0.75rem;
3214
+ --space-3: 0.875rem;
3215
+ --space-4: 1rem;
3216
+ --space-5: 1.5rem;
3217
+ --space-6: 2rem;
3218
+ --space-7: 3rem;
3219
+ --space-8: 4rem;
3220
+ --space-9: 6rem;
3221
+ --space-0: 0;
3222
+ --space-none: 0;
3223
+ --space-2xs: 0.25rem;
3224
+ --space-xs: var(--space-1);
3225
+ --space-sm: var(--space-2);
3226
+ --space-md: var(--space-4);
3227
+ --space-lg: var(--space-5);
3228
+ --space-xl: var(--space-6);
3229
+ --space-2xl: var(--space-7);
3230
+ --space-3xl: var(--space-8);
3231
+ --space-4xl: var(--space-9);
3232
+ --z-hide: -1;
3233
+ --z-base: 0;
3234
+ --z-dropdown: 1000;
3235
+ --z-sticky: 1100;
3236
+ --z-fixed: 1200;
3237
+ --z-backdrop: 1300;
3238
+ --z-modal: 1400;
3239
+ --z-popover: 1500;
3240
+ --z-tooltip: 1600;
3241
+ --z-toast: 1700;
3242
+ --font-size-1: 0.75rem;
3243
+ --font-size-2: 0.875rem;
3244
+ --font-size-3: 1rem;
3245
+ --font-size-4: 1.125rem;
3246
+ --font-size-5: 1.25rem;
3247
+ --font-size-6: 1.5rem;
3248
+ --font-size-7: 1.875rem;
3249
+ --font-size-8: 2.25rem;
3250
+ --font-size-9: 3rem;
3251
+ --font-size-10: 3.75rem;
3252
+ --font-size-xs: 0.75rem;
3253
+ --font-size-sm: 0.875rem;
3254
+ --font-size-base: 1rem;
3255
+ --font-size-lg: 1.125rem;
3256
+ --font-size-xl: 1.25rem;
3257
+ --font-size-2xl: 1.5rem;
3258
+ --font-size-3xl: 1.875rem;
3259
+ --font-size-4xl: 2.25rem;
3260
+ --font-size-5xl: 3rem;
3261
+ --font-size-6xl: 3.75rem;
3262
+ --font-weight-light: 300;
3263
+ --font-weight-normal: 400;
3264
+ --font-weight-medium: 500;
3265
+ --font-weight-semibold: 600;
3266
+ --font-weight-bold: 700;
3267
+ --font-weight-black: 900;
3268
+ --line-height-1: 1;
3269
+ --line-height-2: 1.25;
3270
+ --line-height-3: 1.375;
3271
+ --line-height-4: 1.5;
3272
+ --line-height-5: 1.625;
3273
+ --line-height-6: 2;
3274
+ --line-height-none: 1;
3275
+ --line-height-tight: 1.25;
3276
+ --line-height-snug: 1.375;
3277
+ --line-height-normal: 1.5;
3278
+ --line-height-relaxed: 1.625;
3279
+ --line-height-loose: 2;
3280
+ --duration-instant: 0ms;
3281
+ --duration-fast: 150ms;
3282
+ --duration-normal: 250ms;
3283
+ --duration-slow: 400ms;
3284
+ --duration-slower: 600ms;
3285
+ --opacity-0: 0;
3286
+ --opacity-5: 0.05;
3287
+ --opacity-10: 0.1;
3288
+ --opacity-20: 0.2;
3289
+ --opacity-25: 0.25;
3290
+ --opacity-30: 0.3;
3291
+ --opacity-40: 0.4;
3292
+ --opacity-50: 0.5;
3293
+ --opacity-60: 0.6;
3294
+ --opacity-70: 0.7;
3295
+ --opacity-75: 0.75;
3296
+ --opacity-80: 0.8;
3297
+ --opacity-90: 0.9;
3298
+ --opacity-95: 0.95;
3299
+ --opacity-100: 1;
3300
+ --btn-padding-y: var(--space-1, 0.5rem);
3301
+ --btn-padding-x: var(--space-4, 1rem);
3302
+ --btn-radius: var(--radius-md, 0.25rem);
3303
+ --btn-font-weight: var(--font-weight-medium, 500);
3304
+ --btn-font-size: var(--font-size-base, 1rem);
3305
+ --btn-border-width: 1px;
3306
+ --card-padding: var(--space-4, 1rem);
3307
+ --card-radius: var(--radius-lg, 0.5rem);
3308
+ --card-shadow: var(--shadow-sm, 0 1px 2px 0 rgba(0, 0, 0, 0.05));
3309
+ --card-border: 1px solid var(--border-default);
3310
+ --input-padding-y: var(--space-1, 0.5rem);
3311
+ --input-padding-x: var(--space-2, 0.75rem);
3312
+ --input-radius: var(--radius-md, 0.25rem);
3313
+ --input-border-width: 1px;
3314
+ --alert-padding-y: var(--space-2, 0.75rem);
3315
+ --alert-padding-x: var(--space-4, 1rem);
3316
+ --alert-radius: var(--radius-md, 0.25rem);
3317
+ --badge-padding-y: var(--space-1, 0.5rem);
3318
+ --badge-padding-x: var(--space-1, 0.5rem);
3319
+ --badge-radius: var(--radius-full, 9999px);
3320
+ --tag-padding-y: var(--space-2xs, 0.25rem);
3321
+ --tag-padding-x: var(--space-2, 0.75rem);
3322
+ --tag-radius: var(--radius-md, 0.25rem);
3323
+ --modal-padding: var(--space-5, 1.5rem);
3324
+ --modal-radius: var(--radius-xl, 0.75rem);
3325
+ --modal-shadow: var(--shadow-2xl, 0 25px 50px -12px rgba(0, 0, 0, 0.25));
3326
+ --popover-padding: var(--space-4, 1rem);
3327
+ --popover-radius: var(--radius-lg, 0.5rem);
3328
+ --popover-shadow: var(--shadow-lg, 0 10px 15px -3px rgba(0, 0, 0, 0.1));
3329
+ --tooltip-padding-y: var(--space-1, 0.5rem);
3330
+ --tooltip-padding-x: var(--space-1, 0.5rem);
3331
+ --tooltip-radius: var(--radius-md, 0.25rem);
3332
+ --dropdown-radius: var(--radius-md, 0.25rem);
3333
+ --dropdown-shadow: var(--shadow-md, 0 4px 6px -1px rgba(0, 0, 0, 0.1));
3334
+ }
3335
+
3336
+ [data-theme=light] {
3337
+ --brand-primary: #3A5FCD;
3338
+ --brand-primary-hover: #2E4A99;
3339
+ --brand-primary-active: #1E3A8A;
3340
+ --brand-secondary: #FF6B6B;
3341
+ --brand-secondary-hover: #E85555;
3342
+ --brand-secondary-active: #C55;
3343
+ --brand-accent: #09F;
3344
+ --brand-accent-hover: #0088E6;
3345
+ --background-default: #FFF;
3346
+ --background-subtle: #F8F6F0;
3347
+ --background-navbar: #FAFAFA;
3348
+ --surface-default: #FFF;
3349
+ --surface-subtle: #F8F6F0;
3350
+ --surface-muted: #F5F5F5;
3351
+ --surface-emphasis: #E5E5E5;
3352
+ --text-primary: #0f0f0f;
3353
+ --text-secondary: #525252;
3354
+ --text-muted: #6b6b6b;
3355
+ --text-inverse: #fff;
3356
+ --text-link: #384fff;
3357
+ --text-link-hover: #2a3acc;
3358
+ --border-default: #e5e5e5;
3359
+ --border-subtle: #f5f5f5;
3360
+ --border-emphasis: #d4d4d4;
3361
+ --border-focus: #384fff;
3362
+ --interactive-hover: rgba(0, 0, 0, 0.03);
3363
+ --interactive-active: rgba(0, 0, 0, 0.06);
3364
+ --action-primary-default: #3A5FCD;
3365
+ --action-primary-hover: #2E4A99;
3366
+ --action-primary-active: #1E3A8A;
3367
+ --action-secondary-default: #FF6B6B;
3368
+ --action-secondary-hover: #E85555;
3369
+ --action-secondary-active: #C55;
3370
+ --success-default: #10b981;
3371
+ --success-hover: #059669;
3372
+ --success-subtle: #ecfdf5;
3373
+ --success-text: #065f46;
3374
+ --warning-default: #f59e0b;
3375
+ --warning-hover: #d97706;
3376
+ --warning-subtle: #fffbeb;
3377
+ --warning-text: #92400e;
3378
+ --error-default: #DC2626;
3379
+ --error-hover: #B91C1C;
3380
+ --error-subtle: #FEF2F2;
3381
+ --error-text: #991B1B;
3382
+ --info-default: #3A5FCD;
3383
+ --info-hover: #2E4A99;
3384
+ --info-subtle: #EFF6FF;
3385
+ --info-text: #1E3A8A;
3386
+ --radius-none: 0;
3387
+ --radius-sm: 0.25rem;
3388
+ --radius-md: 0.375rem;
3389
+ --radius-lg: 0.5rem;
3390
+ --radius-xl: 0.75rem;
3391
+ --radius-2xl: 1rem;
3392
+ --radius-full: 9999px;
3393
+ --shadow-1: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
3394
+ --shadow-2: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
3395
+ --shadow-3: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
3396
+ --shadow-4: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
3397
+ --shadow-5: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
3398
+ --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
3399
+ --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
3400
+ --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
3401
+ --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
3402
+ --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
3403
+ --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
3404
+ --shadow-none: none;
3405
+ --font-primary: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
3406
+ --font-secondary: Georgia, Times New Roman, serif;
3407
+ --font-mono: Fira Code, Consolas, Monaco, monospace;
3408
+ --space-1: 0.5rem;
3409
+ --space-2: 0.75rem;
3410
+ --space-3: 0.875rem;
3411
+ --space-4: 1rem;
3412
+ --space-5: 1.5rem;
3413
+ --space-6: 2rem;
3414
+ --space-7: 3rem;
3415
+ --space-8: 4rem;
3416
+ --space-9: 6rem;
3417
+ --space-0: 0;
3418
+ --space-none: 0;
3419
+ --space-2xs: 0.25rem;
3420
+ --space-xs: var(--space-1);
3421
+ --space-sm: var(--space-2);
3422
+ --space-md: var(--space-4);
3423
+ --space-lg: var(--space-5);
3424
+ --space-xl: var(--space-6);
3425
+ --space-2xl: var(--space-7);
3426
+ --space-3xl: var(--space-8);
3427
+ --space-4xl: var(--space-9);
3428
+ --z-hide: -1;
3429
+ --z-base: 0;
3430
+ --z-dropdown: 1000;
3431
+ --z-sticky: 1100;
3432
+ --z-fixed: 1200;
3433
+ --z-backdrop: 1300;
3434
+ --z-modal: 1400;
3435
+ --z-popover: 1500;
3436
+ --z-tooltip: 1600;
3437
+ --z-toast: 1700;
3438
+ --font-size-1: 0.75rem;
3439
+ --font-size-2: 0.875rem;
3440
+ --font-size-3: 1rem;
3441
+ --font-size-4: 1.125rem;
3442
+ --font-size-5: 1.25rem;
3443
+ --font-size-6: 1.5rem;
3444
+ --font-size-7: 1.875rem;
3445
+ --font-size-8: 2.25rem;
3446
+ --font-size-9: 3rem;
3447
+ --font-size-10: 3.75rem;
3448
+ --font-size-xs: 0.75rem;
3449
+ --font-size-sm: 0.875rem;
3450
+ --font-size-base: 1rem;
3451
+ --font-size-lg: 1.125rem;
3452
+ --font-size-xl: 1.25rem;
3453
+ --font-size-2xl: 1.5rem;
3454
+ --font-size-3xl: 1.875rem;
3455
+ --font-size-4xl: 2.25rem;
3456
+ --font-size-5xl: 3rem;
3457
+ --font-size-6xl: 3.75rem;
3458
+ --font-weight-light: 300;
3459
+ --font-weight-normal: 400;
3460
+ --font-weight-medium: 500;
3461
+ --font-weight-semibold: 600;
3462
+ --font-weight-bold: 700;
3463
+ --font-weight-black: 900;
3464
+ --line-height-1: 1;
3465
+ --line-height-2: 1.25;
3466
+ --line-height-3: 1.375;
3467
+ --line-height-4: 1.5;
3468
+ --line-height-5: 1.625;
3469
+ --line-height-6: 2;
3470
+ --line-height-none: 1;
3471
+ --line-height-tight: 1.25;
3472
+ --line-height-snug: 1.375;
3473
+ --line-height-normal: 1.5;
3474
+ --line-height-relaxed: 1.625;
3475
+ --line-height-loose: 2;
3476
+ --duration-instant: 0ms;
3477
+ --duration-fast: 150ms;
3478
+ --duration-normal: 250ms;
3479
+ --duration-slow: 400ms;
3480
+ --duration-slower: 600ms;
3481
+ --opacity-0: 0;
3482
+ --opacity-5: 0.05;
3483
+ --opacity-10: 0.1;
3484
+ --opacity-20: 0.2;
3485
+ --opacity-25: 0.25;
3486
+ --opacity-30: 0.3;
3487
+ --opacity-40: 0.4;
3488
+ --opacity-50: 0.5;
3489
+ --opacity-60: 0.6;
3490
+ --opacity-70: 0.7;
3491
+ --opacity-75: 0.75;
3492
+ --opacity-80: 0.8;
3493
+ --opacity-90: 0.9;
3494
+ --opacity-95: 0.95;
3495
+ --opacity-100: 1;
3496
+ --btn-padding-y: var(--space-1, 0.5rem);
3497
+ --btn-padding-x: var(--space-4, 1rem);
3498
+ --btn-radius: var(--radius-md, 0.25rem);
3499
+ --btn-font-weight: var(--font-weight-medium, 500);
3500
+ --btn-font-size: var(--font-size-base, 1rem);
3501
+ --btn-border-width: 1px;
3502
+ --card-padding: var(--space-4, 1rem);
3503
+ --card-radius: var(--radius-lg, 0.5rem);
3504
+ --card-shadow: var(--shadow-sm, 0 1px 2px 0 rgba(0, 0, 0, 0.05));
3505
+ --card-border: 1px solid var(--border-default);
3506
+ --input-padding-y: var(--space-1, 0.5rem);
3507
+ --input-padding-x: var(--space-2, 0.75rem);
3508
+ --input-radius: var(--radius-md, 0.25rem);
3509
+ --input-border-width: 1px;
3510
+ --alert-padding-y: var(--space-2, 0.75rem);
3511
+ --alert-padding-x: var(--space-4, 1rem);
3512
+ --alert-radius: var(--radius-md, 0.25rem);
3513
+ --badge-padding-y: var(--space-1, 0.5rem);
3514
+ --badge-padding-x: var(--space-1, 0.5rem);
3515
+ --badge-radius: var(--radius-full, 9999px);
3516
+ --tag-padding-y: var(--space-2xs, 0.25rem);
3517
+ --tag-padding-x: var(--space-2, 0.75rem);
3518
+ --tag-radius: var(--radius-md, 0.25rem);
3519
+ --modal-padding: var(--space-5, 1.5rem);
3520
+ --modal-radius: var(--radius-xl, 0.75rem);
3521
+ --modal-shadow: var(--shadow-2xl, 0 25px 50px -12px rgba(0, 0, 0, 0.25));
3522
+ --popover-padding: var(--space-4, 1rem);
3523
+ --popover-radius: var(--radius-lg, 0.5rem);
3524
+ --popover-shadow: var(--shadow-lg, 0 10px 15px -3px rgba(0, 0, 0, 0.1));
3525
+ --tooltip-padding-y: var(--space-1, 0.5rem);
3526
+ --tooltip-padding-x: var(--space-1, 0.5rem);
3527
+ --tooltip-radius: var(--radius-md, 0.25rem);
3528
+ --dropdown-radius: var(--radius-md, 0.25rem);
3529
+ --dropdown-shadow: var(--shadow-md, 0 4px 6px -1px rgba(0, 0, 0, 0.1));
3530
+ }
3531
+
3532
+ [data-theme=dark] {
3533
+ --background-default: #0a0a0a;
3534
+ --background-subtle: #151515;
3535
+ --background-navbar: #1a1a1a;
3536
+ --surface-default: #151515;
3537
+ --surface-subtle: #1f1f1f;
3538
+ --surface-muted: #2a2a2a;
3539
+ --surface-emphasis: #353535;
3540
+ --text-primary: #FFF;
3541
+ --text-secondary: #b8b8b8;
3542
+ --text-muted: #768194;
3543
+ --text-inverse: #0a0a0a;
3544
+ --text-link: #09f;
3545
+ --text-link-hover: #5ebbff;
3546
+ --border-default: #2a2a2a;
3547
+ --border-subtle: #1f1f1f;
3548
+ --border-emphasis: #404040;
3549
+ --border-focus: #09f;
3550
+ --interactive-hover: rgba(255, 255, 255, 0.05);
3551
+ --interactive-active: rgba(255, 255, 255, 0.1);
3552
+ --action-primary-default: #6B8FE8;
3553
+ --action-primary-hover: #8BABF5;
3554
+ --action-primary-active: #3A5FCD;
3555
+ --action-secondary-default: #FF8A8A;
3556
+ --action-secondary-hover: #FFACAC;
3557
+ --action-secondary-active: #FF6B6B;
3558
+ --success-default: #34d399;
3559
+ --success-hover: #10b981;
3560
+ --success-subtle: #064e3b;
3561
+ --success-text: #6ee7b7;
3562
+ --warning-default: #fbbf24;
3563
+ --warning-hover: #f59e0b;
3564
+ --warning-subtle: #451a03;
3565
+ --warning-text: #fcd34d;
3566
+ --error-default: #f87171;
3567
+ --error-hover: #ef4444;
3568
+ --error-subtle: #450a0a;
3569
+ --error-text: #fca5a5;
3570
+ --info-default: #60a5fa;
3571
+ --info-hover: #3b82f6;
3572
+ --info-subtle: #172554;
3573
+ --info-text: #93c5fd;
3574
+ --shadow-1: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
3575
+ --shadow-2: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.3);
3576
+ --shadow-3: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -4px rgba(0, 0, 0, 0.4);
3577
+ --shadow-4: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.4);
3578
+ --shadow-5: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
3579
+ --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
3580
+ --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.3);
3581
+ --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -4px rgba(0, 0, 0, 0.4);
3582
+ --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.4);
3583
+ --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
3584
+ --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.3);
3585
+ --shadow-none: none;
3586
+ }
3587
+
3588
+ @media (prefers-color-scheme: dark) {
3589
+ :root:not([data-theme=light]) {
3590
+ --background-default: #0a0a0a;
3591
+ --background-subtle: #151515;
3592
+ --background-navbar: #1a1a1a;
3593
+ --surface-default: #151515;
3594
+ --surface-subtle: #1f1f1f;
3595
+ --surface-muted: #2a2a2a;
3596
+ --surface-emphasis: #353535;
3597
+ --text-primary: #FFF;
3598
+ --text-secondary: #b8b8b8;
3599
+ --text-muted: #768194;
3600
+ --text-inverse: #0a0a0a;
3601
+ --text-link: #09f;
3602
+ --text-link-hover: #5ebbff;
3603
+ --border-default: #2a2a2a;
3604
+ --border-subtle: #1f1f1f;
3605
+ --border-emphasis: #404040;
3606
+ --border-focus: #09f;
3607
+ --interactive-hover: rgba(255, 255, 255, 0.05);
3608
+ --interactive-active: rgba(255, 255, 255, 0.1);
3609
+ --action-primary-default: #6B8FE8;
3610
+ --action-primary-hover: #8BABF5;
3611
+ --action-primary-active: #3A5FCD;
3612
+ --action-secondary-default: #FF8A8A;
3613
+ --action-secondary-hover: #FFACAC;
3614
+ --action-secondary-active: #FF6B6B;
3615
+ --success-default: #34d399;
3616
+ --success-hover: #10b981;
3617
+ --success-subtle: #064e3b;
3618
+ --success-text: #6ee7b7;
3619
+ --warning-default: #fbbf24;
3620
+ --warning-hover: #f59e0b;
3621
+ --warning-subtle: #451a03;
3622
+ --warning-text: #fcd34d;
3623
+ --error-default: #f87171;
3624
+ --error-hover: #ef4444;
3625
+ --error-subtle: #450a0a;
3626
+ --error-text: #fca5a5;
3627
+ --info-default: #60a5fa;
3628
+ --info-hover: #3b82f6;
3629
+ --info-subtle: #172554;
3630
+ --info-text: #93c5fd;
3631
+ --shadow-1: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
3632
+ --shadow-2: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.3);
3633
+ --shadow-3: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -4px rgba(0, 0, 0, 0.4);
3634
+ --shadow-4: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.4);
3635
+ --shadow-5: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
3636
+ --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
3637
+ --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.3);
3638
+ --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -4px rgba(0, 0, 0, 0.4);
3639
+ --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.4);
3640
+ --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
3641
+ --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.3);
3642
+ --shadow-none: none;
3643
+ }
3644
+ }
3645
+ *,
3646
+ *::before,
3647
+ *::after {
3648
+ box-sizing: border-box;
3649
+ }
3650
+
3651
+ html {
3652
+ -webkit-font-smoothing: antialiased;
3653
+ -moz-osx-font-smoothing: grayscale;
3654
+ }
3655
+
3656
+ body {
3657
+ margin: 0;
3658
+ font-family: var(--font-primary, Inter, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif);
3659
+ font-size: var(--font-size-base, 1rem);
3660
+ line-height: var(--line-height-normal, 1.5);
3661
+ color: var(--text-primary, #0f0f0f);
3662
+ background: var(--surface-default, #FFF);
3663
+ }
3664
+
3665
+ h1 {
3666
+ margin: 0;
3667
+ padding: 0;
3668
+ font: inherit;
3669
+ }
3670
+
3671
+ h2 {
3672
+ margin: 0;
3673
+ padding: 0;
3674
+ font: inherit;
3675
+ }
3676
+
3677
+ h3 {
3678
+ margin: 0;
3679
+ padding: 0;
3680
+ font: inherit;
3681
+ }
3682
+
3683
+ h4 {
3684
+ margin: 0;
3685
+ padding: 0;
3686
+ font: inherit;
3687
+ }
3688
+
3689
+ h5 {
3690
+ margin: 0;
3691
+ padding: 0;
3692
+ font: inherit;
3693
+ }
3694
+
3695
+ h6 {
3696
+ margin: 0;
3697
+ padding: 0;
3698
+ font: inherit;
3699
+ }
3700
+
3701
+ input, button, select, textarea {
3702
+ font: inherit;
3703
+ color: inherit;
3704
+ }
3705
+
3706
+ input:not([type=checkbox]):not([type=radio]),
3707
+ select,
3708
+ textarea {
3709
+ width: 100%;
3710
+ }
3711
+
3712
+ a {
3713
+ color: var(--text-link, #384fff);
3714
+ text-decoration: none;
3715
+ transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
3716
+ }
3717
+ @media (prefers-reduced-motion: reduce) {
3718
+ a {
3719
+ transition: none;
3720
+ }
3721
+ }
3722
+ a:hover {
3723
+ color: var(--text-link-hover, #2a3acc);
3724
+ }
3725
+
3726
+ :focus-visible {
3727
+ outline: 2px solid var(--border-focus, #384fff);
3728
+ outline-offset: 2px;
3729
+ }
3730
+
3731
+ :focus:not(:focus-visible) {
3732
+ outline: none;
3733
+ }