flowcore-fn 2.8.5 → 2.9.3

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.
@@ -107,12 +107,213 @@
107
107
  --default-mono-font-family: var(--font-mono);
108
108
  }
109
109
  }
110
-
110
+ @layer base {
111
+ *,
112
+ ::after,
113
+ ::before,
114
+ ::backdrop,
115
+ ::file-selector-button {
116
+ box-sizing: border-box;
117
+ margin: 0;
118
+ padding: 0;
119
+ border: 0 solid;
120
+ }
121
+ html,
122
+ :host {
123
+ line-height: 1.5;
124
+ -webkit-text-size-adjust: 100%;
125
+ -moz-tab-size: 4;
126
+ -o-tab-size: 4;
127
+ tab-size: 4;
128
+ 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");
129
+ font-feature-settings: var(--default-font-feature-settings, normal);
130
+ font-variation-settings: var(--default-font-variation-settings, normal);
131
+ -webkit-tap-highlight-color: transparent;
132
+ }
133
+ hr {
134
+ height: 0;
135
+ color: inherit;
136
+ border-top-width: 1px;
137
+ }
138
+ abbr:where([title]) {
139
+ -webkit-text-decoration: underline dotted;
140
+ text-decoration: underline dotted;
141
+ }
142
+ h1,
143
+ h2,
144
+ h3,
145
+ h4,
146
+ h5,
147
+ h6 {
148
+ font-size: inherit;
149
+ font-weight: inherit;
150
+ }
151
+ a {
152
+ color: inherit;
153
+ -webkit-text-decoration: inherit;
154
+ text-decoration: inherit;
155
+ }
156
+ b,
157
+ strong {
158
+ font-weight: bolder;
159
+ }
160
+ code,
161
+ kbd,
162
+ samp,
163
+ pre {
164
+ font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
165
+ font-feature-settings: var(--default-mono-font-feature-settings, normal);
166
+ font-variation-settings: var(--default-mono-font-variation-settings, normal);
167
+ font-size: 1em;
168
+ }
169
+ small {
170
+ font-size: 80%;
171
+ }
172
+ sub,
173
+ sup {
174
+ font-size: 75%;
175
+ line-height: 0;
176
+ position: relative;
177
+ vertical-align: baseline;
178
+ }
179
+ sub {
180
+ bottom: -0.25em;
181
+ }
182
+ sup {
183
+ top: -0.5em;
184
+ }
185
+ table {
186
+ text-indent: 0;
187
+ border-color: inherit;
188
+ border-collapse: collapse;
189
+ }
190
+ :-moz-focusring {
191
+ outline: auto;
192
+ }
193
+ progress {
194
+ vertical-align: baseline;
195
+ }
196
+ summary {
197
+ display: list-item;
198
+ }
199
+ ol,
200
+ ul,
201
+ menu {
202
+ list-style: none;
203
+ }
204
+ img,
205
+ svg,
206
+ video,
207
+ canvas,
208
+ audio,
209
+ iframe,
210
+ embed,
211
+ object {
212
+ display: block;
213
+ vertical-align: middle;
214
+ }
215
+ img,
216
+ video {
217
+ max-width: 100%;
218
+ height: auto;
219
+ }
220
+ button,
221
+ input,
222
+ select,
223
+ optgroup,
224
+ textarea,
225
+ ::file-selector-button {
226
+ font: inherit;
227
+ font-feature-settings: inherit;
228
+ font-variation-settings: inherit;
229
+ letter-spacing: inherit;
230
+ color: inherit;
231
+ border-radius: 0;
232
+ background-color: transparent;
233
+ opacity: 1;
234
+ }
235
+ :where(select:is([multiple], [size])) optgroup {
236
+ font-weight: bolder;
237
+ }
238
+ :where(select:is([multiple], [size])) optgroup option {
239
+ padding-inline-start: 20px;
240
+ }
241
+ ::file-selector-button {
242
+ margin-inline-end: 4px;
243
+ }
244
+ ::-moz-placeholder {
245
+ opacity: 1;
246
+ }
247
+ ::placeholder {
248
+ opacity: 1;
249
+ }
250
+ @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
251
+ ::-moz-placeholder {
252
+ color: currentcolor;
253
+ @supports (color: color-mix(in lab, red, red)) {
254
+ color: color-mix(in oklab, currentcolor 50%, transparent);
255
+ }
256
+ }
257
+ ::placeholder {
258
+ color: currentcolor;
259
+ @supports (color: color-mix(in lab, red, red)) {
260
+ color: color-mix(in oklab, currentcolor 50%, transparent);
261
+ }
262
+ }
263
+ }
264
+ textarea {
265
+ resize: vertical;
266
+ }
267
+ ::-webkit-search-decoration {
268
+ -webkit-appearance: none;
269
+ }
270
+ ::-webkit-date-and-time-value {
271
+ min-height: 1lh;
272
+ text-align: inherit;
273
+ }
274
+ ::-webkit-datetime-edit {
275
+ display: inline-flex;
276
+ }
277
+ ::-webkit-datetime-edit-fields-wrapper {
278
+ padding: 0;
279
+ }
280
+ ::-webkit-datetime-edit,
281
+ ::-webkit-datetime-edit-year-field,
282
+ ::-webkit-datetime-edit-month-field,
283
+ ::-webkit-datetime-edit-day-field,
284
+ ::-webkit-datetime-edit-hour-field,
285
+ ::-webkit-datetime-edit-minute-field,
286
+ ::-webkit-datetime-edit-second-field,
287
+ ::-webkit-datetime-edit-millisecond-field,
288
+ ::-webkit-datetime-edit-meridiem-field {
289
+ padding-block: 0;
290
+ }
291
+ ::-webkit-calendar-picker-indicator {
292
+ line-height: 1;
293
+ }
294
+ :-moz-ui-invalid {
295
+ box-shadow: none;
296
+ }
297
+ button,
298
+ input:where([type=button], [type=reset], [type=submit]),
299
+ ::file-selector-button {
300
+ -webkit-appearance: button;
301
+ -moz-appearance: button;
302
+ appearance: button;
303
+ }
304
+ ::-webkit-inner-spin-button,
305
+ ::-webkit-outer-spin-button {
306
+ height: auto;
307
+ }
308
+ [hidden]:where(:not([hidden=until-found])) {
309
+ display: none !important;
310
+ }
311
+ }
111
312
  @layer utilities {
112
313
  .pointer-events-none {
113
314
  pointer-events: none;
114
315
  }
115
- .flowcore-root .sr-only {
316
+ .sr-only {
116
317
  position: absolute;
117
318
  width: 1px;
118
319
  height: 1px;
@@ -123,443 +324,443 @@
123
324
  white-space: nowrap;
124
325
  border-width: 0;
125
326
  }
126
- .flowcore-root .absolute {
327
+ .absolute {
127
328
  position: absolute;
128
329
  }
129
- .flowcore-root .fixed {
330
+ .fixed {
130
331
  position: fixed;
131
332
  }
132
- .flowcore-root .relative {
333
+ .relative {
133
334
  position: relative;
134
335
  }
135
- .flowcore-root .inset-0 {
336
+ .inset-0 {
136
337
  inset: 0;
137
338
  }
138
- .flowcore-root .inset-y-0 {
339
+ .inset-y-0 {
139
340
  inset-block: 0;
140
341
  }
141
- .flowcore-root .top-3\.5 {
342
+ .top-3\.5 {
142
343
  top: calc(var(--spacing) * 3.5);
143
344
  }
144
- .flowcore-root .top-\[2px\] {
345
+ .top-\[2px\] {
145
346
  top: 2px;
146
347
  }
147
- .flowcore-root .top-\[30px\] {
348
+ .top-\[30px\] {
148
349
  top: 30px;
149
350
  }
150
- .flowcore-root .left-0 {
351
+ .left-0 {
151
352
  left: 0;
152
353
  }
153
- .flowcore-root .left-4 {
354
+ .left-4 {
154
355
  left: calc(var(--spacing) * 4);
155
356
  }
156
- .flowcore-root .left-\[2px\] {
357
+ .left-\[2px\] {
157
358
  left: 2px;
158
359
  }
159
- .flowcore-root .left-\[14px\] {
360
+ .left-\[14px\] {
160
361
  left: 14px;
161
362
  }
162
- .flowcore-root .left-\[20px\] {
363
+ .left-\[20px\] {
163
364
  left: 20px;
164
365
  }
165
- .flowcore-root .z-10 {
366
+ .z-10 {
166
367
  z-index: 10;
167
368
  }
168
- .flowcore-root .z-50 {
369
+ .z-50 {
169
370
  z-index: 50;
170
371
  }
171
- .flowcore-root .z-\[100\] {
372
+ .z-\[100\] {
172
373
  z-index: 100;
173
374
  }
174
- .flowcore-root .col-span-1 {
375
+ .col-span-1 {
175
376
  grid-column: span 1 / span 1;
176
377
  }
177
- .flowcore-root .col-span-2 {
378
+ .col-span-2 {
178
379
  grid-column: span 2 / span 2;
179
380
  }
180
- .flowcore-root .m-0 {
381
+ .m-0 {
181
382
  margin: 0;
182
383
  }
183
- .flowcore-root .mx-2 {
384
+ .mx-2 {
184
385
  margin-inline: calc(var(--spacing) * 2);
185
386
  }
186
- .flowcore-root .mt-0\.5 {
387
+ .mt-0\.5 {
187
388
  margin-top: calc(var(--spacing) * 0.5);
188
389
  }
189
- .flowcore-root .mt-1 {
390
+ .mt-1 {
190
391
  margin-top: var(--spacing);
191
392
  }
192
- .flowcore-root .mt-2 {
393
+ .mt-2 {
193
394
  margin-top: calc(var(--spacing) * 2);
194
395
  }
195
- .flowcore-root .mt-4 {
396
+ .mt-4 {
196
397
  margin-top: calc(var(--spacing) * 4);
197
398
  }
198
- .flowcore-root .mt-6 {
399
+ .mt-6 {
199
400
  margin-top: calc(var(--spacing) * 6);
200
401
  }
201
- .flowcore-root .mt-8 {
402
+ .mt-8 {
202
403
  margin-top: calc(var(--spacing) * 8);
203
404
  }
204
- .flowcore-root .mt-\[39px\] {
405
+ .mt-\[39px\] {
205
406
  margin-top: 39px;
206
407
  }
207
- .flowcore-root .mr-2 {
408
+ .mr-2 {
208
409
  margin-right: calc(var(--spacing) * 2);
209
410
  }
210
- .flowcore-root .mb-1\.5 {
411
+ .mb-1\.5 {
211
412
  margin-bottom: calc(var(--spacing) * 1.5);
212
413
  }
213
- .flowcore-root .mb-2 {
414
+ .mb-2 {
214
415
  margin-bottom: calc(var(--spacing) * 2);
215
416
  }
216
- .flowcore-root .mb-6 {
417
+ .mb-6 {
217
418
  margin-bottom: calc(var(--spacing) * 6);
218
419
  }
219
- .flowcore-root .mb-8 {
420
+ .mb-8 {
220
421
  margin-bottom: calc(var(--spacing) * 8);
221
422
  }
222
- .flowcore-root .mb-\[19px\] {
423
+ .mb-\[19px\] {
223
424
  margin-bottom: 19px;
224
425
  }
225
- .flowcore-root .ml-1 {
426
+ .ml-1 {
226
427
  margin-left: var(--spacing);
227
428
  }
228
- .flowcore-root .ml-2 {
429
+ .ml-2 {
229
430
  margin-left: calc(var(--spacing) * 2);
230
431
  }
231
- .flowcore-root .ml-\[8px\] {
432
+ .ml-\[8px\] {
232
433
  margin-left: 8px;
233
434
  }
234
- .flowcore-root .ml-\[15px\] {
435
+ .ml-\[15px\] {
235
436
  margin-left: 15px;
236
437
  }
237
- .flowcore-root .block {
438
+ .block {
238
439
  display: block;
239
440
  }
240
- .flowcore-root .flex {
441
+ .flex {
241
442
  display: flex;
242
443
  }
243
- .flowcore-root .grid {
444
+ .grid {
244
445
  display: grid;
245
446
  }
246
- .flowcore-root .inline-block {
447
+ .inline-block {
247
448
  display: inline-block;
248
449
  }
249
- .flowcore-root .inline-flex {
450
+ .inline-flex {
250
451
  display: inline-flex;
251
452
  }
252
- .flowcore-root .table {
453
+ .table {
253
454
  display: table;
254
455
  }
255
- .flowcore-root .h-3\.5 {
456
+ .h-3\.5 {
256
457
  height: calc(var(--spacing) * 3.5);
257
458
  }
258
- .flowcore-root .h-4 {
459
+ .h-4 {
259
460
  height: calc(var(--spacing) * 4);
260
461
  }
261
- .flowcore-root .h-4\.5 {
462
+ .h-4\.5 {
262
463
  height: calc(var(--spacing) * 4.5);
263
464
  }
264
- .flowcore-root .h-5 {
465
+ .h-5 {
265
466
  height: calc(var(--spacing) * 5);
266
467
  }
267
- .flowcore-root .h-6 {
468
+ .h-6 {
268
469
  height: calc(var(--spacing) * 6);
269
470
  }
270
- .flowcore-root .h-7 {
471
+ .h-7 {
271
472
  height: calc(var(--spacing) * 7);
272
473
  }
273
- .flowcore-root .h-8 {
474
+ .h-8 {
274
475
  height: calc(var(--spacing) * 8);
275
476
  }
276
- .flowcore-root .h-11 {
477
+ .h-11 {
277
478
  height: calc(var(--spacing) * 11);
278
479
  }
279
- .flowcore-root .h-12 {
480
+ .h-12 {
280
481
  height: calc(var(--spacing) * 12);
281
482
  }
282
- .flowcore-root .h-\[1px\] {
483
+ .h-\[1px\] {
283
484
  height: 1px;
284
485
  }
285
- .flowcore-root .h-\[20px\] {
486
+ .h-\[20px\] {
286
487
  height: 20px;
287
488
  }
288
- .flowcore-root .h-\[46px\] {
489
+ .h-\[46px\] {
289
490
  height: 46px;
290
491
  }
291
- .flowcore-root .h-\[50px\] {
492
+ .h-\[50px\] {
292
493
  height: 50px;
293
494
  }
294
- .flowcore-root .h-\[56px\] {
495
+ .h-\[56px\] {
295
496
  height: 56px;
296
497
  }
297
- .flowcore-root .h-\[66px\] {
498
+ .h-\[66px\] {
298
499
  height: 66px;
299
500
  }
300
- .flowcore-root .h-\[84px\] {
501
+ .h-\[84px\] {
301
502
  height: 84px;
302
503
  }
303
- .flowcore-root .h-full {
504
+ .h-full {
304
505
  height: 100%;
305
506
  }
306
- .flowcore-root .h-screen {
507
+ .h-screen {
307
508
  height: 100vh;
308
509
  }
309
- .flowcore-root .max-h-\[70vh\] {
510
+ .max-h-\[70vh\] {
310
511
  max-height: 70vh;
311
512
  }
312
- .flowcore-root .max-h-\[92vh\] {
513
+ .max-h-\[92vh\] {
313
514
  max-height: 92vh;
314
515
  }
315
- .flowcore-root .max-h-\[calc\(92vh-170px\)\] {
516
+ .max-h-\[calc\(92vh-170px\)\] {
316
517
  max-height: calc(92vh - 170px);
317
518
  }
318
- .flowcore-root .min-h-0 {
519
+ .min-h-0 {
319
520
  min-height: 0;
320
521
  }
321
- .flowcore-root .min-h-full {
522
+ .min-h-full {
322
523
  min-height: 100%;
323
524
  }
324
- .flowcore-root .min-h-screen {
525
+ .min-h-screen {
325
526
  min-height: 100vh;
326
527
  }
327
- .flowcore-root .w-0 {
528
+ .w-0 {
328
529
  width: 0;
329
530
  }
330
- .flowcore-root .w-3\.5 {
531
+ .w-3\.5 {
331
532
  width: calc(var(--spacing) * 3.5);
332
533
  }
333
- .flowcore-root .w-4 {
534
+ .w-4 {
334
535
  width: calc(var(--spacing) * 4);
335
536
  }
336
- .flowcore-root .w-4\.5 {
537
+ .w-4\.5 {
337
538
  width: calc(var(--spacing) * 4.5);
338
539
  }
339
- .flowcore-root .w-5 {
540
+ .w-5 {
340
541
  width: calc(var(--spacing) * 5);
341
542
  }
342
- .flowcore-root .w-6 {
543
+ .w-6 {
343
544
  width: calc(var(--spacing) * 6);
344
545
  }
345
- .flowcore-root .w-7 {
546
+ .w-7 {
346
547
  width: calc(var(--spacing) * 7);
347
548
  }
348
- .flowcore-root .w-8 {
549
+ .w-8 {
349
550
  width: calc(var(--spacing) * 8);
350
551
  }
351
- .flowcore-root .w-11 {
552
+ .w-11 {
352
553
  width: calc(var(--spacing) * 11);
353
554
  }
354
- .flowcore-root .w-12 {
555
+ .w-12 {
355
556
  width: calc(var(--spacing) * 12);
356
557
  }
357
- .flowcore-root .w-16 {
558
+ .w-16 {
358
559
  width: calc(var(--spacing) * 16);
359
560
  }
360
- .flowcore-root .w-20 {
561
+ .w-20 {
361
562
  width: calc(var(--spacing) * 20);
362
563
  }
363
- .flowcore-root .w-28 {
564
+ .w-28 {
364
565
  width: calc(var(--spacing) * 28);
365
566
  }
366
- .flowcore-root .w-96 {
567
+ .w-96 {
367
568
  width: calc(var(--spacing) * 96);
368
569
  }
369
- .flowcore-root .w-\[20px\] {
570
+ .w-\[20px\] {
370
571
  width: 20px;
371
572
  }
372
- .flowcore-root .w-\[46px\] {
573
+ .w-\[46px\] {
373
574
  width: 46px;
374
575
  }
375
- .flowcore-root .w-\[245px\] {
576
+ .w-\[245px\] {
376
577
  width: 245px;
377
578
  }
378
- .flowcore-root .w-\[300px\] {
579
+ .w-\[300px\] {
379
580
  width: 300px;
380
581
  }
381
- .flowcore-root .w-\[850px\] {
582
+ .w-\[850px\] {
382
583
  width: 850px;
383
584
  }
384
- .flowcore-root .w-full {
585
+ .w-full {
385
586
  width: 100%;
386
587
  }
387
- .flowcore-root .max-w-3xl {
588
+ .max-w-3xl {
388
589
  max-width: var(--container-3xl);
389
590
  }
390
- .flowcore-root .max-w-4xl {
591
+ .max-w-4xl {
391
592
  max-width: var(--container-4xl);
392
593
  }
393
- .flowcore-root .max-w-md {
594
+ .max-w-md {
394
595
  max-width: var(--container-md);
395
596
  }
396
- .flowcore-root .max-w-sm {
597
+ .max-w-sm {
397
598
  max-width: var(--container-sm);
398
599
  }
399
- .flowcore-root .max-w-xs {
600
+ .max-w-xs {
400
601
  max-width: var(--container-xs);
401
602
  }
402
- .flowcore-root .min-w-0 {
603
+ .min-w-0 {
403
604
  min-width: 0;
404
605
  }
405
- .flowcore-root .min-w-\[28px\] {
606
+ .min-w-\[28px\] {
406
607
  min-width: 28px;
407
608
  }
408
- .flowcore-root .min-w-\[245px\] {
609
+ .min-w-\[245px\] {
409
610
  min-width: 245px;
410
611
  }
411
- .flowcore-root .flex-1 {
612
+ .flex-1 {
412
613
  flex: 1;
413
614
  }
414
- .flowcore-root .flex-shrink-0 {
615
+ .flex-shrink-0 {
415
616
  flex-shrink: 0;
416
617
  }
417
- .flowcore-root .shrink-0 {
618
+ .shrink-0 {
418
619
  flex-shrink: 0;
419
620
  }
420
- .flowcore-root .table-auto {
621
+ .table-auto {
421
622
  table-layout: auto;
422
623
  }
423
- .flowcore-root .border-collapse {
624
+ .border-collapse {
424
625
  border-collapse: collapse;
425
626
  }
426
- .flowcore-root .-translate-x-full {
627
+ .-translate-x-full {
427
628
  --tw-translate-x: -100%;
428
629
  translate: var(--tw-translate-x) var(--tw-translate-y);
429
630
  }
430
- .flowcore-root .translate-x-0 {
631
+ .translate-x-0 {
431
632
  --tw-translate-x: 0;
432
633
  translate: var(--tw-translate-x) var(--tw-translate-y);
433
634
  }
434
- .flowcore-root .translate-x-5 {
635
+ .translate-x-5 {
435
636
  --tw-translate-x: calc(var(--spacing) * 5);
436
637
  translate: var(--tw-translate-x) var(--tw-translate-y);
437
638
  }
438
- .flowcore-root .scale-90 {
639
+ .scale-90 {
439
640
  --tw-scale-x: 90%;
440
641
  --tw-scale-y: 90%;
441
642
  --tw-scale-z: 90%;
442
643
  scale: var(--tw-scale-x) var(--tw-scale-y);
443
644
  }
444
- .flowcore-root .transform {
645
+ .transform {
445
646
  transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
446
647
  }
447
- .flowcore-root .cursor-not-allowed {
648
+ .cursor-not-allowed {
448
649
  cursor: not-allowed;
449
650
  }
450
- .flowcore-root .cursor-pointer {
651
+ .cursor-pointer {
451
652
  cursor: pointer;
452
653
  }
453
- .flowcore-root .resize-none {
654
+ .resize-none {
454
655
  resize: none;
455
656
  }
456
- .flowcore-root .grid-cols-1 {
657
+ .grid-cols-1 {
457
658
  grid-template-columns: repeat(1, minmax(0, 1fr));
458
659
  }
459
- .flowcore-root .grid-cols-2 {
660
+ .grid-cols-2 {
460
661
  grid-template-columns: repeat(2, minmax(0, 1fr));
461
662
  }
462
- .flowcore-root .flex-col {
663
+ .flex-col {
463
664
  flex-direction: column;
464
665
  }
465
- .flowcore-root .flex-wrap {
666
+ .flex-wrap {
466
667
  flex-wrap: wrap;
467
668
  }
468
- .flowcore-root .items-center {
669
+ .items-center {
469
670
  align-items: center;
470
671
  }
471
- .flowcore-root .justify-between {
672
+ .justify-between {
472
673
  justify-content: space-between;
473
674
  }
474
- .flowcore-root .justify-center {
675
+ .justify-center {
475
676
  justify-content: center;
476
677
  }
477
- .flowcore-root .justify-end {
678
+ .justify-end {
478
679
  justify-content: flex-end;
479
680
  }
480
- .flowcore-root .gap-1 {
681
+ .gap-1 {
481
682
  gap: var(--spacing);
482
683
  }
483
- .flowcore-root .gap-1\.5 {
684
+ .gap-1\.5 {
484
685
  gap: calc(var(--spacing) * 1.5);
485
686
  }
486
- .flowcore-root .gap-2 {
687
+ .gap-2 {
487
688
  gap: calc(var(--spacing) * 2);
488
689
  }
489
- .flowcore-root .gap-2\.5 {
690
+ .gap-2\.5 {
490
691
  gap: calc(var(--spacing) * 2.5);
491
692
  }
492
- .flowcore-root .gap-3 {
693
+ .gap-3 {
493
694
  gap: calc(var(--spacing) * 3);
494
695
  }
495
- .flowcore-root .gap-4 {
696
+ .gap-4 {
496
697
  gap: calc(var(--spacing) * 4);
497
698
  }
498
- .flowcore-root .gap-5 {
699
+ .gap-5 {
499
700
  gap: calc(var(--spacing) * 5);
500
701
  }
501
- .flowcore-root .gap-6 {
702
+ .gap-6 {
502
703
  gap: calc(var(--spacing) * 6);
503
704
  }
504
- .flowcore-root .gap-\[3px\] {
705
+ .gap-\[3px\] {
505
706
  gap: 3px;
506
707
  }
507
- .flowcore-root .gap-\[17px\] {
708
+ .gap-\[17px\] {
508
709
  gap: 17px;
509
710
  }
510
- .flowcore-root .gap-\[18px\] {
711
+ .gap-\[18px\] {
511
712
  gap: 18px;
512
713
  }
513
- .flowcore-root .space-y-1 {
714
+ .space-y-1 {
514
715
  :where(& > :not(:last-child)) {
515
716
  --tw-space-y-reverse: 0;
516
717
  margin-block-start: calc(var(--spacing) * var(--tw-space-y-reverse));
517
718
  margin-block-end: calc(var(--spacing) * calc(1 - var(--tw-space-y-reverse)));
518
719
  }
519
720
  }
520
- .flowcore-root .space-y-3 {
721
+ .space-y-3 {
521
722
  :where(& > :not(:last-child)) {
522
723
  --tw-space-y-reverse: 0;
523
724
  margin-block-start: calc(calc(var(--spacing) * 3) * var(--tw-space-y-reverse));
524
725
  margin-block-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-y-reverse)));
525
726
  }
526
727
  }
527
- .flowcore-root .space-y-4 {
728
+ .space-y-4 {
528
729
  :where(& > :not(:last-child)) {
529
730
  --tw-space-y-reverse: 0;
530
731
  margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
531
732
  margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
532
733
  }
533
734
  }
534
- .flowcore-root .space-y-5 {
735
+ .space-y-5 {
535
736
  :where(& > :not(:last-child)) {
536
737
  --tw-space-y-reverse: 0;
537
738
  margin-block-start: calc(calc(var(--spacing) * 5) * var(--tw-space-y-reverse));
538
739
  margin-block-end: calc(calc(var(--spacing) * 5) * calc(1 - var(--tw-space-y-reverse)));
539
740
  }
540
741
  }
541
- .flowcore-root .space-y-8 {
742
+ .space-y-8 {
542
743
  :where(& > :not(:last-child)) {
543
744
  --tw-space-y-reverse: 0;
544
745
  margin-block-start: calc(calc(var(--spacing) * 8) * var(--tw-space-y-reverse));
545
746
  margin-block-end: calc(calc(var(--spacing) * 8) * calc(1 - var(--tw-space-y-reverse)));
546
747
  }
547
748
  }
548
- .flowcore-root .gap-x-6 {
749
+ .gap-x-6 {
549
750
  -moz-column-gap: calc(var(--spacing) * 6);
550
751
  column-gap: calc(var(--spacing) * 6);
551
752
  }
552
- .flowcore-root .space-x-1\.5 {
753
+ .space-x-1\.5 {
553
754
  :where(& > :not(:last-child)) {
554
755
  --tw-space-x-reverse: 0;
555
756
  margin-inline-start: calc(calc(var(--spacing) * 1.5) * var(--tw-space-x-reverse));
556
757
  margin-inline-end: calc(calc(var(--spacing) * 1.5) * calc(1 - var(--tw-space-x-reverse)));
557
758
  }
558
759
  }
559
- .flowcore-root .gap-y-5 {
760
+ .gap-y-5 {
560
761
  row-gap: calc(var(--spacing) * 5);
561
762
  }
562
- .flowcore-root .divide-y {
763
+ .divide-y {
563
764
  :where(& > :not(:last-child)) {
564
765
  --tw-divide-y-reverse: 0;
565
766
  border-bottom-style: var(--tw-border-style);
@@ -568,636 +769,636 @@
568
769
  border-bottom-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
569
770
  }
570
771
  }
571
- .flowcore-root .divide-slate-100 {
772
+ .divide-slate-100 {
572
773
  :where(& > :not(:last-child)) {
573
774
  border-color: var(--color-slate-100);
574
775
  }
575
776
  }
576
- .flowcore-root .overflow-hidden {
777
+ .overflow-hidden {
577
778
  overflow: hidden;
578
779
  }
579
- .flowcore-root .overflow-x-auto {
780
+ .overflow-x-auto {
580
781
  overflow-x: auto;
581
782
  }
582
- .flowcore-root .overflow-x-hidden {
783
+ .overflow-x-hidden {
583
784
  overflow-x: hidden;
584
785
  }
585
- .flowcore-root .overflow-y-auto {
786
+ .overflow-y-auto {
586
787
  overflow-y: auto;
587
788
  }
588
- .flowcore-root .rounded {
789
+ .rounded {
589
790
  border-radius: 0.25rem;
590
791
  }
591
- .flowcore-root .rounded-2xl {
792
+ .rounded-2xl {
592
793
  border-radius: var(--radius-2xl);
593
794
  }
594
- .flowcore-root .rounded-3xl {
795
+ .rounded-3xl {
595
796
  border-radius: var(--radius-3xl);
596
797
  }
597
- .flowcore-root .rounded-\[6px\] {
798
+ .rounded-\[6px\] {
598
799
  border-radius: 6px;
599
800
  }
600
- .flowcore-root .rounded-\[9px\] {
801
+ .rounded-\[9px\] {
601
802
  border-radius: 9px;
602
803
  }
603
- .flowcore-root .rounded-\[10px\] {
804
+ .rounded-\[10px\] {
604
805
  border-radius: 10px;
605
806
  }
606
- .flowcore-root .rounded-full {
807
+ .rounded-full {
607
808
  border-radius: calc(infinity * 1px);
608
809
  }
609
- .flowcore-root .rounded-lg {
810
+ .rounded-lg {
610
811
  border-radius: var(--radius-lg);
611
812
  }
612
- .flowcore-root .rounded-md {
813
+ .rounded-md {
613
814
  border-radius: var(--radius-md);
614
815
  }
615
- .flowcore-root .rounded-xl {
816
+ .rounded-xl {
616
817
  border-radius: var(--radius-xl);
617
818
  }
618
- .flowcore-root .rounded-b-xl {
819
+ .rounded-b-xl {
619
820
  border-bottom-right-radius: var(--radius-xl);
620
821
  border-bottom-left-radius: var(--radius-xl);
621
822
  }
622
- .flowcore-root .border {
823
+ .border {
623
824
  border-style: var(--tw-border-style);
624
825
  border-width: 1px;
625
826
  }
626
- .flowcore-root .border-2 {
827
+ .border-2 {
627
828
  border-style: var(--tw-border-style);
628
829
  border-width: 2px;
629
830
  }
630
- .flowcore-root .border-t {
831
+ .border-t {
631
832
  border-top-style: var(--tw-border-style);
632
833
  border-top-width: 1px;
633
834
  }
634
- .flowcore-root .border-r {
835
+ .border-r {
635
836
  border-right-style: var(--tw-border-style);
636
837
  border-right-width: 1px;
637
838
  }
638
- .flowcore-root .border-b {
839
+ .border-b {
639
840
  border-bottom-style: var(--tw-border-style);
640
841
  border-bottom-width: 1px;
641
842
  }
642
- .flowcore-root .border-l {
843
+ .border-l {
643
844
  border-left-style: var(--tw-border-style);
644
845
  border-left-width: 1px;
645
846
  }
646
- .flowcore-root .border-solid {
847
+ .border-solid {
647
848
  --tw-border-style: solid;
648
849
  border-style: solid;
649
850
  }
650
- .flowcore-root .border-\[\#E1E5ED\] {
851
+ .border-\[\#E1E5ED\] {
651
852
  border-color: #E1E5ED;
652
853
  }
653
- .flowcore-root .border-\[\#E5E9F1\] {
854
+ .border-\[\#E5E9F1\] {
654
855
  border-color: #E5E9F1;
655
856
  }
656
- .flowcore-root .border-\[\#EDF0F5\] {
857
+ .border-\[\#EDF0F5\] {
657
858
  border-color: #EDF0F5;
658
859
  }
659
- .flowcore-root .border-\[\#e2e8f0\] {
860
+ .border-\[\#e2e8f0\] {
660
861
  border-color: #e2e8f0;
661
862
  }
662
- .flowcore-root .border-\[\#eef2f6\] {
863
+ .border-\[\#eef2f6\] {
663
864
  border-color: #eef2f6;
664
865
  }
665
- .flowcore-root .border-black\/\[\.08\] {
866
+ .border-black\/\[\.08\] {
666
867
  border-color: color-mix(in srgb, #000 8%, transparent);
667
868
  @supports (color: color-mix(in lab, red, red)) {
668
869
  border-color: color-mix(in oklab, var(--color-black) 8%, transparent);
669
870
  }
670
871
  }
671
- .flowcore-root .border-gray-200 {
872
+ .border-gray-200 {
672
873
  border-color: var(--color-gray-200);
673
874
  }
674
- .flowcore-root .border-gray-300 {
875
+ .border-gray-300 {
675
876
  border-color: var(--color-gray-300);
676
877
  }
677
- .flowcore-root .border-green-200 {
878
+ .border-green-200 {
678
879
  border-color: var(--color-green-200);
679
880
  }
680
- .flowcore-root .border-green-200\/60 {
881
+ .border-green-200\/60 {
681
882
  border-color: color-mix(in srgb, oklch(92.5% 0.084 155.995) 60%, transparent);
682
883
  @supports (color: color-mix(in lab, red, red)) {
683
884
  border-color: color-mix(in oklab, var(--color-green-200) 60%, transparent);
684
885
  }
685
886
  }
686
- .flowcore-root .border-red-200 {
887
+ .border-red-200 {
687
888
  border-color: var(--color-red-200);
688
889
  }
689
- .flowcore-root .border-red-200\/60 {
890
+ .border-red-200\/60 {
690
891
  border-color: color-mix(in srgb, oklch(88.5% 0.062 18.334) 60%, transparent);
691
892
  @supports (color: color-mix(in lab, red, red)) {
692
893
  border-color: color-mix(in oklab, var(--color-red-200) 60%, transparent);
693
894
  }
694
895
  }
695
- .flowcore-root .border-slate-50 {
896
+ .border-slate-50 {
696
897
  border-color: var(--color-slate-50);
697
898
  }
698
- .flowcore-root .border-slate-100 {
899
+ .border-slate-100 {
699
900
  border-color: var(--color-slate-100);
700
901
  }
701
- .flowcore-root .border-slate-100\/80 {
902
+ .border-slate-100\/80 {
702
903
  border-color: color-mix(in srgb, oklch(96.8% 0.007 247.896) 80%, transparent);
703
904
  @supports (color: color-mix(in lab, red, red)) {
704
905
  border-color: color-mix(in oklab, var(--color-slate-100) 80%, transparent);
705
906
  }
706
907
  }
707
- .flowcore-root .border-slate-200 {
908
+ .border-slate-200 {
708
909
  border-color: var(--color-slate-200);
709
910
  }
710
- .flowcore-root .border-slate-200\/70 {
911
+ .border-slate-200\/70 {
711
912
  border-color: color-mix(in srgb, oklch(92.9% 0.013 255.508) 70%, transparent);
712
913
  @supports (color: color-mix(in lab, red, red)) {
713
914
  border-color: color-mix(in oklab, var(--color-slate-200) 70%, transparent);
714
915
  }
715
916
  }
716
- .flowcore-root .border-slate-200\/80 {
917
+ .border-slate-200\/80 {
717
918
  border-color: color-mix(in srgb, oklch(92.9% 0.013 255.508) 80%, transparent);
718
919
  @supports (color: color-mix(in lab, red, red)) {
719
920
  border-color: color-mix(in oklab, var(--color-slate-200) 80%, transparent);
720
921
  }
721
922
  }
722
- .flowcore-root .border-slate-300 {
923
+ .border-slate-300 {
723
924
  border-color: var(--color-slate-300);
724
925
  }
725
- .flowcore-root .border-transparent {
926
+ .border-transparent {
726
927
  border-color: transparent;
727
928
  }
728
- .flowcore-root .bg-\[\#0066cc\] {
929
+ .bg-\[\#0066cc\] {
729
930
  background-color: #0066cc;
730
931
  }
731
- .flowcore-root .bg-\[\#F5F7FB\] {
932
+ .bg-\[\#F5F7FB\] {
732
933
  background-color: #F5F7FB;
733
934
  }
734
- .flowcore-root .bg-\[\#F7F9FC\] {
935
+ .bg-\[\#F7F9FC\] {
735
936
  background-color: #F7F9FC;
736
937
  }
737
- .flowcore-root .bg-\[\#f1f5f9\] {
938
+ .bg-\[\#f1f5f9\] {
738
939
  background-color: #f1f5f9;
739
940
  }
740
- .flowcore-root .bg-\[\#f5f7fb\] {
941
+ .bg-\[\#f5f7fb\] {
741
942
  background-color: #f5f7fb;
742
943
  }
743
- .flowcore-root .bg-\[\#f8fafd\] {
944
+ .bg-\[\#f8fafd\] {
744
945
  background-color: #f8fafd;
745
946
  }
746
- .flowcore-root .bg-black\/40 {
947
+ .bg-black\/40 {
747
948
  background-color: color-mix(in srgb, #000 40%, transparent);
748
949
  @supports (color: color-mix(in lab, red, red)) {
749
950
  background-color: color-mix(in oklab, var(--color-black) 40%, transparent);
750
951
  }
751
952
  }
752
- .flowcore-root .bg-blue-50 {
953
+ .bg-blue-50 {
753
954
  background-color: var(--color-blue-50);
754
955
  }
755
- .flowcore-root .bg-blue-100 {
956
+ .bg-blue-100 {
756
957
  background-color: var(--color-blue-100);
757
958
  }
758
- .flowcore-root .bg-blue-600 {
959
+ .bg-blue-600 {
759
960
  background-color: var(--color-blue-600);
760
961
  }
761
- .flowcore-root .bg-gray-100 {
962
+ .bg-gray-100 {
762
963
  background-color: var(--color-gray-100);
763
964
  }
764
- .flowcore-root .bg-green-50 {
965
+ .bg-green-50 {
765
966
  background-color: var(--color-green-50);
766
967
  }
767
- .flowcore-root .bg-green-100 {
968
+ .bg-green-100 {
768
969
  background-color: var(--color-green-100);
769
970
  }
770
- .flowcore-root .bg-indigo-50 {
971
+ .bg-indigo-50 {
771
972
  background-color: var(--color-indigo-50);
772
973
  }
773
- .flowcore-root .bg-indigo-600 {
974
+ .bg-indigo-600 {
774
975
  background-color: var(--color-indigo-600);
775
976
  }
776
- .flowcore-root .bg-red-50 {
977
+ .bg-red-50 {
777
978
  background-color: var(--color-red-50);
778
979
  }
779
- .flowcore-root .bg-red-100 {
980
+ .bg-red-100 {
780
981
  background-color: var(--color-red-100);
781
982
  }
782
- .flowcore-root .bg-slate-50 {
983
+ .bg-slate-50 {
783
984
  background-color: var(--color-slate-50);
784
985
  }
785
- .flowcore-root .bg-slate-50\/30 {
986
+ .bg-slate-50\/30 {
786
987
  background-color: color-mix(in srgb, oklch(98.4% 0.003 247.858) 30%, transparent);
787
988
  @supports (color: color-mix(in lab, red, red)) {
788
989
  background-color: color-mix(in oklab, var(--color-slate-50) 30%, transparent);
789
990
  }
790
991
  }
791
- .flowcore-root .bg-slate-50\/50 {
992
+ .bg-slate-50\/50 {
792
993
  background-color: color-mix(in srgb, oklch(98.4% 0.003 247.858) 50%, transparent);
793
994
  @supports (color: color-mix(in lab, red, red)) {
794
995
  background-color: color-mix(in oklab, var(--color-slate-50) 50%, transparent);
795
996
  }
796
997
  }
797
- .flowcore-root .bg-slate-50\/60 {
998
+ .bg-slate-50\/60 {
798
999
  background-color: color-mix(in srgb, oklch(98.4% 0.003 247.858) 60%, transparent);
799
1000
  @supports (color: color-mix(in lab, red, red)) {
800
1001
  background-color: color-mix(in oklab, var(--color-slate-50) 60%, transparent);
801
1002
  }
802
1003
  }
803
- .flowcore-root .bg-slate-50\/70 {
1004
+ .bg-slate-50\/70 {
804
1005
  background-color: color-mix(in srgb, oklch(98.4% 0.003 247.858) 70%, transparent);
805
1006
  @supports (color: color-mix(in lab, red, red)) {
806
1007
  background-color: color-mix(in oklab, var(--color-slate-50) 70%, transparent);
807
1008
  }
808
1009
  }
809
- .flowcore-root .bg-slate-100 {
1010
+ .bg-slate-100 {
810
1011
  background-color: var(--color-slate-100);
811
1012
  }
812
- .flowcore-root .bg-slate-200 {
1013
+ .bg-slate-200 {
813
1014
  background-color: var(--color-slate-200);
814
1015
  }
815
- .flowcore-root .bg-slate-900\/50 {
1016
+ .bg-slate-900\/50 {
816
1017
  background-color: color-mix(in srgb, oklch(20.8% 0.042 265.755) 50%, transparent);
817
1018
  @supports (color: color-mix(in lab, red, red)) {
818
1019
  background-color: color-mix(in oklab, var(--color-slate-900) 50%, transparent);
819
1020
  }
820
1021
  }
821
- .flowcore-root .bg-white {
1022
+ .bg-white {
822
1023
  background-color: var(--color-white);
823
1024
  }
824
- .flowcore-root .bg-zinc-50 {
1025
+ .bg-zinc-50 {
825
1026
  background-color: var(--color-zinc-50);
826
1027
  }
827
- .flowcore-root .stroke-\[2\.5\] {
1028
+ .stroke-\[2\.5\] {
828
1029
  stroke-width: 2.5;
829
1030
  }
830
- .flowcore-root .p-2 {
1031
+ .p-2 {
831
1032
  padding: calc(var(--spacing) * 2);
832
1033
  }
833
- .flowcore-root .p-2\.5 {
1034
+ .p-2\.5 {
834
1035
  padding: calc(var(--spacing) * 2.5);
835
1036
  }
836
- .flowcore-root .p-3 {
1037
+ .p-3 {
837
1038
  padding: calc(var(--spacing) * 3);
838
1039
  }
839
- .flowcore-root .p-4 {
1040
+ .p-4 {
840
1041
  padding: calc(var(--spacing) * 4);
841
1042
  }
842
- .flowcore-root .p-5 {
1043
+ .p-5 {
843
1044
  padding: calc(var(--spacing) * 5);
844
1045
  }
845
- .flowcore-root .p-6 {
1046
+ .p-6 {
846
1047
  padding: calc(var(--spacing) * 6);
847
1048
  }
848
- .flowcore-root .p-8 {
1049
+ .p-8 {
849
1050
  padding: calc(var(--spacing) * 8);
850
1051
  }
851
- .flowcore-root .px-1 {
1052
+ .px-1 {
852
1053
  padding-inline: var(--spacing);
853
1054
  }
854
- .flowcore-root .px-1\.5 {
1055
+ .px-1\.5 {
855
1056
  padding-inline: calc(var(--spacing) * 1.5);
856
1057
  }
857
- .flowcore-root .px-2 {
1058
+ .px-2 {
858
1059
  padding-inline: calc(var(--spacing) * 2);
859
1060
  }
860
- .flowcore-root .px-2\.5 {
1061
+ .px-2\.5 {
861
1062
  padding-inline: calc(var(--spacing) * 2.5);
862
1063
  }
863
- .flowcore-root .px-3 {
1064
+ .px-3 {
864
1065
  padding-inline: calc(var(--spacing) * 3);
865
1066
  }
866
- .flowcore-root .px-3\.5 {
1067
+ .px-3\.5 {
867
1068
  padding-inline: calc(var(--spacing) * 3.5);
868
1069
  }
869
- .flowcore-root .px-4 {
1070
+ .px-4 {
870
1071
  padding-inline: calc(var(--spacing) * 4);
871
1072
  }
872
- .flowcore-root .px-5 {
1073
+ .px-5 {
873
1074
  padding-inline: calc(var(--spacing) * 5);
874
1075
  }
875
- .flowcore-root .px-6 {
1076
+ .px-6 {
876
1077
  padding-inline: calc(var(--spacing) * 6);
877
1078
  }
878
- .flowcore-root .px-8 {
1079
+ .px-8 {
879
1080
  padding-inline: calc(var(--spacing) * 8);
880
1081
  }
881
- .flowcore-root .px-16 {
1082
+ .px-16 {
882
1083
  padding-inline: calc(var(--spacing) * 16);
883
1084
  }
884
- .flowcore-root .px-\[14px\] {
1085
+ .px-\[14px\] {
885
1086
  padding-inline: 14px;
886
1087
  }
887
- .flowcore-root .px-\[17px\] {
1088
+ .px-\[17px\] {
888
1089
  padding-inline: 17px;
889
1090
  }
890
- .flowcore-root .px-\[23px\] {
1091
+ .px-\[23px\] {
891
1092
  padding-inline: 23px;
892
1093
  }
893
- .flowcore-root .px-\[27px\] {
1094
+ .px-\[27px\] {
894
1095
  padding-inline: 27px;
895
1096
  }
896
- .flowcore-root .py-0\.5 {
1097
+ .py-0\.5 {
897
1098
  padding-block: calc(var(--spacing) * 0.5);
898
1099
  }
899
- .flowcore-root .py-1 {
1100
+ .py-1 {
900
1101
  padding-block: var(--spacing);
901
1102
  }
902
- .flowcore-root .py-1\.5 {
1103
+ .py-1\.5 {
903
1104
  padding-block: calc(var(--spacing) * 1.5);
904
1105
  }
905
- .flowcore-root .py-2 {
1106
+ .py-2 {
906
1107
  padding-block: calc(var(--spacing) * 2);
907
1108
  }
908
- .flowcore-root .py-2\.5 {
1109
+ .py-2\.5 {
909
1110
  padding-block: calc(var(--spacing) * 2.5);
910
1111
  }
911
- .flowcore-root .py-3 {
1112
+ .py-3 {
912
1113
  padding-block: calc(var(--spacing) * 3);
913
1114
  }
914
- .flowcore-root .py-3\.5 {
1115
+ .py-3\.5 {
915
1116
  padding-block: calc(var(--spacing) * 3.5);
916
1117
  }
917
- .flowcore-root .py-4 {
1118
+ .py-4 {
918
1119
  padding-block: calc(var(--spacing) * 4);
919
1120
  }
920
- .flowcore-root .py-4\.5 {
1121
+ .py-4\.5 {
921
1122
  padding-block: calc(var(--spacing) * 4.5);
922
1123
  }
923
- .flowcore-root .py-5 {
1124
+ .py-5 {
924
1125
  padding-block: calc(var(--spacing) * 5);
925
1126
  }
926
- .flowcore-root .py-6 {
1127
+ .py-6 {
927
1128
  padding-block: calc(var(--spacing) * 6);
928
1129
  }
929
- .flowcore-root .py-32 {
1130
+ .py-32 {
930
1131
  padding-block: calc(var(--spacing) * 32);
931
1132
  }
932
- .flowcore-root .pt-3 {
1133
+ .pt-3 {
933
1134
  padding-top: calc(var(--spacing) * 3);
934
1135
  }
935
- .flowcore-root .pt-4 {
1136
+ .pt-4 {
936
1137
  padding-top: calc(var(--spacing) * 4);
937
1138
  }
938
- .flowcore-root .pt-\[18px\] {
1139
+ .pt-\[18px\] {
939
1140
  padding-top: 18px;
940
1141
  }
941
- .flowcore-root .pt-\[31px\] {
1142
+ .pt-\[31px\] {
942
1143
  padding-top: 31px;
943
1144
  }
944
- .flowcore-root .pr-2 {
1145
+ .pr-2 {
945
1146
  padding-right: calc(var(--spacing) * 2);
946
1147
  }
947
- .flowcore-root .pr-4 {
1148
+ .pr-4 {
948
1149
  padding-right: calc(var(--spacing) * 4);
949
1150
  }
950
- .flowcore-root .pb-3 {
1151
+ .pb-3 {
951
1152
  padding-bottom: calc(var(--spacing) * 3);
952
1153
  }
953
- .flowcore-root .pb-4 {
1154
+ .pb-4 {
954
1155
  padding-bottom: calc(var(--spacing) * 4);
955
1156
  }
956
- .flowcore-root .pb-\[30px\] {
1157
+ .pb-\[30px\] {
957
1158
  padding-bottom: 30px;
958
1159
  }
959
- .flowcore-root .pb-\[34px\] {
1160
+ .pb-\[34px\] {
960
1161
  padding-bottom: 34px;
961
1162
  }
962
- .flowcore-root .pl-3\.5 {
1163
+ .pl-3\.5 {
963
1164
  padding-left: calc(var(--spacing) * 3.5);
964
1165
  }
965
- .flowcore-root .pl-10 {
1166
+ .pl-10 {
966
1167
  padding-left: calc(var(--spacing) * 10);
967
1168
  }
968
- .flowcore-root .pl-11 {
1169
+ .pl-11 {
969
1170
  padding-left: calc(var(--spacing) * 11);
970
1171
  }
971
- .flowcore-root .pl-\[4px\] {
1172
+ .pl-\[4px\] {
972
1173
  padding-left: 4px;
973
1174
  }
974
- .flowcore-root .text-center {
1175
+ .text-center {
975
1176
  text-align: center;
976
1177
  }
977
- .flowcore-root .text-left {
1178
+ .text-left {
978
1179
  text-align: left;
979
1180
  }
980
- .flowcore-root .font-mono {
1181
+ .font-mono {
981
1182
  font-family: var(--font-mono);
982
1183
  }
983
- .flowcore-root .font-sans {
1184
+ .font-sans {
984
1185
  font-family: var(--font-sans);
985
1186
  }
986
- .flowcore-root .text-2xl {
1187
+ .text-2xl {
987
1188
  font-size: var(--text-2xl);
988
1189
  line-height: var(--tw-leading, var(--text-2xl--line-height));
989
1190
  }
990
- .flowcore-root .text-3xl {
1191
+ .text-3xl {
991
1192
  font-size: var(--text-3xl);
992
1193
  line-height: var(--tw-leading, var(--text-3xl--line-height));
993
1194
  }
994
- .flowcore-root .text-base {
1195
+ .text-base {
995
1196
  font-size: var(--text-base);
996
1197
  line-height: var(--tw-leading, var(--text-base--line-height));
997
1198
  }
998
- .flowcore-root .text-lg {
1199
+ .text-lg {
999
1200
  font-size: var(--text-lg);
1000
1201
  line-height: var(--tw-leading, var(--text-lg--line-height));
1001
1202
  }
1002
- .flowcore-root .text-sm {
1203
+ .text-sm {
1003
1204
  font-size: var(--text-sm);
1004
1205
  line-height: var(--tw-leading, var(--text-sm--line-height));
1005
1206
  }
1006
- .flowcore-root .text-xl {
1207
+ .text-xl {
1007
1208
  font-size: var(--text-xl);
1008
1209
  line-height: var(--tw-leading, var(--text-xl--line-height));
1009
1210
  }
1010
- .flowcore-root .text-xs {
1211
+ .text-xs {
1011
1212
  font-size: var(--text-xs);
1012
1213
  line-height: var(--tw-leading, var(--text-xs--line-height));
1013
1214
  }
1014
- .flowcore-root .text-\[9px\] {
1215
+ .text-\[9px\] {
1015
1216
  font-size: 9px;
1016
1217
  }
1017
- .flowcore-root .text-\[10px\] {
1218
+ .text-\[10px\] {
1018
1219
  font-size: 10px;
1019
1220
  }
1020
- .flowcore-root .text-\[11px\] {
1221
+ .text-\[11px\] {
1021
1222
  font-size: 11px;
1022
1223
  }
1023
- .flowcore-root .text-\[12px\] {
1224
+ .text-\[12px\] {
1024
1225
  font-size: 12px;
1025
1226
  }
1026
- .flowcore-root .text-\[13px\] {
1227
+ .text-\[13px\] {
1027
1228
  font-size: 13px;
1028
1229
  }
1029
- .flowcore-root .text-\[14px\] {
1230
+ .text-\[14px\] {
1030
1231
  font-size: 14px;
1031
1232
  }
1032
- .flowcore-root .text-\[16px\] {
1233
+ .text-\[16px\] {
1033
1234
  font-size: 16px;
1034
1235
  }
1035
- .flowcore-root .text-\[18px\] {
1236
+ .text-\[18px\] {
1036
1237
  font-size: 18px;
1037
1238
  }
1038
- .flowcore-root .text-\[30px\] {
1239
+ .text-\[30px\] {
1039
1240
  font-size: 30px;
1040
1241
  }
1041
- .flowcore-root .leading-8 {
1242
+ .leading-8 {
1042
1243
  --tw-leading: calc(var(--spacing) * 8);
1043
1244
  line-height: calc(var(--spacing) * 8);
1044
1245
  }
1045
- .flowcore-root .leading-10 {
1246
+ .leading-10 {
1046
1247
  --tw-leading: calc(var(--spacing) * 10);
1047
1248
  line-height: calc(var(--spacing) * 10);
1048
1249
  }
1049
- .flowcore-root .leading-\[20px\] {
1250
+ .leading-\[20px\] {
1050
1251
  --tw-leading: 20px;
1051
1252
  line-height: 20px;
1052
1253
  }
1053
- .flowcore-root .leading-\[22px\] {
1254
+ .leading-\[22px\] {
1054
1255
  --tw-leading: 22px;
1055
1256
  line-height: 22px;
1056
1257
  }
1057
- .flowcore-root .leading-tight {
1258
+ .leading-tight {
1058
1259
  --tw-leading: var(--leading-tight);
1059
1260
  line-height: var(--leading-tight);
1060
1261
  }
1061
- .flowcore-root .font-bold {
1262
+ .font-bold {
1062
1263
  --tw-font-weight: var(--font-weight-bold);
1063
1264
  font-weight: var(--font-weight-bold);
1064
1265
  }
1065
- .flowcore-root .font-extrabold {
1266
+ .font-extrabold {
1066
1267
  --tw-font-weight: var(--font-weight-extrabold);
1067
1268
  font-weight: var(--font-weight-extrabold);
1068
1269
  }
1069
- .flowcore-root .font-medium {
1270
+ .font-medium {
1070
1271
  --tw-font-weight: var(--font-weight-medium);
1071
1272
  font-weight: var(--font-weight-medium);
1072
1273
  }
1073
- .flowcore-root .font-normal {
1274
+ .font-normal {
1074
1275
  --tw-font-weight: var(--font-weight-normal);
1075
1276
  font-weight: var(--font-weight-normal);
1076
1277
  }
1077
- .flowcore-root .font-semibold {
1278
+ .font-semibold {
1078
1279
  --tw-font-weight: var(--font-weight-semibold);
1079
1280
  font-weight: var(--font-weight-semibold);
1080
1281
  }
1081
- .flowcore-root .tracking-\[0\.2px\] {
1282
+ .tracking-\[0\.2px\] {
1082
1283
  --tw-tracking: 0.2px;
1083
1284
  letter-spacing: 0.2px;
1084
1285
  }
1085
- .flowcore-root .tracking-tight {
1286
+ .tracking-tight {
1086
1287
  --tw-tracking: var(--tracking-tight);
1087
1288
  letter-spacing: var(--tracking-tight);
1088
1289
  }
1089
- .flowcore-root .tracking-wide {
1290
+ .tracking-wide {
1090
1291
  --tw-tracking: var(--tracking-wide);
1091
1292
  letter-spacing: var(--tracking-wide);
1092
1293
  }
1093
- .flowcore-root .tracking-wider {
1294
+ .tracking-wider {
1094
1295
  --tw-tracking: var(--tracking-wider);
1095
1296
  letter-spacing: var(--tracking-wider);
1096
1297
  }
1097
- .flowcore-root .whitespace-nowrap {
1298
+ .whitespace-nowrap {
1098
1299
  white-space: nowrap;
1099
1300
  }
1100
- .flowcore-root .text-\[\#1E293B\] {
1301
+ .text-\[\#1E293B\] {
1101
1302
  color: #1E293B;
1102
1303
  }
1103
- .flowcore-root .text-\[\#2D3A58\] {
1304
+ .text-\[\#2D3A58\] {
1104
1305
  color: #2D3A58;
1105
1306
  }
1106
- .flowcore-root .text-\[\#3C4D74\] {
1307
+ .text-\[\#3C4D74\] {
1107
1308
  color: #3C4D74;
1108
1309
  }
1109
- .flowcore-root .text-\[\#101318\] {
1310
+ .text-\[\#101318\] {
1110
1311
  color: #101318;
1111
1312
  }
1112
- .flowcore-root .text-\[\#273657\] {
1313
+ .text-\[\#273657\] {
1113
1314
  color: #273657;
1114
1315
  }
1115
- .flowcore-root .text-\[\#334155\] {
1316
+ .text-\[\#334155\] {
1116
1317
  color: #334155;
1117
1318
  }
1118
- .flowcore-root .text-\[\#344261\] {
1319
+ .text-\[\#344261\] {
1119
1320
  color: #344261;
1120
1321
  }
1121
- .flowcore-root .text-\[\#405170\] {
1322
+ .text-\[\#405170\] {
1122
1323
  color: #405170;
1123
1324
  }
1124
- .flowcore-root .text-black {
1325
+ .text-black {
1125
1326
  color: var(--color-black);
1126
1327
  }
1127
- .flowcore-root .text-blue-600 {
1328
+ .text-blue-600 {
1128
1329
  color: var(--color-blue-600);
1129
1330
  }
1130
- .flowcore-root .text-gray-400 {
1331
+ .text-gray-400 {
1131
1332
  color: var(--color-gray-400);
1132
1333
  }
1133
- .flowcore-root .text-gray-500 {
1334
+ .text-gray-500 {
1134
1335
  color: var(--color-gray-500);
1135
1336
  }
1136
- .flowcore-root .text-gray-600 {
1337
+ .text-gray-600 {
1137
1338
  color: var(--color-gray-600);
1138
1339
  }
1139
- .flowcore-root .text-gray-700 {
1340
+ .text-gray-700 {
1140
1341
  color: var(--color-gray-700);
1141
1342
  }
1142
- .flowcore-root .text-gray-800 {
1343
+ .text-gray-800 {
1143
1344
  color: var(--color-gray-800);
1144
1345
  }
1145
- .flowcore-root .text-green-700 {
1346
+ .text-green-700 {
1146
1347
  color: var(--color-green-700);
1147
1348
  }
1148
- .flowcore-root .text-indigo-600 {
1349
+ .text-indigo-600 {
1149
1350
  color: var(--color-indigo-600);
1150
1351
  }
1151
- .flowcore-root .text-red-500 {
1352
+ .text-red-500 {
1152
1353
  color: var(--color-red-500);
1153
1354
  }
1154
- .flowcore-root .text-red-600 {
1355
+ .text-red-600 {
1155
1356
  color: var(--color-red-600);
1156
1357
  }
1157
- .flowcore-root .text-red-700 {
1358
+ .text-red-700 {
1158
1359
  color: var(--color-red-700);
1159
1360
  }
1160
- .flowcore-root .text-slate-300 {
1361
+ .text-slate-300 {
1161
1362
  color: var(--color-slate-300);
1162
1363
  }
1163
- .flowcore-root .text-slate-400 {
1364
+ .text-slate-400 {
1164
1365
  color: var(--color-slate-400);
1165
1366
  }
1166
- .flowcore-root .text-slate-500 {
1367
+ .text-slate-500 {
1167
1368
  color: var(--color-slate-500);
1168
1369
  }
1169
- .flowcore-root .text-slate-600 {
1370
+ .text-slate-600 {
1170
1371
  color: var(--color-slate-600);
1171
1372
  }
1172
- .flowcore-root .text-slate-700 {
1373
+ .text-slate-700 {
1173
1374
  color: var(--color-slate-700);
1174
1375
  }
1175
- .flowcore-root .text-slate-800 {
1376
+ .text-slate-800 {
1176
1377
  color: var(--color-slate-800);
1177
1378
  }
1178
- .flowcore-root .text-slate-900 {
1379
+ .text-slate-900 {
1179
1380
  color: var(--color-slate-900);
1180
1381
  }
1181
- .flowcore-root .text-white {
1382
+ .text-white {
1182
1383
  color: var(--color-white);
1183
1384
  }
1184
- .flowcore-root .text-zinc-600 {
1385
+ .text-zinc-600 {
1185
1386
  color: var(--color-zinc-600);
1186
1387
  }
1187
- .flowcore-root .text-zinc-950 {
1388
+ .text-zinc-950 {
1188
1389
  color: var(--color-zinc-950);
1189
1390
  }
1190
- .flowcore-root .capitalize {
1391
+ .capitalize {
1191
1392
  text-transform: capitalize;
1192
1393
  }
1193
- .flowcore-root .uppercase {
1394
+ .uppercase {
1194
1395
  text-transform: uppercase;
1195
1396
  }
1196
- .flowcore-root .antialiased {
1397
+ .antialiased {
1197
1398
  -webkit-font-smoothing: antialiased;
1198
1399
  -moz-osx-font-smoothing: grayscale;
1199
1400
  }
1200
- .flowcore-root .placeholder-slate-400 {
1401
+ .placeholder-slate-400 {
1201
1402
  &::-moz-placeholder {
1202
1403
  color: var(--color-slate-400);
1203
1404
  }
@@ -1205,13 +1406,13 @@
1205
1406
  color: var(--color-slate-400);
1206
1407
  }
1207
1408
  }
1208
- .flowcore-root .opacity-0 {
1409
+ .opacity-0 {
1209
1410
  opacity: 0%;
1210
1411
  }
1211
- .flowcore-root .opacity-100 {
1412
+ .opacity-100 {
1212
1413
  opacity: 100%;
1213
1414
  }
1214
- .flowcore-root .shadow {
1415
+ .shadow {
1215
1416
  --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));
1216
1417
  box-shadow:
1217
1418
  var(--tw-inset-shadow),
@@ -1220,7 +1421,7 @@
1220
1421
  var(--tw-ring-shadow),
1221
1422
  var(--tw-shadow);
1222
1423
  }
1223
- .flowcore-root .shadow-2xl {
1424
+ .shadow-2xl {
1224
1425
  --tw-shadow: 0 25px 50px -12px var(--tw-shadow-color, rgb(0 0 0 / 0.25));
1225
1426
  box-shadow:
1226
1427
  var(--tw-inset-shadow),
@@ -1229,7 +1430,7 @@
1229
1430
  var(--tw-ring-shadow),
1230
1431
  var(--tw-shadow);
1231
1432
  }
1232
- .flowcore-root .shadow-\[0_2px_8px_rgba\(0\,0\,0\,0\.08\)\] {
1433
+ .shadow-\[0_2px_8px_rgba\(0\,0\,0\,0\.08\)\] {
1233
1434
  --tw-shadow: 0 2px 8px var(--tw-shadow-color, rgba(0,0,0,0.08));
1234
1435
  box-shadow:
1235
1436
  var(--tw-inset-shadow),
@@ -1238,7 +1439,7 @@
1238
1439
  var(--tw-ring-shadow),
1239
1440
  var(--tw-shadow);
1240
1441
  }
1241
- .flowcore-root .shadow-md {
1442
+ .shadow-md {
1242
1443
  --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
1243
1444
  box-shadow:
1244
1445
  var(--tw-inset-shadow),
@@ -1247,7 +1448,7 @@
1247
1448
  var(--tw-ring-shadow),
1248
1449
  var(--tw-shadow);
1249
1450
  }
1250
- .flowcore-root .shadow-sm {
1451
+ .shadow-sm {
1251
1452
  --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));
1252
1453
  box-shadow:
1253
1454
  var(--tw-inset-shadow),
@@ -1256,7 +1457,7 @@
1256
1457
  var(--tw-ring-shadow),
1257
1458
  var(--tw-shadow);
1258
1459
  }
1259
- .flowcore-root .ring-0 {
1460
+ .ring-0 {
1260
1461
  --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1261
1462
  box-shadow:
1262
1463
  var(--tw-inset-shadow),
@@ -1265,29 +1466,29 @@
1265
1466
  var(--tw-ring-shadow),
1266
1467
  var(--tw-shadow);
1267
1468
  }
1268
- .flowcore-root .shadow-blue-500\/20 {
1469
+ .shadow-blue-500\/20 {
1269
1470
  --tw-shadow-color: color-mix(in srgb, oklch(62.3% 0.214 259.815) 20%, transparent);
1270
1471
  @supports (color: color-mix(in lab, red, red)) {
1271
1472
  --tw-shadow-color: color-mix(in oklab, color-mix(in oklab, var(--color-blue-500) 20%, transparent) var(--tw-shadow-alpha), transparent);
1272
1473
  }
1273
1474
  }
1274
- .flowcore-root .shadow-indigo-500\/10 {
1475
+ .shadow-indigo-500\/10 {
1275
1476
  --tw-shadow-color: color-mix(in srgb, oklch(58.5% 0.233 277.117) 10%, transparent);
1276
1477
  @supports (color: color-mix(in lab, red, red)) {
1277
1478
  --tw-shadow-color: color-mix(in oklab, color-mix(in oklab, var(--color-indigo-500) 10%, transparent) var(--tw-shadow-alpha), transparent);
1278
1479
  }
1279
1480
  }
1280
- .flowcore-root .shadow-indigo-500\/20 {
1481
+ .shadow-indigo-500\/20 {
1281
1482
  --tw-shadow-color: color-mix(in srgb, oklch(58.5% 0.233 277.117) 20%, transparent);
1282
1483
  @supports (color: color-mix(in lab, red, red)) {
1283
1484
  --tw-shadow-color: color-mix(in oklab, color-mix(in oklab, var(--color-indigo-500) 20%, transparent) var(--tw-shadow-alpha), transparent);
1284
1485
  }
1285
1486
  }
1286
- .flowcore-root .backdrop-blur-sm {
1487
+ .backdrop-blur-sm {
1287
1488
  --tw-backdrop-blur: blur(var(--blur-sm));
1288
1489
  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,);
1289
1490
  }
1290
- .flowcore-root .transition {
1491
+ .transition {
1291
1492
  transition-property:
1292
1493
  color,
1293
1494
  background-color,
@@ -1314,12 +1515,12 @@
1314
1515
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1315
1516
  transition-duration: var(--tw-duration, var(--default-transition-duration));
1316
1517
  }
1317
- .flowcore-root .transition-all {
1518
+ .transition-all {
1318
1519
  transition-property: all;
1319
1520
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1320
1521
  transition-duration: var(--tw-duration, var(--default-transition-duration));
1321
1522
  }
1322
- .flowcore-root .transition-colors {
1523
+ .transition-colors {
1323
1524
  transition-property:
1324
1525
  color,
1325
1526
  background-color,
@@ -1334,53 +1535,53 @@
1334
1535
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1335
1536
  transition-duration: var(--tw-duration, var(--default-transition-duration));
1336
1537
  }
1337
- .flowcore-root .transition-opacity {
1538
+ .transition-opacity {
1338
1539
  transition-property: opacity;
1339
1540
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1340
1541
  transition-duration: var(--tw-duration, var(--default-transition-duration));
1341
1542
  }
1342
- .flowcore-root .duration-150 {
1543
+ .duration-150 {
1343
1544
  --tw-duration: 150ms;
1344
1545
  transition-duration: 150ms;
1345
1546
  }
1346
- .flowcore-root .duration-200 {
1547
+ .duration-200 {
1347
1548
  --tw-duration: 200ms;
1348
1549
  transition-duration: 200ms;
1349
1550
  }
1350
- .flowcore-root .duration-300 {
1551
+ .duration-300 {
1351
1552
  --tw-duration: 300ms;
1352
1553
  transition-duration: 300ms;
1353
1554
  }
1354
- .flowcore-root .ease-in-out {
1555
+ .ease-in-out {
1355
1556
  --tw-ease: var(--ease-in-out);
1356
1557
  transition-timing-function: var(--ease-in-out);
1357
1558
  }
1358
- .flowcore-root .outline-none {
1559
+ .outline-none {
1359
1560
  --tw-outline-style: none;
1360
1561
  outline-style: none;
1361
1562
  }
1362
- .flowcore-root .select-none {
1563
+ .select-none {
1363
1564
  -webkit-user-select: none;
1364
1565
  -moz-user-select: none;
1365
1566
  user-select: none;
1366
1567
  }
1367
- .flowcore-root .peer-checked\:bg-blue-600 {
1568
+ .peer-checked\:bg-blue-600 {
1368
1569
  &:is(:where(.peer):checked ~ *) {
1369
1570
  background-color: var(--color-blue-600);
1370
1571
  }
1371
1572
  }
1372
- .flowcore-root .peer-checked\:bg-indigo-600 {
1573
+ .peer-checked\:bg-indigo-600 {
1373
1574
  &:is(:where(.peer):checked ~ *) {
1374
1575
  background-color: var(--color-indigo-600);
1375
1576
  }
1376
1577
  }
1377
- .flowcore-root .peer-focus\:outline-none {
1578
+ .peer-focus\:outline-none {
1378
1579
  &:is(:where(.peer):focus ~ *) {
1379
1580
  --tw-outline-style: none;
1380
1581
  outline-style: none;
1381
1582
  }
1382
1583
  }
1383
- .flowcore-root .placeholder\:text-slate-400 {
1584
+ .placeholder\:text-slate-400 {
1384
1585
  &::-moz-placeholder {
1385
1586
  color: var(--color-slate-400);
1386
1587
  }
@@ -1388,80 +1589,80 @@
1388
1589
  color: var(--color-slate-400);
1389
1590
  }
1390
1591
  }
1391
- .flowcore-root .after\:absolute {
1592
+ .after\:absolute {
1392
1593
  &::after {
1393
1594
  content: var(--tw-content);
1394
1595
  position: absolute;
1395
1596
  }
1396
1597
  }
1397
- .flowcore-root .after\:start-\[2px\] {
1598
+ .after\:start-\[2px\] {
1398
1599
  &::after {
1399
1600
  content: var(--tw-content);
1400
1601
  inset-inline-start: 2px;
1401
1602
  }
1402
1603
  }
1403
- .flowcore-root .after\:top-\[2px\] {
1604
+ .after\:top-\[2px\] {
1404
1605
  &::after {
1405
1606
  content: var(--tw-content);
1406
1607
  top: 2px;
1407
1608
  }
1408
1609
  }
1409
- .flowcore-root .after\:left-\[2px\] {
1610
+ .after\:left-\[2px\] {
1410
1611
  &::after {
1411
1612
  content: var(--tw-content);
1412
1613
  left: 2px;
1413
1614
  }
1414
1615
  }
1415
- .flowcore-root .after\:h-3\.5 {
1616
+ .after\:h-3\.5 {
1416
1617
  &::after {
1417
1618
  content: var(--tw-content);
1418
1619
  height: calc(var(--spacing) * 3.5);
1419
1620
  }
1420
1621
  }
1421
- .flowcore-root .after\:h-5 {
1622
+ .after\:h-5 {
1422
1623
  &::after {
1423
1624
  content: var(--tw-content);
1424
1625
  height: calc(var(--spacing) * 5);
1425
1626
  }
1426
1627
  }
1427
- .flowcore-root .after\:w-3\.5 {
1628
+ .after\:w-3\.5 {
1428
1629
  &::after {
1429
1630
  content: var(--tw-content);
1430
1631
  width: calc(var(--spacing) * 3.5);
1431
1632
  }
1432
1633
  }
1433
- .flowcore-root .after\:w-5 {
1634
+ .after\:w-5 {
1434
1635
  &::after {
1435
1636
  content: var(--tw-content);
1436
1637
  width: calc(var(--spacing) * 5);
1437
1638
  }
1438
1639
  }
1439
- .flowcore-root .after\:rounded-full {
1640
+ .after\:rounded-full {
1440
1641
  &::after {
1441
1642
  content: var(--tw-content);
1442
1643
  border-radius: calc(infinity * 1px);
1443
1644
  }
1444
1645
  }
1445
- .flowcore-root .after\:border {
1646
+ .after\:border {
1446
1647
  &::after {
1447
1648
  content: var(--tw-content);
1448
1649
  border-style: var(--tw-border-style);
1449
1650
  border-width: 1px;
1450
1651
  }
1451
1652
  }
1452
- .flowcore-root .after\:border-slate-300 {
1653
+ .after\:border-slate-300 {
1453
1654
  &::after {
1454
1655
  content: var(--tw-content);
1455
1656
  border-color: var(--color-slate-300);
1456
1657
  }
1457
1658
  }
1458
- .flowcore-root .after\:bg-white {
1659
+ .after\:bg-white {
1459
1660
  &::after {
1460
1661
  content: var(--tw-content);
1461
1662
  background-color: var(--color-white);
1462
1663
  }
1463
1664
  }
1464
- .flowcore-root .after\:transition-all {
1665
+ .after\:transition-all {
1465
1666
  &::after {
1466
1667
  content: var(--tw-content);
1467
1668
  transition-property: all;
@@ -1469,13 +1670,13 @@
1469
1670
  transition-duration: var(--tw-duration, var(--default-transition-duration));
1470
1671
  }
1471
1672
  }
1472
- .flowcore-root .after\:content-\[\'\'\] {
1673
+ .after\:content-\[\'\'\] {
1473
1674
  &::after {
1474
1675
  --tw-content: "";
1475
1676
  content: var(--tw-content);
1476
1677
  }
1477
1678
  }
1478
- .flowcore-root .peer-checked\:after\:translate-x-full {
1679
+ .peer-checked\:after\:translate-x-full {
1479
1680
  &:is(:where(.peer):checked ~ *) {
1480
1681
  &::after {
1481
1682
  content: var(--tw-content);
@@ -1484,7 +1685,7 @@
1484
1685
  }
1485
1686
  }
1486
1687
  }
1487
- .flowcore-root .peer-checked\:after\:border-white {
1688
+ .peer-checked\:after\:border-white {
1488
1689
  &:is(:where(.peer):checked ~ *) {
1489
1690
  &::after {
1490
1691
  content: var(--tw-content);
@@ -1492,7 +1693,7 @@
1492
1693
  }
1493
1694
  }
1494
1695
  }
1495
- .flowcore-root .hover\:scale-105 {
1696
+ .hover\:scale-105 {
1496
1697
  &:hover {
1497
1698
  @media (hover: hover) {
1498
1699
  --tw-scale-x: 105%;
@@ -1502,42 +1703,42 @@
1502
1703
  }
1503
1704
  }
1504
1705
  }
1505
- .flowcore-root .hover\:border-transparent {
1706
+ .hover\:border-transparent {
1506
1707
  &:hover {
1507
1708
  @media (hover: hover) {
1508
1709
  border-color: transparent;
1509
1710
  }
1510
1711
  }
1511
1712
  }
1512
- .flowcore-root .hover\:bg-\[\#383838\] {
1713
+ .hover\:bg-\[\#383838\] {
1513
1714
  &:hover {
1514
1715
  @media (hover: hover) {
1515
1716
  background-color: #383838;
1516
1717
  }
1517
1718
  }
1518
1719
  }
1519
- .flowcore-root .hover\:bg-\[\#F3F5F9\] {
1720
+ .hover\:bg-\[\#F3F5F9\] {
1520
1721
  &:hover {
1521
1722
  @media (hover: hover) {
1522
1723
  background-color: #F3F5F9;
1523
1724
  }
1524
1725
  }
1525
1726
  }
1526
- .flowcore-root .hover\:bg-\[\#F6F8FC\] {
1727
+ .hover\:bg-\[\#F6F8FC\] {
1527
1728
  &:hover {
1528
1729
  @media (hover: hover) {
1529
1730
  background-color: #F6F8FC;
1530
1731
  }
1531
1732
  }
1532
1733
  }
1533
- .flowcore-root .hover\:bg-\[\#F7F8FC\] {
1734
+ .hover\:bg-\[\#F7F8FC\] {
1534
1735
  &:hover {
1535
1736
  @media (hover: hover) {
1536
1737
  background-color: #F7F8FC;
1537
1738
  }
1538
1739
  }
1539
1740
  }
1540
- .flowcore-root .hover\:bg-black\/\[\.04\] {
1741
+ .hover\:bg-black\/\[\.04\] {
1541
1742
  &:hover {
1542
1743
  @media (hover: hover) {
1543
1744
  background-color: color-mix(in srgb, #000 4%, transparent);
@@ -1547,49 +1748,49 @@
1547
1748
  }
1548
1749
  }
1549
1750
  }
1550
- .flowcore-root .hover\:bg-blue-700 {
1751
+ .hover\:bg-blue-700 {
1551
1752
  &:hover {
1552
1753
  @media (hover: hover) {
1553
1754
  background-color: var(--color-blue-700);
1554
1755
  }
1555
1756
  }
1556
1757
  }
1557
- .flowcore-root .hover\:bg-gray-50 {
1758
+ .hover\:bg-gray-50 {
1558
1759
  &:hover {
1559
1760
  @media (hover: hover) {
1560
1761
  background-color: var(--color-gray-50);
1561
1762
  }
1562
1763
  }
1563
1764
  }
1564
- .flowcore-root .hover\:bg-gray-100 {
1765
+ .hover\:bg-gray-100 {
1565
1766
  &:hover {
1566
1767
  @media (hover: hover) {
1567
1768
  background-color: var(--color-gray-100);
1568
1769
  }
1569
1770
  }
1570
1771
  }
1571
- .flowcore-root .hover\:bg-gray-200 {
1772
+ .hover\:bg-gray-200 {
1572
1773
  &:hover {
1573
1774
  @media (hover: hover) {
1574
1775
  background-color: var(--color-gray-200);
1575
1776
  }
1576
1777
  }
1577
1778
  }
1578
- .flowcore-root .hover\:bg-indigo-700 {
1779
+ .hover\:bg-indigo-700 {
1579
1780
  &:hover {
1580
1781
  @media (hover: hover) {
1581
1782
  background-color: var(--color-indigo-700);
1582
1783
  }
1583
1784
  }
1584
1785
  }
1585
- .flowcore-root .hover\:bg-slate-50 {
1786
+ .hover\:bg-slate-50 {
1586
1787
  &:hover {
1587
1788
  @media (hover: hover) {
1588
1789
  background-color: var(--color-slate-50);
1589
1790
  }
1590
1791
  }
1591
1792
  }
1592
- .flowcore-root .hover\:bg-slate-50\/40 {
1793
+ .hover\:bg-slate-50\/40 {
1593
1794
  &:hover {
1594
1795
  @media (hover: hover) {
1595
1796
  background-color: color-mix(in srgb, oklch(98.4% 0.003 247.858) 40%, transparent);
@@ -1599,7 +1800,7 @@
1599
1800
  }
1600
1801
  }
1601
1802
  }
1602
- .flowcore-root .hover\:bg-slate-50\/50 {
1803
+ .hover\:bg-slate-50\/50 {
1603
1804
  &:hover {
1604
1805
  @media (hover: hover) {
1605
1806
  background-color: color-mix(in srgb, oklch(98.4% 0.003 247.858) 50%, transparent);
@@ -1609,14 +1810,14 @@
1609
1810
  }
1610
1811
  }
1611
1812
  }
1612
- .flowcore-root .hover\:bg-slate-100 {
1813
+ .hover\:bg-slate-100 {
1613
1814
  &:hover {
1614
1815
  @media (hover: hover) {
1615
1816
  background-color: var(--color-slate-100);
1616
1817
  }
1617
1818
  }
1618
1819
  }
1619
- .flowcore-root .hover\:bg-slate-100\/50 {
1820
+ .hover\:bg-slate-100\/50 {
1620
1821
  &:hover {
1621
1822
  @media (hover: hover) {
1622
1823
  background-color: color-mix(in srgb, oklch(96.8% 0.007 247.896) 50%, transparent);
@@ -1626,42 +1827,42 @@
1626
1827
  }
1627
1828
  }
1628
1829
  }
1629
- .flowcore-root .hover\:text-indigo-600 {
1830
+ .hover\:text-indigo-600 {
1630
1831
  &:hover {
1631
1832
  @media (hover: hover) {
1632
1833
  color: var(--color-indigo-600);
1633
1834
  }
1634
1835
  }
1635
1836
  }
1636
- .flowcore-root .hover\:text-red-500 {
1837
+ .hover\:text-red-500 {
1637
1838
  &:hover {
1638
1839
  @media (hover: hover) {
1639
1840
  color: var(--color-red-500);
1640
1841
  }
1641
1842
  }
1642
1843
  }
1643
- .flowcore-root .hover\:text-slate-600 {
1844
+ .hover\:text-slate-600 {
1644
1845
  &:hover {
1645
1846
  @media (hover: hover) {
1646
1847
  color: var(--color-slate-600);
1647
1848
  }
1648
1849
  }
1649
1850
  }
1650
- .flowcore-root .hover\:text-slate-900 {
1851
+ .hover\:text-slate-900 {
1651
1852
  &:hover {
1652
1853
  @media (hover: hover) {
1653
1854
  color: var(--color-slate-900);
1654
1855
  }
1655
1856
  }
1656
1857
  }
1657
- .flowcore-root .hover\:underline {
1858
+ .hover\:underline {
1658
1859
  &:hover {
1659
1860
  @media (hover: hover) {
1660
1861
  text-decoration-line: underline;
1661
1862
  }
1662
1863
  }
1663
1864
  }
1664
- .flowcore-root .hover\:shadow-lg {
1865
+ .hover\:shadow-lg {
1665
1866
  &:hover {
1666
1867
  @media (hover: hover) {
1667
1868
  --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));
@@ -1674,7 +1875,7 @@
1674
1875
  }
1675
1876
  }
1676
1877
  }
1677
- .flowcore-root .hover\:shadow-blue-500\/30 {
1878
+ .hover\:shadow-blue-500\/30 {
1678
1879
  &:hover {
1679
1880
  @media (hover: hover) {
1680
1881
  --tw-shadow-color: color-mix(in srgb, oklch(62.3% 0.214 259.815) 30%, transparent);
@@ -1684,7 +1885,7 @@
1684
1885
  }
1685
1886
  }
1686
1887
  }
1687
- .flowcore-root .hover\:shadow-indigo-500\/30 {
1888
+ .hover\:shadow-indigo-500\/30 {
1688
1889
  &:hover {
1689
1890
  @media (hover: hover) {
1690
1891
  --tw-shadow-color: color-mix(in srgb, oklch(58.5% 0.233 277.117) 30%, transparent);
@@ -1694,17 +1895,17 @@
1694
1895
  }
1695
1896
  }
1696
1897
  }
1697
- .flowcore-root .focus\:border-blue-500 {
1898
+ .focus\:border-blue-500 {
1698
1899
  &:focus {
1699
1900
  border-color: var(--color-blue-500);
1700
1901
  }
1701
1902
  }
1702
- .flowcore-root .focus\:border-indigo-500 {
1903
+ .focus\:border-indigo-500 {
1703
1904
  &:focus {
1704
1905
  border-color: var(--color-indigo-500);
1705
1906
  }
1706
1907
  }
1707
- .flowcore-root .focus\:ring-2 {
1908
+ .focus\:ring-2 {
1708
1909
  &:focus {
1709
1910
  --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1710
1911
  box-shadow:
@@ -1715,7 +1916,7 @@
1715
1916
  var(--tw-shadow);
1716
1917
  }
1717
1918
  }
1718
- .flowcore-root .focus\:ring-4 {
1919
+ .focus\:ring-4 {
1719
1920
  &:focus {
1720
1921
  --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1721
1922
  box-shadow:
@@ -1726,17 +1927,17 @@
1726
1927
  var(--tw-shadow);
1727
1928
  }
1728
1929
  }
1729
- .flowcore-root .focus\:ring-blue-100 {
1930
+ .focus\:ring-blue-100 {
1730
1931
  &:focus {
1731
1932
  --tw-ring-color: var(--color-blue-100);
1732
1933
  }
1733
1934
  }
1734
- .flowcore-root .focus\:ring-blue-500 {
1935
+ .focus\:ring-blue-500 {
1735
1936
  &:focus {
1736
1937
  --tw-ring-color: var(--color-blue-500);
1737
1938
  }
1738
1939
  }
1739
- .flowcore-root .focus\:ring-blue-500\/10 {
1940
+ .focus\:ring-blue-500\/10 {
1740
1941
  &:focus {
1741
1942
  --tw-ring-color: color-mix(in srgb, oklch(62.3% 0.214 259.815) 10%, transparent);
1742
1943
  @supports (color: color-mix(in lab, red, red)) {
@@ -1744,7 +1945,7 @@
1744
1945
  }
1745
1946
  }
1746
1947
  }
1747
- .flowcore-root .focus\:ring-indigo-500\/10 {
1948
+ .focus\:ring-indigo-500\/10 {
1748
1949
  &:focus {
1749
1950
  --tw-ring-color: color-mix(in srgb, oklch(58.5% 0.233 277.117) 10%, transparent);
1750
1951
  @supports (color: color-mix(in lab, red, red)) {
@@ -1752,13 +1953,13 @@
1752
1953
  }
1753
1954
  }
1754
1955
  }
1755
- .flowcore-root .focus\:outline-none {
1956
+ .focus\:outline-none {
1756
1957
  &:focus {
1757
1958
  --tw-outline-style: none;
1758
1959
  outline-style: none;
1759
1960
  }
1760
1961
  }
1761
- .flowcore-root .active\:scale-95 {
1962
+ .active\:scale-95 {
1762
1963
  &:active {
1763
1964
  --tw-scale-x: 95%;
1764
1965
  --tw-scale-y: 95%;
@@ -1766,62 +1967,62 @@
1766
1967
  scale: var(--tw-scale-x) var(--tw-scale-y);
1767
1968
  }
1768
1969
  }
1769
- .flowcore-root .sm\:flex-row {
1970
+ .sm\:flex-row {
1770
1971
  @media (width >= 40rem) {
1771
1972
  flex-direction: row;
1772
1973
  }
1773
1974
  }
1774
- .flowcore-root .sm\:items-center {
1975
+ .sm\:items-center {
1775
1976
  @media (width >= 40rem) {
1776
1977
  align-items: center;
1777
1978
  }
1778
1979
  }
1779
- .flowcore-root .sm\:items-start {
1980
+ .sm\:items-start {
1780
1981
  @media (width >= 40rem) {
1781
1982
  align-items: flex-start;
1782
1983
  }
1783
1984
  }
1784
- .flowcore-root .sm\:justify-between {
1985
+ .sm\:justify-between {
1785
1986
  @media (width >= 40rem) {
1786
1987
  justify-content: space-between;
1787
1988
  }
1788
1989
  }
1789
- .flowcore-root .sm\:pr-2 {
1990
+ .sm\:pr-2 {
1790
1991
  @media (width >= 40rem) {
1791
1992
  padding-right: calc(var(--spacing) * 2);
1792
1993
  }
1793
1994
  }
1794
- .flowcore-root .sm\:text-left {
1995
+ .sm\:text-left {
1795
1996
  @media (width >= 40rem) {
1796
1997
  text-align: left;
1797
1998
  }
1798
1999
  }
1799
- .flowcore-root .md\:w-\[158px\] {
2000
+ .md\:w-\[158px\] {
1800
2001
  @media (width >= 48rem) {
1801
2002
  width: 158px;
1802
2003
  }
1803
2004
  }
1804
- .flowcore-root .md\:grid-cols-2 {
2005
+ .md\:grid-cols-2 {
1805
2006
  @media (width >= 48rem) {
1806
2007
  grid-template-columns: repeat(2, minmax(0, 1fr));
1807
2008
  }
1808
2009
  }
1809
- .flowcore-root .md\:grid-cols-3 {
2010
+ .md\:grid-cols-3 {
1810
2011
  @media (width >= 48rem) {
1811
2012
  grid-template-columns: repeat(3, minmax(0, 1fr));
1812
2013
  }
1813
2014
  }
1814
- .flowcore-root .md\:p-6 {
2015
+ .md\:p-6 {
1815
2016
  @media (width >= 48rem) {
1816
2017
  padding: calc(var(--spacing) * 6);
1817
2018
  }
1818
2019
  }
1819
- .flowcore-root .lg\:grid-cols-4 {
2020
+ .lg\:grid-cols-4 {
1820
2021
  @media (width >= 64rem) {
1821
2022
  grid-template-columns: repeat(4, minmax(0, 1fr));
1822
2023
  }
1823
2024
  }
1824
- .flowcore-root .dark\:border-white\/\[\.145\] {
2025
+ .dark\:border-white\/\[\.145\] {
1825
2026
  @media (prefers-color-scheme: dark) {
1826
2027
  border-color: color-mix(in srgb, #fff 14.499999999999998%, transparent);
1827
2028
  @supports (color: color-mix(in lab, red, red)) {
@@ -1829,28 +2030,28 @@
1829
2030
  }
1830
2031
  }
1831
2032
  }
1832
- .flowcore-root .dark\:bg-black {
2033
+ .dark\:bg-black {
1833
2034
  @media (prefers-color-scheme: dark) {
1834
2035
  background-color: var(--color-black);
1835
2036
  }
1836
2037
  }
1837
- .flowcore-root .dark\:text-zinc-50 {
2038
+ .dark\:text-zinc-50 {
1838
2039
  @media (prefers-color-scheme: dark) {
1839
2040
  color: var(--color-zinc-50);
1840
2041
  }
1841
2042
  }
1842
- .flowcore-root .dark\:text-zinc-400 {
2043
+ .dark\:text-zinc-400 {
1843
2044
  @media (prefers-color-scheme: dark) {
1844
2045
  color: var(--color-zinc-400);
1845
2046
  }
1846
2047
  }
1847
- .flowcore-root .dark\:invert {
2048
+ .dark\:invert {
1848
2049
  @media (prefers-color-scheme: dark) {
1849
2050
  --tw-invert: invert(100%);
1850
2051
  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,);
1851
2052
  }
1852
2053
  }
1853
- .flowcore-root .dark\:hover\:bg-\[\#1a1a1a\] {
2054
+ .dark\:hover\:bg-\[\#1a1a1a\] {
1854
2055
  @media (prefers-color-scheme: dark) {
1855
2056
  &:hover {
1856
2057
  @media (hover: hover) {
@@ -1859,7 +2060,7 @@
1859
2060
  }
1860
2061
  }
1861
2062
  }
1862
- .flowcore-root .dark\:hover\:bg-\[\#ccc\] {
2063
+ .dark\:hover\:bg-\[\#ccc\] {
1863
2064
  @media (prefers-color-scheme: dark) {
1864
2065
  &:hover {
1865
2066
  @media (hover: hover) {