@nasa-jpl/stellar-svelte 2.0.0-alpha.12

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 (111) hide show
  1. package/LICENSE +7 -0
  2. package/README.md +58 -0
  3. package/dist/components/ui/alert/alert-description.svelte +8 -0
  4. package/dist/components/ui/alert/alert-description.svelte.d.ts +19 -0
  5. package/dist/components/ui/alert/alert-title.svelte +13 -0
  6. package/dist/components/ui/alert/alert-title.svelte.d.ts +22 -0
  7. package/dist/components/ui/alert/alert.svelte +10 -0
  8. package/dist/components/ui/alert/alert.svelte.d.ts +22 -0
  9. package/dist/components/ui/alert/index.d.ts +43 -0
  10. package/dist/components/ui/alert/index.js +19 -0
  11. package/dist/components/ui/alert-dialog/alert-dialog-action.svelte +16 -0
  12. package/dist/components/ui/alert-dialog/alert-dialog-action.svelte.d.ts +23 -0
  13. package/dist/components/ui/alert-dialog/alert-dialog-cancel.svelte +16 -0
  14. package/dist/components/ui/alert-dialog/alert-dialog-cancel.svelte.d.ts +23 -0
  15. package/dist/components/ui/alert-dialog/alert-dialog-content.svelte +23 -0
  16. package/dist/components/ui/alert-dialog/alert-dialog-content.svelte.d.ts +19 -0
  17. package/dist/components/ui/alert-dialog/alert-dialog-description.svelte +12 -0
  18. package/dist/components/ui/alert-dialog/alert-dialog-description.svelte.d.ts +19 -0
  19. package/dist/components/ui/alert-dialog/alert-dialog-footer.svelte +11 -0
  20. package/dist/components/ui/alert-dialog/alert-dialog-footer.svelte.d.ts +19 -0
  21. package/dist/components/ui/alert-dialog/alert-dialog-header.svelte +8 -0
  22. package/dist/components/ui/alert-dialog/alert-dialog-header.svelte.d.ts +19 -0
  23. package/dist/components/ui/alert-dialog/alert-dialog-overlay.svelte +17 -0
  24. package/dist/components/ui/alert-dialog/alert-dialog-overlay.svelte.d.ts +17 -0
  25. package/dist/components/ui/alert-dialog/alert-dialog-portal.svelte +6 -0
  26. package/dist/components/ui/alert-dialog/alert-dialog-portal.svelte.d.ts +19 -0
  27. package/dist/components/ui/alert-dialog/alert-dialog-title.svelte +10 -0
  28. package/dist/components/ui/alert-dialog/alert-dialog-title.svelte.d.ts +19 -0
  29. package/dist/components/ui/alert-dialog/index.d.ts +13 -0
  30. package/dist/components/ui/alert-dialog/index.js +15 -0
  31. package/dist/components/ui/aspect-ratio/aspect-ratio.svelte +7 -0
  32. package/dist/components/ui/aspect-ratio/aspect-ratio.svelte.d.ts +19 -0
  33. package/dist/components/ui/aspect-ratio/index.d.ts +2 -0
  34. package/dist/components/ui/aspect-ratio/index.js +2 -0
  35. package/dist/components/ui/badge/badge.svelte +16 -0
  36. package/dist/components/ui/badge/badge.svelte.d.ts +24 -0
  37. package/dist/components/ui/badge/index.d.ts +53 -0
  38. package/dist/components/ui/badge/index.js +16 -0
  39. package/dist/components/ui/breadcrumb/breadcrumb-ellipsis.svelte +17 -0
  40. package/dist/components/ui/breadcrumb/breadcrumb-ellipsis.svelte.d.ts +19 -0
  41. package/dist/components/ui/breadcrumb/breadcrumb-item.svelte +9 -0
  42. package/dist/components/ui/breadcrumb/breadcrumb-item.svelte.d.ts +21 -0
  43. package/dist/components/ui/breadcrumb/breadcrumb-link.svelte +21 -0
  44. package/dist/components/ui/breadcrumb/breadcrumb-link.svelte.d.ts +24 -0
  45. package/dist/components/ui/breadcrumb/breadcrumb-list.svelte +16 -0
  46. package/dist/components/ui/breadcrumb/breadcrumb-list.svelte.d.ts +21 -0
  47. package/dist/components/ui/breadcrumb/breadcrumb-page.svelte +16 -0
  48. package/dist/components/ui/breadcrumb/breadcrumb-page.svelte.d.ts +23 -0
  49. package/dist/components/ui/breadcrumb/breadcrumb-separator.svelte +18 -0
  50. package/dist/components/ui/breadcrumb/breadcrumb-separator.svelte.d.ts +21 -0
  51. package/dist/components/ui/breadcrumb/breadcrumb.svelte +8 -0
  52. package/dist/components/ui/breadcrumb/breadcrumb.svelte.d.ts +21 -0
  53. package/dist/components/ui/breadcrumb/index.d.ts +8 -0
  54. package/dist/components/ui/breadcrumb/index.js +10 -0
  55. package/dist/components/ui/button/button.svelte +20 -0
  56. package/dist/components/ui/button/button.svelte.d.ts +16 -0
  57. package/dist/components/ui/button/index.d.ts +117 -0
  58. package/dist/components/ui/button/index.js +28 -0
  59. package/dist/components/ui/dropdown-menu/dropdown-menu-checkbox-item.svelte +30 -0
  60. package/dist/components/ui/dropdown-menu/dropdown-menu-checkbox-item.svelte.d.ts +15 -0
  61. package/dist/components/ui/dropdown-menu/dropdown-menu-content.svelte +22 -0
  62. package/dist/components/ui/dropdown-menu/dropdown-menu-content.svelte.d.ts +15 -0
  63. package/dist/components/ui/dropdown-menu/dropdown-menu-item.svelte +24 -0
  64. package/dist/components/ui/dropdown-menu/dropdown-menu-item.svelte.d.ts +17 -0
  65. package/dist/components/ui/dropdown-menu/dropdown-menu-label.svelte +13 -0
  66. package/dist/components/ui/dropdown-menu/dropdown-menu-label.svelte.d.ts +23 -0
  67. package/dist/components/ui/dropdown-menu/dropdown-menu-radio-group.svelte +7 -0
  68. package/dist/components/ui/dropdown-menu/dropdown-menu-radio-group.svelte.d.ts +19 -0
  69. package/dist/components/ui/dropdown-menu/dropdown-menu-radio-item.svelte +30 -0
  70. package/dist/components/ui/dropdown-menu/dropdown-menu-radio-item.svelte.d.ts +15 -0
  71. package/dist/components/ui/dropdown-menu/dropdown-menu-separator.svelte +10 -0
  72. package/dist/components/ui/dropdown-menu/dropdown-menu-separator.svelte.d.ts +17 -0
  73. package/dist/components/ui/dropdown-menu/dropdown-menu-shortcut.svelte +8 -0
  74. package/dist/components/ui/dropdown-menu/dropdown-menu-shortcut.svelte.d.ts +19 -0
  75. package/dist/components/ui/dropdown-menu/dropdown-menu-sub-content.svelte +25 -0
  76. package/dist/components/ui/dropdown-menu/dropdown-menu-sub-content.svelte.d.ts +15 -0
  77. package/dist/components/ui/dropdown-menu/dropdown-menu-sub-trigger.svelte +25 -0
  78. package/dist/components/ui/dropdown-menu/dropdown-menu-sub-trigger.svelte.d.ts +21 -0
  79. package/dist/components/ui/dropdown-menu/index.d.ts +16 -0
  80. package/dist/components/ui/dropdown-menu/index.js +18 -0
  81. package/dist/components/ui/popover/index.d.ts +6 -0
  82. package/dist/components/ui/popover/index.js +8 -0
  83. package/dist/components/ui/popover/popover-content.svelte +19 -0
  84. package/dist/components/ui/popover/popover-content.svelte.d.ts +19 -0
  85. package/dist/components/ui/theme-switcher/button.svelte +20 -0
  86. package/dist/components/ui/theme-switcher/button.svelte.d.ts +14 -0
  87. package/dist/components/ui/theme-switcher/index.d.ts +4 -0
  88. package/dist/components/ui/theme-switcher/index.js +4 -0
  89. package/dist/components/ui/theme-switcher/theme-switcher-button.svelte +15 -0
  90. package/dist/components/ui/theme-switcher/theme-switcher-button.svelte.d.ts +16 -0
  91. package/dist/components/ui/theme-switcher/theme-switcher-dropdown.svelte +25 -0
  92. package/dist/components/ui/theme-switcher/theme-switcher-dropdown.svelte.d.ts +16 -0
  93. package/dist/components/ui/typography/H1.svelte +8 -0
  94. package/dist/components/ui/typography/H1.svelte.d.ts +21 -0
  95. package/dist/components/ui/typography/H2.svelte +8 -0
  96. package/dist/components/ui/typography/H2.svelte.d.ts +21 -0
  97. package/dist/components/ui/typography/H3.svelte +8 -0
  98. package/dist/components/ui/typography/H3.svelte.d.ts +21 -0
  99. package/dist/components/ui/typography/H4.svelte +8 -0
  100. package/dist/components/ui/typography/H4.svelte.d.ts +21 -0
  101. package/dist/components/ui/typography/P.svelte +8 -0
  102. package/dist/components/ui/typography/P.svelte.d.ts +21 -0
  103. package/dist/components/ui/typography/index.d.ts +6 -0
  104. package/dist/components/ui/typography/index.js +6 -0
  105. package/dist/index.css +1792 -0
  106. package/dist/index.d.ts +11 -0
  107. package/dist/index.js +12 -0
  108. package/dist/utils.d.ts +11 -0
  109. package/dist/utils.js +38 -0
  110. package/eslint.config.js +33 -0
  111. package/package.json +70 -0
