@powerhousedao/contributor-billing 1.0.0-dev.19 → 1.0.0-dev.21

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 (38) hide show
  1. package/dist/document-models/account-transactions/v1/module.d.ts +1 -1
  2. package/dist/document-models/account-transactions/v1/module.d.ts.map +1 -1
  3. package/dist/document-models/account-transactions/v1/module.js +4 -1
  4. package/dist/document-models/accounts/v1/module.d.ts +1 -1
  5. package/dist/document-models/accounts/v1/module.d.ts.map +1 -1
  6. package/dist/document-models/accounts/v1/module.js +4 -1
  7. package/dist/document-models/billing-statement/v1/module.d.ts +1 -1
  8. package/dist/document-models/billing-statement/v1/module.d.ts.map +1 -1
  9. package/dist/document-models/billing-statement/v1/module.js +4 -1
  10. package/dist/document-models/expense-report/v1/module.d.ts +1 -1
  11. package/dist/document-models/expense-report/v1/module.d.ts.map +1 -1
  12. package/dist/document-models/expense-report/v1/module.js +4 -1
  13. package/dist/document-models/invoice/v1/module.d.ts +1 -1
  14. package/dist/document-models/invoice/v1/module.d.ts.map +1 -1
  15. package/dist/document-models/invoice/v1/module.js +4 -1
  16. package/dist/document-models/operational-hub-profile/v1/module.d.ts +1 -1
  17. package/dist/document-models/operational-hub-profile/v1/module.d.ts.map +1 -1
  18. package/dist/document-models/operational-hub-profile/v1/module.js +4 -1
  19. package/dist/document-models/snapshot-report/v1/module.d.ts +1 -1
  20. package/dist/document-models/snapshot-report/v1/module.d.ts.map +1 -1
  21. package/dist/document-models/snapshot-report/v1/module.js +4 -1
  22. package/dist/editors/builder-team-admin/components/FolderTree.d.ts.map +1 -1
  23. package/dist/editors/builder-team-admin/components/FolderTree.js +8 -6
  24. package/dist/editors/contributor-billing/components/BillingOverview.d.ts.map +1 -1
  25. package/dist/editors/contributor-billing/components/BillingOverview.js +63 -3
  26. package/dist/editors/contributor-billing/components/DocumentDropZone.d.ts.map +1 -1
  27. package/dist/editors/contributor-billing/components/DocumentDropZone.js +10 -1
  28. package/dist/editors/contributor-billing/components/EmptyState.d.ts +7 -2
  29. package/dist/editors/contributor-billing/components/EmptyState.d.ts.map +1 -1
  30. package/dist/editors/contributor-billing/components/EmptyState.js +3 -8
  31. package/dist/editors/contributor-billing/components/InvoiceTable/HeaderStats.d.ts.map +1 -1
  32. package/dist/editors/contributor-billing/components/InvoiceTable/HeaderStats.js +6 -0
  33. package/dist/editors/contributor-billing/components/InvoiceTable/InvoiceTable.d.ts.map +1 -1
  34. package/dist/editors/contributor-billing/components/InvoiceTable/InvoiceTable.js +20 -1
  35. package/dist/editors/contributor-billing/hooks/useDocumentAutoPlacement.d.ts.map +1 -1
  36. package/dist/editors/contributor-billing/hooks/useDocumentAutoPlacement.js +199 -1
  37. package/dist/style.css +1464 -151
  38. package/package.json +27 -20
package/dist/style.css CHANGED
@@ -17,6 +17,7 @@
17
17
  --color-red-800: hsl(5 81% 61%);
18
18
  --color-red-900: hsl(5 81% 56%);
19
19
  --color-orange-100: hsl(33 100% 90%);
20
+ --color-orange-500: hsl(33 99% 70%);
20
21
  --color-orange-700: hsl(32 100% 60%);
21
22
  --color-orange-800: hsl(33 100% 55%);
22
23
  --color-orange-900: hsl(32 100% 50%);
@@ -52,6 +53,7 @@
52
53
  --color-green-900: hsl(136 53% 43%);
53
54
  --color-emerald-50: oklch(97.9% 0.021 166.113);
54
55
  --color-emerald-100: oklch(95% 0.052 163.051);
56
+ --color-emerald-200: oklch(90.5% 0.093 164.15);
55
57
  --color-emerald-300: oklch(84.5% 0.143 164.978);
56
58
  --color-emerald-400: oklch(76.5% 0.177 163.223);
57
59
  --color-emerald-500: oklch(69.6% 0.17 162.48);
@@ -59,6 +61,7 @@
59
61
  --color-emerald-700: oklch(50.8% 0.118 165.612);
60
62
  --color-emerald-800: oklch(43.2% 0.095 166.913);
61
63
  --color-emerald-900: oklch(37.8% 0.077 168.94);
64
+ --color-teal-50: oklch(98.4% 0.014 180.72);
62
65
  --color-teal-100: oklch(95.3% 0.051 180.801);
63
66
  --color-teal-500: oklch(70.4% 0.14 182.503);
64
67
  --color-cyan-50: oklch(98.4% 0.019 200.873);
@@ -115,6 +118,7 @@
115
118
  --color-purple-800: hsl(263 78% 66%);
116
119
  --color-purple-900: hsl(263 78% 63%);
117
120
  --color-pink-400: oklch(71.8% 0.202 349.761);
121
+ --color-pink-500: oklch(65.6% 0.241 354.308);
118
122
  --color-rose-50: oklch(96.9% 0.015 12.422);
119
123
  --color-rose-100: oklch(94.1% 0.03 12.58);
120
124
  --color-rose-300: oklch(81% 0.117 11.638);
@@ -875,6 +879,9 @@
875
879
  .shrink-0 {
876
880
  flex-shrink: 0;
877
881
  }
882
+ .grow {
883
+ flex-grow: 1;
884
+ }
878
885
  .table-fixed {
879
886
  table-layout: fixed;
880
887
  }
@@ -1861,6 +1868,12 @@
1861
1868
  .whitespace-nowrap {
1862
1869
  white-space: nowrap;
1863
1870
  }
1871
+ .text-amber-400 {
1872
+ color: var(--color-amber-400);
1873
+ }
1874
+ .text-amber-500 {
1875
+ color: var(--color-amber-500);
1876
+ }
1864
1877
  .text-amber-600 {
1865
1878
  color: var(--color-amber-600);
1866
1879
  }
@@ -2175,6 +2188,10 @@
2175
2188
  --tw-ring-color: color-mix(in oklab, var(--color-white) 80%, transparent);
2176
2189
  }
2177
2190
  }
2191
+ .outline {
2192
+ outline-style: var(--tw-outline-style);
2193
+ outline-width: 1px;
2194
+ }
2178
2195
  .blur {
2179
2196
  --tw-blur: blur(8px);
2180
2197
  filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
@@ -3156,6 +3173,11 @@
3156
3173
  grid-template-columns: repeat(4, minmax(0, 1fr));
3157
3174
  }
3158
3175
  }
3176
+ .md\:grid-cols-5 {
3177
+ @media (width >= 48rem) {
3178
+ grid-template-columns: repeat(5, minmax(0, 1fr));
3179
+ }
3180
+ }
3159
3181
  .lg\:grid-cols-2 {
3160
3182
  @media (width >= 64rem) {
3161
3183
  grid-template-columns: repeat(2, minmax(0, 1fr));
@@ -6820,11 +6842,6 @@
6820
6842
  }
6821
6843
  }
6822
6844
  }
6823
- @property --tw-outline-style {
6824
- syntax: "*";
6825
- inherits: false;
6826
- initial-value: solid;
6827
- }
6828
6845
  @keyframes spin {
6829
6846
  to {
6830
6847
  transform: rotate(360deg);
@@ -21277,152 +21294,1443 @@ input[type='number'] {
21277
21294
  }
21278
21295
  }
21279
21296
  }
