@digiform/wizard 0.2.5 → 0.2.6

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.
package/styles.css CHANGED
@@ -1,2191 +1,4 @@
1
1
  @layer formbuilder.wizard {
2
- /*
3
- * Font CSS removed to reduce bundle size by ~5MB
4
- *
5
- * This file previously contained @font-face declarations for:
6
- * - RijksoverheidSansWebText (regular, bold, italic)
7
- * - RijksoverheidSerifWeb (regular, bold, italic)
8
- *
9
- * To use these fonts in your application, you'll need to:
10
- * 1. Include the font files in your application's assets
11
- * 2. Add the @font-face declarations to your application's CSS
12
- * 3. Or use a web font service like Google Fonts for similar fonts
13
- *
14
- * Example fallback font stack:
15
- * font-family: "Your Custom Font", Arial, Verdana, sans-serif;
16
- *//* =============================================================================
17
- @formbuilder/ui — Design Tokens
18
- Canonical source for all --fb-* custom properties.
19
- All values are standalone CSS values with no external design system dependency.
20
- ============================================================================= */
21
-
22
- :root {
23
- /* ============================================================
24
- Colors
25
- ============================================================ */
26
-
27
- /* Primary — muted blue, enterprise-grade */
28
- --fb-primary: #2563eb; /* Main action color (blue-600) */
29
- --fb-primary-600: #2563eb; /* blue-600 alias */
30
- --fb-primary-hover: #1d4ed8; /* Primary on hover (blue-700) */
31
- --fb-primary-active: #1e40af; /* Primary on active/pressed (blue-800) */
32
- --fb-primary-dark: #1e3a8a; /* Dark primary (blue-900) */
33
- --fb-primary-border: #93c5fd; /* Primary border tint (blue-300) */
34
- --fb-primary-foreground: #ffffff; /* Text on primary bg */
35
- --fb-primary-subtle: #dbeafe; /* Subtle primary tint (blue-100) */
36
- --fb-primary-subtle-50: rgba(239, 246, 255, 0.5); /* 50% opacity primary subtle */
37
-
38
- /* Backgrounds */
39
- --fb-background: #ffffff; /* Page/document background */
40
- --fb-surface: #f8fafc; /* Card / panel background */
41
- --fb-surface-accent: #f1f5f9; /* Subtle accent surface (hover, active) */
42
- --fb-surface-emphasis: #e2e8f0; /* Emphasized surface (slate-200) */
43
- --fb-surface-subtle: #f1f5f9; /* Subtle neutral surface (slate-100) */
44
-
45
- /* Borders */
46
- --fb-border: #e2e8f0; /* Default border */
47
- --fb-border-focus: #2563eb; /* Focus ring color */
48
- --fb-border-width: 1px; /* Default border width */
49
-
50
- /* Text */
51
- --fb-text: #0f172a; /* Default body text */
52
- --fb-text-muted: #64748b; /* Secondary / placeholder text */
53
- --fb-text-on-primary: #ffffff; /* Text on primary-colored bg */
54
-
55
- /* Status */
56
- --fb-error: #dc2626; /* Error / destructive */
57
- --fb-error-hover: #b91c1c; /* Error on hover */
58
- --fb-error-dark: #7f1d1d; /* Deep error (focus ring outer) */
59
- --fb-error-muted: #fca5a5; /* Muted error text (red-300) */
60
- --fb-error-subtle: #fecaca; /* Subtle error tint (red-200) */
61
- --fb-error-border: #fca5a5; /* Error border (red-300) */
62
- --fb-error-translucent: rgba(220, 38, 38, 0.3); /* Translucent error border */
63
- --fb-error-surface: #fef2f2; /* Error background tint */
64
- --fb-success: #16a34a; /* Success */
65
- --fb-success-hover: #15803d; /* Success on hover (green-700) */
66
- --fb-success-bright: #22c55e; /* Bright success icon color (green-500) */
67
- --fb-success-subtle: #bbf7d0; /* Subtle success border (green-200) */
68
- --fb-success-dark: #166534; /* Dark success text (green-800) */
69
- --fb-success-surface: #f0fdf4; /* Success background tint */
70
- --fb-warning: #d97706; /* Warning */
71
- --fb-warning-surface: #fffbeb; /* Warning background tint */
72
- --fb-info: #0284c7; /* Informational */
73
- --fb-info-surface: #f0f9ff; /* Info background tint */
74
-
75
- /* Neutral grey scale */
76
- --fb-neutral-50: #f9fafb; /* gray-50 */
77
- --fb-neutral-100: #e2e8f0; /* slate-200 */
78
- --fb-neutral-200: #cbd5e1; /* slate-300 */
79
- --fb-neutral-300: #9ca3af; /* gray-400 — medium grey for borders */
80
- --fb-neutral-500: #6b7280; /* gray-500 — muted text / icons */
81
- --fb-neutral-900: #111827; /* gray-900 — near-black text */
82
-
83
- /* Accent */
84
- --fb-accent: #f1f5f9; /* Accent surface for interactive elements */
85
- --fb-accent-rgb: 241, 245, 249; /* RGB values for rgba() usage */
86
-
87
- /* Amber (status: caution) */
88
- --fb-amber-100: #fef3c7; /* amber-100 */
89
- --fb-amber-300: #fcd34d; /* amber-300 */
90
- --fb-amber-800: #92400e; /* amber-800 */
91
-
92
- /* Violet (status: info-alt / accent) */
93
- --fb-violet-100: #ede9fe; /* violet-100 */
94
- --fb-violet-300: #c4b5fd; /* violet-300 */
95
- --fb-violet-700: #6d28d9; /* violet-700 */
96
- --fb-violet-800: #5b21b6; /* violet-800 */
97
-
98
- /* Cyan (status: info-cool) */
99
- --fb-cyan-100: #cffafe; /* cyan-100 */
100
- --fb-cyan-300: #67e8f9; /* cyan-300 */
101
- --fb-cyan-800: #155e75; /* cyan-800 */
102
-
103
- /* Lime (status: success-alt / growth) */
104
- --fb-lime-100: #ecfccb; /* lime-100 */
105
- --fb-lime-300: #bef264; /* lime-300 */
106
- --fb-lime-800: #3f6212; /* lime-800 */
107
-
108
- /* Pink (status: highlight / special) */
109
- --fb-pink-100: #fce7f3; /* pink-100 */
110
- --fb-pink-300: #f9a8d4; /* pink-300 */
111
- --fb-pink-800: #9d174d; /* pink-800 */
112
-
113
- /* Warning (additional aliases) */
114
- --fb-warning-border: #fef08a; /* yellow-200 — warning border ring */
115
-
116
- /* ============================================================
117
- Typography
118
- ============================================================ */
119
-
120
- --fb-font-family-mono: ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, Consolas, 'DejaVu Sans Mono', monospace;
121
-
122
- --fb-font-size-xs: 0.75rem; /* 12px */
123
- --fb-font-size-sm: 0.875rem; /* 14px */
124
- --fb-font-size-md: 1rem; /* 16px */
125
- --fb-font-size-lg: 1.125rem; /* 18px */
126
- --fb-font-size-xl: 1.25rem; /* 20px */
127
- --fb-font-size-2xl: 1.5rem; /* 24px */
128
-
129
- --fb-font-weight-normal: 400; /* Regular text */
130
- --fb-font-weight-medium: 500; /* Slightly emphasized */
131
- --fb-font-weight-semibold: 600; /* Labels, headings */
132
-
133
- --fb-line-height-tight: 1.25; /* Compact, headings */
134
- --fb-line-height-normal: 1.5; /* Body text */
135
- --fb-line-height-relaxed: 1.75; /* Readable long-form text */
136
-
137
- /* ============================================================
138
- Spacing (4px base grid — numeric scale)
139
- Each step of 50 = 4px. --fb-space-100 = 8px.
140
- ============================================================ */
141
-
142
- --fb-space-50: 0.25rem; /* 4px */
143
- --fb-space-100: 0.5rem; /* 8px */
144
- --fb-space-150: 0.75rem; /* 12px */
145
- --fb-space-200: 1rem; /* 16px */
146
- --fb-space-250: 1.25rem; /* 20px */
147
- --fb-space-300: 1.5rem; /* 24px */
148
- --fb-space-350: 1.75rem; /* 28px */
149
- --fb-space-400: 2rem; /* 32px */
150
- --fb-space-450: 2.25rem; /* 36px */
151
- --fb-space-500: 2.5rem; /* 40px */
152
- --fb-space-550: 2.75rem; /* 44px */
153
- --fb-space-600: 3rem; /* 48px */
154
- --fb-space-650: 3.25rem; /* 52px */
155
- --fb-space-700: 3.5rem; /* 56px */
156
-
157
- /* Semantic aliases — map to numeric scale */
158
- --fb-space-xs: var(--fb-space-50); /* 4px */
159
- --fb-space-sm: var(--fb-space-100); /* 8px */
160
- --fb-space-md: var(--fb-space-200); /* 16px */
161
- --fb-space-lg: var(--fb-space-300); /* 24px */
162
- --fb-space-xl: var(--fb-space-400); /* 32px */
163
- --fb-space-2xl: var(--fb-space-600); /* 48px */
164
- --fb-space-3xl: var(--fb-space-700); /* 56px */
165
- --fb-space-md-neg: calc(-1 * var(--fb-space-200)); /* -16px */
166
-
167
- /* Sub-grid steps for component internals (< 4px) */
168
- --fb-space-1: 0.0625rem; /* 1px */
169
- --fb-space-2: 0.125rem; /* 2px */
170
- --fb-space-3: 0.1875rem; /* 3px */
171
- --fb-space-6: 0.375rem; /* 6px */
172
- --fb-space-10: 0.625rem; /* 10px */
173
- --fb-space-12: var(--fb-space-150); /* 12px */
174
- --fb-space-14: 0.875rem; /* 14px */
175
- --fb-space-20: var(--fb-space-250); /* 20px */
176
-
177
- /* Interactive target */
178
- --fb-size-touch-target: var(--fb-space-500); /* 40px */
179
-
180
- /* ============================================================
181
- Layout
182
- ============================================================ */
183
-
184
- --fb-container-max-width: 64rem; /* 1024px standard content width */
185
- --fb-popover-width: 18rem; /* 288px default popover width */
186
-
187
- /* ============================================================
188
- Border Radius
189
- ============================================================ */
190
-
191
- --fb-radius-sm: 0.25rem; /* 4px */
192
- --fb-radius-md: 0.375rem; /* 6px */
193
- --fb-radius-lg: 0.5rem; /* 8px */
194
- --fb-radius-xl: 0.75rem; /* 12px */
195
- --fb-radius-full: 9999px; /* Pill / fully-rounded */
196
-
197
- /* ============================================================
198
- Shadows
199
- ============================================================ */
200
-
201
- --fb-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05); /* Subtle elevation */
202
- --fb-shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); /* Card / panel elevation */
203
- --fb-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); /* Modal / floating elevation */
204
-
205
- /* ============================================================
206
- Z-Index (named overlay layers)
207
- ============================================================ */
208
-
209
- --fb-z-base: 0; /* Default document layer */
210
- --fb-z-raised: 1; /* Slightly above normal flow */
211
- --fb-z-dropdown: 1000; /* Dropdown menus */
212
- --fb-z-sticky: 1100; /* Sticky headers / sidebars */
213
- --fb-z-overlay: 1200; /* Backdrop overlays */
214
- --fb-z-modal: 1300; /* Modal dialogs */
215
- --fb-z-toast: 1400; /* Toast notifications (top of stack) */
216
- }
217
- /* Base alert styles */
218
- .fb-alert_5UcaT {
219
- position: relative;
220
- inline-size: 100%;
221
- border-radius: var(--fb-radius-md);
222
- border: var(--fb-border-width) solid var(--fb-border);
223
- padding: var(--fb-space-md);
224
- }
225
-
226
- /* Icon positioning */
227
- .fb-alert_5UcaT > svg {
228
- position: absolute;
229
- left: var(--fb-space-md);
230
- top: var(--fb-space-md);
231
- color: var(--fb-text);
232
- }
233
-
234
- .fb-alert_5UcaT > svg ~ * {
235
- padding-inline-start: 1.75rem;
236
- }
237
-
238
- .fb-alert_5UcaT > svg + div {
239
- transform: translateY(-3px);
240
- }
241
-
242
- /* Variant: Default */
243
- .fb-variant-default_yhEpY {
244
- background-color: var(--fb-background);
245
- color: var(--fb-text);
246
- }
247
-
248
- /* Variant: Destructive */
249
- .fb-variant-destructive_rafp5 {
250
- border-color: var(--fb-error);
251
- color: var(--fb-error);
252
- }
253
-
254
- .fb-variant-destructive_rafp5 > svg {
255
- color: var(--fb-error);
256
- }
257
-
258
- /* Alert Title sub-component */
259
- .fb-alertTitle_-KE5o {
260
- margin-block-end: var(--fb-space-sm);
261
- font-weight: 500;
262
- line-height: 1;
263
- letter-spacing: -0.025em;
264
- }
265
-
266
- /* Alert Description sub-component */
267
- .fb-alertDescription_cg7Ke {
268
- font-size: var(--fb-font-size-sm);
269
- }
270
-
271
- .fb-alertDescription_cg7Ke p {
272
- line-height: 1.625;
273
- }
274
- /* Base button styles */
275
- .fb-button_MJLDl {
276
- display: inline-flex;
277
- align-items: center;
278
- justify-content: center;
279
- gap: var(--fb-space-sm);
280
- white-space: nowrap;
281
- border-radius: var(--fb-radius-md);
282
- font-size: var(--fb-font-size-sm);
283
- font-weight: 500;
284
- transition: background-color 0.2s, color 0.2s, opacity 0.2s;
285
- cursor: pointer;
286
- outline: none;
287
- }
288
-
289
- .fb-button_MJLDl:focus-visible {
290
- outline: 2px solid var(--fb-primary);
291
- outline-offset: 2px;
292
- }
293
-
294
- .fb-button_MJLDl:disabled {
295
- pointer-events: none;
296
- opacity: 0.5;
297
- }
298
-
299
- .fb-button_MJLDl svg {
300
- pointer-events: none;
301
- inline-size: 1rem;
302
- block-size: 1rem;
303
- flex-shrink: 0;
304
- }
305
-
306
- /* Variant: Default (Primary) */
307
- .fb-variant-default_KLx8b {
308
- background-color: var(--fb-primary);
309
- color: var(--fb-text-on-primary);
310
- }
311
-
312
- .fb-variant-default_KLx8b:hover:not(:disabled) {
313
- background-color: var(--fb-primary-hover);
314
- }
315
-
316
- /* Variant: Destructive */
317
- .fb-variant-destructive_vQKZ2 {
318
- background-color: var(--fb-error);
319
- color: var(--fb-text-on-primary);
320
- }
321
-
322
- .fb-variant-destructive_vQKZ2:hover:not(:disabled) {
323
- background-color: var(--fb-error-hover);
324
- }
325
-
326
- /* Variant: Outline */
327
- .fb-variant-outline_1Mb0E {
328
- border: var(--fb-border-width) solid var(--fb-border);
329
- background-color: var(--fb-background);
330
- color: var(--fb-text);
331
- }
332
-
333
- .fb-variant-outline_1Mb0E:hover:not(:disabled) {
334
- background-color: var(--fb-surface-accent);
335
- color: var(--fb-text);
336
- }
337
-
338
- /* Variant: Secondary */
339
- .fb-variant-secondary_-bohS {
340
- background-color: var(--fb-neutral-100);
341
- color: var(--fb-text);
342
- }
343
-
344
- .fb-variant-secondary_-bohS:hover:not(:disabled) {
345
- background-color: var(--fb-neutral-200);
346
- }
347
-
348
- /* Variant: Ghost */
349
- .fb-variant-ghost_qml-f {
350
- background-color: transparent;
351
- color: var(--fb-text);
352
- }
353
-
354
- .fb-variant-ghost_qml-f:hover:not(:disabled) {
355
- background-color: var(--fb-surface-accent);
356
- color: var(--fb-text);
357
- }
358
-
359
- /* Variant: Link */
360
- .fb-variant-link_aNj3r {
361
- background-color: transparent;
362
- color: var(--fb-primary);
363
- text-underline-offset: 0.25rem;
364
- }
365
-
366
- .fb-variant-link_aNj3r:hover:not(:disabled) {
367
- text-decoration: underline;
368
- }
369
-
370
- /* Size: Default */
371
- .fb-size-default_9qKVU {
372
- block-size: var(--fb-size-touch-target);
373
- padding-inline: var(--fb-space-md);
374
- padding-block: var(--fb-space-sm);
375
- }
376
-
377
- /* Size: Small */
378
- .fb-size-sm_MvjvS {
379
- block-size: 2.25rem;
380
- padding-inline: var(--fb-space-12);
381
- border-radius: var(--fb-radius-md);
382
- }
383
-
384
- /* Size: Large */
385
- .fb-size-lg_v6n8j {
386
- block-size: 2.75rem;
387
- padding-inline: var(--fb-space-20);
388
- border-radius: var(--fb-radius-md);
389
- }
390
-
391
- /* Size: Icon */
392
- .fb-size-icon_MYsET {
393
- block-size: var(--fb-size-touch-target);
394
- inline-size: var(--fb-size-touch-target);
395
- padding: 0;
396
- }
397
- /* Base badge styles */
398
- .fb-badge_Q1h-y {
399
- display: inline-flex;
400
- align-items: center;
401
- border-radius: var(--fb-radius-full);
402
- border: var(--fb-border-width) solid transparent;
403
- padding-inline: var(--fb-space-6);
404
- padding-block: var(--fb-space-xs);
405
- font-size: var(--fb-font-size-xs);
406
- font-weight: 600;
407
- transition: background-color 0.2s, color 0.2s;
408
- outline: none;
409
- }
410
-
411
- .fb-badge_Q1h-y:focus {
412
- outline: 2px solid var(--fb-primary);
413
- outline-offset: 2px;
414
- }
415
-
416
- /* Variant: Default */
417
- .fb-variant-default_7HL-r {
418
- background-color: var(--fb-primary);
419
- color: var(--fb-text-on-primary);
420
- }
421
-
422
- .fb-variant-default_7HL-r:hover {
423
- background-color: var(--fb-primary-hover);
424
- }
425
-
426
- /* Variant: Secondary */
427
- .fb-variant-secondary_knrZF {
428
- background-color: var(--fb-neutral-100);
429
- color: var(--fb-text);
430
- }
431
-
432
- .fb-variant-secondary_knrZF:hover {
433
- background-color: var(--fb-neutral-200);
434
- }
435
-
436
- /* Variant: Destructive */
437
- .fb-variant-destructive_YUruN {
438
- background-color: var(--fb-error);
439
- color: var(--fb-text-on-primary);
440
- }
441
-
442
- .fb-variant-destructive_YUruN:hover {
443
- background-color: var(--fb-error-hover);
444
- }
445
-
446
- /* Variant: Outline */
447
- .fb-variant-outline_EHC5j {
448
- border-color: var(--fb-border);
449
- background-color: transparent;
450
- color: var(--fb-text);
451
- }
452
-
453
- .fb-variant-outline_EHC5j:hover {
454
- background-color: var(--fb-surface-accent);
455
- }
456
- /* Card base styles */
457
- .fb-card_Ry9d9 {
458
- border-radius: var(--fb-radius-lg);
459
- border: var(--fb-border-width) solid var(--fb-border);
460
- background-color: var(--fb-background);
461
- color: var(--fb-text);
462
- box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
463
- }
464
-
465
- /* Card header - flex column with spacing */
466
- .fb-cardHeader_exSCY {
467
- display: flex;
468
- flex-direction: column;
469
- gap: var(--fb-space-6);
470
- padding: var(--fb-space-lg);
471
- }
472
-
473
- /* Card title - large heading with tight tracking */
474
- .fb-cardTitle_mLAib {
475
- font-size: var(--fb-font-size-2xl);
476
- font-weight: 600;
477
- line-height: 1;
478
- letter-spacing: -0.025em;
479
- color: var(--fb-text);
480
- }
481
-
482
- /* Card description - muted text */
483
- .fb-cardDescription_iLv2K {
484
- font-size: var(--fb-font-size-sm);
485
- color: var(--fb-text-muted);
486
- }
487
-
488
- /* Card content - padding, no top padding */
489
- .fb-cardContent_HJ92K {
490
- padding: var(--fb-space-lg);
491
- padding-block-start: 0;
492
- }
493
-
494
- /* Card footer - flex row aligned center */
495
- .fb-cardFooter_BAcjS {
496
- display: flex;
497
- align-items: center;
498
- padding: var(--fb-space-lg);
499
- padding-block-start: 0;
500
- }
501
- .fb-checkbox_wsic0 {
502
- block-size: 1rem;
503
- inline-size: 1rem;
504
- flex-shrink: 0;
505
- border-radius: var(--fb-radius-sm);
506
- border: var(--fb-border-width) solid var(--fb-primary);
507
- cursor: pointer;
508
- }
509
-
510
- .fb-checkbox_wsic0:focus-visible {
511
- outline: none;
512
- box-shadow: 0 0 0 2px var(--fb-border);
513
- }
514
-
515
- .fb-checkbox_wsic0:disabled {
516
- cursor: not-allowed;
517
- opacity: 0.5;
518
- }
519
-
520
- .fb-checkbox_wsic0[data-state="checked"] {
521
- background-color: var(--fb-primary);
522
- color: var(--fb-text-on-primary);
523
- }
524
-
525
- .fb-checkboxIndicator_31Q4N {
526
- display: flex;
527
- align-items: center;
528
- justify-content: center;
529
- color: currentColor;
530
- }
531
-
532
- .fb-checkboxIndicator_31Q4N svg {
533
- block-size: 1rem;
534
- inline-size: 1rem;
535
- }
536
- /* Dialog overlay - backdrop with fade animations */
537
- .fb-dialogOverlay_GSMVm {
538
- position: fixed;
539
- inset: 0;
540
- z-index: 50;
541
- background-color: rgba(0, 0, 0, 0.8);
542
- }
543
-
544
- .fb-dialogOverlay_GSMVm[data-state="open"] {
545
- animation: fb-dialogOverlayFadeIn_l-QHK 150ms ease-out;
546
- }
547
-
548
- .fb-dialogOverlay_GSMVm[data-state="closed"] {
549
- animation: fb-dialogOverlayFadeOut_DewLt 150ms ease-in;
550
- }
551
-
552
- /* Dialog content - centered modal with slide animations */
553
- .fb-dialogContent_neUay {
554
- position: fixed;
555
- left: 50%;
556
- top: 50%;
557
- z-index: 50;
558
- display: grid;
559
- width: 100%;
560
- max-width: 32rem;
561
- translate: -50% -50%;
562
- gap: var(--fb-space-sm);
563
- border: var(--fb-border-width) solid var(--fb-border);
564
- background-color: var(--fb-background);
565
- padding: var(--fb-space-12);
566
- box-shadow: var(--fb-shadow-lg);
567
- transition-duration: 200ms;
568
- }
569
-
570
- @media (min-width: 640px) {
571
- .fb-dialogContent_neUay {
572
- border-radius: var(--fb-radius-lg);
573
- }
574
- }
575
-
576
- .fb-dialogContent_neUay[data-state="open"] {
577
- animation: fb-dialogContentSlideIn_oQPJG 200ms ease-out;
578
- }
579
-
580
- .fb-dialogContent_neUay[data-state="closed"] {
581
- animation: fb-dialogContentSlideOut_nNdgq 200ms ease-in;
582
- }
583
-
584
- /* Close button - absolute positioned top-right */
585
- .fb-dialogClose_QbWkj {
586
- position: absolute;
587
- right: var(--fb-space-sm);
588
- top: var(--fb-space-sm);
589
- border-radius: var(--fb-radius-sm);
590
- opacity: 0.7;
591
- transition: opacity 150ms;
592
- }
593
-
594
- .fb-dialogClose_QbWkj:hover {
595
- opacity: 1;
596
- }
597
-
598
- .fb-dialogClose_QbWkj:focus {
599
- outline: none;
600
- box-shadow: 0 0 0 2px var(--fb-border-focus);
601
- opacity: 1;
602
- }
603
-
604
- .fb-dialogClose_QbWkj:disabled {
605
- pointer-events: none;
606
- }
607
-
608
- .fb-dialogClose_QbWkj[data-state="open"] {
609
- background-color: var(--fb-accent);
610
- color: var(--fb-text-muted);
611
- }
612
-
613
- /* Close icon */
614
- .fb-dialogCloseIcon_kK8c6 {
615
- block-size: 1rem;
616
- inline-size: 1rem;
617
- }
618
-
619
- .fb-dialogCloseIcon_kK8c6 + span {
620
- position: absolute;
621
- width: 1px;
622
- height: 1px;
623
- padding: 0;
624
- margin: -1px;
625
- overflow: hidden;
626
- clip: rect(0, 0, 0, 0);
627
- white-space: nowrap;
628
- border-width: 0;
629
- }
630
-
631
- /* Dialog header */
632
- .fb-dialogHeader_df1-u {
633
- display: flex;
634
- flex-direction: column;
635
- gap: var(--fb-space-3);
636
- text-align: center;
637
- }
638
-
639
- @media (min-width: 640px) {
640
- .fb-dialogHeader_df1-u {
641
- text-align: start;
642
- }
643
- }
644
-
645
- /* Dialog footer */
646
- .fb-dialogFooter_1vdJe {
647
- display: flex;
648
- flex-direction: column-reverse;
649
- gap: var(--fb-space-sm);
650
- }
651
-
652
- @media (min-width: 640px) {
653
- .fb-dialogFooter_1vdJe {
654
- flex-direction: row;
655
- justify-content: flex-end;
656
- gap: var(--fb-space-sm);
657
- }
658
- }
659
-
660
- /* Dialog title */
661
- .fb-dialogTitle_FS7k8 {
662
- font-size: var(--fb-font-size-lg);
663
- font-weight: var(--fb-font-weight-semibold);
664
- line-height: 1;
665
- letter-spacing: -0.025em;
666
- }
667
-
668
- /* Dialog description */
669
- .fb-dialogDescription_uEgTa {
670
- font-size: var(--fb-font-size-sm);
671
- color: var(--fb-text-muted);
672
- }
673
-
674
- /* Keyframe animations */
675
- @keyframes fb-dialogOverlayFadeIn_l-QHK {
676
- from {
677
- opacity: 0;
678
- }
679
- to {
680
- opacity: 1;
681
- }
682
- }
683
-
684
- @keyframes fb-dialogOverlayFadeOut_DewLt {
685
- from {
686
- opacity: 1;
687
- }
688
- to {
689
- opacity: 0;
690
- }
691
- }
692
-
693
- @keyframes fb-dialogContentSlideIn_oQPJG {
694
- from {
695
- opacity: 0;
696
- transform: translate(-50%, -48%) scale(0.95);
697
- }
698
- to {
699
- opacity: 1;
700
- transform: translate(-50%, -50%) scale(1);
701
- }
702
- }
703
-
704
- @keyframes fb-dialogContentSlideOut_nNdgq {
705
- from {
706
- opacity: 1;
707
- transform: translate(-50%, -50%) scale(1);
708
- }
709
- to {
710
- opacity: 0;
711
- transform: translate(-50%, -48%) scale(0.95);
712
- }
713
- }
714
- .fb-boxContainer_oXGAN {
715
- background-color: var(--fb-background);
716
- border-radius: var(--fb-radius-md);
717
- padding: var(--fb-space-md);
718
- }.fb-luxGridLayoutContainer_Co4nr {
719
- align-items: center;
720
- background-color: var(--grid-container-background-color);
721
- display: flex;
722
- flex-direction: column;
723
- justify-content: center;
724
- max-width: 100vw;
725
- min-width: var(--fb-container-max-width); /* Desktop only */
726
- }
727
-
728
- .fb-luxGridLayoutContainerWithoutPadding_VpIVN {
729
- padding-block: 0;
730
- }
731
-
732
- .fb-luxGridLayoutContainerFullWidth_ROl0Y {
733
- min-width: 100%;
734
- max-width: 100%;
735
- }
736
-
737
- .fb-luxGridLayout_Jsul6 {
738
- container-type: inline-size;
739
- display: grid;
740
- gap: var(--grid-row-gap, var(--fb-space-12))
741
- var(--grid-column-gap, var(--fb-space-md));
742
- grid-template-columns: repeat(var(--grid-column-max-columns, 12), 1fr);
743
- grid-template-rows: auto;
744
- margin-left: auto;
745
- margin-right: auto;
746
- max-width: var(--fb-container-max-width); /* Desktop only */
747
- min-width: var(--fb-container-max-width); /* Desktop only */
748
- width: 100%;
749
- }
750
-
751
- .fb-luxGridLayoutFullWidth_0O2LE {
752
- max-width: 100%;
753
- min-width: 100%;
754
- }
755
- .fb-gridLayoutColumn_5TCzp {
756
- align-self: start;
757
- grid-column: var(--grid-column-start) / var(--grid-column-end);
758
- /* --grid-column-start and --grid-column-end are set the component */
759
- }
760
- .fb-formLayoutWrapper_w9jQ- {
761
- width: 100%;
762
- height: 100%;
763
- }
764
-
765
- .fb-titleSection_qd9UP {
766
- display: flex;
767
- flex-direction: column;
768
- align-items: flex-start;
769
- width: 100%;
770
- }
771
-
772
- .fb-leftColumn_zIdZO {
773
- display: flex;
774
- flex-direction: column;
775
- height: fit-content;
776
- min-height: 0;
777
- }
778
-
779
- .fb-rightColumn_P0J6U {
780
- display: flex;
781
- flex-direction: column;
782
- height: fit-content;
783
- min-height: 0;
784
- }
785
-
786
- .fb-footerSection_eW4js {
787
- display: flex;
788
- flex-direction: column;
789
- align-items: flex-start;
790
- width: 100%;
791
- margin-top: var(--fb-space-md);
792
- }
793
-
794
- /* Content styling options */
795
- .fb-contentPadding_LMiyE {
796
- padding: var(--fb-space-12);
797
- }
798
-
799
- .fb-contentBorder_yYFFn {
800
- border: var(--fb-border-width) solid var(--fb-neutral-200);
801
- border-radius: var(--fb-radius-md);
802
- background-color: var(--fb-surface-accent);
803
- }
804
-
805
- /* Responsive behavior */
806
- @container (max-width: 768px) {
807
- .fb-leftColumn_zIdZO,
808
- .fb-rightColumn_P0J6U {
809
- /* On smaller screens, columns stack */
810
- grid-column: 1 / 13 !important;
811
- margin-bottom: var(--fb-space-12);
812
- }
813
-
814
- .fb-mainContent_9ZW4m {
815
- grid-column: 1 / 13 !important;
816
- }
817
- }
818
-
819
-
820
- /* Print styles */
821
- @media print {
822
- .fb-formLayoutWrapper_w9jQ- {
823
- background: var(--fb-background) !important;
824
- }
825
-
826
- .fb-contentBorder_yYFFn {
827
- border: var(--fb-border-width) solid var(--fb-border) !important;
828
- box-shadow: none !important;
829
- }
830
- }.fb-container_p6qC4 {
831
- margin-block-end: var(--fb-space-sm);
832
- padding-block-end: var(--fb-space-md);
833
- border-block-end: var(--fb-border-width) solid var(--fb-border);
834
- }
835
-
836
- .fb-disabled_EuvTp {
837
- opacity: 0.5;
838
- }
839
-
840
- .fb-prevButtonDisabled_Wj2Qp {
841
- opacity: 0.5;
842
- cursor: default;
843
- }
844
-
845
- .fb-additionalContent_0tppE {
846
- margin-block-start: var(--fb-space-md);
847
- }
848
- .fb-input_RJ7IM {
849
- display: flex;
850
- block-size: var(--fb-size-touch-target);
851
- inline-size: 100%;
852
- border-radius: var(--fb-radius-md);
853
- border: var(--fb-border-width) solid var(--fb-border);
854
- background-color: var(--fb-background);
855
- padding-inline: var(--fb-space-12);
856
- padding-block: var(--fb-space-sm);
857
- font-size: var(--fb-font-size-md);
858
- color: var(--fb-text);
859
- }
860
-
861
- .fb-input_RJ7IM::placeholder {
862
- color: var(--fb-text-muted);
863
- }
864
-
865
- .fb-input_RJ7IM::file-selector-button {
866
- border: 0;
867
- background-color: transparent;
868
- font-size: var(--fb-font-size-sm);
869
- font-weight: 500;
870
- color: var(--fb-text);
871
- }
872
-
873
- .fb-input_RJ7IM:focus-visible {
874
- outline: none;
875
- box-shadow: 0 0 0 2px var(--fb-border);
876
- }
877
-
878
- .fb-input_RJ7IM:disabled {
879
- cursor: not-allowed;
880
- opacity: 0.5;
881
- }
882
-
883
- @media (min-width: 768px) {
884
- .fb-input_RJ7IM {
885
- font-size: var(--fb-font-size-sm);
886
- }
887
- }
888
- .fb-wrapper_nDU5Q {
889
- display: flex;
890
- flex-direction: column;
891
- gap: var(--fb-space-sm);
892
- }
893
-
894
- .fb-progress_jf4Xd {
895
- appearance: none;
896
- background-color: var(--fb-primary-subtle);
897
- border: none;
898
- border-radius: 8px;
899
- height: 16px;
900
- overflow: hidden;
901
- width: 100%;
902
- }
903
-
904
- .fb-progress_jf4Xd::-webkit-progress-bar {
905
- background-color: transparent;
906
- }
907
-
908
- .fb-progress_jf4Xd::-webkit-progress-value {
909
- background-color: var(--fb-primary);
910
- transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
911
- }
912
-
913
- .fb-progress_jf4Xd::-moz-progress-bar {
914
- background-color: var(--fb-primary);
915
- transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
916
- }
917
-
918
- label.fb-progressLabel_3nfSJ {
919
- font-size: var(--fb-font-size-sm);
920
- font-weight: var(--fb-font-weight-normal);
921
- line-height: var(--fb-line-height-normal);
922
- }
923
-
924
- /* Completion message styling */
925
- .fb-completionMessage_OyQ9C {
926
- display: flex;
927
- align-items: center;
928
- gap: var(--fb-space-2);
929
- font-size: var(--fb-font-size-sm);
930
- color: var(--fb-success);
931
- animation: fb-fadeIn_iAZjj 300ms ease-out;
932
- }
933
-
934
- /* Error message styling */
935
- .fb-errorMessage_B8dGO {
936
- display: flex;
937
- align-items: center;
938
- justify-content: space-between;
939
- font-size: var(--fb-font-size-sm);
940
- color: var(--fb-error);
941
- }
942
-
943
- .fb-errorContent_2TAc5 {
944
- display: flex;
945
- align-items: center;
946
- gap: var(--fb-space-2);
947
- }
948
-
949
- .fb-retryButton_0HfjY {
950
- display: flex;
951
- align-items: center;
952
- gap: var(--fb-space-1);
953
- font-weight: var(--fb-font-weight-medium);
954
- color: var(--fb-error);
955
- text-decoration: underline;
956
- text-underline-offset: 2px;
957
- background: none;
958
- border: none;
959
- cursor: pointer;
960
- }
961
-
962
- .fb-retryButton_0HfjY:hover {
963
- color: var(--fb-error-hover);
964
- }
965
-
966
- @keyframes fb-fadeIn_iAZjj {
967
- from {
968
- opacity: 0;
969
- }
970
- to {
971
- opacity: 1;
972
- }
973
- }
974
- .fb-radioGroup_PqpPn {
975
- display: grid;
976
- gap: var(--fb-space-sm);
977
- }
978
-
979
- .fb-radioGroupItem_r91M1 {
980
- aspect-ratio: 1;
981
- block-size: 1rem;
982
- inline-size: 1rem;
983
- border-radius: var(--fb-radius-full);
984
- border: var(--fb-border-width) solid var(--fb-primary);
985
- color: var(--fb-primary);
986
- background-color: transparent;
987
- outline: none;
988
- transition: opacity 150ms ease;
989
- }
990
-
991
- .fb-radioGroupItem_r91M1:focus-visible {
992
- outline: 2px solid var(--fb-border-focus);
993
- outline-offset: 2px;
994
- }
995
-
996
- .fb-radioGroupItem_r91M1:disabled {
997
- cursor: not-allowed;
998
- opacity: 0.5;
999
- }
1000
-
1001
- .fb-radioIndicator_PFyGX {
1002
- display: flex;
1003
- align-items: center;
1004
- justify-content: center;
1005
- }
1006
-
1007
- .fb-radioIndicatorIcon_vSsbY {
1008
- block-size: 0.625rem;
1009
- inline-size: 0.625rem;
1010
- fill: currentColor;
1011
- color: currentColor;
1012
- }
1013
- /* Select trigger - button to open dropdown */
1014
- .fb-selectTrigger_dj84x {
1015
- display: flex;
1016
- align-items: center;
1017
- justify-content: space-between;
1018
- block-size: 2.5rem;
1019
- inline-size: 100%;
1020
- border-radius: var(--fb-radius-md);
1021
- border: var(--fb-border-width) solid var(--fb-border);
1022
- background-color: var(--fb-background);
1023
- padding-inline: var(--fb-space-6);
1024
- padding-block: var(--fb-space-sm);
1025
- font-size: var(--fb-font-size-sm);
1026
- }
1027
-
1028
- .fb-selectTrigger_dj84x::placeholder {
1029
- color: var(--fb-text-muted);
1030
- }
1031
-
1032
- .fb-selectTrigger_dj84x:focus {
1033
- outline: none;
1034
- box-shadow: 0 0 0 2px var(--fb-border-focus);
1035
- }
1036
-
1037
- .fb-selectTrigger_dj84x:disabled {
1038
- cursor: not-allowed;
1039
- opacity: 0.5;
1040
- }
1041
-
1042
- .fb-selectTrigger_dj84x > span {
1043
- overflow: hidden;
1044
- text-overflow: ellipsis;
1045
- display: -webkit-box;
1046
- -webkit-line-clamp: 1;
1047
- -webkit-box-orient: vertical;
1048
- }
1049
-
1050
- /* Select trigger icon */
1051
- .fb-selectTriggerIcon_V8dav {
1052
- block-size: 1rem;
1053
- inline-size: 1rem;
1054
- opacity: 0.5;
1055
- }
1056
-
1057
- /* Scroll buttons */
1058
- .fb-selectScrollUpButton_c6WZR,
1059
- .fb-selectScrollDownButton_kmWY4 {
1060
- display: flex;
1061
- cursor: default;
1062
- align-items: center;
1063
- justify-content: center;
1064
- padding-block: var(--fb-space-2);
1065
- }
1066
-
1067
- .fb-selectScrollIcon_IZbZG {
1068
- block-size: 1rem;
1069
- inline-size: 1rem;
1070
- }
1071
-
1072
- /* Select content - dropdown panel */
1073
- .fb-selectContent_uJ-ZX {
1074
- position: relative;
1075
- z-index: 50;
1076
- max-block-size: 24rem;
1077
- min-inline-size: 8rem;
1078
- overflow: hidden;
1079
- border-radius: var(--fb-radius-md);
1080
- border: var(--fb-border-width) solid var(--fb-border);
1081
- background-color: var(--fb-background);
1082
- color: var(--fb-text);
1083
- box-shadow: var(--fb-shadow-md);
1084
- }
1085
-
1086
- .fb-selectContent_uJ-ZX[data-state="open"] {
1087
- animation: fb-selectContentIn_n9zpE 150ms ease-out;
1088
- }
1089
-
1090
- .fb-selectContent_uJ-ZX[data-state="closed"] {
1091
- animation: fb-selectContentOut_rxdBe 150ms ease-in;
1092
- }
1093
-
1094
- /* Position-based transforms for popper mode */
1095
- .fb-selectContent_uJ-ZX.fb-popper_uKkq9[data-side="bottom"] {
1096
- transform: translateY(0.25rem);
1097
- }
1098
-
1099
- .fb-selectContent_uJ-ZX.fb-popper_uKkq9[data-side="left"] {
1100
- transform: translateX(-0.25rem);
1101
- }
1102
-
1103
- .fb-selectContent_uJ-ZX.fb-popper_uKkq9[data-side="right"] {
1104
- transform: translateX(0.25rem);
1105
- }
1106
-
1107
- .fb-selectContent_uJ-ZX.fb-popper_uKkq9[data-side="top"] {
1108
- transform: translateY(-0.25rem);
1109
- }
1110
-
1111
- /* Select viewport */
1112
- .fb-selectViewport_wcTaR {
1113
- padding: var(--fb-space-2);
1114
- }
1115
-
1116
- .fb-selectViewport_wcTaR.fb-popper_uKkq9 {
1117
- block-size: var(--radix-select-trigger-height);
1118
- inline-size: 100%;
1119
- min-inline-size: var(--radix-select-trigger-width);
1120
- }
1121
-
1122
- /* Select label */
1123
- .fb-selectLabel_hb7ig {
1124
- padding-block: var(--fb-space-3);
1125
- padding-inline-start: var(--fb-space-md);
1126
- padding-inline-end: var(--fb-space-sm);
1127
- font-size: var(--fb-font-size-sm);
1128
- font-weight: var(--fb-font-weight-semibold);
1129
- }
1130
-
1131
- /* Select item */
1132
- .fb-selectItem_f23oZ {
1133
- position: relative;
1134
- display: flex;
1135
- inline-size: 100%;
1136
- cursor: default;
1137
- user-select: none;
1138
- align-items: center;
1139
- border-radius: var(--fb-radius-sm);
1140
- padding-block: var(--fb-space-3);
1141
- padding-inline-start: var(--fb-space-md);
1142
- padding-inline-end: var(--fb-space-sm);
1143
- font-size: var(--fb-font-size-sm);
1144
- outline: none;
1145
- }
1146
-
1147
- .fb-selectItem_f23oZ:focus {
1148
- background-color: var(--fb-accent);
1149
- color: var(--fb-text);
1150
- }
1151
-
1152
- .fb-selectItem_f23oZ[data-disabled] {
1153
- pointer-events: none;
1154
- opacity: 0.5;
1155
- }
1156
-
1157
- /* Select item indicator */
1158
- .fb-selectItemIndicator_PD-WQ {
1159
- position: absolute;
1160
- left: var(--fb-space-sm);
1161
- display: flex;
1162
- block-size: 0.875rem;
1163
- inline-size: 0.875rem;
1164
- align-items: center;
1165
- justify-content: center;
1166
- }
1167
-
1168
- .fb-selectItemIndicatorIcon_kgB1I {
1169
- block-size: 1rem;
1170
- inline-size: 1rem;
1171
- }
1172
-
1173
- /* Select separator */
1174
- .fb-selectSeparator_DS7X2 {
1175
- margin-inline: calc(-1 * var(--fb-space-2));
1176
- margin-block: var(--fb-space-2);
1177
- block-size: 1px;
1178
- background-color: var(--fb-surface-accent);
1179
- }
1180
-
1181
- /* Keyframe animations */
1182
- @keyframes fb-selectContentIn_n9zpE {
1183
- from {
1184
- opacity: 0;
1185
- transform: scale(0.95);
1186
- }
1187
- to {
1188
- opacity: 1;
1189
- transform: scale(1);
1190
- }
1191
- }
1192
-
1193
- @keyframes fb-selectContentOut_rxdBe {
1194
- from {
1195
- opacity: 1;
1196
- transform: scale(1);
1197
- }
1198
- to {
1199
- opacity: 0;
1200
- transform: scale(0.95);
1201
- }
1202
- }
1203
- /* Sheet overlay - backdrop with fade animations */
1204
- .fb-sheetOverlay_2nFRz {
1205
- position: fixed;
1206
- inset: 0;
1207
- z-index: 50;
1208
- background-color: rgba(0, 0, 0, 0.8);
1209
- }
1210
-
1211
- .fb-sheetOverlay_2nFRz[data-state="open"] {
1212
- animation: fb-sheetOverlayFadeIn_AS-42 150ms ease-out;
1213
- }
1214
-
1215
- .fb-sheetOverlay_2nFRz[data-state="closed"] {
1216
- animation: fb-sheetOverlayFadeOut_Y-hE4 150ms ease-in;
1217
- }
1218
-
1219
- /* Sheet content base - fixed positioning with animations */
1220
- .fb-sheetContent_p2PyE {
1221
- position: fixed;
1222
- z-index: 50;
1223
- gap: var(--fb-space-sm);
1224
- background-color: var(--fb-background);
1225
- padding: var(--fb-space-12);
1226
- box-shadow: var(--fb-shadow-lg);
1227
- transition: transform 500ms ease-in-out, opacity 500ms ease-in-out;
1228
- }
1229
-
1230
- /* Side variant: top */
1231
- .fb-side-top_vnDBA {
1232
- inset-inline: 0;
1233
- top: 0;
1234
- border-block-end: var(--fb-border-width) solid var(--fb-border);
1235
- }
1236
-
1237
- .fb-side-top_vnDBA[data-state="open"] {
1238
- animation: fb-slideInFromTop_ujZFr 500ms ease-in-out;
1239
- }
1240
-
1241
- .fb-side-top_vnDBA[data-state="closed"] {
1242
- animation: fb-slideOutToTop_sjz0S 300ms ease-in-out;
1243
- }
1244
-
1245
- /* Side variant: bottom */
1246
- .fb-side-bottom_8Qo-6 {
1247
- inset-inline: 0;
1248
- bottom: 0;
1249
- border-block-start: var(--fb-border-width) solid var(--fb-border);
1250
- }
1251
-
1252
- .fb-side-bottom_8Qo-6[data-state="open"] {
1253
- animation: fb-slideInFromBottom_5kG78 500ms ease-in-out;
1254
- }
1255
-
1256
- .fb-side-bottom_8Qo-6[data-state="closed"] {
1257
- animation: fb-slideOutToBottom_03WBw 300ms ease-in-out;
1258
- }
1259
-
1260
- /* Side variant: left */
1261
- .fb-side-left_iSyK6 {
1262
- inset-block: 0;
1263
- left: 0;
1264
- block-size: 100%;
1265
- inline-size: 75%;
1266
- border-inline-end: var(--fb-border-width) solid var(--fb-border);
1267
- }
1268
-
1269
- @media (min-width: 640px) {
1270
- .fb-side-left_iSyK6 {
1271
- max-inline-size: 24rem;
1272
- }
1273
- }
1274
-
1275
- .fb-side-left_iSyK6[data-state="open"] {
1276
- animation: fb-slideInFromLeft_iFt5a 500ms ease-in-out;
1277
- }
1278
-
1279
- .fb-side-left_iSyK6[data-state="closed"] {
1280
- animation: fb-slideOutToLeft_kRHa5 300ms ease-in-out;
1281
- }
1282
-
1283
- /* Side variant: right */
1284
- .fb-side-right_q-l6- {
1285
- inset-block: 0;
1286
- right: 0;
1287
- block-size: 100%;
1288
- inline-size: 75%;
1289
- border-inline-start: var(--fb-border-width) solid var(--fb-border);
1290
- }
1291
-
1292
- @media (min-width: 640px) {
1293
- .fb-side-right_q-l6- {
1294
- max-inline-size: 24rem;
1295
- }
1296
- }
1297
-
1298
- .fb-side-right_q-l6-[data-state="open"] {
1299
- animation: fb-slideInFromRight_elDbR 500ms ease-in-out;
1300
- }
1301
-
1302
- .fb-side-right_q-l6-[data-state="closed"] {
1303
- animation: fb-slideOutToRight_HPV1P 300ms ease-in-out;
1304
- }
1305
-
1306
- /* Close button - absolute positioned top-right */
1307
- .fb-sheetClose_sq3cW {
1308
- position: absolute;
1309
- right: var(--fb-space-sm);
1310
- top: var(--fb-space-sm);
1311
- border-radius: var(--fb-radius-sm);
1312
- opacity: 0.7;
1313
- transition: opacity 150ms;
1314
- }
1315
-
1316
- .fb-sheetClose_sq3cW:hover {
1317
- opacity: 1;
1318
- }
1319
-
1320
- .fb-sheetClose_sq3cW:focus {
1321
- outline: none;
1322
- box-shadow: 0 0 0 2px var(--fb-border-focus);
1323
- opacity: 1;
1324
- }
1325
-
1326
- .fb-sheetClose_sq3cW:disabled {
1327
- pointer-events: none;
1328
- }
1329
-
1330
- .fb-sheetClose_sq3cW[data-state="open"] {
1331
- background-color: var(--fb-surface);
1332
- }
1333
-
1334
- /* Close icon */
1335
- .fb-sheetCloseIcon_2Z7S1 {
1336
- block-size: 1rem;
1337
- inline-size: 1rem;
1338
- }
1339
-
1340
- .fb-sheetCloseIcon_2Z7S1 + span {
1341
- position: absolute;
1342
- width: 1px;
1343
- height: 1px;
1344
- padding: 0;
1345
- margin: -1px;
1346
- overflow: hidden;
1347
- clip: rect(0, 0, 0, 0);
1348
- white-space: nowrap;
1349
- border-width: 0;
1350
- }
1351
-
1352
- /* Sheet header */
1353
- .fb-sheetHeader_w9TtP {
1354
- display: flex;
1355
- flex-direction: column;
1356
- gap: var(--fb-space-sm);
1357
- text-align: center;
1358
- }
1359
-
1360
- @media (min-width: 640px) {
1361
- .fb-sheetHeader_w9TtP {
1362
- text-align: start;
1363
- }
1364
- }
1365
-
1366
- /* Sheet footer */
1367
- .fb-sheetFooter_XN1p0 {
1368
- display: flex;
1369
- flex-direction: column-reverse;
1370
- gap: var(--fb-space-sm);
1371
- }
1372
-
1373
- @media (min-width: 640px) {
1374
- .fb-sheetFooter_XN1p0 {
1375
- flex-direction: row;
1376
- justify-content: flex-end;
1377
- gap: var(--fb-space-sm);
1378
- }
1379
- }
1380
-
1381
- /* Sheet title */
1382
- .fb-sheetTitle_F6nNH {
1383
- font-size: var(--fb-font-size-lg);
1384
- font-weight: var(--fb-font-weight-semibold);
1385
- color: var(--fb-text);
1386
- }
1387
-
1388
- /* Sheet description */
1389
- .fb-sheetDescription_AzWJb {
1390
- font-size: var(--fb-font-size-sm);
1391
- color: var(--fb-text-muted);
1392
- }
1393
-
1394
- /* Keyframe animations for overlay */
1395
- @keyframes fb-sheetOverlayFadeIn_AS-42 {
1396
- from {
1397
- opacity: 0;
1398
- }
1399
- to {
1400
- opacity: 1;
1401
- }
1402
- }
1403
-
1404
- @keyframes fb-sheetOverlayFadeOut_Y-hE4 {
1405
- from {
1406
- opacity: 1;
1407
- }
1408
- to {
1409
- opacity: 0;
1410
- }
1411
- }
1412
-
1413
- /* Keyframe animations for top side */
1414
- @keyframes fb-slideInFromTop_ujZFr {
1415
- from {
1416
- transform: translateY(-100%);
1417
- }
1418
- to {
1419
- transform: translateY(0);
1420
- }
1421
- }
1422
-
1423
- @keyframes fb-slideOutToTop_sjz0S {
1424
- from {
1425
- transform: translateY(0);
1426
- }
1427
- to {
1428
- transform: translateY(-100%);
1429
- }
1430
- }
1431
-
1432
- /* Keyframe animations for bottom side */
1433
- @keyframes fb-slideInFromBottom_5kG78 {
1434
- from {
1435
- transform: translateY(100%);
1436
- }
1437
- to {
1438
- transform: translateY(0);
1439
- }
1440
- }
1441
-
1442
- @keyframes fb-slideOutToBottom_03WBw {
1443
- from {
1444
- transform: translateY(0);
1445
- }
1446
- to {
1447
- transform: translateY(100%);
1448
- }
1449
- }
1450
-
1451
- /* Keyframe animations for left side */
1452
- @keyframes fb-slideInFromLeft_iFt5a {
1453
- from {
1454
- transform: translateX(-100%);
1455
- }
1456
- to {
1457
- transform: translateX(0);
1458
- }
1459
- }
1460
-
1461
- @keyframes fb-slideOutToLeft_kRHa5 {
1462
- from {
1463
- transform: translateX(0);
1464
- }
1465
- to {
1466
- transform: translateX(-100%);
1467
- }
1468
- }
1469
-
1470
- /* Keyframe animations for right side */
1471
- @keyframes fb-slideInFromRight_elDbR {
1472
- from {
1473
- transform: translateX(100%);
1474
- }
1475
- to {
1476
- transform: translateX(0);
1477
- }
1478
- }
1479
-
1480
- @keyframes fb-slideOutToRight_HPV1P {
1481
- from {
1482
- transform: translateX(0);
1483
- }
1484
- to {
1485
- transform: translateX(100%);
1486
- }
1487
- }
1488
- .fb-textarea_p4K5i {
1489
- display: flex;
1490
- min-block-size: 5rem;
1491
- inline-size: 100%;
1492
- border-radius: var(--fb-radius-md);
1493
- border: var(--fb-border-width) solid var(--fb-border);
1494
- background-color: var(--fb-background);
1495
- padding-inline: var(--fb-space-12);
1496
- padding-block: var(--fb-space-sm);
1497
- font-size: var(--fb-font-size-sm);
1498
- color: var(--fb-text);
1499
- }
1500
-
1501
- .fb-textarea_p4K5i::placeholder {
1502
- color: var(--fb-text-muted);
1503
- }
1504
-
1505
- .fb-textarea_p4K5i:focus-visible {
1506
- outline: none;
1507
- box-shadow: 0 0 0 2px var(--fb-border);
1508
- }
1509
-
1510
- .fb-textarea_p4K5i:disabled {
1511
- cursor: not-allowed;
1512
- opacity: 0.5;
1513
- }
1514
- .fb-vcContainer_oHl8H {
1515
- cursor: text;
1516
- display: flex;
1517
- gap: 16px;
1518
- pointer-events: none;
1519
- position: relative;
1520
- }
1521
-
1522
- .fb-vcInput_Nb8NL {
1523
- inset: 0;
1524
- pointer-events: none;
1525
- position: absolute;
1526
-
1527
- & input {
1528
- background: transparent;
1529
- block-size: 100%;
1530
- border-color: transparent;
1531
- caret-color: transparent;
1532
- color: transparent;
1533
- font-family: inherit;
1534
- font-size: 18px;
1535
- font-weight: 400;
1536
- inline-size: 100%;
1537
- letter-spacing: 80px;
1538
- line-height: 28px;
1539
- outline: transparent solid 2px;
1540
- pointer-events: all;
1541
- text-align: left;
1542
- user-select: none;
1543
-
1544
- &::selection {
1545
- background-color: transparent;
1546
- }
1547
- }
1548
- }
1549
-
1550
- .fb-vcGroup_5z3tY {
1551
- align-items: center;
1552
- display: flex;
1553
- gap: 16px;
1554
- inline-size: 100%;
1555
- }
1556
-
1557
- .fb-vcDash_R8D18 {
1558
- align-items: center;
1559
- block-size: 48px;
1560
- display: flex;
1561
- font-family: inherit;
1562
- font-size: 18px;
1563
- font-style: normal;
1564
- font-weight: 400;
1565
- justify-content: center;
1566
- line-height: 1.4;
1567
- }
1568
-
1569
- .fb-vcSlot_AZfrj {
1570
- align-items: center;
1571
- background: white;
1572
- block-size: 48px;
1573
- border: var(--fb-border-width) solid var(--fb-border);
1574
- border-radius: 8px;
1575
- color: var(--fb-text);
1576
- display: flex;
1577
- flex-basis: 12px;
1578
- flex-grow: 1;
1579
- font-family: inherit;
1580
- font-size: 16px;
1581
- font-style: normal;
1582
- font-weight: 400;
1583
- justify-content: center;
1584
- line-height: 1.4;
1585
- outline: transparent solid 2px;
1586
- }
1587
-
1588
- .fb-vcSlotActive_1Zqta {
1589
- border-color: var(--fb-border-focus);
1590
- outline-color: var(--fb-border-focus);
1591
- }
1592
-
1593
- .fb-vcCaret_pQ-uD {
1594
- align-items: center;
1595
- animation-duration: 1.2s;
1596
- animation-iteration-count: infinite;
1597
- animation-name: fb-caret-blink_jfhv0;
1598
- animation-timing-function: ease-out;
1599
- display: flex;
1600
- pointer-events: none;
1601
-
1602
- & > div {
1603
- background-color: var(--fb-text);
1604
- height: 18px;
1605
- width: 1px;
1606
- }
1607
- }
1608
-
1609
- @keyframes fb-caret-blink_jfhv0 {
1610
- 0%,
1611
- 70%,
1612
- 100% {
1613
- opacity: 1;
1614
- }
1615
-
1616
- 20%,
1617
- 50% {
1618
- opacity: 0;
1619
- }
1620
- }.fb-dialogContent_MQjVY {
1621
- max-inline-size: 28rem;
1622
- }
1623
-
1624
- .fb-iconRow_zoQXV {
1625
- display: flex;
1626
- align-items: center;
1627
- gap: var(--fb-space-12);
1628
- }
1629
-
1630
- .fb-iconCircle_UvpAZ {
1631
- border-radius: var(--fb-radius-full);
1632
- background-color: var(--fb-surface);
1633
- padding: var(--fb-space-sm);
1634
- }
1635
-
1636
- .fb-descriptionSpaced_AmH9W {
1637
- margin-block-start: var(--fb-space-2);
1638
- }
1639
-
1640
- .fb-buttonRow_lfgxL {
1641
- display: flex;
1642
- justify-content: flex-end;
1643
- gap: var(--fb-space-sm);
1644
- padding-block-start: var(--fb-space-md);
1645
- }
1646
-
1647
- .fb-minWidthButton_maffF {
1648
- min-inline-size: 6rem;
1649
- }
1650
-
1651
- .fb-iconWarning_OcS7O {
1652
- width: 1.25rem;
1653
- height: 1.25rem;
1654
- color: var(--fb-warning);
1655
- }
1656
-
1657
- .fb-iconInfo_xQhjd {
1658
- width: 1.25rem;
1659
- height: 1.25rem;
1660
- color: var(--fb-info);
1661
- }
1662
- .fb-dialogContent_hdJb3 {
1663
- max-inline-size: 28rem;
1664
- }
1665
-
1666
- .fb-headerRow_dowgv {
1667
- display: flex;
1668
- align-items: center;
1669
- gap: var(--fb-space-sm);
1670
- }
1671
-
1672
- .fb-iconSuccess_787to {
1673
- color: var(--fb-success);
1674
- }
1675
-
1676
- .fb-iconMail_yICFX {
1677
- color: var(--fb-info);
1678
- }
1679
-
1680
- .fb-successButtonRow_LilmE {
1681
- display: flex;
1682
- justify-content: center;
1683
- padding-block-start: var(--fb-space-md);
1684
- }
1685
-
1686
- .fb-minWidthButton_Y-HfD {
1687
- min-inline-size: 8rem;
1688
- }
1689
-
1690
- .fb-formContent_DRlgi {
1691
- display: flex;
1692
- flex-direction: column;
1693
- gap: var(--fb-space-md);
1694
- }
1695
-
1696
- .fb-codeSection_vJqzI {
1697
- display: flex;
1698
- flex-direction: column;
1699
- gap: var(--fb-space-sm);
1700
- }
1701
-
1702
- .fb-codeLabel_PvgkB {
1703
- font-size: var(--fb-font-size-sm);
1704
- font-weight: 500;
1705
- }
1706
-
1707
- .fb-codeCenter_j2TST {
1708
- display: flex;
1709
- justify-content: center;
1710
- }
1711
-
1712
- .fb-resendText_fsAeq {
1713
- text-align: center;
1714
- font-size: var(--fb-font-size-sm);
1715
- color: var(--fb-text-muted);
1716
- }
1717
-
1718
- .fb-blockedText_ZGaBs {
1719
- text-align: center;
1720
- font-size: var(--fb-font-size-sm);
1721
- color: var(--fb-text-muted);
1722
- }
1723
-
1724
- .fb-resendLink_dRMub {
1725
- padding: 0;
1726
- block-size: auto;
1727
- color: var(--fb-info);
1728
- }
1729
-
1730
- .fb-resendLinkDefault_sVy7D {
1731
- padding: 0;
1732
- block-size: auto;
1733
- }
1734
-
1735
- .fb-footerButtonRow_dFkH0 {
1736
- display: flex;
1737
- justify-content: flex-end;
1738
- gap: var(--fb-space-sm);
1739
- padding-block-start: var(--fb-space-md);
1740
- }
1741
-
1742
- .fb-iconSm_JkMbO { width: 1rem; height: 1rem; }
1743
- .fb-iconMd_y--1E { width: 1.25rem; height: 1.25rem; }
1744
- .fb-buttonRow_IpMPI {
1745
- display: flex;
1746
- flex-wrap: wrap;
1747
- gap: var(--fb-space-sm);
1748
- justify-content: flex-end;
1749
- }
1750
-
1751
- .fb-minWidthButton_Ggq-E {
1752
- min-inline-size: 4rem;
1753
- }
1754
-
1755
- .fb-toastContainer_iL55M {
1756
- position: fixed;
1757
- inset-block-start: var(--fb-space-md);
1758
- inset-inline-end: var(--fb-space-md);
1759
- z-index: 50;
1760
- max-inline-size: 24rem;
1761
- }
1762
-
1763
- .fb-toastCard_EslQ- {
1764
- background-color: var(--fb-background);
1765
- border: var(--fb-border-width) solid var(--fb-border);
1766
- border-radius: var(--fb-radius-lg);
1767
- box-shadow: var(--fb-shadow-lg);
1768
- padding: var(--fb-space-md);
1769
- display: flex;
1770
- flex-direction: column;
1771
- gap: var(--fb-space-12);
1772
- }
1773
-
1774
- .fb-toastTitle_W3izr {
1775
- font-weight: var(--fb-font-weight-semibold);
1776
- }
1777
-
1778
- .fb-toastContent_h6A9y {
1779
- font-size: var(--fb-font-size-sm);
1780
- color: var(--fb-text-muted);
1781
- margin-block-start: var(--fb-space-2);
1782
- }
1783
-
1784
- .fb-sheetContent_Ccs86 {
1785
- inline-size: 400px;
1786
- }
1787
-
1788
- @media (min-width: 640px) {
1789
- .fb-sheetContent_Ccs86 {
1790
- inline-size: 540px;
1791
- }
1792
- }
1793
-
1794
- .fb-sheetBody_XqkvA {
1795
- flex: 1;
1796
- padding-block-end: var(--fb-space-md);
1797
- display: flex;
1798
- flex-direction: column;
1799
- gap: var(--fb-space-md);
1800
- margin-block-start: var(--fb-space-md);
1801
- }
1802
-
1803
- .fb-sheetText_yRGd- {
1804
- font-size: var(--fb-font-size-sm);
1805
- }
1806
-
1807
- .fb-size-small_YcmVE {
1808
- max-inline-size: 24rem;
1809
- }
1810
-
1811
- .fb-size-medium_auCiA {
1812
- max-inline-size: 28rem;
1813
- }
1814
-
1815
- .fb-size-large_8EHM7 {
1816
- max-inline-size: 42rem;
1817
- }
1818
-
1819
- .fb-modalButtonRow_c7V4P {
1820
- display: flex;
1821
- justify-content: flex-end;
1822
- gap: var(--fb-space-sm);
1823
- padding-block-start: var(--fb-space-md);
1824
- }
1825
- .fb-errorFallback_CNx1M {
1826
- padding: var(--fb-space-sm);
1827
- border: var(--fb-border-width) solid var(--fb-error-translucent);
1828
- background-color: var(--fb-error-surface);
1829
- color: var(--fb-error);
1830
- border-radius: var(--fb-radius-md);
1831
- }
1832
-
1833
- .fb-errorDetail_Nvh9V {
1834
- font-size: var(--fb-font-size-xs);
1835
- margin-block-start: var(--fb-space-2);
1836
- }
1837
- .fb-alertList_d0DxG {
1838
- display: flex;
1839
- flex-direction: column;
1840
- gap: var(--fb-space-sm);
1841
- }
1842
- .fb-displayWrapper_VYcQC {
1843
- display: flex;
1844
- flex-direction: column;
1845
- gap: var(--fb-space-md);
1846
- }
1847
- .fb-emptyValue_baQFk {
1848
- color: var(--fb-text-muted);
1849
- font-style: italic;
1850
- }
1851
-
1852
- .fb-valueText_JCRsN {
1853
- color: var(--fb-text);
1854
- }
1855
- .fb-fieldWrapper_rnKUQ {
1856
- display: flex;
1857
- flex-direction: column;
1858
- gap: var(--fb-space-2);
1859
- }
1860
- .fb-section_5kbZU {
1861
- margin-block-end: var(--fb-space-lg);
1862
- }
1863
-
1864
- .fb-sectionHeader_aVzgk {
1865
- display: flex;
1866
- justify-content: space-between;
1867
- align-items: center;
1868
- margin-block-end: var(--fb-space-md);
1869
- }
1870
-
1871
- .fb-cancelButton_PyIZH {
1872
- font-size: var(--fb-font-size-sm);
1873
- color: var(--fb-text-muted);
1874
- display: flex;
1875
- align-items: center;
1876
- gap: var(--fb-space-2);
1877
- background: none;
1878
- border: none;
1879
- cursor: pointer;
1880
- }
1881
-
1882
- .fb-editButton_dbSFX {
1883
- font-size: var(--fb-font-size-sm);
1884
- color: var(--fb-info);
1885
- display: flex;
1886
- align-items: center;
1887
- gap: var(--fb-space-2);
1888
- background: none;
1889
- border: none;
1890
- cursor: pointer;
1891
- }
1892
-
1893
- .fb-sectionContent_wTlW- {
1894
- display: flex;
1895
- flex-direction: column;
1896
- gap: var(--fb-space-md);
1897
- }
1898
-
1899
- .fb-saveButtonsWrapper_VGuwW {
1900
- display: flex;
1901
- padding-block-start: var(--fb-space-md);
1902
- }
1903
-
1904
- .fb-iconSm_yLpHW { width: 1rem; height: 1rem; }
1905
- .fb-stepContent_EU1uV {
1906
- display: flex;
1907
- flex-direction: column;
1908
- gap: var(--fb-space-lg);
1909
- }
1910
-
1911
- .fb-loaderWrapper_00phH {
1912
- margin-block-end: var(--fb-space-md);
1913
- }
1914
-
1915
- .fb-footer_r0kdp {
1916
- margin-block-start: var(--fb-space-lg);
1917
- }
1918
- @keyframes fb-spin_aHSB3 {
1919
- from {
1920
- transform: rotate(0deg);
1921
- }
1922
- to {
1923
- transform: rotate(360deg);
1924
- }
1925
- }
1926
-
1927
- @keyframes fb-pulse_FcPkd {
1928
- 0%,
1929
- 100% {
1930
- opacity: 1;
1931
- }
1932
- 50% {
1933
- opacity: 0.5;
1934
- }
1935
- }
1936
-
1937
- .fb-card_jvOrv {
1938
- border-color: color-mix(in srgb, var(--fb-primary) 20%, transparent);
1939
- background-color: color-mix(in srgb, var(--fb-primary) 5%, transparent);
1940
- }
1941
-
1942
- .fb-cardContent_Cnf5t {
1943
- padding: var(--fb-space-md);
1944
- }
1945
-
1946
- .fb-contentRow_-lops {
1947
- display: flex;
1948
- align-items: center;
1949
- gap: var(--fb-space-12);
1950
- }
1951
-
1952
- .fb-spinner_SkwMR {
1953
- inline-size: 1rem;
1954
- block-size: 1rem;
1955
- animation: fb-spin_aHSB3 1s linear infinite;
1956
- color: var(--fb-primary);
1957
- }
1958
-
1959
- .fb-textContent_t3X2X {
1960
- flex: 1;
1961
- }
1962
-
1963
- .fb-title_-fTQX {
1964
- font-size: var(--fb-font-size-sm);
1965
- font-weight: 500;
1966
- color: var(--fb-primary);
1967
- }
1968
-
1969
- .fb-subtitle_wyptE {
1970
- font-size: var(--fb-font-size-xs);
1971
- color: var(--fb-text-muted);
1972
- margin-block-start: var(--fb-space-2);
1973
- }
1974
-
1975
- .fb-badgeList_xtoNn {
1976
- display: flex;
1977
- flex-wrap: wrap;
1978
- gap: var(--fb-space-2);
1979
- }
1980
-
1981
- .fb-badgeText_TZRdG {
1982
- font-size: var(--fb-font-size-xs);
1983
- }
1984
-
1985
- .fb-progressSection_XcPgJ {
1986
- margin-block-start: var(--fb-space-12);
1987
- }
1988
-
1989
- .fb-progressTrack_BUoRx {
1990
- inline-size: 100%;
1991
- background-color: var(--fb-surface);
1992
- border-radius: var(--fb-radius-full);
1993
- block-size: 0.25rem;
1994
- }
1995
-
1996
- .fb-progressBar_5MELx {
1997
- background-color: var(--fb-primary);
1998
- block-size: 0.25rem;
1999
- border-radius: var(--fb-radius-full);
2000
- transition: width 0.3s;
2001
- animation: fb-pulse_FcPkd 2s ease-in-out infinite;
2002
- }
2003
- .fb-errorState_khSRW {
2004
- padding: var(--fb-space-md);
2005
- border: var(--fb-border-width) solid var(--fb-error-translucent);
2006
- background-color: var(--fb-error-surface);
2007
- color: var(--fb-error);
2008
- border-radius: var(--fb-radius-md);
2009
- }
2010
-
2011
- .fb-errorHeading_dGdN2 {
2012
- font-weight: 500;
2013
- margin-block-end: var(--fb-space-sm);
2014
- }
2015
-
2016
- .fb-loadingState_Pdhds {
2017
- padding: var(--fb-space-md);
2018
- text-align: center;
2019
- color: var(--fb-text-muted);
2020
- }
2021
-
2022
- .fb-loadingPulse_QIw08 {
2023
- animation: fb-pulse_7Ml6n 2s ease-in-out infinite;
2024
- }
2025
-
2026
- @keyframes fb-pulse_7Ml6n {
2027
- 0%,
2028
- 100% {
2029
- opacity: 1;
2030
- }
2031
- 50% {
2032
- opacity: 0.5;
2033
- }
2034
- }
2035
-
2036
- .fb-formLayout_JzC8E {
2037
- margin-block: var(--fb-space-xl);
2038
- }
2039
- .fb-stepListWrapper_RTLUk {
2040
- display: flex;
2041
- flex-direction: column;
2042
- font-family: inherit;
2043
- gap: var(--fb-space-12);
2044
- }
2045
-
2046
- .fb-stepList_b7ucJ {
2047
- .fb-stepListItem_G8Nh4 {
2048
- color: var(--fb-text-muted);
2049
- display: flex;
2050
- flex-direction: row;
2051
- gap: var(--fb-space-6);
2052
- padding-bottom: var(--fb-space-2);
2053
-
2054
- .fb-leftContainer_o-gBE {
2055
- align-items: center;
2056
- display: flex;
2057
- flex-direction: column;
2058
- gap: var(--fb-space-xs);
2059
- padding-top: var(--fb-space-2);
2060
-
2061
- .fb-circle_3oinV {
2062
- align-items: center;
2063
- background-color: transparent;
2064
- border: var(--fb-border-width) solid var(--fb-border);
2065
- border-radius: var(--fb-radius-full);
2066
- color: var(--fb-background);
2067
- display: flex;
2068
- justify-content: center;
2069
- min-block-size: calc(1.25rem - 2 * var(--fb-border-width));
2070
- min-inline-size: calc(1.25rem - 2 * var(--fb-border-width));
2071
-
2072
- .fb-currentDot_0e9gN {
2073
- background-color: var(--fb-primary);
2074
- border-radius: var(--fb-radius-full);
2075
- height: 14px;
2076
- width: 14px;
2077
- }
2078
- }
2079
-
2080
- .fb-connector_bDvRA {
2081
- background-color: var(--fb-text-muted);
2082
- block-size: 100%;
2083
- inline-size: 1.5px;
2084
- min-block-size: 36px;
2085
- }
2086
- }
2087
-
2088
- .fb-content_u43H4 {
2089
- align-items: start;
2090
- border-radius: var(--fb-radius-md);
2091
- color: var(--fb-text-muted);
2092
- display: flex;
2093
- flex-direction: row;
2094
- inline-size: 100%;
2095
- margin-block-end: var(--fb-space-6);
2096
- padding: var(--fb-space-2) var(--fb-space-6);
2097
- text-wrap: balance;
2098
-
2099
- .fb-stepNumber_c2YRs {
2100
- color: var(--fb-text-muted);
2101
- font-size: var(--fb-font-size-sm);
2102
- font-weight: var(--fb-font-weight-semibold);
2103
- line-height: var(--fb-line-height-tight);
2104
- }
2105
-
2106
- .fb-stepTitle_w5Be8 {
2107
- font-size: var(--fb-font-size-sm);
2108
- line-height: var(--fb-line-height-normal);
2109
- }
2110
-
2111
- .fb-stepLink_sqt2- {
2112
- color: var(--fb-primary);
2113
- cursor: pointer;
2114
- font-weight: var(--fb-font-weight-normal);
2115
- line-height: var(--fb-line-height-normal);
2116
- text-decoration: underline;
2117
-
2118
- &:hover {
2119
- color: var(--fb-primary-hover);
2120
- text-decoration: underline;
2121
- }
2122
-
2123
- &:focus {
2124
- outline-offset: 2px;
2125
- outline-style: solid;
2126
- outline-width: 2px;
2127
- text-decoration: underline;
2128
- }
2129
- }
2130
- }
2131
-
2132
- .fb-iconRightContainer_DCjrS {
2133
- align-self: center;
2134
- block-size: 1.25rem;
2135
- color: var(--fb-primary);
2136
- display: flex;
2137
- inline-size: 1.25rem;
2138
- margin-inline-start: auto;
2139
- }
2140
-
2141
- &.fb-completed_F-mOG {
2142
- .fb-leftContainer_o-gBE {
2143
- .fb-circle_3oinV {
2144
- background-color: var(--fb-primary);
2145
- border-color: var(--fb-primary);
2146
- border-style: solid;
2147
- border-width: var(--fb-border-width);
2148
- }
2149
-
2150
- .fb-connector_bDvRA {
2151
- background-color: var(--fb-primary);
2152
- }
2153
- }
2154
-
2155
- .fb-content_u43H4 {
2156
- color: var(--fb-text);
2157
-
2158
- .fb-stepNumber_c2YRs {
2159
- color: var(--fb-text);
2160
- }
2161
- }
2162
- }
2163
-
2164
- &.fb-current_QAO1e {
2165
- .fb-leftContainer_o-gBE {
2166
- .fb-circle_3oinV {
2167
- border-color: var(--fb-primary);
2168
- border-style: solid;
2169
- border-width: var(--fb-border-width);
2170
- }
2171
- }
2172
-
2173
- .fb-content_u43H4 {
2174
- background-color: var(--fb-background);
2175
- color: var(--fb-text);
2176
-
2177
- .fb-stepNumber_c2YRs {
2178
- color: var(--fb-text);
2179
- }
2180
- }
2181
- }
2182
-
2183
- &.fb-inactive_tYqvV {
2184
- .fb-content_u43H4 {
2185
- color: var(--fb-text-muted);
2186
- }
2187
- }
2188
- }
2189
- }
2
+ :root{font-family:var(--fb-font-family-sans);--fb-primary: #7c3aed;--fb-primary-600: #7c3aed;--fb-primary-hover: #6d28d9;--fb-primary-active: #5b21b6;--fb-primary-dark: #4c1d95;--fb-primary-border: #c4b5fd;--fb-primary-foreground: #ffffff;--fb-primary-subtle: #ede9fe;--fb-primary-subtle-50: rgba(237, 233, 254, .5);--fb-background: #ffffff;--fb-surface: #fafaf9;--fb-surface-accent: #f5f3ff;--fb-surface-emphasis: #ede9fe;--fb-surface-subtle: #f5f3ff;--fb-border: #ddd6fe;--fb-border-focus: #7c3aed;--fb-border-width: 1px;--fb-text: #0f0a1e;--fb-text-muted: #6b6480;--fb-text-on-primary: #ffffff;--fb-error: #dc2626;--fb-error-hover: #b91c1c;--fb-error-dark: #7f1d1d;--fb-error-muted: #fca5a5;--fb-error-subtle: #fecaca;--fb-error-border: #fca5a5;--fb-error-translucent: rgba(220, 38, 38, .3);--fb-error-surface: #fef2f2;--fb-success: #16a34a;--fb-success-hover: #15803d;--fb-success-bright: #22c55e;--fb-success-subtle: #bbf7d0;--fb-success-dark: #166534;--fb-success-surface: #f0fdf4;--fb-warning: #d97706;--fb-warning-surface: #fffbeb;--fb-info: #7c3aed;--fb-info-surface: #ede9fe;--fb-canvas-background: #f3f3f3;--fb-neutral-50: #f9fafb;--fb-neutral-100: #ede9fe;--fb-neutral-200: #ddd6fe;--fb-neutral-300: #a78bfa;--fb-neutral-500: #7c6b99;--fb-neutral-900: #1e1030;--fb-accent: #f5f3ff;--fb-accent-rgb: 245, 243, 255;--fb-amber-100: #fef3c7;--fb-amber-300: #fcd34d;--fb-amber-800: #92400e;--fb-violet-100: #ede9fe;--fb-violet-300: #c4b5fd;--fb-violet-700: #6d28d9;--fb-violet-800: #5b21b6;--fb-cyan-100: #cffafe;--fb-cyan-300: #67e8f9;--fb-cyan-800: #155e75;--fb-lime-100: #ecfccb;--fb-lime-300: #bef264;--fb-lime-800: #3f6212;--fb-pink-100: #fce7f3;--fb-pink-300: #f9a8d4;--fb-pink-800: #9d174d;--fb-warning-border: #fef08a;--fb-font-family-mono: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, Consolas, "DejaVu Sans Mono", monospace;--fb-font-family-sans: "DM Sans", system-ui, sans-serif;--fb-font-size-2xs: .625rem;--fb-font-size-xs: .75rem;--fb-font-size-sm: .875rem;--fb-font-size-md: 1rem;--fb-font-size-lg: 1.125rem;--fb-font-size-xl: 1.25rem;--fb-font-size-2xl: 1.5rem;--fb-font-weight-normal: 400;--fb-font-weight-medium: 500;--fb-font-weight-semibold: 600;--fb-font-weight-bold: 700;--fb-line-height-tight: 1.25;--fb-line-height-normal: 1.5;--fb-line-height-relaxed: 1.75;--fb-space-50: .25rem;--fb-space-100: .5rem;--fb-space-150: .75rem;--fb-space-200: 1rem;--fb-space-250: 1.25rem;--fb-space-300: 1.5rem;--fb-space-350: 1.75rem;--fb-space-400: 2rem;--fb-space-450: 2.25rem;--fb-space-500: 2.5rem;--fb-space-550: 2.75rem;--fb-space-600: 3rem;--fb-space-650: 3.25rem;--fb-space-700: 3.5rem;--fb-space-xs: var(--fb-space-50);--fb-space-sm: var(--fb-space-100);--fb-space-md: var(--fb-space-200);--fb-space-lg: var(--fb-space-300);--fb-space-xl: var(--fb-space-400);--fb-space-2xl: var(--fb-space-600);--fb-space-3xl: var(--fb-space-700);--fb-space-md-neg: calc(-1 * var(--fb-space-200));--fb-space-1: .0625rem;--fb-space-2: .125rem;--fb-space-3: .1875rem;--fb-space-6: .375rem;--fb-space-10: .625rem;--fb-space-12: var(--fb-space-150);--fb-space-14: .875rem;--fb-space-20: var(--fb-space-250);--fb-size-touch-target: var(--fb-space-500);--fb-padding-card: var(--fb-space-250);--fb-padding-card-sm: var(--fb-space-200);--fb-gap-section: var(--fb-space-200);--fb-gap-cards: var(--fb-space-150);--fb-gap-inline: var(--fb-space-sm);--fb-container-max-width: 64rem;--fb-popover-width: 18rem;--fb-radius-sm: .25rem;--fb-radius-md: .375rem;--fb-radius-lg: .5rem;--fb-radius-xl: .75rem;--fb-radius-full: 100vmax;--fb-shadow-sm: 0 1px 2px 0 rgb(124 58 237 / .08);--fb-shadow-md: 0 4px 6px -1px rgb(124 58 237 / .12), 0 2px 4px -2px rgb(124 58 237 / .08);--fb-shadow-lg: 0 10px 15px -3px rgb(124 58 237 / .15), 0 4px 6px -4px rgb(124 58 237 / .1);--fb-z-base: 0;--fb-z-raised: 1;--fb-z-dropdown: 1000;--fb-z-sticky: 1100;--fb-z-overlay: 1200;--fb-z-modal: 1300;--fb-z-toast: 1400}button,input,optgroup,select,textarea{font-family:inherit}.fb-alert_5UcaT{position:relative;inline-size:100%;border-radius:var(--fb-radius-md);border:var(--fb-border-width) solid var(--fb-border);padding:var(--fb-space-md)}.fb-alert_5UcaT>svg{position:absolute;left:var(--fb-space-md);top:var(--fb-space-md);color:var(--fb-text)}.fb-alert_5UcaT>svg~*{padding-inline-start:1.75rem}.fb-alert_5UcaT>svg+div{transform:translateY(-3px)}.fb-variant-default_yhEpY{background-color:var(--fb-background);color:var(--fb-text)}.fb-variant-destructive_rafp5{border-color:var(--fb-error);color:var(--fb-error)}.fb-variant-destructive_rafp5>svg{color:var(--fb-error)}.fb-alertTitle_-KE5o{margin-block-end:var(--fb-space-sm);font-weight:500;line-height:1;letter-spacing:-.025em}.fb-alertDescription_cg7Ke{font-size:var(--fb-font-size-sm)}.fb-alertDescription_cg7Ke p{line-height:1.625}.fb-button_MJLDl{display:inline-flex;align-items:center;justify-content:center;gap:var(--fb-space-sm);white-space:nowrap;border-radius:var(--fb-radius-md);font-size:var(--fb-font-size-md);font-weight:var(--fb-font-weight-semibold);transition:background-color .15s ease,color .15s ease,border-color .15s ease,box-shadow .15s ease,opacity .15s ease;cursor:pointer;outline:none;border:1px solid transparent}.fb-button_MJLDl:focus-visible{outline:2px solid var(--fb-border-focus);outline-offset:2px}.fb-button_MJLDl:disabled{pointer-events:none;opacity:.5}.fb-button_MJLDl span{font-size:inherit;font-weight:inherit;line-height:inherit}.fb-button_MJLDl svg{pointer-events:none;inline-size:1rem;block-size:1rem;flex-shrink:0}.fb-variant-default_KLx8b{background-color:var(--fb-primary);color:var(--fb-primary-foreground);border-color:var(--fb-primary);box-shadow:var(--fb-shadow-sm)}.fb-variant-default_KLx8b:hover:not(:disabled){background-color:var(--fb-primary-hover);border-color:var(--fb-primary-hover);box-shadow:var(--fb-shadow-md)}.fb-variant-default_KLx8b:active:not(:disabled){background-color:var(--fb-primary-active);border-color:var(--fb-primary-active);box-shadow:none}.fb-variant-destructive_vQKZ2{background-color:var(--fb-error);color:var(--fb-text-on-primary);border-color:var(--fb-error);box-shadow:var(--fb-shadow-sm)}.fb-variant-destructive_vQKZ2:hover:not(:disabled){background-color:var(--fb-error-hover);border-color:var(--fb-error-hover);box-shadow:var(--fb-shadow-md)}.fb-variant-destructive_vQKZ2:active:not(:disabled){background-color:var(--fb-error-dark);box-shadow:none}.fb-variant-outline_1Mb0E{background-color:var(--fb-background);color:var(--fb-text);border-color:var(--fb-border)}.fb-variant-outline_1Mb0E:hover:not(:disabled){background-color:var(--fb-surface-accent);border-color:var(--fb-primary-border);color:var(--fb-primary)}.fb-variant-outline_1Mb0E:active:not(:disabled){background-color:var(--fb-surface-emphasis);border-color:var(--fb-primary);color:var(--fb-primary)}.fb-variant-secondary_-bohS{background-color:var(--fb-neutral-100);color:var(--fb-text);border-color:var(--fb-neutral-200)}.fb-variant-secondary_-bohS:hover:not(:disabled){background-color:var(--fb-neutral-200);border-color:var(--fb-primary-border);color:var(--fb-primary)}.fb-variant-ghost_qml-f{background-color:transparent;color:var(--fb-text);border-color:transparent}.fb-variant-ghost_qml-f:hover:not(:disabled){background-color:var(--fb-surface-accent);color:var(--fb-primary)}.fb-variant-ghost_qml-f:active:not(:disabled){background-color:var(--fb-surface-emphasis);color:var(--fb-primary)}.fb-variant-link_aNj3r{background-color:transparent;color:var(--fb-primary);text-underline-offset:.25rem;border-color:transparent}.fb-variant-link_aNj3r:hover:not(:disabled){text-decoration:underline;color:var(--fb-primary-hover)}.fb-size-default_9qKVU{block-size:var(--fb-size-touch-target);padding-inline:var(--fb-space-md);padding-block:var(--fb-space-sm)}.fb-size-sm_MvjvS{block-size:2.25rem;padding-inline:var(--fb-space-12);border-radius:var(--fb-radius-md);font-size:var(--fb-font-size-xs)}.fb-size-lg_v6n8j{block-size:2.75rem;padding-inline:var(--fb-space-20);border-radius:var(--fb-radius-md);font-size:var(--fb-font-size-md);font-weight:var(--fb-font-weight-semibold)}.fb-size-icon_MYsET{block-size:var(--fb-size-touch-target);inline-size:var(--fb-size-touch-target);padding:0}.fb-badge_Q1h-y{display:inline-flex;align-items:center;border-radius:var(--fb-radius-full);border:var(--fb-border-width) solid transparent;padding-inline:var(--fb-space-10);padding-block:var(--fb-space-3);font-size:var(--fb-font-size-xs);font-weight:600;transition:background-color .2s,color .2s;outline:none}.fb-badge_Q1h-y:focus{outline:2px solid var(--fb-primary);outline-offset:2px}.fb-variant-default_7HL-r{background-color:var(--fb-primary);color:var(--fb-text-on-primary)}.fb-variant-default_7HL-r:hover{background-color:var(--fb-primary-hover)}.fb-variant-secondary_knrZF{background-color:var(--fb-neutral-100);color:var(--fb-text)}.fb-variant-secondary_knrZF:hover{background-color:var(--fb-neutral-200)}.fb-variant-destructive_YUruN{background-color:var(--fb-error);color:var(--fb-text-on-primary)}.fb-variant-destructive_YUruN:hover{background-color:var(--fb-error-hover)}.fb-variant-outline_EHC5j{border-color:var(--fb-border);background-color:transparent;color:var(--fb-text)}.fb-variant-outline_EHC5j:hover{background-color:var(--fb-surface-accent)}.fb-card_Ry9d9{border-radius:var(--fb-radius-lg);border:var(--fb-border-width) solid var(--fb-border);background-color:var(--fb-background);color:var(--fb-text);box-shadow:var(--fb-shadow-md);overflow:hidden}.fb-cardCompact_wGBoD{border-radius:var(--fb-radius-md);box-shadow:var(--fb-shadow-sm)}.fb-cardHeader_exSCY{display:flex;flex-direction:column;gap:var(--fb-space-6);padding:var(--fb-padding-card)}.fb-cardHeaderStructured_UBow4{display:flex;align-items:flex-start;justify-content:space-between;gap:var(--fb-space-200);padding:var(--fb-space-200) var(--fb-space-250);border-bottom:1px solid var(--fb-border);background:var(--fb-surface)}.fb-cardHeaderStructuredCompact_jH94z{padding:var(--fb-space-150) var(--fb-space-200)}.fb-cardHeaderLeft_PnQMU{flex:1;min-width:0}.fb-cardTitleRow_XU5Go{display:flex;align-items:center;gap:var(--fb-space-100);flex-wrap:wrap}.fb-cardTitleText_imcqj{font-size:var(--fb-font-size-sm);font-weight:var(--fb-font-weight-semibold);color:var(--fb-text);line-height:var(--fb-line-height-tight)}.fb-cardDescriptionText_oCoiA{font-size:var(--fb-font-size-xs);color:var(--fb-text-muted);margin-top:var(--fb-space-50);line-height:var(--fb-line-height-normal)}.fb-cardMeta_Ch80f{display:flex;gap:var(--fb-space-200);margin-top:var(--fb-space-100);flex-wrap:wrap}.fb-cardMetaItem_ggGU8{font-size:11px;color:var(--fb-text-muted);display:flex;align-items:center;gap:4px}.fb-cardHeaderRight_rEXk0{display:flex;align-items:center;gap:var(--fb-space-100);flex-shrink:0}.fb-cardBody_lIAav{padding:var(--fb-space-200) var(--fb-space-250)}.fb-cardBodyFlush_tfGIm{padding:0}.fb-cardFooter_BAcjS{display:flex;align-items:center;justify-content:flex-end;gap:var(--fb-space-100);padding:var(--fb-space-150) var(--fb-space-250);border-top:1px solid var(--fb-border);background:var(--fb-surface-accent)}.fb-cardDivider_-i-Kq{height:1px;background:var(--fb-border);margin:0 var(--fb-space-250)}.fb-cardTitle_mLAib{font-size:var(--fb-font-size-md);font-weight:var(--fb-font-weight-semibold);line-height:1;letter-spacing:-.025em;color:var(--fb-text)}.fb-cardDescription_iLv2K{font-size:var(--fb-font-size-xs);color:var(--fb-text-muted)}.fb-cardContent_HJ92K{padding:var(--fb-padding-card);padding-block-start:0}.fb-checkbox_wsic0{block-size:1rem;inline-size:1rem;flex-shrink:0;border-radius:var(--fb-radius-sm);border:var(--fb-border-width) solid var(--fb-primary);cursor:pointer}.fb-checkbox_wsic0:focus-visible{outline:none;box-shadow:0 0 0 2px var(--fb-border)}.fb-checkbox_wsic0:disabled{cursor:not-allowed;opacity:.5}.fb-checkbox_wsic0[data-state=checked]{background-color:var(--fb-primary);color:var(--fb-text-on-primary)}.fb-checkboxIndicator_31Q4N{display:flex;align-items:center;justify-content:center;color:currentColor}.fb-checkboxIndicator_31Q4N svg{block-size:1rem;inline-size:1rem}.fb-dialogOverlay_GSMVm{position:fixed;inset:0;z-index:50;background-color:#000c}.fb-dialogOverlay_GSMVm[data-state=open]{animation:fb-dialogOverlayFadeIn_l-QHK .15s ease-out}.fb-dialogOverlay_GSMVm[data-state=closed]{animation:fb-dialogOverlayFadeOut_DewLt .15s ease-in}.fb-dialogContent_neUay{position:fixed;left:50%;top:50%;z-index:50;display:grid;width:100%;max-width:32rem;translate:-50% -50%;gap:var(--fb-space-sm);border:var(--fb-border-width) solid var(--fb-border);background-color:var(--fb-background);padding:var(--fb-space-12);box-shadow:var(--fb-shadow-lg);transition-duration:.2s}@media(min-width:640px){.fb-dialogContent_neUay{border-radius:var(--fb-radius-lg)}}.fb-dialogContent_neUay[data-state=open]{animation:fb-dialogContentSlideIn_oQPJG .2s ease-out}.fb-dialogContent_neUay[data-state=closed]{animation:fb-dialogContentSlideOut_nNdgq .2s ease-in}.fb-dialogClose_QbWkj{position:absolute;right:var(--fb-space-sm);top:var(--fb-space-sm);border-radius:var(--fb-radius-sm);opacity:.7;transition:opacity .15s}.fb-dialogClose_QbWkj:hover{opacity:1}.fb-dialogClose_QbWkj:focus{outline:none;box-shadow:0 0 0 2px var(--fb-border-focus);opacity:1}.fb-dialogClose_QbWkj:disabled{pointer-events:none}.fb-dialogClose_QbWkj[data-state=open]{background-color:var(--fb-accent);color:var(--fb-text-muted)}.fb-dialogCloseIcon_kK8c6{block-size:1rem;inline-size:1rem}.fb-dialogCloseIcon_kK8c6+span{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.fb-dialogHeader_df1-u{display:flex;flex-direction:column;gap:var(--fb-space-3);text-align:center}@media(min-width:640px){.fb-dialogHeader_df1-u{text-align:start}}.fb-dialogFooter_1vdJe{display:flex;flex-direction:column-reverse;gap:var(--fb-space-sm)}@media(min-width:640px){.fb-dialogFooter_1vdJe{flex-direction:row;justify-content:flex-end;gap:var(--fb-space-sm)}}.fb-dialogTitle_FS7k8{font-size:var(--fb-font-size-lg);font-weight:var(--fb-font-weight-semibold);line-height:1;letter-spacing:-.025em}.fb-dialogDescription_uEgTa{font-size:var(--fb-font-size-sm);color:var(--fb-text-muted)}@keyframes fb-dialogOverlayFadeIn_l-QHK{0%{opacity:0}to{opacity:1}}@keyframes fb-dialogOverlayFadeOut_DewLt{0%{opacity:1}to{opacity:0}}@keyframes fb-dialogContentSlideIn_oQPJG{0%{opacity:0;transform:translate(-50%,-48%) scale(.95)}to{opacity:1;transform:translate(-50%,-50%) scale(1)}}@keyframes fb-dialogContentSlideOut_nNdgq{0%{opacity:1;transform:translate(-50%,-50%) scale(1)}to{opacity:0;transform:translate(-50%,-48%) scale(.95)}}.fb-boxContainer_oXGAN{background-color:var(--fb-background);border-radius:var(--fb-radius-md);padding:var(--fb-space-md)}.fb-GridLayoutContainer_BZvnG{align-items:center;background-color:var(--grid-container-background-color);display:flex;flex-direction:column;justify-content:center;max-width:100vw;min-width:var(--fb-container-max-width)}.fb-GridLayoutContainerWithoutPadding_4kQ4C{padding-block:0}.fb-GridLayoutContainerFullWidth_pYcHf{min-width:100%;max-width:100%}.fb-GridLayout_A2c7k{container-type:inline-size;display:grid;gap:var(--grid-row-gap, var(--fb-space-12)) var(--grid-column-gap, var(--fb-space-md));grid-template-columns:repeat(var(--grid-column-max-columns, 12),1fr);grid-template-rows:auto;margin-left:auto;margin-right:auto;max-width:var(--fb-container-max-width);min-width:var(--fb-container-max-width);width:100%}.fb-GridLayoutFullWidth_NMi3Y{max-width:100%;min-width:100%}.fb-gridLayoutColumn_5TCzp{align-self:start;grid-column:var(--grid-column-start) / var(--grid-column-end)}.fb-formLayoutWrapper_w9jQ-{width:100%;height:100%}.fb-titleSection_qd9UP{display:flex;flex-direction:column;align-items:flex-start;width:100%}.fb-leftColumn_zIdZO,.fb-rightColumn_P0J6U{display:flex;flex-direction:column;height:fit-content;min-height:0}.fb-footerSection_eW4js{display:flex;flex-direction:column;align-items:flex-start;width:100%;margin-top:var(--fb-space-md)}.fb-contentPadding_LMiyE{padding:var(--fb-space-12)}.fb-contentBorder_yYFFn{border:var(--fb-border-width) solid var(--fb-neutral-200);border-radius:var(--fb-radius-md);background-color:var(--fb-surface-accent)}@container (max-width: 768px){.fb-leftColumn_zIdZO,.fb-rightColumn_P0J6U{grid-column:1 / 13!important;margin-bottom:var(--fb-space-12)}.fb-mainContent_9ZW4m{grid-column:1 / 13!important}}@media print{.fb-formLayoutWrapper_w9jQ-{background:var(--fb-background)!important}.fb-contentBorder_yYFFn{border:var(--fb-border-width) solid var(--fb-border)!important;box-shadow:none!important}}.fb-container_p6qC4{margin-block-end:var(--fb-space-sm);padding-block-end:var(--fb-space-md);border-block-end:var(--fb-border-width) solid var(--fb-border)}.fb-disabled_EuvTp{opacity:.5}.fb-prevButtonDisabled_Wj2Qp{opacity:.5;cursor:default}.fb-additionalContent_0tppE{margin-block-start:var(--fb-space-md)}.fb-input_RJ7IM{display:flex;block-size:var(--fb-size-touch-target);inline-size:100%;border-radius:var(--fb-radius-md);border:var(--fb-border-width) solid var(--fb-border);background-color:var(--fb-background);padding-inline:var(--fb-space-12);padding-block:var(--fb-space-sm);font-size:var(--fb-font-size-sm);color:var(--fb-text)}.fb-input_RJ7IM::placeholder{color:var(--fb-text-muted)}.fb-input_RJ7IM::file-selector-button{border:0;background-color:transparent;font-size:var(--fb-font-size-sm);font-weight:500;color:var(--fb-text)}.fb-input_RJ7IM:focus-visible{outline:none;box-shadow:0 0 0 2px var(--fb-border)}.fb-input_RJ7IM:disabled{cursor:not-allowed;opacity:.5}@media(min-width:768px){.fb-input_RJ7IM{font-size:var(--fb-font-size-sm)}}.fb-wrapper_nDU5Q{display:flex;flex-direction:column;gap:var(--fb-space-sm)}.fb-progress_jf4Xd{appearance:none;background-color:var(--fb-primary-subtle);border:none;border-radius:8px;height:16px;overflow:hidden;width:100%}.fb-progress_jf4Xd::-webkit-progress-bar{background-color:transparent}.fb-progress_jf4Xd::-webkit-progress-value{background-color:var(--fb-primary);transition:all .4s cubic-bezier(.4,0,.2,1)}.fb-progress_jf4Xd::-moz-progress-bar{background-color:var(--fb-primary);transition:all .4s cubic-bezier(.4,0,.2,1)}label.fb-progressLabel_3nfSJ{font-size:var(--fb-font-size-sm);font-weight:var(--fb-font-weight-normal);line-height:var(--fb-line-height-normal)}.fb-completionMessage_OyQ9C{display:flex;align-items:center;gap:var(--fb-space-2);font-size:var(--fb-font-size-sm);color:var(--fb-success);animation:fb-fadeIn_iAZjj .3s ease-out}.fb-errorMessage_B8dGO{display:flex;align-items:center;justify-content:space-between;font-size:var(--fb-font-size-sm);color:var(--fb-error)}.fb-errorContent_2TAc5{display:flex;align-items:center;gap:var(--fb-space-2)}.fb-retryButton_0HfjY{display:flex;align-items:center;gap:var(--fb-space-1);font-weight:var(--fb-font-weight-medium);color:var(--fb-error);text-decoration:underline;text-underline-offset:2px;background:none;border:none;cursor:pointer}.fb-retryButton_0HfjY:hover{color:var(--fb-error-hover)}@keyframes fb-fadeIn_iAZjj{0%{opacity:0}to{opacity:1}}.fb-radioGroup_PqpPn{display:grid;gap:var(--fb-space-sm)}.fb-radioGroupItem_r91M1{aspect-ratio:1;block-size:1rem;inline-size:1rem;border-radius:var(--fb-radius-full);border:var(--fb-border-width) solid var(--fb-primary);color:var(--fb-primary);background-color:transparent;outline:none;transition:opacity .15s ease}.fb-radioGroupItem_r91M1:focus-visible{outline:2px solid var(--fb-border-focus);outline-offset:2px}.fb-radioGroupItem_r91M1:disabled{cursor:not-allowed;opacity:.5}.fb-radioIndicator_PFyGX{display:flex;align-items:center;justify-content:center}.fb-radioIndicatorIcon_vSsbY{block-size:.625rem;inline-size:.625rem;fill:currentColor;color:currentColor}.fb-selectTrigger_dj84x{display:flex;align-items:center;justify-content:space-between;block-size:2.5rem;inline-size:100%;border-radius:var(--fb-radius-md);border:var(--fb-border-width) solid var(--fb-border);background-color:var(--fb-background);padding-inline:var(--fb-space-6);padding-block:var(--fb-space-sm);font-size:var(--fb-font-size-sm)}.fb-selectTrigger_dj84x::placeholder{color:var(--fb-text-muted)}.fb-selectTrigger_dj84x:focus{outline:none;box-shadow:0 0 0 2px var(--fb-border-focus)}.fb-selectTrigger_dj84x:disabled{cursor:not-allowed;opacity:.5}.fb-selectTrigger_dj84x>span{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical}.fb-selectTriggerIcon_V8dav{block-size:1rem;inline-size:1rem;opacity:.5}.fb-selectScrollUpButton_c6WZR,.fb-selectScrollDownButton_kmWY4{display:flex;cursor:default;align-items:center;justify-content:center;padding-block:var(--fb-space-2)}.fb-selectScrollIcon_IZbZG{block-size:1rem;inline-size:1rem}.fb-selectContent_uJ-ZX{position:relative;z-index:50;max-block-size:24rem;min-inline-size:8rem;overflow:hidden;border-radius:var(--fb-radius-md);border:var(--fb-border-width) solid var(--fb-border);background-color:var(--fb-background);color:var(--fb-text);box-shadow:var(--fb-shadow-md)}.fb-selectContent_uJ-ZX[data-state=open]{animation:fb-selectContentIn_n9zpE .15s ease-out}.fb-selectContent_uJ-ZX[data-state=closed]{animation:fb-selectContentOut_rxdBe .15s ease-in}.fb-selectContent_uJ-ZX.fb-popper_uKkq9[data-side=bottom]{transform:translateY(.25rem)}.fb-selectContent_uJ-ZX.fb-popper_uKkq9[data-side=left]{transform:translate(-.25rem)}.fb-selectContent_uJ-ZX.fb-popper_uKkq9[data-side=right]{transform:translate(.25rem)}.fb-selectContent_uJ-ZX.fb-popper_uKkq9[data-side=top]{transform:translateY(-.25rem)}.fb-selectViewport_wcTaR{padding:var(--fb-space-2)}.fb-selectViewport_wcTaR.fb-popper_uKkq9{block-size:var(--radix-select-trigger-height);inline-size:100%;min-inline-size:var(--radix-select-trigger-width)}.fb-selectLabel_hb7ig{padding-block:var(--fb-space-3);padding-inline-start:var(--fb-space-md);padding-inline-end:var(--fb-space-sm);font-size:var(--fb-font-size-sm);font-weight:var(--fb-font-weight-semibold)}.fb-selectItem_f23oZ{position:relative;display:flex;inline-size:100%;cursor:default;-webkit-user-select:none;user-select:none;align-items:center;border-radius:var(--fb-radius-sm);padding-block:var(--fb-space-3);padding-inline-start:var(--fb-space-md);padding-inline-end:var(--fb-space-sm);font-size:var(--fb-font-size-sm);outline:none}.fb-selectItem_f23oZ:focus{background-color:var(--fb-accent);color:var(--fb-text)}.fb-selectItem_f23oZ[data-disabled]{pointer-events:none;opacity:.5}.fb-selectItemIndicator_PD-WQ{position:absolute;left:var(--fb-space-sm);display:flex;block-size:.875rem;inline-size:.875rem;align-items:center;justify-content:center}.fb-selectItemIndicatorIcon_kgB1I{block-size:1rem;inline-size:1rem}.fb-selectSeparator_DS7X2{margin-inline:calc(-1 * var(--fb-space-2));margin-block:var(--fb-space-2);block-size:1px;background-color:var(--fb-surface-accent)}@keyframes fb-selectContentIn_n9zpE{0%{opacity:0;transform:scale(.95)}to{opacity:1;transform:scale(1)}}@keyframes fb-selectContentOut_rxdBe{0%{opacity:1;transform:scale(1)}to{opacity:0;transform:scale(.95)}}.fb-sheetOverlay_2nFRz{position:fixed;inset:0;z-index:50;background-color:#000c}.fb-sheetOverlay_2nFRz[data-state=open]{animation:fb-sheetOverlayFadeIn_AS-42 .15s ease-out}.fb-sheetOverlay_2nFRz[data-state=closed]{animation:fb-sheetOverlayFadeOut_Y-hE4 .15s ease-in}.fb-sheetContent_p2PyE{position:fixed;z-index:50;gap:var(--fb-space-sm);background-color:var(--fb-background);padding:var(--fb-space-12);box-shadow:var(--fb-shadow-lg);transition:transform .5s ease-in-out,opacity .5s ease-in-out}.fb-side-top_vnDBA{inset-inline:0;top:0;border-block-end:var(--fb-border-width) solid var(--fb-border)}.fb-side-top_vnDBA[data-state=open]{animation:fb-slideInFromTop_ujZFr .5s ease-in-out}.fb-side-top_vnDBA[data-state=closed]{animation:fb-slideOutToTop_sjz0S .3s ease-in-out}.fb-side-bottom_8Qo-6{inset-inline:0;bottom:0;border-block-start:var(--fb-border-width) solid var(--fb-border)}.fb-side-bottom_8Qo-6[data-state=open]{animation:fb-slideInFromBottom_5kG78 .5s ease-in-out}.fb-side-bottom_8Qo-6[data-state=closed]{animation:fb-slideOutToBottom_03WBw .3s ease-in-out}.fb-side-left_iSyK6{inset-block:0;left:0;block-size:100%;inline-size:75%;border-inline-end:var(--fb-border-width) solid var(--fb-border)}@media(min-width:640px){.fb-side-left_iSyK6{max-inline-size:24rem}}.fb-side-left_iSyK6[data-state=open]{animation:fb-slideInFromLeft_iFt5a .5s ease-in-out}.fb-side-left_iSyK6[data-state=closed]{animation:fb-slideOutToLeft_kRHa5 .3s ease-in-out}.fb-side-right_q-l6-{inset-block:0;right:0;block-size:100%;inline-size:75%;border-inline-start:var(--fb-border-width) solid var(--fb-border)}@media(min-width:640px){.fb-side-right_q-l6-{max-inline-size:24rem}}.fb-side-right_q-l6-[data-state=open]{animation:fb-slideInFromRight_elDbR .5s ease-in-out}.fb-side-right_q-l6-[data-state=closed]{animation:fb-slideOutToRight_HPV1P .3s ease-in-out}.fb-sheetClose_sq3cW{position:absolute;right:var(--fb-space-sm);top:var(--fb-space-sm);border-radius:var(--fb-radius-sm);opacity:.7;transition:opacity .15s}.fb-sheetClose_sq3cW:hover{opacity:1}.fb-sheetClose_sq3cW:focus{outline:none;box-shadow:0 0 0 2px var(--fb-border-focus);opacity:1}.fb-sheetClose_sq3cW:disabled{pointer-events:none}.fb-sheetClose_sq3cW[data-state=open]{background-color:var(--fb-surface)}.fb-sheetCloseIcon_2Z7S1{block-size:1rem;inline-size:1rem}.fb-sheetCloseIcon_2Z7S1+span{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.fb-sheetHeader_w9TtP{display:flex;flex-direction:column;gap:var(--fb-space-sm);text-align:center}@media(min-width:640px){.fb-sheetHeader_w9TtP{text-align:start}}.fb-sheetFooter_XN1p0{display:flex;flex-direction:column-reverse;gap:var(--fb-space-sm)}@media(min-width:640px){.fb-sheetFooter_XN1p0{flex-direction:row;justify-content:flex-end;gap:var(--fb-space-sm)}}.fb-sheetTitle_F6nNH{font-size:var(--fb-font-size-lg);font-weight:var(--fb-font-weight-semibold);color:var(--fb-text)}.fb-sheetDescription_AzWJb{font-size:var(--fb-font-size-sm);color:var(--fb-text-muted)}@keyframes fb-sheetOverlayFadeIn_AS-42{0%{opacity:0}to{opacity:1}}@keyframes fb-sheetOverlayFadeOut_Y-hE4{0%{opacity:1}to{opacity:0}}@keyframes fb-slideInFromTop_ujZFr{0%{transform:translateY(-100%)}to{transform:translateY(0)}}@keyframes fb-slideOutToTop_sjz0S{0%{transform:translateY(0)}to{transform:translateY(-100%)}}@keyframes fb-slideInFromBottom_5kG78{0%{transform:translateY(100%)}to{transform:translateY(0)}}@keyframes fb-slideOutToBottom_03WBw{0%{transform:translateY(0)}to{transform:translateY(100%)}}@keyframes fb-slideInFromLeft_iFt5a{0%{transform:translate(-100%)}to{transform:translate(0)}}@keyframes fb-slideOutToLeft_kRHa5{0%{transform:translate(0)}to{transform:translate(-100%)}}@keyframes fb-slideInFromRight_elDbR{0%{transform:translate(100%)}to{transform:translate(0)}}@keyframes fb-slideOutToRight_HPV1P{0%{transform:translate(0)}to{transform:translate(100%)}}.fb-textarea_p4K5i{display:flex;min-block-size:5rem;inline-size:100%;border-radius:var(--fb-radius-md);border:var(--fb-border-width) solid var(--fb-border);background-color:var(--fb-background);padding-inline:var(--fb-space-12);padding-block:var(--fb-space-sm);font-size:var(--fb-font-size-sm);color:var(--fb-text)}.fb-textarea_p4K5i::placeholder{color:var(--fb-text-muted)}.fb-textarea_p4K5i:focus-visible{outline:none;box-shadow:0 0 0 2px var(--fb-border)}.fb-textarea_p4K5i:disabled{cursor:not-allowed;opacity:.5}.fb-vcContainer_oHl8H{cursor:text;display:flex;gap:16px;pointer-events:none;position:relative}.fb-vcInput_Nb8NL{inset:0;pointer-events:none;position:absolute}.fb-vcInput_Nb8NL input{background:transparent;block-size:100%;border-color:transparent;caret-color:transparent;color:transparent;font-family:inherit;font-size:18px;font-weight:400;inline-size:100%;letter-spacing:80px;line-height:28px;outline:transparent solid 2px;pointer-events:all;text-align:left;-webkit-user-select:none;user-select:none}.fb-vcInput_Nb8NL input::selection{background-color:transparent}.fb-vcGroup_5z3tY{align-items:center;display:flex;gap:16px;inline-size:100%}.fb-vcDash_R8D18{align-items:center;block-size:48px;display:flex;font-family:inherit;font-size:18px;font-style:normal;font-weight:400;justify-content:center;line-height:1.4}.fb-vcSlot_AZfrj{align-items:center;background:#fff;block-size:48px;border:var(--fb-border-width) solid var(--fb-border);border-radius:8px;color:var(--fb-text);display:flex;flex-basis:12px;flex-grow:1;font-family:inherit;font-size:16px;font-style:normal;font-weight:400;justify-content:center;line-height:1.4;outline:transparent solid 2px}.fb-vcSlotActive_1Zqta{border-color:var(--fb-border-focus);outline-color:var(--fb-border-focus)}.fb-vcCaret_pQ-uD{align-items:center;animation-duration:1.2s;animation-iteration-count:infinite;animation-name:fb-caret-blink_jfhv0;animation-timing-function:ease-out;display:flex;pointer-events:none}.fb-vcCaret_pQ-uD>div{background-color:var(--fb-text);height:18px;width:1px}@keyframes fb-caret-blink_jfhv0{0%,70%,to{opacity:1}20%,50%{opacity:0}}.fb-dialogContent_MQjVY{max-inline-size:28rem}.fb-iconRow_zoQXV{display:flex;align-items:center;gap:var(--fb-space-12)}.fb-iconCircle_UvpAZ{border-radius:var(--fb-radius-full);background-color:var(--fb-surface);padding:var(--fb-space-sm)}.fb-descriptionSpaced_AmH9W{margin-block-start:var(--fb-space-2)}.fb-buttonRow_lfgxL{display:flex;justify-content:flex-end;gap:var(--fb-space-sm);padding-block-start:var(--fb-space-md)}.fb-minWidthButton_maffF{min-inline-size:6rem}.fb-iconWarning_OcS7O{width:1.25rem;height:1.25rem;color:var(--fb-warning)}.fb-iconInfo_xQhjd{width:1.25rem;height:1.25rem;color:var(--fb-info)}.fb-dialogContent_hdJb3{max-inline-size:28rem}.fb-headerRow_dowgv{display:flex;align-items:center;gap:var(--fb-space-sm)}.fb-iconSuccess_787to{color:var(--fb-success)}.fb-iconMail_yICFX{color:var(--fb-info)}.fb-successButtonRow_LilmE{display:flex;justify-content:center;padding-block-start:var(--fb-space-md)}.fb-minWidthButton_Y-HfD{min-inline-size:8rem}.fb-formContent_DRlgi{display:flex;flex-direction:column;gap:var(--fb-space-md)}.fb-codeSection_vJqzI{display:flex;flex-direction:column;gap:var(--fb-space-sm)}.fb-codeLabel_PvgkB{font-size:var(--fb-font-size-sm);font-weight:500}.fb-codeCenter_j2TST{display:flex;justify-content:center}.fb-resendText_fsAeq,.fb-blockedText_ZGaBs{text-align:center;font-size:var(--fb-font-size-sm);color:var(--fb-text-muted)}.fb-resendLink_dRMub{padding:0;block-size:auto;color:var(--fb-info)}.fb-resendLinkDefault_sVy7D{padding:0;block-size:auto}.fb-footerButtonRow_dFkH0{display:flex;justify-content:flex-end;gap:var(--fb-space-sm);padding-block-start:var(--fb-space-md)}.fb-iconSm_JkMbO{width:1rem;height:1rem}.fb-iconMd_y--1E{width:1.25rem;height:1.25rem}.fb-buttonRow_IpMPI{display:flex;flex-wrap:wrap;gap:var(--fb-space-sm);justify-content:flex-end}.fb-minWidthButton_Ggq-E{min-inline-size:4rem}.fb-toastContainer_iL55M{position:fixed;inset-block-start:var(--fb-space-md);inset-inline-end:var(--fb-space-md);z-index:50;max-inline-size:24rem}.fb-toastCard_EslQ-{background-color:var(--fb-background);border:var(--fb-border-width) solid var(--fb-border);border-radius:var(--fb-radius-lg);box-shadow:var(--fb-shadow-lg);padding:var(--fb-space-md);display:flex;flex-direction:column;gap:var(--fb-space-12)}.fb-toastTitle_W3izr{font-weight:var(--fb-font-weight-semibold)}.fb-toastContent_h6A9y{font-size:var(--fb-font-size-sm);color:var(--fb-text-muted);margin-block-start:var(--fb-space-2)}.fb-sheetContent_Ccs86{inline-size:400px}@media(min-width:640px){.fb-sheetContent_Ccs86{inline-size:540px}}.fb-sheetBody_XqkvA{flex:1;padding-block-end:var(--fb-space-md);display:flex;flex-direction:column;gap:var(--fb-space-md);margin-block-start:var(--fb-space-md)}.fb-sheetText_yRGd-{font-size:var(--fb-font-size-sm)}.fb-size-small_YcmVE{max-inline-size:24rem}.fb-size-medium_auCiA{max-inline-size:28rem}.fb-size-large_8EHM7{max-inline-size:42rem}.fb-modalButtonRow_c7V4P{display:flex;justify-content:flex-end;gap:var(--fb-space-sm);padding-block-start:var(--fb-space-md)}.fb-errorFallback_CNx1M{padding:var(--fb-space-sm);border:var(--fb-border-width) solid var(--fb-error-translucent);background-color:var(--fb-error-surface);color:var(--fb-error);border-radius:var(--fb-radius-md)}.fb-errorDetail_Nvh9V{font-size:var(--fb-font-size-xs);margin-block-start:var(--fb-space-2)}.fb-alertList_d0DxG{display:flex;flex-direction:column;gap:var(--fb-space-sm)}.fb-displayWrapper_VYcQC{display:flex;flex-direction:column;gap:var(--fb-space-md)}.fb-emptyValue_baQFk{color:var(--fb-text-muted);font-style:italic}.fb-valueText_JCRsN{color:var(--fb-text)}.fb-fieldWrapper_rnKUQ{display:flex;flex-direction:column;gap:var(--fb-space-2)}.fb-section_5kbZU{margin-block-end:var(--fb-space-lg)}.fb-sectionHeader_aVzgk{display:flex;justify-content:space-between;align-items:center;margin-block-end:var(--fb-space-md)}.fb-cancelButton_PyIZH{font-size:var(--fb-font-size-sm);color:var(--fb-text-muted);display:flex;align-items:center;gap:var(--fb-space-2);background:none;border:none;cursor:pointer}.fb-editButton_dbSFX{font-size:var(--fb-font-size-sm);color:var(--fb-info);display:flex;align-items:center;gap:var(--fb-space-2);background:none;border:none;cursor:pointer}.fb-sectionContent_wTlW-{display:flex;flex-direction:column;gap:var(--fb-space-md)}.fb-saveButtonsWrapper_VGuwW{display:flex;padding-block-start:var(--fb-space-md)}.fb-iconSm_yLpHW{width:1rem;height:1rem}.fb-stepContent_EU1uV{display:flex;flex-direction:column;gap:var(--fb-space-lg)}.fb-loaderWrapper_00phH{margin-block-end:var(--fb-space-md)}.fb-footer_r0kdp{margin-block-start:var(--fb-space-lg)}@keyframes fb-spin_aHSB3{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes fb-pulse_FcPkd{0%,to{opacity:1}50%{opacity:.5}}.fb-card_jvOrv{border-color:color-mix(in srgb,var(--fb-primary) 20%,transparent);background-color:color-mix(in srgb,var(--fb-primary) 5%,transparent)}.fb-cardContent_Cnf5t{padding:var(--fb-space-md)}.fb-contentRow_-lops{display:flex;align-items:center;gap:var(--fb-space-12)}.fb-spinner_SkwMR{inline-size:1rem;block-size:1rem;animation:fb-spin_aHSB3 1s linear infinite;color:var(--fb-primary)}.fb-textContent_t3X2X{flex:1}.fb-title_-fTQX{font-size:var(--fb-font-size-sm);font-weight:500;color:var(--fb-primary)}.fb-subtitle_wyptE{font-size:var(--fb-font-size-xs);color:var(--fb-text-muted);margin-block-start:var(--fb-space-2)}.fb-badgeList_xtoNn{display:flex;flex-wrap:wrap;gap:var(--fb-space-2)}.fb-badgeText_TZRdG{font-size:var(--fb-font-size-xs)}.fb-progressSection_XcPgJ{margin-block-start:var(--fb-space-12)}.fb-progressTrack_BUoRx{inline-size:100%;background-color:var(--fb-surface);border-radius:var(--fb-radius-full);block-size:.25rem}.fb-progressBar_5MELx{background-color:var(--fb-primary);block-size:.25rem;border-radius:var(--fb-radius-full);transition:width .3s;animation:fb-pulse_FcPkd 2s ease-in-out infinite}.fb-errorState_khSRW{padding:var(--fb-space-md);border:var(--fb-border-width) solid var(--fb-error-translucent);background-color:var(--fb-error-surface);color:var(--fb-error);border-radius:var(--fb-radius-md)}.fb-errorHeading_dGdN2{font-weight:500;margin-block-end:var(--fb-space-sm)}.fb-loadingState_Pdhds{padding:var(--fb-space-md);text-align:center;color:var(--fb-text-muted)}.fb-loadingPulse_QIw08{animation:fb-pulse_7Ml6n 2s ease-in-out infinite}@keyframes fb-pulse_7Ml6n{0%,to{opacity:1}50%{opacity:.5}}.fb-formLayout_JzC8E{margin-block:var(--fb-space-xl)}.fb-stepListWrapper_RTLUk{display:flex;flex-direction:column;font-family:inherit;gap:var(--fb-space-12)}.fb-stepList_b7ucJ .fb-stepListItem_G8Nh4{color:var(--fb-text-muted);display:flex;flex-direction:row;gap:var(--fb-space-6);padding-bottom:var(--fb-space-2)}.fb-stepList_b7ucJ .fb-stepListItem_G8Nh4 .fb-leftContainer_o-gBE{align-items:center;display:flex;flex-direction:column;gap:var(--fb-space-xs);padding-top:var(--fb-space-2)}.fb-stepList_b7ucJ .fb-stepListItem_G8Nh4 .fb-leftContainer_o-gBE .fb-circle_3oinV{align-items:center;background-color:transparent;border:var(--fb-border-width) solid var(--fb-border);border-radius:var(--fb-radius-full);color:var(--fb-background);display:flex;justify-content:center;min-block-size:calc(1.25rem - 2 * var(--fb-border-width));min-inline-size:calc(1.25rem - 2 * var(--fb-border-width))}.fb-stepList_b7ucJ .fb-stepListItem_G8Nh4 .fb-leftContainer_o-gBE .fb-circle_3oinV .fb-currentDot_0e9gN{background-color:var(--fb-primary);border-radius:var(--fb-radius-full);height:14px;width:14px}.fb-stepList_b7ucJ .fb-stepListItem_G8Nh4 .fb-leftContainer_o-gBE .fb-connector_bDvRA{background-color:var(--fb-text-muted);block-size:100%;inline-size:1.5px;min-block-size:36px}.fb-stepList_b7ucJ .fb-stepListItem_G8Nh4 .fb-content_u43H4{align-items:start;border-radius:var(--fb-radius-md);color:var(--fb-text-muted);display:flex;flex-direction:row;inline-size:100%;margin-block-end:var(--fb-space-6);padding:var(--fb-space-2) var(--fb-space-6);text-wrap:balance}.fb-stepList_b7ucJ .fb-stepListItem_G8Nh4 .fb-content_u43H4 .fb-stepNumber_c2YRs{color:var(--fb-text-muted);font-size:var(--fb-font-size-sm);font-weight:var(--fb-font-weight-semibold);line-height:var(--fb-line-height-tight)}.fb-stepList_b7ucJ .fb-stepListItem_G8Nh4 .fb-content_u43H4 .fb-stepTitle_w5Be8{font-size:var(--fb-font-size-sm);line-height:var(--fb-line-height-normal)}.fb-stepList_b7ucJ .fb-stepListItem_G8Nh4 .fb-content_u43H4 .fb-stepLink_sqt2-{color:var(--fb-primary);cursor:pointer;font-weight:var(--fb-font-weight-normal);line-height:var(--fb-line-height-normal);text-decoration:underline}.fb-stepList_b7ucJ .fb-stepListItem_G8Nh4 .fb-content_u43H4 .fb-stepLink_sqt2-:hover{color:var(--fb-primary-hover);text-decoration:underline}.fb-stepList_b7ucJ .fb-stepListItem_G8Nh4 .fb-content_u43H4 .fb-stepLink_sqt2-:focus{outline-offset:2px;outline-style:solid;outline-width:2px;text-decoration:underline}.fb-stepList_b7ucJ .fb-stepListItem_G8Nh4 .fb-iconRightContainer_DCjrS{align-self:center;block-size:1.25rem;color:var(--fb-primary);display:flex;inline-size:1.25rem;margin-inline-start:auto}.fb-stepList_b7ucJ .fb-stepListItem_G8Nh4.fb-completed_F-mOG .fb-leftContainer_o-gBE .fb-circle_3oinV{background-color:var(--fb-primary);border-color:var(--fb-primary);border-style:solid;border-width:var(--fb-border-width)}.fb-stepList_b7ucJ .fb-stepListItem_G8Nh4.fb-completed_F-mOG .fb-leftContainer_o-gBE .fb-connector_bDvRA{background-color:var(--fb-primary)}.fb-stepList_b7ucJ .fb-stepListItem_G8Nh4.fb-completed_F-mOG .fb-content_u43H4,.fb-stepList_b7ucJ .fb-stepListItem_G8Nh4.fb-completed_F-mOG .fb-content_u43H4 .fb-stepNumber_c2YRs{color:var(--fb-text)}.fb-stepList_b7ucJ .fb-stepListItem_G8Nh4.fb-current_QAO1e .fb-leftContainer_o-gBE .fb-circle_3oinV{border-color:var(--fb-primary);border-style:solid;border-width:var(--fb-border-width)}.fb-stepList_b7ucJ .fb-stepListItem_G8Nh4.fb-current_QAO1e .fb-content_u43H4{background-color:var(--fb-background);color:var(--fb-text)}.fb-stepList_b7ucJ .fb-stepListItem_G8Nh4.fb-current_QAO1e .fb-content_u43H4 .fb-stepNumber_c2YRs{color:var(--fb-text)}.fb-stepList_b7ucJ .fb-stepListItem_G8Nh4.fb-inactive_tYqvV .fb-content_u43H4{color:var(--fb-text-muted)}
2190
3
 
2191
4
  }