package/dist/index.css ADDED
@@ -0,0 +1,1792 @@
1
+ @font-face {
2
+ font-family: "Inter";
3
+
4
+ font-style: normal;
5
+
6
+ font-weight: 100;
7
+
8
+ font-display: swap;
9
+
10
+ src: url("web/Inter-Thin.woff2?v=4.0") format("woff2");
11
+ }
12
+
13
+ @font-face {
14
+ font-family: "Inter";
15
+
16
+ font-style: italic;
17
+
18
+ font-weight: 100;
19
+
20
+ font-display: swap;
21
+
22
+ src: url("web/Inter-ThinItalic.woff2?v=4.0") format("woff2");
23
+ }
24
+
25
+ @font-face {
26
+ font-family: "Inter";
27
+
28
+ font-style: normal;
29
+
30
+ font-weight: 200;
31
+
32
+ font-display: swap;
33
+
34
+ src: url("web/Inter-ExtraLight.woff2?v=4.0") format("woff2");
35
+ }
36
+
37
+ @font-face {
38
+ font-family: "Inter";
39
+
40
+ font-style: italic;
41
+
42
+ font-weight: 200;
43
+
44
+ font-display: swap;
45
+
46
+ src: url("web/Inter-ExtraLightItalic.woff2?v=4.0") format("woff2");
47
+ }
48
+
49
+ @font-face {
50
+ font-family: "Inter";
51
+
52
+ font-style: normal;
53
+
54
+ font-weight: 300;
55
+
56
+ font-display: swap;
57
+
58
+ src: url("web/Inter-Light.woff2?v=4.0") format("woff2");
59
+ }
60
+
61
+ @font-face {
62
+ font-family: "Inter";
63
+
64
+ font-style: italic;
65
+
66
+ font-weight: 300;
67
+
68
+ font-display: swap;
69
+
70
+ src: url("web/Inter-LightItalic.woff2?v=4.0") format("woff2");
71
+ }
72
+
73
+ @font-face {
74
+ font-family: "Inter";
75
+
76
+ font-style: normal;
77
+
78
+ font-weight: 400;
79
+
80
+ font-display: swap;
81
+
82
+ src: url("web/Inter-Regular.woff2?v=4.0") format("woff2");
83
+ }
84
+
85
+ @font-face {
86
+ font-family: "Inter";
87
+
88
+ font-style: italic;
89
+
90
+ font-weight: 400;
91
+
92
+ font-display: swap;
93
+
94
+ src: url("web/Inter-Italic.woff2?v=4.0") format("woff2");
95
+ }
96
+
97
+ @font-face {
98
+ font-family: "Inter";
99
+
100
+ font-style: normal;
101
+
102
+ font-weight: 500;
103
+
104
+ font-display: swap;
105
+
106
+ src: url("web/Inter-Medium.woff2?v=4.0") format("woff2");
107
+ }
108
+
109
+ @font-face {
110
+ font-family: "Inter";
111
+
112
+ font-style: italic;
113
+
114
+ font-weight: 500;
115
+
116
+ font-display: swap;
117
+
118
+ src: url("web/Inter-MediumItalic.woff2?v=4.0") format("woff2");
119
+ }
120
+
121
+ @font-face {
122
+ font-family: "Inter";
123
+
124
+ font-style: normal;
125
+
126
+ font-weight: 600;
127
+
128
+ font-display: swap;
129
+
130
+ src: url("web/Inter-SemiBold.woff2?v=4.0") format("woff2");
131
+ }
132
+
133
+ @font-face {
134
+ font-family: "Inter";
135
+
136
+ font-style: italic;
137
+
138
+ font-weight: 600;
139
+
140
+ font-display: swap;
141
+
142
+ src: url("web/Inter-SemiBoldItalic.woff2?v=4.0") format("woff2");
143
+ }
144
+
145
+ @font-face {
146
+ font-family: "Inter";
147
+
148
+ font-style: normal;
149
+
150
+ font-weight: 700;
151
+
152
+ font-display: swap;
153
+
154
+ src: url("web/Inter-Bold.woff2?v=4.0") format("woff2");
155
+ }
156
+
157
+ @font-face {
158
+ font-family: "Inter";
159
+
160
+ font-style: italic;
161
+
162
+ font-weight: 700;
163
+
164
+ font-display: swap;
165
+
166
+ src: url("web/Inter-BoldItalic.woff2?v=4.0") format("woff2");
167
+ }
168
+
169
+ @font-face {
170
+ font-family: "Inter";
171
+
172
+ font-style: normal;
173
+
174
+ font-weight: 800;
175
+
176
+ font-display: swap;
177
+
178
+ src: url("web/Inter-ExtraBold.woff2?v=4.0") format("woff2");
179
+ }
180
+
181
+ @font-face {
182
+ font-family: "Inter";
183
+
184
+ font-style: italic;
185
+
186
+ font-weight: 800;
187
+
188
+ font-display: swap;
189
+
190
+ src: url("web/Inter-ExtraBoldItalic.woff2?v=4.0") format("woff2");
191
+ }
192
+
193
+ @font-face {
194
+ font-family: "Inter";
195
+
196
+ font-style: normal;
197
+
198
+ font-weight: 900;
199
+
200
+ font-display: swap;
201
+
202
+ src: url("web/Inter-Black.woff2?v=4.0") format("woff2");
203
+ }
204
+
205
+ @font-face {
206
+ font-family: "Inter";
207
+
208
+ font-style: italic;
209
+
210
+ font-weight: 900;
211
+
212
+ font-display: swap;
213
+
214
+ src: url("web/Inter-BlackItalic.woff2?v=4.0") format("woff2");
215
+ }
216
+
217
+ /*
218
+ ! tailwindcss v3.4.10 | MIT License | https://tailwindcss.com
219
+ */
220
+
221
+ /*
222
+ 1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
223
+ 2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
224
+ */
225
+
226
+ *,
227
+ ::before,
228
+ ::after {
229
+ box-sizing: border-box;
230
+ /* 1 */
231
+ border-width: 0;
232
+ /* 2 */
233
+ border-style: solid;
234
+ /* 2 */
235
+ border-color: #e5e7eb;
236
+ /* 2 */
237
+ }
238
+
239
+ ::before,
240
+ ::after {
241
+ --tw-content: '';
242
+ }
243
+
244
+ /*
245
+ 1. Use a consistent sensible line-height in all browsers.
246
+ 2. Prevent adjustments of font size after orientation changes in iOS.
247
+ 3. Use a more readable tab size.
248
+ 4. Use the user's configured `sans` font-family by default.
249
+ 5. Use the user's configured `sans` font-feature-settings by default.
250
+ 6. Use the user's configured `sans` font-variation-settings by default.
251
+ 7. Disable tap highlights on iOS
252
+ */
253
+
254
+ html,
255
+ :host {
256
+ line-height: 1.5;
257
+ /* 1 */
258
+ -webkit-text-size-adjust: 100%;
259
+ /* 2 */
260
+ -moz-tab-size: 4;
261
+ /* 3 */
262
+ -o-tab-size: 4;
263
+ tab-size: 4;
264
+ /* 3 */
265
+ font-family: Inter, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
266
+ /* 4 */
267
+ font-feature-settings: normal;
268
+ /* 5 */
269
+ font-variation-settings: normal;
270
+ /* 6 */
271
+ -webkit-tap-highlight-color: transparent;
272
+ /* 7 */
273
+ }
274
+
275
+ /*
276
+ 1. Remove the margin in all browsers.
277
+ 2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
278
+ */
279
+
280
+ body {
281
+ margin: 0;
282
+ /* 1 */
283
+ line-height: inherit;
284
+ /* 2 */
285
+ }
286
+
287
+ /*
288
+ 1. Add the correct height in Firefox.
289
+ 2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
290
+ 3. Ensure horizontal rules are visible by default.
291
+ */
292
+
293
+ hr {
294
+ height: 0;
295
+ /* 1 */
296
+ color: inherit;
297
+ /* 2 */
298
+ border-top-width: 1px;
299
+ /* 3 */
300
+ }
301
+
302
+ /*
303
+ Add the correct text decoration in Chrome, Edge, and Safari.
304
+ */
305
+
306
+ abbr:where([title]) {
307
+ -webkit-text-decoration: underline dotted;
308
+ text-decoration: underline dotted;
309
+ }
310
+
311
+ /*
312
+ Remove the default font size and weight for headings.
313
+ */
314
+
315
+ h1,
316
+ h2,
317
+ h3,
318
+ h4,
319
+ h5,
320
+ h6 {
321
+ font-size: inherit;
322
+ font-weight: inherit;
323
+ }
324
+
325
+ /*
326
+ Reset links to optimize for opt-in styling instead of opt-out.
327
+ */
328
+
329
+ a {
330
+ color: inherit;
331
+ text-decoration: inherit;
332
+ }
333
+
334
+ /*
335
+ Add the correct font weight in Edge and Safari.
336
+ */
337
+
338
+ b,
339
+ strong {
340
+ font-weight: bolder;
341
+ }
342
+
343
+ /*
344
+ 1. Use the user's configured `mono` font-family by default.
345
+ 2. Use the user's configured `mono` font-feature-settings by default.
346
+ 3. Use the user's configured `mono` font-variation-settings by default.
347
+ 4. Correct the odd `em` font sizing in all browsers.
348
+ */
349
+
350
+ code,
351
+ kbd,
352
+ samp,
353
+ pre {
354
+ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
355
+ /* 1 */
356
+ font-feature-settings: normal;
357
+ /* 2 */
358
+ font-variation-settings: normal;
359
+ /* 3 */
360
+ font-size: 1em;
361
+ /* 4 */
362
+ }
363
+
364
+ /*
365
+ Add the correct font size in all browsers.
366
+ */
367
+
368
+ small {
369
+ font-size: 80%;
370
+ }
371
+
372
+ /*
373
+ Prevent `sub` and `sup` elements from affecting the line height in all browsers.
374
+ */
375
+
376
+ sub,
377
+ sup {
378
+ font-size: 75%;
379
+ line-height: 0;
380
+ position: relative;
381
+ vertical-align: baseline;
382
+ }
383
+
384
+ sub {
385
+ bottom: -0.25em;
386
+ }
387
+
388
+ sup {
389
+ top: -0.5em;
390
+ }
391
+
392
+ /*
393
+ 1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
394
+ 2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
395
+ 3. Remove gaps between table borders by default.
396
+ */
397
+
398
+ table {
399
+ text-indent: 0;
400
+ /* 1 */
401
+ border-color: inherit;
402
+ /* 2 */
403
+ border-collapse: collapse;
404
+ /* 3 */
405
+ }
406
+
407
+ /*
408
+ 1. Change the font styles in all browsers.
409
+ 2. Remove the margin in Firefox and Safari.
410
+ 3. Remove default padding in all browsers.
411
+ */
412
+
413
+ button,
414
+ input,
415
+ optgroup,
416
+ select,
417
+ textarea {
418
+ font-family: inherit;
419
+ /* 1 */
420
+ font-feature-settings: inherit;
421
+ /* 1 */
422
+ font-variation-settings: inherit;
423
+ /* 1 */
424
+ font-size: 100%;
425
+ /* 1 */
426
+ font-weight: inherit;
427
+ /* 1 */
428
+ line-height: inherit;
429
+ /* 1 */
430
+ letter-spacing: inherit;
431
+ /* 1 */
432
+ color: inherit;
433
+ /* 1 */
434
+ margin: 0;
435
+ /* 2 */
436
+ padding: 0;
437
+ /* 3 */
438
+ }
439
+
440
+ /*
441
+ Remove the inheritance of text transform in Edge and Firefox.
442
+ */
443
+
444
+ button,
445
+ select {
446
+ text-transform: none;
447
+ }
448
+
449
+ /*
450
+ 1. Correct the inability to style clickable types in iOS and Safari.
451
+ 2. Remove default button styles.
452
+ */
453
+
454
+ button,
455
+ input:where([type='button']),
456
+ input:where([type='reset']),
457
+ input:where([type='submit']) {
458
+ -webkit-appearance: button;
459
+ /* 1 */
460
+ background-color: transparent;
461
+ /* 2 */
462
+ background-image: none;
463
+ /* 2 */
464
+ }
465
+
466
+ /*
467
+ Use the modern Firefox focus style for all focusable elements.
468
+ */
469
+
470
+ :-moz-focusring {
471
+ outline: auto;
472
+ }
473
+
474
+ /*
475
+ Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
476
+ */
477
+
478
+ :-moz-ui-invalid {
479
+ box-shadow: none;
480
+ }
481
+
482
+ /*
483
+ Add the correct vertical alignment in Chrome and Firefox.
484
+ */
485
+
486
+ progress {
487
+ vertical-align: baseline;
488
+ }
489
+
490
+ /*
491
+ Correct the cursor style of increment and decrement buttons in Safari.
492
+ */
493
+
494
+ ::-webkit-inner-spin-button,
495
+ ::-webkit-outer-spin-button {
496
+ height: auto;
497
+ }
498
+
499
+ /*
500
+ 1. Correct the odd appearance in Chrome and Safari.
501
+ 2. Correct the outline style in Safari.
502
+ */
503
+
504
+ [type='search'] {
505
+ -webkit-appearance: textfield;
506
+ /* 1 */
507
+ outline-offset: -2px;
508
+ /* 2 */
509
+ }
510
+
511
+ /*
512
+ Remove the inner padding in Chrome and Safari on macOS.
513
+ */
514
+
515
+ ::-webkit-search-decoration {
516
+ -webkit-appearance: none;
517
+ }
518
+
519
+ /*
520
+ 1. Correct the inability to style clickable types in iOS and Safari.
521
+ 2. Change font properties to `inherit` in Safari.
522
+ */
523
+
524
+ ::-webkit-file-upload-button {
525
+ -webkit-appearance: button;
526
+ /* 1 */
527
+ font: inherit;
528
+ /* 2 */
529
+ }
530
+
531
+ /*
532
+ Add the correct display in Chrome and Safari.
533
+ */
534
+
535
+ summary {
536
+ display: list-item;
537
+ }
538
+
539
+ /*
540
+ Removes the default spacing and border for appropriate elements.
541
+ */
542
+
543
+ blockquote,
544
+ dl,
545
+ dd,
546
+ h1,
547
+ h2,
548
+ h3,
549
+ h4,
550
+ h5,
551
+ h6,
552
+ hr,
553
+ figure,
554
+ p,
555
+ pre {
556
+ margin: 0;
557
+ }
558
+
559
+ fieldset {
560
+ margin: 0;
561
+ padding: 0;
562
+ }
563
+
564
+ legend {
565
+ padding: 0;
566
+ }
567
+
568
+ ol,
569
+ ul,
570
+ menu {
571
+ list-style: none;
572
+ margin: 0;
573
+ padding: 0;
574
+ }
575
+
576
+ /*
577
+ Reset default styling for dialogs.
578
+ */
579
+
580
+ dialog {
581
+ padding: 0;
582
+ }
583
+
584
+ /*
585
+ Prevent resizing textareas horizontally by default.
586
+ */
587
+
588
+ textarea {
589
+ resize: vertical;
590
+ }
591
+
592
+ /*
593
+ 1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
594
+ 2. Set the default placeholder color to the user's configured gray 400 color.
595
+ */
596
+
597
+ input::-moz-placeholder, textarea::-moz-placeholder {
598
+ opacity: 1;
599
+ /* 1 */
600
+ color: #9ca3af;
601
+ /* 2 */
602
+ }
603
+
604
+ input::placeholder,
605
+ textarea::placeholder {
606
+ opacity: 1;
607
+ /* 1 */
608
+ color: #9ca3af;
609
+ /* 2 */
610
+ }
611
+
612
+ /*
613
+ Set the default cursor for buttons.
614
+ */
615
+
616
+ button,
617
+ [role="button"] {
618
+ cursor: pointer;
619
+ }
620
+
621
+ /*
622
+ Make sure disabled buttons don't get the pointer cursor.
623
+ */
624
+
625
+ :disabled {
626
+ cursor: default;
627
+ }
628
+
629
+ /*
630
+ 1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
631
+ 2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
632
+ This can trigger a poorly considered lint error in some tools but is included by design.
633
+ */
634
+
635
+ img,
636
+ svg,
637
+ video,
638
+ canvas,
639
+ audio,
640
+ iframe,
641
+ embed,
642
+ object {
643
+ display: block;
644
+ /* 1 */
645
+ vertical-align: middle;
646
+ /* 2 */
647
+ }
648
+
649
+ /*
650
+ Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
651
+ */
652
+
653
+ img,
654
+ video {
655
+ max-width: 100%;
656
+ height: auto;
657
+ }
658
+
659
+ /* Make elements with the HTML hidden attribute stay hidden by default */
660
+
661
+ [hidden] {
662
+ display: none;
663
+ }
664
+
665
+ :root {
666
+ --background: 0 0% 100%;
667
+ --foreground: 222.2 84% 4.9%;
668
+ --muted: 210 40% 96.1%;
669
+ --muted-foreground: 215.4 16.3% 46.9%;
670
+ --popover: 0 0% 100%;
671
+ --popover-foreground: 222.2 84% 4.9%;
672
+ --card: 0 0% 100%;
673
+ --card-foreground: 222.2 84% 4.9%;
674
+ --border: 214.3 31.8% 91.4%;
675
+ --input: 214.3 31.8% 91.4%;
676
+ --primary: 222.2 47.4% 11.2%;
677
+ --primary-foreground: 210 40% 98%;
678
+ --secondary: 210 40% 96.1%;
679
+ --secondary-foreground: 222.2 47.4% 11.2%;
680
+ --accent: 210 40% 96.1%;
681
+ --accent-foreground: 222.2 47.4% 11.2%;
682
+ --destructive: 0 72.2% 50.6%;
683
+ --destructive-foreground: 210 40% 98%;
684
+ --ring: 222.2 84% 4.9%;
685
+ --radius: 4px;
686
+ }
687
+
688
+ .dark {
689
+ --background: 222.2 84% 4.9%;
690
+ --foreground: 210 40% 98%;
691
+ --muted: 217.2 32.6% 17.5%;
692
+ --muted-foreground: 215 20.2% 65.1%;
693
+ --popover: 222.2 84% 4.9%;
694
+ --popover-foreground: 210 40% 98%;
695
+ --card: 222.2 84% 4.9%;
696
+ --card-foreground: 210 40% 98%;
697
+ --border: 217.2 32.6% 17.5%;
698
+ --input: 217.2 32.6% 17.5%;
699
+ --primary: 210 40% 98%;
700
+ --primary-foreground: 222.2 47.4% 11.2%;
701
+ --secondary: 217.2 32.6% 17.5%;
702
+ --secondary-foreground: 210 40% 98%;
703
+ --accent: 217.2 32.6% 17.5%;
704
+ --accent-foreground: 210 40% 98%;
705
+ --destructive: 0 62.8% 30.6%;
706
+ --destructive-foreground: 210 40% 98%;
707
+ --ring: 0 0% 83.1%;
708
+ }
709
+
710
+ * {
711
+ --tw-border-opacity: 1;
712
+ border-color: hsl(var(--border) / var(--tw-border-opacity));
713
+ }
714
+
715
+ body {
716
+ --tw-bg-opacity: 1;
717
+ background-color: hsl(var(--background) / var(--tw-bg-opacity));
718
+ --tw-text-opacity: 1;
719
+ color: hsl(var(--foreground) / var(--tw-text-opacity));
720
+ }
721
+
722
+ *, ::before, ::after {
723
+ --tw-border-spacing-x: 0;
724
+ --tw-border-spacing-y: 0;
725
+ --tw-translate-x: 0;
726
+ --tw-translate-y: 0;
727
+ --tw-rotate: 0;
728
+ --tw-skew-x: 0;
729
+ --tw-skew-y: 0;
730
+ --tw-scale-x: 1;
731
+ --tw-scale-y: 1;
732
+ --tw-pan-x: ;
733
+ --tw-pan-y: ;
734
+ --tw-pinch-zoom: ;
735
+ --tw-scroll-snap-strictness: proximity;
736
+ --tw-gradient-from-position: ;
737
+ --tw-gradient-via-position: ;
738
+ --tw-gradient-to-position: ;
739
+ --tw-ordinal: ;
740
+ --tw-slashed-zero: ;
741
+ --tw-numeric-figure: ;
742
+ --tw-numeric-spacing: ;
743
+ --tw-numeric-fraction: ;
744
+ --tw-ring-inset: ;
745
+ --tw-ring-offset-width: 0px;
746
+ --tw-ring-offset-color: #fff;
747
+ --tw-ring-color: rgb(59 130 246 / 0.5);
748
+ --tw-ring-offset-shadow: 0 0 #0000;
749
+ --tw-ring-shadow: 0 0 #0000;
750
+ --tw-shadow: 0 0 #0000;
751
+ --tw-shadow-colored: 0 0 #0000;
752
+ --tw-blur: ;
753
+ --tw-brightness: ;
754
+ --tw-contrast: ;
755
+ --tw-grayscale: ;
756
+ --tw-hue-rotate: ;
757
+ --tw-invert: ;
758
+ --tw-saturate: ;
759
+ --tw-sepia: ;
760
+ --tw-drop-shadow: ;
761
+ --tw-backdrop-blur: ;
762
+ --tw-backdrop-brightness: ;
763
+ --tw-backdrop-contrast: ;
764
+ --tw-backdrop-grayscale: ;
765
+ --tw-backdrop-hue-rotate: ;
766
+ --tw-backdrop-invert: ;
767
+ --tw-backdrop-opacity: ;
768
+ --tw-backdrop-saturate: ;
769
+ --tw-backdrop-sepia: ;
770
+ --tw-contain-size: ;
771
+ --tw-contain-layout: ;
772
+ --tw-contain-paint: ;
773
+ --tw-contain-style: ;
774
+ }
775
+
776
+ ::backdrop {
777
+ --tw-border-spacing-x: 0;
778
+ --tw-border-spacing-y: 0;
779
+ --tw-translate-x: 0;
780
+ --tw-translate-y: 0;
781
+ --tw-rotate: 0;
782
+ --tw-skew-x: 0;
783
+ --tw-skew-y: 0;
784
+ --tw-scale-x: 1;
785
+ --tw-scale-y: 1;
786
+ --tw-pan-x: ;
787
+ --tw-pan-y: ;
788
+ --tw-pinch-zoom: ;
789
+ --tw-scroll-snap-strictness: proximity;
790
+ --tw-gradient-from-position: ;
791
+ --tw-gradient-via-position: ;
792
+ --tw-gradient-to-position: ;
793
+ --tw-ordinal: ;
794
+ --tw-slashed-zero: ;
795
+ --tw-numeric-figure: ;
796
+ --tw-numeric-spacing: ;
797
+ --tw-numeric-fraction: ;
798
+ --tw-ring-inset: ;
799
+ --tw-ring-offset-width: 0px;
800
+ --tw-ring-offset-color: #fff;
801
+ --tw-ring-color: rgb(59 130 246 / 0.5);
802
+ --tw-ring-offset-shadow: 0 0 #0000;
803
+ --tw-ring-shadow: 0 0 #0000;
804
+ --tw-shadow: 0 0 #0000;
805
+ --tw-shadow-colored: 0 0 #0000;
806
+ --tw-blur: ;
807
+ --tw-brightness: ;
808
+ --tw-contrast: ;
809
+ --tw-grayscale: ;
810
+ --tw-hue-rotate: ;
811
+ --tw-invert: ;
812
+ --tw-saturate: ;
813
+ --tw-sepia: ;
814
+ --tw-drop-shadow: ;
815
+ --tw-backdrop-blur: ;
816
+ --tw-backdrop-brightness: ;
817
+ --tw-backdrop-contrast: ;
818
+ --tw-backdrop-grayscale: ;
819
+ --tw-backdrop-hue-rotate: ;
820
+ --tw-backdrop-invert: ;
821
+ --tw-backdrop-opacity: ;
822
+ --tw-backdrop-saturate: ;
823
+ --tw-backdrop-sepia: ;
824
+ --tw-contain-size: ;
825
+ --tw-contain-layout: ;
826
+ --tw-contain-paint: ;
827
+ --tw-contain-style: ;
828
+ }
829
+
830
+ .container {
831
+ width: 100%;
832
+ margin-right: auto;
833
+ margin-left: auto;
834
+ padding-right: 2rem;
835
+ padding-left: 2rem;
836
+ }
837
+
838
+ @media (min-width: 1400px) {
839
+ .container {
840
+ max-width: 1400px;
841
+ }
842
+ }
843
+
844
+ .sr-only {
845
+ position: absolute;
846
+ width: 1px;
847
+ height: 1px;
848
+ padding: 0;
849
+ margin: -1px;
850
+ overflow: hidden;
851
+ clip: rect(0, 0, 0, 0);
852
+ white-space: nowrap;
853
+ border-width: 0;
854
+ }
855
+
856
+ .fixed {
857
+ position: fixed;
858
+ }
859
+
860
+ .absolute {
861
+ position: absolute;
862
+ }
863
+
864
+ .relative {
865
+ position: relative;
866
+ }
867
+
868
+ .sticky {
869
+ position: sticky;
870
+ }
871
+
872
+ .inset-0 {
873
+ inset: 0px;
874
+ }
875
+
876
+ .left-2 {
877
+ left: 0.5rem;
878
+ }
879
+
880
+ .left-\[50\%\] {
881
+ left: 50%;
882
+ }
883
+
884
+ .top-0 {
885
+ top: 0px;
886
+ }
887
+
888
+ .top-\[50\%\] {
889
+ top: 50%;
890
+ }
891
+
892
+ .z-50 {
893
+ z-index: 50;
894
+ }
895
+
896
+ .-mx-1 {
897
+ margin-left: -0.25rem;
898
+ margin-right: -0.25rem;
899
+ }
900
+
901
+ .my-1 {
902
+ margin-top: 0.25rem;
903
+ margin-bottom: 0.25rem;
904
+ }
905
+
906
+ .mb-1 {
907
+ margin-bottom: 0.25rem;
908
+ }
909
+
910
+ .mb-4 {
911
+ margin-bottom: 1rem;
912
+ }
913
+
914
+ .ml-auto {
915
+ margin-left: auto;
916
+ }
917
+
918
+ .mr-4 {
919
+ margin-right: 1rem;
920
+ }
921
+
922
+ .mr-6 {
923
+ margin-right: 1.5rem;
924
+ }
925
+
926
+ .mt-2 {
927
+ margin-top: 0.5rem;
928
+ }
929
+
930
+ .flex {
931
+ display: flex;
932
+ }
933
+
934
+ .inline-flex {
935
+ display: inline-flex;
936
+ }
937
+
938
+ .grid {
939
+ display: grid;
940
+ }
941
+
942
+ .hidden {
943
+ display: none;
944
+ }
945
+
946
+ .h-10 {
947
+ height: 2.5rem;
948
+ }
949
+
950
+ .h-14 {
951
+ height: 3.5rem;
952
+ }
953
+
954
+ .h-2 {
955
+ height: 0.5rem;
956
+ }
957
+
958
+ .h-3\.5 {
959
+ height: 0.875rem;
960
+ }
961
+
962
+ .h-4 {
963
+ height: 1rem;
964
+ }
965
+
966
+ .h-6 {
967
+ height: 1.5rem;
968
+ }
969
+
970
+ .h-8 {
971
+ height: 2rem;
972
+ }
973
+
974
+ .h-9 {
975
+ height: 2.25rem;
976
+ }
977
+
978
+ .h-\[1\.2rem\] {
979
+ height: 1.2rem;
980
+ }
981
+
982
+ .h-full {
983
+ height: 100%;
984
+ }
985
+
986
+ .h-px {
987
+ height: 1px;
988
+ }
989
+
990
+ .min-h-screen {
991
+ min-height: 100vh;
992
+ }
993
+
994
+ .w-10 {
995
+ width: 2.5rem;
996
+ }
997
+
998
+ .w-2 {
999
+ width: 0.5rem;
1000
+ }
1001
+
1002
+ .w-3\.5 {
1003
+ width: 0.875rem;
1004
+ }
1005
+
1006
+ .w-4 {
1007
+ width: 1rem;
1008
+ }
1009
+
1010
+ .w-72 {
1011
+ width: 18rem;
1012
+ }
1013
+
1014
+ .w-9 {
1015
+ width: 2.25rem;
1016
+ }
1017
+
1018
+ .w-\[1\.2rem\] {
1019
+ width: 1.2rem;
1020
+ }
1021
+
1022
+ .w-\[150px\] {
1023
+ width: 150px;
1024
+ }
1025
+
1026
+ .w-full {
1027
+ width: 100%;
1028
+ }
1029
+
1030
+ .min-w-\[8rem\] {
1031
+ min-width: 8rem;
1032
+ }
1033
+
1034
+ .max-w-lg {
1035
+ max-width: 32rem;
1036
+ }
1037
+
1038
+ .max-w-prose {
1039
+ max-width: 65ch;
1040
+ }
1041
+
1042
+ .max-w-screen-2xl {
1043
+ max-width: 1536px;
1044
+ }
1045
+
1046
+ .flex-1 {
1047
+ flex: 1 1 0%;
1048
+ }
1049
+
1050
+ .translate-x-\[-50\%\] {
1051
+ --tw-translate-x: -50%;
1052
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1053
+ }
1054
+
1055
+ .translate-y-\[-50\%\] {
1056
+ --tw-translate-y: -50%;
1057
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1058
+ }
1059
+
1060
+ .rotate-0 {
1061
+ --tw-rotate: 0deg;
1062
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1063
+ }
1064
+
1065
+ .rotate-90 {
1066
+ --tw-rotate: 90deg;
1067
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1068
+ }
1069
+
1070
+ .scale-0 {
1071
+ --tw-scale-x: 0;
1072
+ --tw-scale-y: 0;
1073
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1074
+ }
1075
+
1076
+ .scale-100 {
1077
+ --tw-scale-x: 1;
1078
+ --tw-scale-y: 1;
1079
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1080
+ }
1081
+
1082
+ .transform {
1083
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1084
+ }
1085
+
1086
+ .cursor-default {
1087
+ cursor: default;
1088
+ }
1089
+
1090
+ .select-none {
1091
+ -webkit-user-select: none;
1092
+ -moz-user-select: none;
1093
+ user-select: none;
1094
+ }
1095
+
1096
+ .flex-col {
1097
+ flex-direction: column;
1098
+ }
1099
+
1100
+ .flex-col-reverse {
1101
+ flex-direction: column-reverse;
1102
+ }
1103
+
1104
+ .flex-wrap {
1105
+ flex-wrap: wrap;
1106
+ }
1107
+
1108
+ .items-center {
1109
+ align-items: center;
1110
+ }
1111
+
1112
+ .justify-center {
1113
+ justify-content: center;
1114
+ }
1115
+
1116
+ .justify-between {
1117
+ justify-content: space-between;
1118
+ }
1119
+
1120
+ .gap-1\.5 {
1121
+ gap: 0.375rem;
1122
+ }
1123
+
1124
+ .gap-4 {
1125
+ gap: 1rem;
1126
+ }
1127
+
1128
+ .gap-6 {
1129
+ gap: 1.5rem;
1130
+ }
1131
+
1132
+ .space-x-2 > :not([hidden]) ~ :not([hidden]) {
1133
+ --tw-space-x-reverse: 0;
1134
+ margin-right: calc(0.5rem * var(--tw-space-x-reverse));
1135
+ margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
1136
+ }
1137
+
1138
+ .space-y-2 > :not([hidden]) ~ :not([hidden]) {
1139
+ --tw-space-y-reverse: 0;
1140
+ margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
1141
+ margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
1142
+ }
1143
+
1144
+ .whitespace-nowrap {
1145
+ white-space: nowrap;
1146
+ }
1147
+
1148
+ .break-words {
1149
+ overflow-wrap: break-word;
1150
+ }
1151
+
1152
+ .rounded-full {
1153
+ border-radius: 9999px;
1154
+ }
1155
+
1156
+ .rounded-lg {
1157
+ border-radius: calc(var(--radius) + 4px);
1158
+ }
1159
+
1160
+ .rounded-md {
1161
+ border-radius: var(--radius);
1162
+ }
1163
+
1164
+ .rounded-sm {
1165
+ border-radius: calc(var(--radius) - 2px);
1166
+ }
1167
+
1168
+ .border {
1169
+ border-width: 1px;
1170
+ }
1171
+
1172
+ .border-b {
1173
+ border-bottom-width: 1px;
1174
+ }
1175
+
1176
+ .border-t {
1177
+ border-top-width: 1px;
1178
+ }
1179
+
1180
+ .border-border\/40 {
1181
+ border-color: hsl(var(--border) / 0.4);
1182
+ }
1183
+
1184
+ .border-destructive\/50 {
1185
+ border-color: hsl(var(--destructive) / 0.5);
1186
+ }
1187
+
1188
+ .border-input {
1189
+ --tw-border-opacity: 1;
1190
+ border-color: hsl(var(--input) / var(--tw-border-opacity));
1191
+ }
1192
+
1193
+ .border-transparent {
1194
+ border-color: transparent;
1195
+ }
1196
+
1197
+ .bg-background {
1198
+ --tw-bg-opacity: 1;
1199
+ background-color: hsl(var(--background) / var(--tw-bg-opacity));
1200
+ }
1201
+
1202
+ .bg-background\/80 {
1203
+ background-color: hsl(var(--background) / 0.8);
1204
+ }
1205
+
1206
+ .bg-background\/95 {
1207
+ background-color: hsl(var(--background) / 0.95);
1208
+ }
1209
+
1210
+ .bg-destructive {
1211
+ --tw-bg-opacity: 1;
1212
+ background-color: hsl(var(--destructive) / var(--tw-bg-opacity));
1213
+ }
1214
+
1215
+ .bg-muted {
1216
+ --tw-bg-opacity: 1;
1217
+ background-color: hsl(var(--muted) / var(--tw-bg-opacity));
1218
+ }
1219
+
1220
+ .bg-popover {
1221
+ --tw-bg-opacity: 1;
1222
+ background-color: hsl(var(--popover) / var(--tw-bg-opacity));
1223
+ }
1224
+
1225
+ .bg-primary {
1226
+ --tw-bg-opacity: 1;
1227
+ background-color: hsl(var(--primary) / var(--tw-bg-opacity));
1228
+ }
1229
+
1230
+ .bg-secondary {
1231
+ --tw-bg-opacity: 1;
1232
+ background-color: hsl(var(--secondary) / var(--tw-bg-opacity));
1233
+ }
1234
+
1235
+ .fill-current {
1236
+ fill: currentColor;
1237
+ }
1238
+
1239
+ .object-cover {
1240
+ -o-object-fit: cover;
1241
+ object-fit: cover;
1242
+ }
1243
+
1244
+ .p-1 {
1245
+ padding: 0.25rem;
1246
+ }
1247
+
1248
+ .p-16 {
1249
+ padding: 4rem;
1250
+ }
1251
+
1252
+ .p-4 {
1253
+ padding: 1rem;
1254
+ }
1255
+
1256
+ .p-6 {
1257
+ padding: 1.5rem;
1258
+ }
1259
+
1260
+ .px-1 {
1261
+ padding-left: 0.25rem;
1262
+ padding-right: 0.25rem;
1263
+ }
1264
+
1265
+ .px-2 {
1266
+ padding-left: 0.5rem;
1267
+ padding-right: 0.5rem;
1268
+ }
1269
+
1270
+ .px-2\.5 {
1271
+ padding-left: 0.625rem;
1272
+ padding-right: 0.625rem;
1273
+ }
1274
+
1275
+ .px-4 {
1276
+ padding-left: 1rem;
1277
+ padding-right: 1rem;
1278
+ }
1279
+
1280
+ .px-8 {
1281
+ padding-left: 2rem;
1282
+ padding-right: 2rem;
1283
+ }
1284
+
1285
+ .py-0\.5 {
1286
+ padding-top: 0.125rem;
1287
+ padding-bottom: 0.125rem;
1288
+ }
1289
+
1290
+ .py-1\.5 {
1291
+ padding-top: 0.375rem;
1292
+ padding-bottom: 0.375rem;
1293
+ }
1294
+
1295
+ .py-2 {
1296
+ padding-top: 0.5rem;
1297
+ padding-bottom: 0.5rem;
1298
+ }
1299
+
1300
+ .py-6 {
1301
+ padding-top: 1.5rem;
1302
+ padding-bottom: 1.5rem;
1303
+ }
1304
+
1305
+ .pl-8 {
1306
+ padding-left: 2rem;
1307
+ }
1308
+
1309
+ .pr-2 {
1310
+ padding-right: 0.5rem;
1311
+ }
1312
+
1313
+ .pt-5 {
1314
+ padding-top: 1.25rem;
1315
+ }
1316
+
1317
+ .text-center {
1318
+ text-align: center;
1319
+ }
1320
+
1321
+ .font-sans {
1322
+ font-family: Inter, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
1323
+ }
1324
+
1325
+ .text-2xl {
1326
+ font-size: 1.5rem;
1327
+ line-height: 2rem;
1328
+ }
1329
+
1330
+ .text-3xl {
1331
+ font-size: 1.875rem;
1332
+ line-height: 2.25rem;
1333
+ }
1334
+
1335
+ .text-4xl {
1336
+ font-size: 2.25rem;
1337
+ line-height: 2.5rem;
1338
+ }
1339
+
1340
+ .text-lg {
1341
+ font-size: 1.125rem;
1342
+ line-height: 1.75rem;
1343
+ }
1344
+
1345
+ .text-sm {
1346
+ font-size: 0.875rem;
1347
+ line-height: 1.25rem;
1348
+ }
1349
+
1350
+ .text-xl {
1351
+ font-size: 1.25rem;
1352
+ line-height: 1.75rem;
1353
+ }
1354
+
1355
+ .text-xs {
1356
+ font-size: 0.75rem;
1357
+ line-height: 1rem;
1358
+ }
1359
+
1360
+ .font-bold {
1361
+ font-weight: 700;
1362
+ }
1363
+
1364
+ .font-extrabold {
1365
+ font-weight: 800;
1366
+ }
1367
+
1368
+ .font-medium {
1369
+ font-weight: 500;
1370
+ }
1371
+
1372
+ .font-normal {
1373
+ font-weight: 400;
1374
+ }
1375
+
1376
+ .font-semibold {
1377
+ font-weight: 600;
1378
+ }
1379
+
1380
+ .leading-7 {
1381
+ line-height: 1.75rem;
1382
+ }
1383
+
1384
+ .leading-loose {
1385
+ line-height: 2;
1386
+ }
1387
+
1388
+ .leading-none {
1389
+ line-height: 1;
1390
+ }
1391
+
1392
+ .tracking-tight {
1393
+ letter-spacing: -0.025em;
1394
+ }
1395
+
1396
+ .tracking-widest {
1397
+ letter-spacing: 0.1em;
1398
+ }
1399
+
1400
+ .text-destructive {
1401
+ --tw-text-opacity: 1;
1402
+ color: hsl(var(--destructive) / var(--tw-text-opacity));
1403
+ }
1404
+
1405
+ .text-destructive-foreground {
1406
+ --tw-text-opacity: 1;
1407
+ color: hsl(var(--destructive-foreground) / var(--tw-text-opacity));
1408
+ }
1409
+
1410
+ .text-foreground {
1411
+ --tw-text-opacity: 1;
1412
+ color: hsl(var(--foreground) / var(--tw-text-opacity));
1413
+ }
1414
+
1415
+ .text-foreground\/60 {
1416
+ color: hsl(var(--foreground) / 0.6);
1417
+ }
1418
+
1419
+ .text-muted-foreground {
1420
+ --tw-text-opacity: 1;
1421
+ color: hsl(var(--muted-foreground) / var(--tw-text-opacity));
1422
+ }
1423
+
1424
+ .text-popover-foreground {
1425
+ --tw-text-opacity: 1;
1426
+ color: hsl(var(--popover-foreground) / var(--tw-text-opacity));
1427
+ }
1428
+
1429
+ .text-primary {
1430
+ --tw-text-opacity: 1;
1431
+ color: hsl(var(--primary) / var(--tw-text-opacity));
1432
+ }
1433
+
1434
+ .text-primary-foreground {
1435
+ --tw-text-opacity: 1;
1436
+ color: hsl(var(--primary-foreground) / var(--tw-text-opacity));
1437
+ }
1438
+
1439
+ .text-secondary-foreground {
1440
+ --tw-text-opacity: 1;
1441
+ color: hsl(var(--secondary-foreground) / var(--tw-text-opacity));
1442
+ }
1443
+
1444
+ .underline-offset-4 {
1445
+ text-underline-offset: 4px;
1446
+ }
1447
+
1448
+ .antialiased {
1449
+ -webkit-font-smoothing: antialiased;
1450
+ -moz-osx-font-smoothing: grayscale;
1451
+ }
1452
+
1453
+ .opacity-60 {
1454
+ opacity: 0.6;
1455
+ }
1456
+
1457
+ .shadow-lg {
1458
+ --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
1459
+ --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
1460
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
1461
+ }
1462
+
1463
+ .shadow-md {
1464
+ --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
1465
+ --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
1466
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
1467
+ }
1468
+
1469
+ .outline-none {
1470
+ outline: 2px solid transparent;
1471
+ outline-offset: 2px;
1472
+ }
1473
+
1474
+ .outline {
1475
+ outline-style: solid;
1476
+ }
1477
+
1478
+ .ring-offset-background {
1479
+ --tw-ring-offset-color: hsl(var(--background) / 1);
1480
+ }
1481
+
1482
+ .backdrop-blur {
1483
+ --tw-backdrop-blur: blur(8px);
1484
+ -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
1485
+ backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
1486
+ }
1487
+
1488
+ .backdrop-blur-sm {
1489
+ --tw-backdrop-blur: blur(4px);
1490
+ -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
1491
+ backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
1492
+ }
1493
+
1494
+ .backdrop-filter {
1495
+ -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
1496
+ backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
1497
+ }
1498
+
1499
+ .transition {
1500
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
1501
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
1502
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
1503
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1504
+ transition-duration: 150ms;
1505
+ }
1506
+
1507
+ .transition-all {
1508
+ transition-property: all;
1509
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1510
+ transition-duration: 150ms;
1511
+ }
1512
+
1513
+ .transition-colors {
1514
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
1515
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1516
+ transition-duration: 150ms;
1517
+ }
1518
+
1519
+ .hover\:bg-accent:hover {
1520
+ --tw-bg-opacity: 1;
1521
+ background-color: hsl(var(--accent) / var(--tw-bg-opacity));
1522
+ }
1523
+
1524
+ .hover\:bg-destructive\/80:hover {
1525
+ background-color: hsl(var(--destructive) / 0.8);
1526
+ }
1527
+
1528
+ .hover\:bg-destructive\/90:hover {
1529
+ background-color: hsl(var(--destructive) / 0.9);
1530
+ }
1531
+
1532
+ .hover\:bg-primary\/80:hover {
1533
+ background-color: hsl(var(--primary) / 0.8);
1534
+ }
1535
+
1536
+ .hover\:bg-primary\/90:hover {
1537
+ background-color: hsl(var(--primary) / 0.9);
1538
+ }
1539
+
1540
+ .hover\:bg-secondary\/80:hover {
1541
+ background-color: hsl(var(--secondary) / 0.8);
1542
+ }
1543
+
1544
+ .hover\:text-accent-foreground:hover {
1545
+ --tw-text-opacity: 1;
1546
+ color: hsl(var(--accent-foreground) / var(--tw-text-opacity));
1547
+ }
1548
+
1549
+ .hover\:text-foreground:hover {
1550
+ --tw-text-opacity: 1;
1551
+ color: hsl(var(--foreground) / var(--tw-text-opacity));
1552
+ }
1553
+
1554
+ .hover\:text-foreground\/80:hover {
1555
+ color: hsl(var(--foreground) / 0.8);
1556
+ }
1557
+
1558
+ .hover\:underline:hover {
1559
+ text-decoration-line: underline;
1560
+ }
1561
+
1562
+ .focus\:outline-none:focus {
1563
+ outline: 2px solid transparent;
1564
+ outline-offset: 2px;
1565
+ }
1566
+
1567
+ .focus\:ring-2:focus {
1568
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
1569
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
1570
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
1571
+ }
1572
+
1573
+ .focus\:ring-ring:focus {
1574
+ --tw-ring-opacity: 1;
1575
+ --tw-ring-color: hsl(var(--ring) / var(--tw-ring-opacity));
1576
+ }
1577
+
1578
+ .focus\:ring-offset-2:focus {
1579
+ --tw-ring-offset-width: 2px;
1580
+ }
1581
+
1582
+ .focus-visible\:outline-none:focus-visible {
1583
+ outline: 2px solid transparent;
1584
+ outline-offset: 2px;
1585
+ }
1586
+
1587
+ .focus-visible\:ring-2:focus-visible {
1588
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
1589
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
1590
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
1591
+ }
1592
+
1593
+ .focus-visible\:ring-ring:focus-visible {
1594
+ --tw-ring-opacity: 1;
1595
+ --tw-ring-color: hsl(var(--ring) / var(--tw-ring-opacity));
1596
+ }
1597
+
1598
+ .focus-visible\:ring-offset-2:focus-visible {
1599
+ --tw-ring-offset-width: 2px;
1600
+ }
1601
+
1602
+ .disabled\:pointer-events-none:disabled {
1603
+ pointer-events: none;
1604
+ }
1605
+
1606
+ .disabled\:opacity-50:disabled {
1607
+ opacity: 0.5;
1608
+ }
1609
+
1610
+ .data-\[disabled\]\:pointer-events-none[data-disabled] {
1611
+ pointer-events: none;
1612
+ }
1613
+
1614
+ .data-\[highlighted\]\:bg-accent[data-highlighted] {
1615
+ --tw-bg-opacity: 1;
1616
+ background-color: hsl(var(--accent) / var(--tw-bg-opacity));
1617
+ }
1618
+
1619
+ .data-\[state\=open\]\:bg-accent[data-state="open"] {
1620
+ --tw-bg-opacity: 1;
1621
+ background-color: hsl(var(--accent) / var(--tw-bg-opacity));
1622
+ }
1623
+
1624
+ .data-\[highlighted\]\:text-accent-foreground[data-highlighted] {
1625
+ --tw-text-opacity: 1;
1626
+ color: hsl(var(--accent-foreground) / var(--tw-text-opacity));
1627
+ }
1628
+
1629
+ .data-\[state\=open\]\:text-accent-foreground[data-state="open"] {
1630
+ --tw-text-opacity: 1;
1631
+ color: hsl(var(--accent-foreground) / var(--tw-text-opacity));
1632
+ }
1633
+
1634
+ .data-\[disabled\]\:opacity-50[data-disabled] {
1635
+ opacity: 0.5;
1636
+ }
1637
+
1638
+ @supports ((-webkit-backdrop-filter: var(--tw)) or (backdrop-filter: var(--tw))) {
1639
+ .supports-\[backdrop-filter\]\:bg-background\/60 {
1640
+ background-color: hsl(var(--background) / 0.6);
1641
+ }
1642
+ }
1643
+
1644
+ .dark\:-rotate-90:is(.dark *) {
1645
+ --tw-rotate: -90deg;
1646
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1647
+ }
1648
+
1649
+ .dark\:rotate-0:is(.dark *) {
1650
+ --tw-rotate: 0deg;
1651
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1652
+ }
1653
+
1654
+ .dark\:scale-0:is(.dark *) {
1655
+ --tw-scale-x: 0;
1656
+ --tw-scale-y: 0;
1657
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1658
+ }
1659
+
1660
+ .dark\:scale-100:is(.dark *) {
1661
+ --tw-scale-x: 1;
1662
+ --tw-scale-y: 1;
1663
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1664
+ }
1665
+
1666
+ .dark\:border-destructive:is(.dark *) {
1667
+ --tw-border-opacity: 1;
1668
+ border-color: hsl(var(--destructive) / var(--tw-border-opacity));
1669
+ }
1670
+
1671
+ @media (min-width: 640px) {
1672
+ .sm\:mt-0 {
1673
+ margin-top: 0px;
1674
+ }
1675
+
1676
+ .sm\:inline-block {
1677
+ display: inline-block;
1678
+ }
1679
+
1680
+ .sm\:flex-row {
1681
+ flex-direction: row;
1682
+ }
1683
+
1684
+ .sm\:justify-end {
1685
+ justify-content: flex-end;
1686
+ }
1687
+
1688
+ .sm\:gap-2\.5 {
1689
+ gap: 0.625rem;
1690
+ }
1691
+
1692
+ .sm\:space-x-2 > :not([hidden]) ~ :not([hidden]) {
1693
+ --tw-space-x-reverse: 0;
1694
+ margin-right: calc(0.5rem * var(--tw-space-x-reverse));
1695
+ margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
1696
+ }
1697
+
1698
+ .sm\:rounded-lg {
1699
+ border-radius: calc(var(--radius) + 4px);
1700
+ }
1701
+
1702
+ .sm\:text-left {
1703
+ text-align: left;
1704
+ }
1705
+ }
1706
+
1707
+ @media (min-width: 768px) {
1708
+ .md\:flex {
1709
+ display: flex;
1710
+ }
1711
+
1712
+ .md\:h-24 {
1713
+ height: 6rem;
1714
+ }
1715
+
1716
+ .md\:w-full {
1717
+ width: 100%;
1718
+ }
1719
+
1720
+ .md\:flex-row {
1721
+ flex-direction: row;
1722
+ }
1723
+
1724
+ .md\:gap-2 {
1725
+ gap: 0.5rem;
1726
+ }
1727
+
1728
+ .md\:px-0 {
1729
+ padding-left: 0px;
1730
+ padding-right: 0px;
1731
+ }
1732
+
1733
+ .md\:px-8 {
1734
+ padding-left: 2rem;
1735
+ padding-right: 2rem;
1736
+ }
1737
+
1738
+ .md\:py-0 {
1739
+ padding-top: 0px;
1740
+ padding-bottom: 0px;
1741
+ }
1742
+
1743
+ .md\:text-left {
1744
+ text-align: left;
1745
+ }
1746
+ }
1747
+
1748
+ @media (min-width: 1024px) {
1749
+ .lg\:block {
1750
+ display: block;
1751
+ }
1752
+ }
1753
+
1754
+ .\[\&\:has\(svg\)\]\:pl-11:has(svg) {
1755
+ padding-left: 2.75rem;
1756
+ }
1757
+
1758
+ .\[\&\>svg\+div\]\:translate-y-\[-3px\]>svg+div {
1759
+ --tw-translate-y: -3px;
1760
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1761
+ }
1762
+
1763
+ .\[\&\>svg\]\:absolute>svg {
1764
+ position: absolute;
1765
+ }
1766
+
1767
+ .\[\&\>svg\]\:left-4>svg {
1768
+ left: 1rem;
1769
+ }
1770
+
1771
+ .\[\&\>svg\]\:top-4>svg {
1772
+ top: 1rem;
1773
+ }
1774
+
1775
+ .\[\&\>svg\]\:size-3\.5>svg {
1776
+ width: 0.875rem;
1777
+ height: 0.875rem;
1778
+ }
1779
+
1780
+ .\[\&\>svg\]\:text-destructive>svg {
1781
+ --tw-text-opacity: 1;
1782
+ color: hsl(var(--destructive) / var(--tw-text-opacity));
1783
+ }
1784
+
1785
+ .\[\&\>svg\]\:text-foreground>svg {
1786
+ --tw-text-opacity: 1;
1787
+ color: hsl(var(--foreground) / var(--tw-text-opacity));
1788
+ }
1789
+
1790
+ .\[\&_p\]\:leading-relaxed p {
1791
+ line-height: 1.625;
1792
+ }