21280
- @property --tw-border-spacing-x {
21281
- syntax: "<length>";
21282
- inherits: false;
21283
- initial-value: 0;
21284
- }
21285
- @property --tw-border-spacing-y {
21286
- syntax: "<length>";
21287
- inherits: false;
21288
- initial-value: 0;
21289
- }
21290
- @property --tw-rotate-x {
21291
- syntax: "*";
21292
- inherits: false;
21293
- }
21294
- @property --tw-rotate-y {
21295
- syntax: "*";
21296
- inherits: false;
21297
- }
21298
- @property --tw-rotate-z {
21299
- syntax: "*";
21300
- inherits: false;
21301
- }
21302
- @property --tw-skew-x {
21303
- syntax: "*";
21304
- inherits: false;
21305
- }
21306
- @property --tw-skew-y {
21307
- syntax: "*";
21308
- inherits: false;
21309
- }
21310
- @property --tw-space-y-reverse {
21311
- syntax: "*";
21312
- inherits: false;
21313
- initial-value: 0;
21314
- }
21315
- @property --tw-space-x-reverse {
21316
- syntax: "*";
21317
- inherits: false;
21318
- initial-value: 0;
21319
- }
21320
- @property --tw-divide-y-reverse {
21321
- syntax: "*";
21322
- inherits: false;
21323
- initial-value: 0;
21324
- }
21325
- @property --tw-border-style {
21326
- syntax: "*";
21327
- inherits: false;
21328
- initial-value: solid;
21329
- }
21330
- @property --tw-gradient-position {
21331
- syntax: "*";
21332
- inherits: false;
21333
- }
21334
- @property --tw-gradient-from {
21335
- syntax: "<color>";
21336
- inherits: false;
21337
- initial-value: #0000;
21338
- }
21339
- @property --tw-gradient-via {
21340
- syntax: "<color>";
21341
- inherits: false;
21342
- initial-value: #0000;
21343
- }
21344
- @property --tw-gradient-to {
21345
- syntax: "<color>";
21346
- inherits: false;
21347
- initial-value: #0000;
21348
- }
21349
- @property --tw-gradient-stops {
21350
- syntax: "*";
21351
- inherits: false;
21352
- }
21353
- @property --tw-gradient-via-stops {
21354
- syntax: "*";
21355
- inherits: false;
21356
- }
21357
- @property --tw-gradient-from-position {
21358
- syntax: "<length-percentage>";
21359
- inherits: false;
21360
- initial-value: 0%;
21361
- }
21362
- @property --tw-gradient-via-position {
21363
- syntax: "<length-percentage>";
21364
- inherits: false;
21365
- initial-value: 50%;
21366
- }
21367
- @property --tw-gradient-to-position {
21368
- syntax: "<length-percentage>";
21369
- inherits: false;
21370
- initial-value: 100%;
21371
- }
21372
- @property --tw-leading {
21373
- syntax: "*";
21374
- inherits: false;
21375
- }
21376
- @property --tw-font-weight {
21377
- syntax: "*";
21378
- inherits: false;
21379
- }
21380
- @property --tw-tracking {
21381
- syntax: "*";
21382
- inherits: false;
21383
- }
21384
- @property --tw-ordinal {
21385
- syntax: "*";
21386
- inherits: false;
21387
- }
21388
- @property --tw-slashed-zero {
21389
- syntax: "*";
21390
- inherits: false;
21391
- }
21392
- @property --tw-numeric-figure {
21393
- syntax: "*";
21394
- inherits: false;
21395
- }
21396
- @property --tw-numeric-spacing {
21397
- syntax: "*";
21398
- inherits: false;
21399
- }
21400
- @property --tw-numeric-fraction {
21401
- syntax: "*";
21402
- inherits: false;
21403
- }
21404
- @property --tw-shadow {
21405
- syntax: "*";
21406
- inherits: false;
21407
- initial-value: 0 0 #0000;
21408
- }
21409
- @property --tw-shadow-color {
21410
- syntax: "*";
21411
- inherits: false;
21412
- }
21413
- @property --tw-shadow-alpha {
21414
- syntax: "<percentage>";
21415
- inherits: false;
21416
- initial-value: 100%;
21417
- }
21418
- @property --tw-inset-shadow {
21419
- syntax: "*";
21420
- inherits: false;
21421
- initial-value: 0 0 #0000;
21297
+ /*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */
21298
+ @layer properties;
21299
+ @layer theme, base, components, utilities;
21300
+ @layer theme {
21301
+ :root, :host {
21302
+ --font-sans: "Inter", sans-serif;
21303
+ --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
21304
+ "Courier New", monospace;
21305
+ --color-red-50: oklch(97.1% 0.013 17.38);
21306
+ --color-red-100: hsl(3 82% 96%);
21307
+ --color-red-300: hsl(6 82% 87%);
21308
+ --color-red-500: hsl(5 80% 78%);
21309
+ --color-red-600: hsl(4 81% 74%);
21310
+ --color-orange-500: hsl(33 99% 70%);
21311
+ --color-amber-50: oklch(98.7% 0.022 95.277);
21312
+ --color-amber-500: oklch(76.9% 0.188 70.08);
21313
+ --color-amber-600: oklch(66.6% 0.179 58.318);
21314
+ --color-amber-700: oklch(55.5% 0.163 48.998);
21315
+ --color-green-500: hsl(136 53% 66%);
21316
+ --color-emerald-50: oklch(97.9% 0.021 166.113);
21317
+ --color-emerald-100: oklch(95% 0.052 163.051);
21318
+ --color-emerald-200: oklch(90.5% 0.093 164.15);
21319
+ --color-emerald-300: oklch(84.5% 0.143 164.978);
21320
+ --color-emerald-500: oklch(69.6% 0.17 162.48);
21321
+ --color-emerald-600: oklch(59.6% 0.145 163.225);
21322
+ --color-emerald-700: oklch(50.8% 0.118 165.612);
21323
+ --color-teal-50: oklch(98.4% 0.014 180.72);
21324
+ --color-cyan-500: oklch(71.5% 0.143 215.221);
21325
+ --color-sky-50: oklch(97.7% 0.013 236.62);
21326
+ --color-sky-500: oklch(68.5% 0.169 237.323);
21327
+ --color-sky-700: oklch(50% 0.134 242.749);
21328
+ --color-blue-50: oklch(97% 0.014 254.604);
21329
+ --color-blue-500: hsl(209 100% 70%);
21330
+ --color-blue-600: hsl(209 100% 65%);
21331
+ --color-indigo-50: oklch(96.2% 0.018 272.314);
21332
+ --color-indigo-100: oklch(93% 0.034 272.788);
21333
+ --color-indigo-500: oklch(58.5% 0.233 277.117);
21334
+ --color-indigo-600: oklch(51.1% 0.262 276.966);
21335
+ --color-indigo-700: oklch(45.7% 0.24 277.023);
21336
+ --color-violet-50: oklch(96.9% 0.016 293.756);
21337
+ --color-violet-500: oklch(60.6% 0.25 292.717);
21338
+ --color-violet-600: oklch(54.1% 0.281 293.009);
21339
+ --color-purple-500: hsl(264 77% 77%);
21340
+ --color-pink-500: oklch(65.6% 0.241 354.308);
21341
+ --color-rose-500: oklch(64.5% 0.246 16.439);
21342
+ --color-slate-50: hsl(210 20% 96%);
21343
+ --color-slate-100: hsl(210 9% 74%);
21344
+ --color-slate-200: hsl(210 9% 48%);
21345
+ --color-slate-300: hsl(210 9% 39%);
21346
+ --color-slate-400: hsl(210 9% 30%);
21347
+ --color-slate-500: hsl(207 8% 21%);
21348
+ --color-slate-600: hsl(210 9% 13%);
21349
+ --color-slate-700: hsl(204 9% 11%);
21350
+ --color-slate-800: hsl(195 9% 9%);
21351
+ --color-slate-900: hsl(195 6% 6%);
21352
+ --color-gray-100: hsl(0 0% 96%);
21353
+ --color-gray-300: hsl(210 3% 85%);
21354
+ --color-gray-400: hsl(180 2% 78%);
21355
+ --color-gray-500: hsl(200 2% 63%);
21356
+ --color-gray-600: hsl(200 4% 44%);
21357
+ --color-gray-700: hsl(189 5% 29%);
21358
+ --color-gray-800: hsl(200 4% 26%);
21359
+ --color-gray-900: hsl(192 5% 21%);
21360
+ --color-white: hsl(0 0% 100%);
21361
+ --spacing: 0.25rem;
21362
+ --container-4xl: 56rem;
21363
+ --text-xs: 0.75rem;
21364
+ --text-xs--line-height: calc(1 / 0.75);
21365
+ --text-sm: 0.875rem;
21366
+ --text-sm--line-height: calc(1.25 / 0.875);
21367
+ --text-lg: 1.125rem;
21368
+ --text-lg--line-height: calc(1.75 / 1.125);
21369
+ --text-xl: 1.25rem;
21370
+ --text-xl--line-height: calc(1.75 / 1.25);
21371
+ --text-2xl: 1.5rem;
21372
+ --text-2xl--line-height: calc(2 / 1.5);
21373
+ --text-3xl: 1.875rem;
21374
+ --text-3xl--line-height: calc(2.25 / 1.875);
21375
+ --font-weight-light: 300;
21376
+ --font-weight-medium: 500;
21377
+ --font-weight-semibold: 600;
21378
+ --font-weight-bold: 700;
21379
+ --tracking-tight: -0.025em;
21380
+ --tracking-wider: 0.05em;
21381
+ --leading-relaxed: 1.625;
21382
+ --radius-sm: 0.25rem;
21383
+ --radius-md: 0.375rem;
21384
+ --radius-lg: 0.5rem;
21385
+ --radius-xl: 0.75rem;
21386
+ --radius-2xl: 1rem;
21387
+ --blur-sm: 8px;
21388
+ --default-transition-duration: 150ms;
21389
+ --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
21390
+ --default-font-family: var(--font-sans);
21391
+ --default-mono-font-family: var(--font-mono);
21392
+ }
21422
21393
  }
21423
- @property --tw-inset-shadow-color {
21424
- syntax: "*";
21425
- inherits: false;
21394
+ @layer base {
21395
+ *, ::after, ::before, ::backdrop, ::file-selector-button {
21396
+ box-sizing: border-box;
21397
+ margin: 0;
21398
+ padding: 0;
21399
+ border: 0 solid;
21400
+ }
21401
+ html, :host {
21402
+ line-height: 1.5;
21403
+ -webkit-text-size-adjust: 100%;
21404
+ tab-size: 4;
21405
+ font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
21406
+ font-feature-settings: var(--default-font-feature-settings, normal);
21407
+ font-variation-settings: var(--default-font-variation-settings, normal);
21408
+ -webkit-tap-highlight-color: transparent;
21409
+ }
21410
+ hr {
21411
+ height: 0;
21412
+ color: inherit;
21413
+ border-top-width: 1px;
21414
+ }
21415
+ abbr:where([title]) {
21416
+ -webkit-text-decoration: underline dotted;
21417
+ text-decoration: underline dotted;
21418
+ }
21419
+ h1, h2, h3, h4, h5, h6 {
21420
+ font-size: inherit;
21421
+ font-weight: inherit;
21422
+ }
21423
+ a {
21424
+ color: inherit;
21425
+ -webkit-text-decoration: inherit;
21426
+ text-decoration: inherit;
21427
+ }
21428
+ b, strong {
21429
+ font-weight: bolder;
21430
+ }
21431
+ code, kbd, samp, pre {
21432
+ font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
21433
+ font-feature-settings: var(--default-mono-font-feature-settings, normal);
21434
+ font-variation-settings: var(--default-mono-font-variation-settings, normal);
21435
+ font-size: 1em;
21436
+ }
21437
+ small {
21438
+ font-size: 80%;
21439
+ }
21440
+ sub, sup {
21441
+ font-size: 75%;
21442
+ line-height: 0;
21443
+ position: relative;
21444
+ vertical-align: baseline;
21445
+ }
21446
+ sub {
21447
+ bottom: -0.25em;
21448
+ }
21449
+ sup {
21450
+ top: -0.5em;
21451
+ }
21452
+ table {
21453
+ text-indent: 0;
21454
+ border-color: inherit;
21455
+ border-collapse: collapse;
21456
+ }
21457
+ :-moz-focusring {
21458
+ outline: auto;
21459
+ }
21460
+ progress {
21461
+ vertical-align: baseline;
21462
+ }
21463
+ summary {
21464
+ display: list-item;
21465
+ }
21466
+ ol, ul, menu {
21467
+ list-style: none;
21468
+ }
21469
+ img, svg, video, canvas, audio, iframe, embed, object {
21470
+ display: block;
21471
+ vertical-align: middle;
21472
+ }
21473
+ img, video {
21474
+ max-width: 100%;
21475
+ height: auto;
21476
+ }
21477
+ button, input, select, optgroup, textarea, ::file-selector-button {
21478
+ font: inherit;
21479
+ font-feature-settings: inherit;
21480
+ font-variation-settings: inherit;
21481
+ letter-spacing: inherit;
21482
+ color: inherit;
21483
+ border-radius: 0;
21484
+ background-color: transparent;
21485
+ opacity: 1;
21486
+ }
21487
+ :where(select:is([multiple], [size])) optgroup {
21488
+ font-weight: bolder;
21489
+ }
21490
+ :where(select:is([multiple], [size])) optgroup option {
21491
+ padding-inline-start: 20px;
21492
+ }
21493
+ ::file-selector-button {
21494
+ margin-inline-end: 4px;
21495
+ }
21496
+ ::placeholder {
21497
+ opacity: 1;
21498
+ }
21499
+ @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
21500
+ ::placeholder {
21501
+ color: currentcolor;
21502
+ @supports (color: color-mix(in lab, red, red)) {
21503
+ color: color-mix(in oklab, currentcolor 50%, transparent);
21504
+ }
21505
+ }
21506
+ }
21507
+ textarea {
21508
+ resize: vertical;
21509
+ }
21510
+ ::-webkit-search-decoration {
21511
+ -webkit-appearance: none;
21512
+ }
21513
+ ::-webkit-date-and-time-value {
21514
+ min-height: 1lh;
21515
+ text-align: inherit;
21516
+ }
21517
+ ::-webkit-datetime-edit {
21518
+ display: inline-flex;
21519
+ }
21520
+ ::-webkit-datetime-edit-fields-wrapper {
21521
+ padding: 0;
21522
+ }
21523
+ ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
21524
+ padding-block: 0;
21525
+ }
21526
+ ::-webkit-calendar-picker-indicator {
21527
+ line-height: 1;
21528
+ }
21529
+ :-moz-ui-invalid {
21530
+ box-shadow: none;
21531
+ }
21532
+ button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
21533
+ appearance: button;
21534
+ }
21535
+ ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
21536
+ height: auto;
21537
+ }
21538
+ [hidden]:where(:not([hidden="until-found"])) {
21539
+ display: none !important;
21540
+ }
21541
+ }
21542
+ @layer utilities {
21543
+ .pointer-events-none {
21544
+ pointer-events: none;
21545
+ }
21546
+ .visible {
21547
+ visibility: visible;
21548
+ }
21549
+ .absolute {
21550
+ position: absolute;
21551
+ }
21552
+ .fixed {
21553
+ position: fixed;
21554
+ }
21555
+ .relative {
21556
+ position: relative;
21557
+ }
21558
+ .static {
21559
+ position: static;
21560
+ }
21561
+ .inset-0 {
21562
+ inset: calc(var(--spacing) * 0);
21563
+ }
21564
+ .start {
21565
+ inset-inline-start: var(--spacing);
21566
+ }
21567
+ .end {
21568
+ inset-inline-end: var(--spacing);
21569
+ }
21570
+ .-top-3 {
21571
+ top: calc(var(--spacing) * -3);
21572
+ }
21573
+ .top-0 {
21574
+ top: calc(var(--spacing) * 0);
21575
+ }
21576
+ .top-1\/2 {
21577
+ top: calc(1 / 2 * 100%);
21578
+ }
21579
+ .-right-3 {
21580
+ right: calc(var(--spacing) * -3);
21581
+ }
21582
+ .right-0 {
21583
+ right: calc(var(--spacing) * 0);
21584
+ }
21585
+ .right-3 {
21586
+ right: calc(var(--spacing) * 3);
21587
+ }
21588
+ .z-10 {
21589
+ z-index: 10;
21590
+ }
21591
+ .z-50 {
21592
+ z-index: 50;
21593
+ }
21594
+ .mx-auto {
21595
+ margin-inline: auto;
21596
+ }
21597
+ .-mt-12 {
21598
+ margin-top: calc(var(--spacing) * -12);
21599
+ }
21600
+ .mt-1 {
21601
+ margin-top: calc(var(--spacing) * 1);
21602
+ }
21603
+ .mt-2 {
21604
+ margin-top: calc(var(--spacing) * 2);
21605
+ }
21606
+ .mt-3 {
21607
+ margin-top: calc(var(--spacing) * 3);
21608
+ }
21609
+ .mb-0 {
21610
+ margin-bottom: calc(var(--spacing) * 0);
21611
+ }
21612
+ .mb-1\.5 {
21613
+ margin-bottom: calc(var(--spacing) * 1.5);
21614
+ }
21615
+ .mb-2 {
21616
+ margin-bottom: calc(var(--spacing) * 2);
21617
+ }
21618
+ .mb-3 {
21619
+ margin-bottom: calc(var(--spacing) * 3);
21620
+ }
21621
+ .mb-4 {
21622
+ margin-bottom: calc(var(--spacing) * 4);
21623
+ }
21624
+ .mb-5 {
21625
+ margin-bottom: calc(var(--spacing) * 5);
21626
+ }
21627
+ .mb-6 {
21628
+ margin-bottom: calc(var(--spacing) * 6);
21629
+ }
21630
+ .ml-1 {
21631
+ margin-left: calc(var(--spacing) * 1);
21632
+ }
21633
+ .block {
21634
+ display: block;
21635
+ }
21636
+ .contents {
21637
+ display: contents;
21638
+ }
21639
+ .flex {
21640
+ display: flex;
21641
+ }
21642
+ .grid {
21643
+ display: grid;
21644
+ }
21645
+ .inline-flex {
21646
+ display: inline-flex;
21647
+ }
21648
+ .table {
21649
+ display: table;
21650
+ }
21651
+ .h-2 {
21652
+ height: calc(var(--spacing) * 2);
21653
+ }
21654
+ .h-4 {
21655
+ height: calc(var(--spacing) * 4);
21656
+ }
21657
+ .h-8 {
21658
+ height: calc(var(--spacing) * 8);
21659
+ }
21660
+ .h-10 {
21661
+ height: calc(var(--spacing) * 10);
21662
+ }
21663
+ .h-12 {
21664
+ height: calc(var(--spacing) * 12);
21665
+ }
21666
+ .h-24 {
21667
+ height: calc(var(--spacing) * 24);
21668
+ }
21669
+ .h-full {
21670
+ height: 100%;
21671
+ }
21672
+ .max-h-full {
21673
+ max-height: 100%;
21674
+ }
21675
+ .min-h-screen {
21676
+ min-height: 100vh;
21677
+ }
21678
+ .w-2 {
21679
+ width: calc(var(--spacing) * 2);
21680
+ }
21681
+ .w-4 {
21682
+ width: calc(var(--spacing) * 4);
21683
+ }
21684
+ .w-8 {
21685
+ width: calc(var(--spacing) * 8);
21686
+ }
21687
+ .w-10 {
21688
+ width: calc(var(--spacing) * 10);
21689
+ }
21690
+ .w-12 {
21691
+ width: calc(var(--spacing) * 12);
21692
+ }
21693
+ .w-24 {
21694
+ width: calc(var(--spacing) * 24);
21695
+ }
21696
+ .w-full {
21697
+ width: 100%;
21698
+ }
21699
+ .max-w-4xl {
21700
+ max-width: var(--container-4xl);
21701
+ }
21702
+ .max-w-\[180px\] {
21703
+ max-width: 180px;
21704
+ }
21705
+ .max-w-full {
21706
+ max-width: 100%;
21707
+ }
21708
+ .min-w-0 {
21709
+ min-width: calc(var(--spacing) * 0);
21710
+ }
21711
+ .flex-1 {
21712
+ flex: 1;
21713
+ }
21714
+ .flex-shrink-0 {
21715
+ flex-shrink: 0;
21716
+ }
21717
+ .border-collapse {
21718
+ border-collapse: collapse;
21719
+ }
21720
+ .-translate-y-1\/2 {
21721
+ --tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
21722
+ translate: var(--tw-translate-x) var(--tw-translate-y);
21723
+ }
21724
+ .transform {
21725
+ transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
21726
+ }
21727
+ .cursor-pointer {
21728
+ cursor: pointer;
21729
+ }
21730
+ .appearance-none {
21731
+ appearance: none;
21732
+ }
21733
+ .grid-cols-1 {
21734
+ grid-template-columns: repeat(1, minmax(0, 1fr));
21735
+ }
21736
+ .flex-col {
21737
+ flex-direction: column;
21738
+ }
21739
+ .flex-wrap {
21740
+ flex-wrap: wrap;
21741
+ }
21742
+ .items-center {
21743
+ align-items: center;
21744
+ }
21745
+ .items-end {
21746
+ align-items: flex-end;
21747
+ }
21748
+ .items-start {
21749
+ align-items: flex-start;
21750
+ }
21751
+ .justify-between {
21752
+ justify-content: space-between;
21753
+ }
21754
+ .justify-center {
21755
+ justify-content: center;
21756
+ }
21757
+ .gap-1 {
21758
+ gap: calc(var(--spacing) * 1);
21759
+ }
21760
+ .gap-1\.5 {
21761
+ gap: calc(var(--spacing) * 1.5);
21762
+ }
21763
+ .gap-2 {
21764
+ gap: calc(var(--spacing) * 2);
21765
+ }
21766
+ .gap-3 {
21767
+ gap: calc(var(--spacing) * 3);
21768
+ }
21769
+ .gap-4 {
21770
+ gap: calc(var(--spacing) * 4);
21771
+ }
21772
+ .gap-6 {
21773
+ gap: calc(var(--spacing) * 6);
21774
+ }
21775
+ .space-y-2 {
21776
+ :where(& > :not(:last-child)) {
21777
+ --tw-space-y-reverse: 0;
21778
+ margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse));
21779
+ margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
21780
+ }
21781
+ }
21782
+ .space-y-3 {
21783
+ :where(& > :not(:last-child)) {
21784
+ --tw-space-y-reverse: 0;
21785
+ margin-block-start: calc(calc(var(--spacing) * 3) * var(--tw-space-y-reverse));
21786
+ margin-block-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-y-reverse)));
21787
+ }
21788
+ }
21789
+ .space-y-6 {
21790
+ :where(& > :not(:last-child)) {
21791
+ --tw-space-y-reverse: 0;
21792
+ margin-block-start: calc(calc(var(--spacing) * 6) * var(--tw-space-y-reverse));
21793
+ margin-block-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-y-reverse)));
21794
+ }
21795
+ }
21796
+ .space-x-3 {
21797
+ :where(& > :not(:last-child)) {
21798
+ --tw-space-x-reverse: 0;
21799
+ margin-inline-start: calc(calc(var(--spacing) * 3) * var(--tw-space-x-reverse));
21800
+ margin-inline-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-x-reverse)));
21801
+ }
21802
+ }
21803
+ .truncate {
21804
+ overflow: hidden;
21805
+ text-overflow: ellipsis;
21806
+ white-space: nowrap;
21807
+ }
21808
+ .overflow-hidden {
21809
+ overflow: hidden;
21810
+ }
21811
+ .rounded {
21812
+ border-radius: 0.25rem;
21813
+ }
21814
+ .rounded-2xl {
21815
+ border-radius: var(--radius-2xl);
21816
+ }
21817
+ .rounded-full {
21818
+ border-radius: calc(infinity * 1px);
21819
+ }
21820
+ .rounded-lg {
21821
+ border-radius: var(--radius-lg);
21822
+ }
21823
+ .rounded-md {
21824
+ border-radius: var(--radius-md);
21825
+ }
21826
+ .rounded-sm {
21827
+ border-radius: var(--radius-sm);
21828
+ }
21829
+ .rounded-xl {
21830
+ border-radius: var(--radius-xl);
21831
+ }
21832
+ .border {
21833
+ border-style: var(--tw-border-style);
21834
+ border-width: 1px;
21835
+ }
21836
+ .border-2 {
21837
+ border-style: var(--tw-border-style);
21838
+ border-width: 2px;
21839
+ }
21840
+ .border-4 {
21841
+ border-style: var(--tw-border-style);
21842
+ border-width: 4px;
21843
+ }
21844
+ .border-t {
21845
+ border-top-style: var(--tw-border-style);
21846
+ border-top-width: 1px;
21847
+ }
21848
+ .border-dashed {
21849
+ --tw-border-style: dashed;
21850
+ border-style: dashed;
21851
+ }
21852
+ .border-emerald-100 {
21853
+ border-color: var(--color-emerald-100);
21854
+ }
21855
+ .border-emerald-200 {
21856
+ border-color: var(--color-emerald-200);
21857
+ }
21858
+ .border-gray-300 {
21859
+ border-color: var(--color-gray-300);
21860
+ }
21861
+ .border-gray-700 {
21862
+ border-color: var(--color-gray-700);
21863
+ }
21864
+ .border-indigo-100 {
21865
+ border-color: var(--color-indigo-100);
21866
+ }
21867
+ .border-red-300 {
21868
+ border-color: var(--color-red-300);
21869
+ }
21870
+ .border-slate-100 {
21871
+ border-color: var(--color-slate-100);
21872
+ }
21873
+ .border-slate-200 {
21874
+ border-color: var(--color-slate-200);
21875
+ }
21876
+ .border-slate-200\/60 {
21877
+ border-color: color-mix(in srgb, hsl(210 9% 48%) 60%, transparent);
21878
+ @supports (color: color-mix(in lab, red, red)) {
21879
+ border-color: color-mix(in oklab, var(--color-slate-200) 60%, transparent);
21880
+ }
21881
+ }
21882
+ .border-slate-300 {
21883
+ border-color: var(--color-slate-300);
21884
+ }
21885
+ .border-white {
21886
+ border-color: var(--color-white);
21887
+ }
21888
+ .bg-amber-50 {
21889
+ background-color: var(--color-amber-50);
21890
+ }
21891
+ .bg-amber-500 {
21892
+ background-color: var(--color-amber-500);
21893
+ }
21894
+ .bg-blue-50 {
21895
+ background-color: var(--color-blue-50);
21896
+ }
21897
+ .bg-blue-500 {
21898
+ background-color: var(--color-blue-500);
21899
+ }
21900
+ .bg-cyan-500 {
21901
+ background-color: var(--color-cyan-500);
21902
+ }
21903
+ .bg-emerald-50 {
21904
+ background-color: var(--color-emerald-50);
21905
+ }
21906
+ .bg-emerald-100 {
21907
+ background-color: var(--color-emerald-100);
21908
+ }
21909
+ .bg-emerald-500 {
21910
+ background-color: var(--color-emerald-500);
21911
+ }
21912
+ .bg-gray-100 {
21913
+ background-color: var(--color-gray-100);
21914
+ }
21915
+ .bg-gray-800 {
21916
+ background-color: var(--color-gray-800);
21917
+ }
21918
+ .bg-gray-900 {
21919
+ background-color: var(--color-gray-900);
21920
+ }
21921
+ .bg-green-500 {
21922
+ background-color: var(--color-green-500);
21923
+ }
21924
+ .bg-indigo-50 {
21925
+ background-color: var(--color-indigo-50);
21926
+ }
21927
+ .bg-indigo-500 {
21928
+ background-color: var(--color-indigo-500);
21929
+ }
21930
+ .bg-indigo-600 {
21931
+ background-color: var(--color-indigo-600);
21932
+ }
21933
+ .bg-orange-500 {
21934
+ background-color: var(--color-orange-500);
21935
+ }
21936
+ .bg-pink-500 {
21937
+ background-color: var(--color-pink-500);
21938
+ }
21939
+ .bg-red-50 {
21940
+ background-color: var(--color-red-50);
21941
+ }
21942
+ .bg-red-500 {
21943
+ background-color: var(--color-red-500);
21944
+ }
21945
+ .bg-rose-500 {
21946
+ background-color: var(--color-rose-500);
21947
+ }
21948
+ .bg-sky-50 {
21949
+ background-color: var(--color-sky-50);
21950
+ }
21951
+ .bg-sky-500 {
21952
+ background-color: var(--color-sky-500);
21953
+ }
21954
+ .bg-slate-50 {
21955
+ background-color: var(--color-slate-50);
21956
+ }
21957
+ .bg-slate-100 {
21958
+ background-color: var(--color-slate-100);
21959
+ }
21960
+ .bg-slate-300 {
21961
+ background-color: var(--color-slate-300);
21962
+ }
21963
+ .bg-slate-400 {
21964
+ background-color: var(--color-slate-400);
21965
+ }
21966
+ .bg-slate-600 {
21967
+ background-color: var(--color-slate-600);
21968
+ }
21969
+ .bg-violet-50 {
21970
+ background-color: var(--color-violet-50);
21971
+ }
21972
+ .bg-violet-500 {
21973
+ background-color: var(--color-violet-500);
21974
+ }
21975
+ .bg-white {
21976
+ background-color: var(--color-white);
21977
+ }
21978
+ .bg-gradient-to-br {
21979
+ --tw-gradient-position: to bottom right in oklab;
21980
+ background-image: linear-gradient(var(--tw-gradient-stops));
21981
+ }
21982
+ .bg-gradient-to-r {
21983
+ --tw-gradient-position: to right in oklab;
21984
+ background-image: linear-gradient(var(--tw-gradient-stops));
21985
+ }
21986
+ .bg-\[url\(\'data\:image\/svg\+xml\;base64\,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iMC4xIj48cGF0aCBkPSJNMzYgMzBoLTZWMGg2djMwem0tNiAwSDI0VjBoNnYzMHoiLz48L2c\+PC9nPjwvc3ZnPg\=\=\'\)\] {
21987
+ background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iMC4xIj48cGF0aCBkPSJNMzYgMzBoLTZWMGg2djMwem0tNiAwSDI0VjBoNnYzMHoiLz48L2c+PC9nPjwvc3ZnPg==');
21988
+ }
21989
+ .from-emerald-50 {
21990
+ --tw-gradient-from: var(--color-emerald-50);
21991
+ --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
21992
+ }
21993
+ .from-indigo-500 {
21994
+ --tw-gradient-from: var(--color-indigo-500);
21995
+ --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
21996
+ }
21997
+ .from-slate-50 {
21998
+ --tw-gradient-from: var(--color-slate-50);
21999
+ --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
22000
+ }
22001
+ .from-slate-700 {
22002
+ --tw-gradient-from: var(--color-slate-700);
22003
+ --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
22004
+ }
22005
+ .via-purple-500 {
22006
+ --tw-gradient-via: var(--color-purple-500);
22007
+ --tw-gradient-via-stops: var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-via) var(--tw-gradient-via-position), var(--tw-gradient-to) var(--tw-gradient-to-position);
22008
+ --tw-gradient-stops: var(--tw-gradient-via-stops);
22009
+ }
22010
+ .via-white {
22011
+ --tw-gradient-via: var(--color-white);
22012
+ --tw-gradient-via-stops: var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-via) var(--tw-gradient-via-position), var(--tw-gradient-to) var(--tw-gradient-to-position);
22013
+ --tw-gradient-stops: var(--tw-gradient-via-stops);
22014
+ }
22015
+ .to-pink-500 {
22016
+ --tw-gradient-to: var(--color-pink-500);
22017
+ --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
22018
+ }
22019
+ .to-slate-100 {
22020
+ --tw-gradient-to: var(--color-slate-100);
22021
+ --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
22022
+ }
22023
+ .to-slate-900 {
22024
+ --tw-gradient-to: var(--color-slate-900);
22025
+ --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
22026
+ }
22027
+ .to-teal-50 {
22028
+ --tw-gradient-to: var(--color-teal-50);
22029
+ --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
22030
+ }
22031
+ .object-contain {
22032
+ object-fit: contain;
22033
+ }
22034
+ .object-cover {
22035
+ object-fit: cover;
22036
+ }
22037
+ .p-1 {
22038
+ padding: calc(var(--spacing) * 1);
22039
+ }
22040
+ .p-2 {
22041
+ padding: calc(var(--spacing) * 2);
22042
+ }
22043
+ .p-2\.5 {
22044
+ padding: calc(var(--spacing) * 2.5);
22045
+ }
22046
+ .p-3 {
22047
+ padding: calc(var(--spacing) * 3);
22048
+ }
22049
+ .p-4 {
22050
+ padding: calc(var(--spacing) * 4);
22051
+ }
22052
+ .p-6 {
22053
+ padding: calc(var(--spacing) * 6);
22054
+ }
22055
+ .p-8 {
22056
+ padding: calc(var(--spacing) * 8);
22057
+ }
22058
+ .px-2\.5 {
22059
+ padding-inline: calc(var(--spacing) * 2.5);
22060
+ }
22061
+ .px-3 {
22062
+ padding-inline: calc(var(--spacing) * 3);
22063
+ }
22064
+ .px-4 {
22065
+ padding-inline: calc(var(--spacing) * 4);
22066
+ }
22067
+ .px-5 {
22068
+ padding-inline: calc(var(--spacing) * 5);
22069
+ }
22070
+ .px-6 {
22071
+ padding-inline: calc(var(--spacing) * 6);
22072
+ }
22073
+ .py-1 {
22074
+ padding-block: calc(var(--spacing) * 1);
22075
+ }
22076
+ .py-1\.5 {
22077
+ padding-block: calc(var(--spacing) * 1.5);
22078
+ }
22079
+ .py-2 {
22080
+ padding-block: calc(var(--spacing) * 2);
22081
+ }
22082
+ .py-2\.5 {
22083
+ padding-block: calc(var(--spacing) * 2.5);
22084
+ }
22085
+ .py-3 {
22086
+ padding-block: calc(var(--spacing) * 3);
22087
+ }
22088
+ .py-8 {
22089
+ padding-block: calc(var(--spacing) * 8);
22090
+ }
22091
+ .pt-4 {
22092
+ padding-top: calc(var(--spacing) * 4);
22093
+ }
22094
+ .pt-6 {
22095
+ padding-top: calc(var(--spacing) * 6);
22096
+ }
22097
+ .pr-8 {
22098
+ padding-right: calc(var(--spacing) * 8);
22099
+ }
22100
+ .pr-10 {
22101
+ padding-right: calc(var(--spacing) * 10);
22102
+ }
22103
+ .pb-6 {
22104
+ padding-bottom: calc(var(--spacing) * 6);
22105
+ }
22106
+ .pb-12 {
22107
+ padding-bottom: calc(var(--spacing) * 12);
22108
+ }
22109
+ .text-center {
22110
+ text-align: center;
22111
+ }
22112
+ .text-right {
22113
+ text-align: right;
22114
+ }
22115
+ .font-mono {
22116
+ font-family: var(--font-mono);
22117
+ }
22118
+ .text-2xl {
22119
+ font-size: var(--text-2xl);
22120
+ line-height: var(--tw-leading, var(--text-2xl--line-height));
22121
+ }
22122
+ .text-3xl {
22123
+ font-size: var(--text-3xl);
22124
+ line-height: var(--tw-leading, var(--text-3xl--line-height));
22125
+ }
22126
+ .text-lg {
22127
+ font-size: var(--text-lg);
22128
+ line-height: var(--tw-leading, var(--text-lg--line-height));
22129
+ }
22130
+ .text-sm {
22131
+ font-size: var(--text-sm);
22132
+ line-height: var(--tw-leading, var(--text-sm--line-height));
22133
+ }
22134
+ .text-xl {
22135
+ font-size: var(--text-xl);
22136
+ line-height: var(--tw-leading, var(--text-xl--line-height));
22137
+ }
22138
+ .text-xs {
22139
+ font-size: var(--text-xs);
22140
+ line-height: var(--tw-leading, var(--text-xs--line-height));
22141
+ }
22142
+ .leading-4 {
22143
+ --tw-leading: calc(var(--spacing) * 4);
22144
+ line-height: calc(var(--spacing) * 4);
22145
+ }
22146
+ .leading-relaxed {
22147
+ --tw-leading: var(--leading-relaxed);
22148
+ line-height: var(--leading-relaxed);
22149
+ }
22150
+ .font-bold {
22151
+ --tw-font-weight: var(--font-weight-bold);
22152
+ font-weight: var(--font-weight-bold);
22153
+ }
22154
+ .font-light {
22155
+ --tw-font-weight: var(--font-weight-light);
22156
+ font-weight: var(--font-weight-light);
22157
+ }
22158
+ .font-medium {
22159
+ --tw-font-weight: var(--font-weight-medium);
22160
+ font-weight: var(--font-weight-medium);
22161
+ }
22162
+ .font-semibold {
22163
+ --tw-font-weight: var(--font-weight-semibold);
22164
+ font-weight: var(--font-weight-semibold);
22165
+ }
22166
+ .tracking-tight {
22167
+ --tw-tracking: var(--tracking-tight);
22168
+ letter-spacing: var(--tracking-tight);
22169
+ }
22170
+ .tracking-wider {
22171
+ --tw-tracking: var(--tracking-wider);
22172
+ letter-spacing: var(--tracking-wider);
22173
+ }
22174
+ .whitespace-pre-wrap {
22175
+ white-space: pre-wrap;
22176
+ }
22177
+ .text-amber-500 {
22178
+ color: var(--color-amber-500);
22179
+ }
22180
+ .text-amber-600 {
22181
+ color: var(--color-amber-600);
22182
+ }
22183
+ .text-amber-700 {
22184
+ color: var(--color-amber-700);
22185
+ }
22186
+ .text-blue-600 {
22187
+ color: var(--color-blue-600);
22188
+ }
22189
+ .text-emerald-600 {
22190
+ color: var(--color-emerald-600);
22191
+ }
22192
+ .text-emerald-700 {
22193
+ color: var(--color-emerald-700);
22194
+ }
22195
+ .text-gray-400 {
22196
+ color: var(--color-gray-400);
22197
+ }
22198
+ .text-gray-500 {
22199
+ color: var(--color-gray-500);
22200
+ }
22201
+ .text-gray-600 {
22202
+ color: var(--color-gray-600);
22203
+ }
22204
+ .text-gray-700 {
22205
+ color: var(--color-gray-700);
22206
+ }
22207
+ .text-gray-900 {
22208
+ color: var(--color-gray-900);
22209
+ }
22210
+ .text-indigo-600 {
22211
+ color: var(--color-indigo-600);
22212
+ }
22213
+ .text-indigo-700 {
22214
+ color: var(--color-indigo-700);
22215
+ }
22216
+ .text-red-500 {
22217
+ color: var(--color-red-500);
22218
+ }
22219
+ .text-red-600 {
22220
+ color: var(--color-red-600);
22221
+ }
22222
+ .text-sky-700 {
22223
+ color: var(--color-sky-700);
22224
+ }
22225
+ .text-slate-300 {
22226
+ color: var(--color-slate-300);
22227
+ }
22228
+ .text-slate-400 {
22229
+ color: var(--color-slate-400);
22230
+ }
22231
+ .text-slate-500 {
22232
+ color: var(--color-slate-500);
22233
+ }
22234
+ .text-slate-600 {
22235
+ color: var(--color-slate-600);
22236
+ }
22237
+ .text-slate-700 {
22238
+ color: var(--color-slate-700);
22239
+ }
22240
+ .text-slate-800 {
22241
+ color: var(--color-slate-800);
22242
+ }
22243
+ .text-slate-900 {
22244
+ color: var(--color-slate-900);
22245
+ }
22246
+ .text-violet-600 {
22247
+ color: var(--color-violet-600);
22248
+ }
22249
+ .text-white {
22250
+ color: var(--color-white);
22251
+ }
22252
+ .uppercase {
22253
+ text-transform: uppercase;
22254
+ }
22255
+ .italic {
22256
+ font-style: italic;
22257
+ }
22258
+ .underline-offset-2 {
22259
+ text-underline-offset: 2px;
22260
+ }
22261
+ .opacity-0 {
22262
+ opacity: 0%;
22263
+ }
22264
+ .opacity-30 {
22265
+ opacity: 30%;
22266
+ }
22267
+ .opacity-100 {
22268
+ opacity: 100%;
22269
+ }
22270
+ .shadow-2xl {
22271
+ --tw-shadow: 0 25px 50px -12px var(--tw-shadow-color, rgb(0 0 0 / 0.25));
22272
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
22273
+ }
22274
+ .shadow-lg {
22275
+ --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
22276
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
22277
+ }
22278
+ .shadow-sm {
22279
+ --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
22280
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
22281
+ }
22282
+ .blur {
22283
+ --tw-blur: blur(8px);
22284
+ filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
22285
+ }
22286
+ .filter {
22287
+ filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
22288
+ }
22289
+ .backdrop-blur-sm {
22290
+ --tw-backdrop-blur: blur(var(--blur-sm));
22291
+ -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,);
22292
+ 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,);
22293
+ }
22294
+ .backdrop-filter {
22295
+ -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,);
22296
+ 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,);
22297
+ }
22298
+ .transition {
22299
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
22300
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
22301
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
22302
+ }
22303
+ .transition-all {
22304
+ transition-property: all;
22305
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
22306
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
22307
+ }
22308
+ .transition-colors {
22309
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
22310
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
22311
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
22312
+ }
22313
+ .transition-opacity {
22314
+ transition-property: opacity;
22315
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
22316
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
22317
+ }
22318
+ .duration-200 {
22319
+ --tw-duration: 200ms;
22320
+ transition-duration: 200ms;
22321
+ }
22322
+ .group-hover\:text-indigo-500 {
22323
+ &:is(:where(.group):hover *) {
22324
+ @media (hover: hover) {
22325
+ color: var(--color-indigo-500);
22326
+ }
22327
+ }
22328
+ }
22329
+ .group-hover\:underline {
22330
+ &:is(:where(.group):hover *) {
22331
+ @media (hover: hover) {
22332
+ text-decoration-line: underline;
22333
+ }
22334
+ }
22335
+ }
22336
+ .group-hover\:opacity-100 {
22337
+ &:is(:where(.group):hover *) {
22338
+ @media (hover: hover) {
22339
+ opacity: 100%;
22340
+ }
22341
+ }
22342
+ }
22343
+ .hover\:border-emerald-300 {
22344
+ &:hover {
22345
+ @media (hover: hover) {
22346
+ border-color: var(--color-emerald-300);
22347
+ }
22348
+ }
22349
+ }
22350
+ .hover\:border-slate-300 {
22351
+ &:hover {
22352
+ @media (hover: hover) {
22353
+ border-color: var(--color-slate-300);
22354
+ }
22355
+ }
22356
+ }
22357
+ .hover\:bg-emerald-200 {
22358
+ &:hover {
22359
+ @media (hover: hover) {
22360
+ background-color: var(--color-emerald-200);
22361
+ }
22362
+ }
22363
+ }
22364
+ .hover\:bg-gray-900 {
22365
+ &:hover {
22366
+ @media (hover: hover) {
22367
+ background-color: var(--color-gray-900);
22368
+ }
22369
+ }
22370
+ }
22371
+ .hover\:bg-indigo-700 {
22372
+ &:hover {
22373
+ @media (hover: hover) {
22374
+ background-color: var(--color-indigo-700);
22375
+ }
22376
+ }
22377
+ }
22378
+ .hover\:bg-red-50 {
22379
+ &:hover {
22380
+ @media (hover: hover) {
22381
+ background-color: var(--color-red-50);
22382
+ }
22383
+ }
22384
+ }
22385
+ .hover\:bg-red-100 {
22386
+ &:hover {
22387
+ @media (hover: hover) {
22388
+ background-color: var(--color-red-100);
22389
+ }
22390
+ }
22391
+ }
22392
+ .hover\:bg-slate-50 {
22393
+ &:hover {
22394
+ @media (hover: hover) {
22395
+ background-color: var(--color-slate-50);
22396
+ }
22397
+ }
22398
+ }
22399
+ .hover\:bg-slate-100 {
22400
+ &:hover {
22401
+ @media (hover: hover) {
22402
+ background-color: var(--color-slate-100);
22403
+ }
22404
+ }
22405
+ }
22406
+ .hover\:text-indigo-600 {
22407
+ &:hover {
22408
+ @media (hover: hover) {
22409
+ color: var(--color-indigo-600);
22410
+ }
22411
+ }
22412
+ }
22413
+ .hover\:text-indigo-700 {
22414
+ &:hover {
22415
+ @media (hover: hover) {
22416
+ color: var(--color-indigo-700);
22417
+ }
22418
+ }
22419
+ }
22420
+ .hover\:text-red-600 {
22421
+ &:hover {
22422
+ @media (hover: hover) {
22423
+ color: var(--color-red-600);
22424
+ }
22425
+ }
22426
+ }
22427
+ .hover\:text-slate-600 {
22428
+ &:hover {
22429
+ @media (hover: hover) {
22430
+ color: var(--color-slate-600);
22431
+ }
22432
+ }
22433
+ }
22434
+ .hover\:opacity-80 {
22435
+ &:hover {
22436
+ @media (hover: hover) {
22437
+ opacity: 80%;
22438
+ }
22439
+ }
22440
+ }
22441
+ .hover\:shadow-sm {
22442
+ &:hover {
22443
+ @media (hover: hover) {
22444
+ --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
22445
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
22446
+ }
22447
+ }
22448
+ }
22449
+ .focus\:border-blue-500 {
22450
+ &:focus {
22451
+ border-color: var(--color-blue-500);
22452
+ }
22453
+ }
22454
+ .focus\:border-emerald-500 {
22455
+ &:focus {
22456
+ border-color: var(--color-emerald-500);
22457
+ }
22458
+ }
22459
+ .focus\:border-indigo-500 {
22460
+ &:focus {
22461
+ border-color: var(--color-indigo-500);
22462
+ }
22463
+ }
22464
+ .focus\:border-red-500 {
22465
+ &:focus {
22466
+ border-color: var(--color-red-500);
22467
+ }
22468
+ }
22469
+ .focus\:ring-2 {
22470
+ &:focus {
22471
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
22472
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
22473
+ }
22474
+ }
22475
+ .focus\:ring-blue-500 {
22476
+ &:focus {
22477
+ --tw-ring-color: var(--color-blue-500);
22478
+ }
22479
+ }
22480
+ .focus\:ring-emerald-500 {
22481
+ &:focus {
22482
+ --tw-ring-color: var(--color-emerald-500);
22483
+ }
22484
+ }
22485
+ .focus\:ring-indigo-500 {
22486
+ &:focus {
22487
+ --tw-ring-color: var(--color-indigo-500);
22488
+ }
22489
+ }
22490
+ .focus\:ring-red-500 {
22491
+ &:focus {
22492
+ --tw-ring-color: var(--color-red-500);
22493
+ }
22494
+ }
22495
+ .focus\:outline-none {
22496
+ &:focus {
22497
+ --tw-outline-style: none;
22498
+ outline-style: none;
22499
+ }
22500
+ }
22501
+ .disabled\:cursor-not-allowed {
22502
+ &:disabled {
22503
+ cursor: not-allowed;
22504
+ }
22505
+ }
22506
+ .disabled\:bg-slate-300 {
22507
+ &:disabled {
22508
+ background-color: var(--color-slate-300);
22509
+ }
22510
+ }
22511
+ .md\:col-span-2 {
22512
+ @media (width >= 48rem) {
22513
+ grid-column: span 2 / span 2;
22514
+ }
22515
+ }
22516
+ .md\:grid-cols-2 {
22517
+ @media (width >= 48rem) {
22518
+ grid-template-columns: repeat(2, minmax(0, 1fr));
22519
+ }
22520
+ }
22521
+ }
22522
+ @layer properties {
22523
+ @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
22524
+ *, ::before, ::after, ::backdrop {
22525
+ --tw-translate-x: 0;
22526
+ --tw-translate-y: 0;
22527
+ --tw-translate-z: 0;
22528
+ --tw-rotate-x: initial;
22529
+ --tw-rotate-y: initial;
22530
+ --tw-rotate-z: initial;
22531
+ --tw-skew-x: initial;
22532
+ --tw-skew-y: initial;
22533
+ --tw-space-y-reverse: 0;
22534
+ --tw-space-x-reverse: 0;
22535
+ --tw-border-style: solid;
22536
+ --tw-gradient-position: initial;
22537
+ --tw-gradient-from: #0000;
22538
+ --tw-gradient-via: #0000;
22539
+ --tw-gradient-to: #0000;
22540
+ --tw-gradient-stops: initial;
22541
+ --tw-gradient-via-stops: initial;
22542
+ --tw-gradient-from-position: 0%;
22543
+ --tw-gradient-via-position: 50%;
22544
+ --tw-gradient-to-position: 100%;
22545
+ --tw-leading: initial;
22546
+ --tw-font-weight: initial;
22547
+ --tw-tracking: initial;
22548
+ --tw-shadow: 0 0 #0000;
22549
+ --tw-shadow-color: initial;
22550
+ --tw-shadow-alpha: 100%;
22551
+ --tw-inset-shadow: 0 0 #0000;
22552
+ --tw-inset-shadow-color: initial;
22553
+ --tw-inset-shadow-alpha: 100%;
22554
+ --tw-ring-color: initial;
22555
+ --tw-ring-shadow: 0 0 #0000;
22556
+ --tw-inset-ring-color: initial;
22557
+ --tw-inset-ring-shadow: 0 0 #0000;
22558
+ --tw-ring-inset: initial;
22559
+ --tw-ring-offset-width: 0px;
22560
+ --tw-ring-offset-color: #fff;
22561
+ --tw-ring-offset-shadow: 0 0 #0000;
22562
+ --tw-blur: initial;
22563
+ --tw-brightness: initial;
22564
+ --tw-contrast: initial;
22565
+ --tw-grayscale: initial;
22566
+ --tw-hue-rotate: initial;
22567
+ --tw-invert: initial;
22568
+ --tw-opacity: initial;
22569
+ --tw-saturate: initial;
22570
+ --tw-sepia: initial;
22571
+ --tw-drop-shadow: initial;
22572
+ --tw-drop-shadow-color: initial;
22573
+ --tw-drop-shadow-alpha: 100%;
22574
+ --tw-drop-shadow-size: initial;
22575
+ --tw-backdrop-blur: initial;
22576
+ --tw-backdrop-brightness: initial;
22577
+ --tw-backdrop-contrast: initial;
22578
+ --tw-backdrop-grayscale: initial;
22579
+ --tw-backdrop-hue-rotate: initial;
22580
+ --tw-backdrop-invert: initial;
22581
+ --tw-backdrop-opacity: initial;
22582
+ --tw-backdrop-saturate: initial;
22583
+ --tw-backdrop-sepia: initial;
22584
+ --tw-duration: initial;
22585
+ }
22586
+ }
22587
+ }
22588
+ @property --tw-border-spacing-x {
22589
+ syntax: "<length>";
22590
+ inherits: false;
22591
+ initial-value: 0;
22592
+ }
22593
+ @property --tw-border-spacing-y {
22594
+ syntax: "<length>";
22595
+ inherits: false;
22596
+ initial-value: 0;
22597
+ }
22598
+ @property --tw-rotate-x {
22599
+ syntax: "*";
22600
+ inherits: false;
22601
+ }
22602
+ @property --tw-rotate-y {
22603
+ syntax: "*";
22604
+ inherits: false;
22605
+ }
22606
+ @property --tw-rotate-z {
22607
+ syntax: "*";
22608
+ inherits: false;
22609
+ }
22610
+ @property --tw-skew-x {
22611
+ syntax: "*";
22612
+ inherits: false;
22613
+ }
22614
+ @property --tw-skew-y {
22615
+ syntax: "*";
22616
+ inherits: false;
22617
+ }
22618
+ @property --tw-space-y-reverse {
22619
+ syntax: "*";
22620
+ inherits: false;
22621
+ initial-value: 0;
22622
+ }
22623
+ @property --tw-space-x-reverse {
22624
+ syntax: "*";
22625
+ inherits: false;
22626
+ initial-value: 0;
22627
+ }
22628
+ @property --tw-divide-y-reverse {
22629
+ syntax: "*";
22630
+ inherits: false;
22631
+ initial-value: 0;
22632
+ }
22633
+ @property --tw-border-style {
22634
+ syntax: "*";
22635
+ inherits: false;
22636
+ initial-value: solid;
22637
+ }
22638
+ @property --tw-gradient-position {
22639
+ syntax: "*";
22640
+ inherits: false;
22641
+ }
22642
+ @property --tw-gradient-from {
22643
+ syntax: "<color>";
22644
+ inherits: false;
22645
+ initial-value: #0000;
22646
+ }
22647
+ @property --tw-gradient-via {
22648
+ syntax: "<color>";
22649
+ inherits: false;
22650
+ initial-value: #0000;
22651
+ }
22652
+ @property --tw-gradient-to {
22653
+ syntax: "<color>";
22654
+ inherits: false;
22655
+ initial-value: #0000;
22656
+ }
22657
+ @property --tw-gradient-stops {
22658
+ syntax: "*";
22659
+ inherits: false;
22660
+ }
22661
+ @property --tw-gradient-via-stops {
22662
+ syntax: "*";
22663
+ inherits: false;
22664
+ }
22665
+ @property --tw-gradient-from-position {
22666
+ syntax: "<length-percentage>";
22667
+ inherits: false;
22668
+ initial-value: 0%;
22669
+ }
22670
+ @property --tw-gradient-via-position {
22671
+ syntax: "<length-percentage>";
22672
+ inherits: false;
22673
+ initial-value: 50%;
22674
+ }
22675
+ @property --tw-gradient-to-position {
22676
+ syntax: "<length-percentage>";
22677
+ inherits: false;
22678
+ initial-value: 100%;
22679
+ }
22680
+ @property --tw-leading {
22681
+ syntax: "*";
22682
+ inherits: false;
22683
+ }
22684
+ @property --tw-font-weight {
22685
+ syntax: "*";
22686
+ inherits: false;
22687
+ }
22688
+ @property --tw-tracking {
22689
+ syntax: "*";
22690
+ inherits: false;
22691
+ }
22692
+ @property --tw-ordinal {
22693
+ syntax: "*";
22694
+ inherits: false;
22695
+ }
22696
+ @property --tw-slashed-zero {
22697
+ syntax: "*";
22698
+ inherits: false;
22699
+ }
22700
+ @property --tw-numeric-figure {
22701
+ syntax: "*";
22702
+ inherits: false;
22703
+ }
22704
+ @property --tw-numeric-spacing {
22705
+ syntax: "*";
22706
+ inherits: false;
22707
+ }
22708
+ @property --tw-numeric-fraction {
22709
+ syntax: "*";
22710
+ inherits: false;
22711
+ }
22712
+ @property --tw-shadow {
22713
+ syntax: "*";
22714
+ inherits: false;
22715
+ initial-value: 0 0 #0000;
22716
+ }
22717
+ @property --tw-shadow-color {
22718
+ syntax: "*";
22719
+ inherits: false;
22720
+ }
22721
+ @property --tw-shadow-alpha {
22722
+ syntax: "<percentage>";
22723
+ inherits: false;
22724
+ initial-value: 100%;
22725
+ }
22726
+ @property --tw-inset-shadow {
22727
+ syntax: "*";
22728
+ inherits: false;
22729
+ initial-value: 0 0 #0000;
22730
+ }
22731
+ @property --tw-inset-shadow-color {
22732
+ syntax: "*";
22733
+ inherits: false;
21426
22734
  }
21427
22735
  @property --tw-inset-shadow-alpha {
21428
22736
  syntax: "<percentage>";
@@ -21466,6 +22774,11 @@ input[type='number'] {
21466
22774
  inherits: false;
21467
22775
  initial-value: 0 0 #0000;
21468
22776
  }
22777
+ @property --tw-outline-style {
22778
+ syntax: "*";
22779
+ inherits: false;
22780
+ initial-value: solid;
22781
+ }
21469
22782
  @property --tw-blur {
21470
22783
  syntax: "*";
21471
22784
  inherits: false;
@@ -21727,6 +23040,7 @@ input[type='number'] {
21727
23040
  --tw-ring-offset-width: 0px;
21728
23041
  --tw-ring-offset-color: #fff;
21729
23042
  --tw-ring-offset-shadow: 0 0 #0000;
23043
+ --tw-outline-style: solid;
21730
23044
  --tw-blur: initial;
21731
23045
  --tw-brightness: initial;
21732
23046
  --tw-contrast: initial;
@@ -21758,7 +23072,6 @@ input[type='number'] {
21758
23072
  --tw-scale-y: 1;
21759
23073
  --tw-scale-z: 1;
21760
23074
  --tw-content: "";
21761
- --tw-outline-style: solid;
21762
23075
  }
21763
23076
  }
21764
23077
  }