@volvo-cars/css 1.37.0 → 1.37.1
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/dist/{chunk-Z3YSHYZ7.js → chunk-PCJ2MIMY.js} +2 -2
- package/dist/{chunk-Z3YSHYZ7.js.map → chunk-PCJ2MIMY.js.map} +1 -1
- package/dist/css/v1/styles.ebaa4a54.css +1 -0
- package/dist/imports.json +1 -1
- package/dist/links.cjs +1 -1
- package/dist/links.cjs.map +1 -1
- package/dist/links.js +1 -1
- package/dist/links.server.cjs +1 -1
- package/dist/links.server.cjs.map +1 -1
- package/dist/links.server.js +1 -1
- package/dist/llm/meta.md +32 -31
- package/dist/meta.json +654 -652
- package/dist/styles.css +1 -1
- package/dist/styles.d.ts +2 -0
- package/dist/styles_all-media.css +1 -1
- package/dist/tokens.d.ts +101 -101
- package/package.json +3 -3
- package/dist/css/v1/styles.1d8be33a.css +0 -1
package/dist/tokens.d.ts
CHANGED
|
@@ -1,71 +1,86 @@
|
|
|
1
1
|
export interface Tokens {
|
|
2
|
-
readonly transitionDefault: 'var(--v-transition-default)';
|
|
3
|
-
readonly transitionMicro: 'var(--v-transition-micro)';
|
|
4
|
-
readonly transitionNotable: 'var(--v-transition-notable)';
|
|
5
2
|
/**
|
|
6
|
-
*
|
|
3
|
+
* Always black regardless of colour mode. */ readonly colorAlwaysBlack: 'var(--v-color-always-black)';
|
|
7
4
|
/**
|
|
8
|
-
*
|
|
5
|
+
* Always white regardless of color mode. */ readonly colorAlwaysWhite: 'var(--v-color-always-white)';
|
|
9
6
|
/**
|
|
10
|
-
*
|
|
7
|
+
* Use as a background color to indicate informational messages. */ readonly colorBackgroundFeedbackGray: 'var(--v-color-background-feedback-gray)';
|
|
11
8
|
/**
|
|
12
|
-
*
|
|
9
|
+
* Use as a background color to highlight successful and positive states. */ readonly colorBackgroundFeedbackGreen: 'var(--v-color-background-feedback-green)';
|
|
13
10
|
/**
|
|
14
|
-
*
|
|
11
|
+
* Use as a background color to highlight warnings, invalid or missing data, and states that require caution. */ readonly colorBackgroundFeedbackOrange: 'var(--v-color-background-feedback-orange)';
|
|
15
12
|
/**
|
|
16
|
-
*
|
|
13
|
+
* Use as a background color to highlight errors, invalid data, and destructive states. */ readonly colorBackgroundFeedbackRed: 'var(--v-color-background-feedback-red)';
|
|
17
14
|
/**
|
|
18
|
-
*
|
|
15
|
+
* Use as a primary background color. */ readonly colorBackgroundPrimary: 'var(--v-color-background-primary)';
|
|
19
16
|
/**
|
|
20
|
-
*
|
|
17
|
+
* Use as a secondary background color for elevated sections. */ readonly colorBackgroundSecondary: 'var(--v-color-background-secondary)';
|
|
21
18
|
/**
|
|
22
|
-
*
|
|
19
|
+
* For use in links and as a border in emphasized selected states. */ readonly colorForegroundAccentBlue: 'var(--v-color-foreground-accent-blue)';
|
|
23
20
|
/**
|
|
24
|
-
*
|
|
21
|
+
* Use as a foreground or border color to highlight successful states and positive actions. */ readonly colorForegroundFeedbackGreen: 'var(--v-color-foreground-feedback-green)';
|
|
25
22
|
/**
|
|
26
|
-
*
|
|
23
|
+
* Use as a foreground or border color to highlight warnings, invalid or missing data, and actions that require caution. */ readonly colorForegroundFeedbackOrange: 'var(--v-color-foreground-feedback-orange)';
|
|
27
24
|
/**
|
|
28
|
-
*
|
|
29
|
-
* 375 - 24px
|
|
30
|
-
* 768 - 24px
|
|
31
|
-
* 1280 - 28px
|
|
32
|
-
* 1680 - 128px */ readonly spacePagemargin: 'var(--v-space-pagemargin)';
|
|
25
|
+
* Use as a foreground or border color to highlight errors, invalid data, and destructive actions. */ readonly colorForegroundFeedbackRed: 'var(--v-color-foreground-feedback-red)';
|
|
33
26
|
/**
|
|
34
|
-
* The
|
|
27
|
+
* The inverse of the primary foreground color. For use on filled surfaces. */ readonly colorForegroundInverted: 'var(--v-color-foreground-inverted)';
|
|
35
28
|
/**
|
|
36
|
-
*
|
|
29
|
+
* Use for primary text, icons and borders. */ readonly colorForegroundPrimary: 'var(--v-color-foreground-primary)';
|
|
37
30
|
/**
|
|
38
|
-
*
|
|
31
|
+
* Use for secondary text, icons and borders. */ readonly colorForegroundSecondary: 'var(--v-color-foreground-secondary)';
|
|
39
32
|
/**
|
|
40
|
-
* The
|
|
33
|
+
* The lightest possible foreground color acceptable for UI fills. Should not be used for body text. */ readonly colorForegroundTertiary: 'var(--v-color-foreground-tertiary)';
|
|
41
34
|
/**
|
|
42
|
-
*
|
|
35
|
+
* Use for strokes or dividers to visually group or separate elements. */ readonly colorOrnamentPrimary: 'var(--v-color-ornament-primary)';
|
|
43
36
|
/**
|
|
44
|
-
*
|
|
37
|
+
* Used as a backdrop that usually sits behind a Side sheet or Dialog component. */ readonly colorOrnamentScrim: 'var(--v-color-ornament-scrim)';
|
|
45
38
|
/**
|
|
46
|
-
*
|
|
39
|
+
* Use for state layers with foreground/accent/blue. */ readonly colorStateAccentBlueMedium: 'var(--v-color-state-accent-blue-medium)';
|
|
47
40
|
/**
|
|
48
|
-
*
|
|
41
|
+
* Use for state layers with foreground/accent/blue. */ readonly colorStateAccentBlueStrong: 'var(--v-color-state-accent-blue-strong)';
|
|
49
42
|
/**
|
|
50
|
-
*
|
|
43
|
+
* Use for state layers with foreground/accent/blue. */ readonly colorStateAccentBlueSubtle: 'var(--v-color-state-accent-blue-subtle)';
|
|
51
44
|
/**
|
|
52
|
-
*
|
|
45
|
+
* Use for state layers with an always/black foreground color. */ readonly colorStateAlwaysBlackMedium: 'var(--v-color-state-always-black-medium)';
|
|
53
46
|
/**
|
|
54
|
-
*
|
|
55
|
-
* https://baymard.com/blog/line-length-readability */ readonly sizeContentmax: 'var(--v-size-contentmax)';
|
|
56
|
-
readonly radiusSm: 'var(--v-radius-sm)';
|
|
57
|
-
readonly radiusMd: 'var(--v-radius-md)';
|
|
58
|
-
readonly radiusLg: 'var(--v-radius-lg)';
|
|
59
|
-
readonly shapeDefault: 'var(--v-shape-default)';
|
|
60
|
-
readonly shapeEmphasis: 'var(--v-shape-emphasis)';
|
|
61
|
-
readonly radiusFull: 'var(--v-radius-full)';
|
|
62
|
-
readonly indexSpinner: 'var(--v-index-spinner)';
|
|
63
|
-
readonly indexOverlay: 'var(--v-index-overlay)';
|
|
64
|
-
readonly indexNavigation: 'var(--v-index-navigation)';
|
|
65
|
-
readonly indexDefault: 'var(--v-index-default)';
|
|
66
|
-
readonly indexDeep: 'var(--v-index-deep)';
|
|
47
|
+
* Use for state layers with an always/black foreground color. */ readonly colorStateAlwaysBlackStrong: 'var(--v-color-state-always-black-strong)';
|
|
67
48
|
/**
|
|
68
|
-
*
|
|
49
|
+
* Use for state layers with an always/black foreground color. */ readonly colorStateAlwaysBlackSubtle: 'var(--v-color-state-always-black-subtle)';
|
|
50
|
+
/**
|
|
51
|
+
* Use for state layers with an always/white foreground color. */ readonly colorStateAlwaysWhiteMedium: 'var(--v-color-state-always-white-medium)';
|
|
52
|
+
/**
|
|
53
|
+
* Use for state layers with an always/white foreground color. */ readonly colorStateAlwaysWhiteStrong: 'var(--v-color-state-always-white-strong)';
|
|
54
|
+
/**
|
|
55
|
+
* Use for state layers with an always/white foreground color. */ readonly colorStateAlwaysWhiteSubtle: 'var(--v-color-state-always-white-subtle)';
|
|
56
|
+
/**
|
|
57
|
+
* Use for state layers with foreground/feedback/red. */ readonly colorStateFeedbackRedMedium: 'var(--v-color-state-feedback-red-medium)';
|
|
58
|
+
/**
|
|
59
|
+
* Use for state layers with foreground/feedback/red. */ readonly colorStateFeedbackRedStrong: 'var(--v-color-state-feedback-red-strong)';
|
|
60
|
+
/**
|
|
61
|
+
* Use for state layers with foreground/feedback/red. */ readonly colorStateFeedbackRedSubtle: 'var(--v-color-state-feedback-red-subtle)';
|
|
62
|
+
/**
|
|
63
|
+
* Use for state layers with foreground/inverted. */ readonly colorStateInvertedMedium: 'var(--v-color-state-inverted-medium)';
|
|
64
|
+
/**
|
|
65
|
+
* Use for state layers with foreground/inverted. */ readonly colorStateInvertedStrong: 'var(--v-color-state-inverted-strong)';
|
|
66
|
+
/**
|
|
67
|
+
* Use for state layers with foreground/inverted. */ readonly colorStateInvertedSubtle: 'var(--v-color-state-inverted-subtle)';
|
|
68
|
+
/**
|
|
69
|
+
* Use for state layers with foreground/primary. */ readonly colorStatePrimaryMedium: 'var(--v-color-state-primary-medium)';
|
|
70
|
+
/**
|
|
71
|
+
* Use for state layers with foreground/primary. */ readonly colorStatePrimaryStrong: 'var(--v-color-state-primary-strong)';
|
|
72
|
+
/**
|
|
73
|
+
* Use for state layers with foreground/primary. */ readonly colorStatePrimarySubtle: 'var(--v-color-state-primary-subtle)';
|
|
74
|
+
/**
|
|
75
|
+
* Used as an emphasized surface fill for UI elements like buttons and form controls. */ readonly colorSurfaceAccentBlue: 'var(--v-color-surface-accent-blue)';
|
|
76
|
+
/**
|
|
77
|
+
* Used as a surface fill for UI elements like buttons and form controls to signify positive actions. Combine with Always White foreground color. */ readonly colorSurfaceFeedbackGreen: 'var(--v-color-surface-feedback-green)';
|
|
78
|
+
/**
|
|
79
|
+
* [Deprecated] */ readonly colorSurfaceFeedbackOrange: 'var(--v-color-surface-feedback-orange)';
|
|
80
|
+
/**
|
|
81
|
+
* Used as a surface fill for UI elements like buttons and form controls to signify destructive actions. Combine with Always White foreground color. */ readonly colorSurfaceFeedbackRed: 'var(--v-color-surface-feedback-red)';
|
|
82
|
+
/**
|
|
83
|
+
* Used as a surface fill for UI elements like buttons and form controls. Combine with Foreground / Inverted foreground color. */ readonly colorSurfaceNeutral: 'var(--v-color-surface-neutral)';
|
|
69
84
|
readonly fontSansFamily: 'var(--v-font-sans-family)';
|
|
70
85
|
readonly fontBroadFamily: 'var(--v-font-broad-family)';
|
|
71
86
|
readonly fontMonoFamily: 'var(--v-font-mono-family)';
|
|
@@ -129,87 +144,72 @@ export interface Tokens {
|
|
|
129
144
|
readonly fontStatementSignatureSize: 'var(--v-font-statement-signature-size)';
|
|
130
145
|
readonly fontStatementSignature: 'var(--v-font-statement-signature)';
|
|
131
146
|
/**
|
|
132
|
-
*
|
|
133
|
-
/**
|
|
134
|
-
* Always white regardless of color mode. */ readonly colorAlwaysWhite: 'var(--v-color-always-white)';
|
|
135
|
-
/**
|
|
136
|
-
* Use as a background color to indicate informational messages. */ readonly colorBackgroundFeedbackGray: 'var(--v-color-background-feedback-gray)';
|
|
137
|
-
/**
|
|
138
|
-
* Use as a background color to highlight successful and positive states. */ readonly colorBackgroundFeedbackGreen: 'var(--v-color-background-feedback-green)';
|
|
139
|
-
/**
|
|
140
|
-
* Use as a background color to highlight warnings, invalid or missing data, and states that require caution. */ readonly colorBackgroundFeedbackOrange: 'var(--v-color-background-feedback-orange)';
|
|
141
|
-
/**
|
|
142
|
-
* Use as a background color to highlight errors, invalid data, and destructive states. */ readonly colorBackgroundFeedbackRed: 'var(--v-color-background-feedback-red)';
|
|
143
|
-
/**
|
|
144
|
-
* Use as a primary background color. */ readonly colorBackgroundPrimary: 'var(--v-color-background-primary)';
|
|
145
|
-
/**
|
|
146
|
-
* Use as a secondary background color for elevated sections. */ readonly colorBackgroundSecondary: 'var(--v-color-background-secondary)';
|
|
147
|
-
/**
|
|
148
|
-
* For use in links and as a border in emphasized selected states. */ readonly colorForegroundAccentBlue: 'var(--v-color-foreground-accent-blue)';
|
|
149
|
-
/**
|
|
150
|
-
* Use as a foreground or border color to highlight successful states and positive actions. */ readonly colorForegroundFeedbackGreen: 'var(--v-color-foreground-feedback-green)';
|
|
151
|
-
/**
|
|
152
|
-
* Use as a foreground or border color to highlight warnings, invalid or missing data, and actions that require caution. */ readonly colorForegroundFeedbackOrange: 'var(--v-color-foreground-feedback-orange)';
|
|
153
|
-
/**
|
|
154
|
-
* Use as a foreground or border color to highlight errors, invalid data, and destructive actions. */ readonly colorForegroundFeedbackRed: 'var(--v-color-foreground-feedback-red)';
|
|
155
|
-
/**
|
|
156
|
-
* The inverse of the primary foreground color. For use on filled surfaces. */ readonly colorForegroundInverted: 'var(--v-color-foreground-inverted)';
|
|
157
|
-
/**
|
|
158
|
-
* Use for primary text, icons and borders. */ readonly colorForegroundPrimary: 'var(--v-color-foreground-primary)';
|
|
159
|
-
/**
|
|
160
|
-
* Use for secondary text, icons and borders. */ readonly colorForegroundSecondary: 'var(--v-color-foreground-secondary)';
|
|
161
|
-
/**
|
|
162
|
-
* The lightest possible foreground color acceptable for UI fills. Should not be used for body text. */ readonly colorForegroundTertiary: 'var(--v-color-foreground-tertiary)';
|
|
163
|
-
/**
|
|
164
|
-
* Use for strokes or dividers to visually group or separate elements. */ readonly colorOrnamentPrimary: 'var(--v-color-ornament-primary)';
|
|
165
|
-
/**
|
|
166
|
-
* Used as a backdrop that usually sits behind a Side sheet or Dialog component. */ readonly colorOrnamentScrim: 'var(--v-color-ornament-scrim)';
|
|
147
|
+
* Fixed 2px spacing */ readonly space2: 'var(--v-space-2)';
|
|
167
148
|
/**
|
|
168
|
-
*
|
|
149
|
+
* Fixed 4px spacing */ readonly space4: 'var(--v-space-4)';
|
|
169
150
|
/**
|
|
170
|
-
*
|
|
151
|
+
* Fixed 8px spacing */ readonly space8: 'var(--v-space-8)';
|
|
171
152
|
/**
|
|
172
|
-
*
|
|
153
|
+
* Fixed 16px spacing */ readonly space16: 'var(--v-space-16)';
|
|
173
154
|
/**
|
|
174
|
-
*
|
|
155
|
+
* Fixed 24px spacing */ readonly space24: 'var(--v-space-24)';
|
|
175
156
|
/**
|
|
176
|
-
*
|
|
157
|
+
* Fixed 32px spacing */ readonly space32: 'var(--v-space-32)';
|
|
177
158
|
/**
|
|
178
|
-
*
|
|
159
|
+
* Fixed 48px spacing */ readonly space48: 'var(--v-space-48)';
|
|
179
160
|
/**
|
|
180
|
-
*
|
|
161
|
+
* Fixed 64px spacing */ readonly space64: 'var(--v-space-64)';
|
|
181
162
|
/**
|
|
182
|
-
*
|
|
163
|
+
* Fluid spacing between 64px-96px. */ readonly spaceL: 'var(--v-space-l)';
|
|
183
164
|
/**
|
|
184
|
-
*
|
|
165
|
+
* Fluid spacing between 48px-64px. */ readonly spaceM: 'var(--v-space-m)';
|
|
185
166
|
/**
|
|
186
|
-
*
|
|
167
|
+
* Fluid spacing between 32px-48px. */ readonly spaceS: 'var(--v-space-s)';
|
|
187
168
|
/**
|
|
188
|
-
*
|
|
169
|
+
* The fluid outer horizontal margins of the main page container.
|
|
170
|
+
* 375 - 24px
|
|
171
|
+
* 768 - 24px
|
|
172
|
+
* 1280 - 28px
|
|
173
|
+
* 1680 - 128px */ readonly spacePagemargin: 'var(--v-space-pagemargin)';
|
|
189
174
|
/**
|
|
190
|
-
*
|
|
175
|
+
* The horizontal gap between grid columns. Fluid between 16px-24px. */ readonly spaceGutter: 'var(--v-space-gutter)';
|
|
191
176
|
/**
|
|
192
|
-
*
|
|
177
|
+
* The width of a single grid column. */ readonly sizeGridColumn: 'var(--v-size-grid-column)';
|
|
193
178
|
/**
|
|
194
|
-
*
|
|
179
|
+
* The maximum width of the 12 column grid. */ readonly sizeGridMaxwidth: 'var(--v-size-grid-maxwidth)';
|
|
195
180
|
/**
|
|
196
|
-
*
|
|
181
|
+
* The maximum width a page is allowed to grow to. */ readonly sizePagemax: 'var(--v-size-pagemax)';
|
|
197
182
|
/**
|
|
198
|
-
*
|
|
183
|
+
* Width based on the colspan of the grid for the current viewport size (4 / 6 / 4) */ readonly sizeGridXs: 'var(--v-size-grid-xs)';
|
|
199
184
|
/**
|
|
200
|
-
*
|
|
185
|
+
* Width based on the colspan of the grid for the current viewport size (6 / 8 / 6) */ readonly sizeGridSm: 'var(--v-size-grid-sm)';
|
|
201
186
|
/**
|
|
202
|
-
*
|
|
187
|
+
* Width based on the colspan of the grid for the current viewport size (8 / 10 / 8) */ readonly sizeGridMd: 'var(--v-size-grid-md)';
|
|
203
188
|
/**
|
|
204
|
-
*
|
|
189
|
+
* Width based on the colspan of the grid for the current viewport size (8 / 10 / 12) */ readonly sizeGridLg: 'var(--v-size-grid-lg)';
|
|
205
190
|
/**
|
|
206
|
-
*
|
|
191
|
+
* Width based on the colspan of the grid for the current viewport size (8 / 12 / 12) */ readonly sizeGridXl: 'var(--v-size-grid-xl)';
|
|
207
192
|
/**
|
|
208
|
-
*
|
|
193
|
+
* Width based on the maximum extent of a `max` container */ readonly sizeGridMax: 'var(--v-size-grid-max)';
|
|
209
194
|
/**
|
|
210
|
-
*
|
|
195
|
+
* The maximum width a block of content should be allowed to grow to while maintaining readability
|
|
196
|
+
* https://baymard.com/blog/line-length-readability */ readonly sizeContentmax: 'var(--v-size-contentmax)';
|
|
197
|
+
readonly radiusSm: 'var(--v-radius-sm)';
|
|
198
|
+
readonly radiusMd: 'var(--v-radius-md)';
|
|
199
|
+
readonly radiusLg: 'var(--v-radius-lg)';
|
|
200
|
+
readonly shapeDefault: 'var(--v-shape-default)';
|
|
201
|
+
readonly shapeEmphasis: 'var(--v-shape-emphasis)';
|
|
202
|
+
readonly radiusFull: 'var(--v-radius-full)';
|
|
203
|
+
readonly indexSpinner: 'var(--v-index-spinner)';
|
|
204
|
+
readonly indexOverlay: 'var(--v-index-overlay)';
|
|
205
|
+
readonly indexNavigation: 'var(--v-index-navigation)';
|
|
206
|
+
readonly indexDefault: 'var(--v-index-default)';
|
|
207
|
+
readonly indexDeep: 'var(--v-index-deep)';
|
|
211
208
|
/**
|
|
212
|
-
*
|
|
209
|
+
* The total number of grid columns at the current breakpoint. */ readonly gridColumns: 'var(--v-grid-columns)';
|
|
210
|
+
readonly transitionDefault: 'var(--v-transition-default)';
|
|
211
|
+
readonly transitionMicro: 'var(--v-transition-micro)';
|
|
212
|
+
readonly transitionNotable: 'var(--v-transition-notable)';
|
|
213
213
|
}
|
|
214
214
|
declare const vtokens: Tokens;
|
|
215
215
|
export default vtokens;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@volvo-cars/css",
|
|
3
3
|
"description": "Volvo Cars shared CSS",
|
|
4
|
-
"version": "1.37.
|
|
4
|
+
"version": "1.37.1",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"type": "module",
|
|
@@ -134,8 +134,8 @@
|
|
|
134
134
|
"chokidar-cli": "3.0.0",
|
|
135
135
|
"react": "19.1.0",
|
|
136
136
|
"tsup": "8.4.0",
|
|
137
|
-
"typescript": "5.
|
|
138
|
-
"vitest": "4.0.
|
|
137
|
+
"typescript": "5.9.3",
|
|
138
|
+
"vitest": "4.0.9"
|
|
139
139
|
},
|
|
140
140
|
"engines": {
|
|
141
141
|
"node": ">=14.15.0"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
:host,:root{font-size:var(--v-font-16-size);font-weight:var(--v-font-regular-weight);line-height:var(--v-font-16-lineheight);tab-size:4;-webkit-tap-highlight-color:transparent}:host,:root,:where([data-color-mode]){font-family:var(--v-font-sans-family);font-variation-settings:"DRKM" var(--_ve73fe1,0),"ital" var(--_v9ab60f,0);color:var(--v-color-foreground-primary);--lightningcss-light:initial;--lightningcss-dark: ;--lightningcss-light:initial;--lightningcss-dark: ;color-scheme:light;accent-color:var(--v-color-foreground-accent-blue)}:where([data-theme=centenary]){font-kerning:normal;font-synthesis-weight:none}:where(:root){view-transition-name:none}::view-transition{pointer-events:none}:where([data-color-mode=dark]),:host([data-color-mode=dark]){--lightningcss-light: ;--lightningcss-dark:initial;--lightningcss-light: ;--lightningcss-dark:initial;color-scheme:dark}@media (prefers-color-scheme:dark){:where([data-color-mode=auto]),:host([data-color-mode=auto]){--lightningcss-light: ;--lightningcss-dark:initial;--lightningcss-light: ;--lightningcss-dark:initial;color-scheme:dark}}:where(html){scrollbar-gutter:stable}@media (prefers-reduced-motion:no-preference){:where(html){scroll-behavior:smooth}}:lang(bg){font-feature-settings:"locl" 0}:where(code,kbd,samp,pre){font-family:var(--v-font-mono-family);font-size:min(100.0%,var(--v-font-14-size))}:where(pre){white-space:break-spaces}*,:before,:after{box-sizing:border-box}@media (prefers-reduced-motion:reduce){:is(*){transition-duration:0s!important;animation-duration:0s!important;animation-iteration-count:1!important}}:where(:not(progress,meter)){border-color:var(--_v2c3a00,var(--v-color-ornament-primary));border-style:solid;border-width:0}:where(body){background-color:var(--v-color-background-primary);min-height:100dvh;margin:0}:where(h1,h2,h3,h4,h5,h6,p,figure,blockquote,dl,dd,ol,ul,pre,input,fieldset){margin:0}:where(button,dialog,input,ol,ul,legend,fieldset,td){padding:0}:where(a){color:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;text-decoration:inherit;-webkit-text-decoration-skip-ink:auto;text-decoration-skip-ink:auto}:where(:focus-visible){outline:2px solid var(--v-color-foreground-primary);outline-offset:2px}:where(img,picture,video,canvas,svg){max-width:100%}:where(ol,ul){list-style:none}:where(button,input,optgroup,select,textarea,h1,h2,h3,h4,h5,h6,small){font-family:inherit;font-size:inherit;font-weight:inherit;line-height:inherit}:where(input,select){line-height:1.3}:where(textarea,select,input:not([type=range])){appearance:none;color:inherit}:where(input)::-webkit-date-and-time-value{text-align:inherit}:where(input)::-webkit-datetime-edit{padding:0}:where(input[type=tel]):is(:lang(ar),:lang(he)){direction:rtl}:where(input):is(:lang(ar),:lang(he))::-webkit-datetime-edit{direction:rtl}:where(button),:where(input:is([type=button],[type=reset],[type=submit])){appearance:button;color:inherit;background-color:#0000}:where(a,button,input,select,summary,textarea,[role=button],[role=link]):where(:disabled,[aria-disabled=true]){pointer-events:none}:where([type=file]:disabled)::file-selector-button{pointer-events:none}:where(summary:is(details[class]>*,[class])){list-style:none}:where(summary:is(details[class]>*,[class]))::-webkit-details-marker{display:none}:where(b,strong){font-weight:500}:where(textarea){resize:vertical}:where(p,li,h1,h2,h3,h4,h5,h6){overflow-wrap:break-word}:where(hr:not([class])){margin-top:var(--v-space-32);margin-bottom:var(--v-space-32);border-top-width:1px}:where([id]){scroll-margin-top:var(--v-space-pagemargin)}:where([data-fluid-typography=min]){--_v1f9492:0rem}:where([data-fluid-typography=max]){--_v1f9492:9rem}:where(html[data-modals-open],html:has(dialog:modal)){overflow:hidden}:where([popover]){content-visibility:hidden;margin:0;padding:0;inset:0}:where(:popover-open){opacity:1;transition:opacity var(--v-transition-micro);content-visibility:visible}@starting-style{:popover-open{opacity:0}}:where([popover]:not(:popover-open,dialog[open])){display:none!important}::backdrop,:where(.backdrop){background-color:#000000a3}:where(.backdrop:not([hidden])){z-index:calc(var(--v-index-overlay) - 1);justify-content:center;align-items:center;display:flex;position:fixed;inset:0}::backdrop{opacity:0;-webkit-backdrop-filter:none;backdrop-filter:none;transition-timing-function:linear;transition-duration:var(--_v57fab3);transition-property:opacity}:where(:is([open],[data-state=open]))::backdrop{opacity:1;-webkit-backdrop-filter:saturate(.6);backdrop-filter:saturate(.6)}:where([data-starting-style=true][open])::backdrop{opacity:0;-webkit-backdrop-filter:none;backdrop-filter:none}:where(.backdrop\:opacity-0)::backdrop{opacity:0}:where(.icon-button-filled,.icon-button-outlined,.icon-button-clear,.button-filled,.button-outlined,.button-text){-webkit-user-select:none;user-select:none;min-width:max-content;transition:background-color var(--v-transition-default);justify-content:center;align-items:center;display:inline-flex;position:relative}:where(.icon-button-filled,.icon-button-outlined,.icon-button-clear,.button-filled,.button-outlined,.button-text):is(:disabled,[aria-disabled=true]):not([data-loading]){opacity:var(--_vd9113b)}:where(.button-filled,.button-outlined,.button-text){max-width:100%;height:3rem;font-size:var(--v-font-16-size);font-weight:var(--v-font-emphasis-weight);white-space:nowrap;overflow-x:clip}:where(.button-filled,.button-outlined,.button-text)[data-size=small]{height:2rem;font-size:var(--v-font-14-size);line-height:var(--v-font-14-lineheight)}:where(.button-filled,.button-outlined,.button-text) img.icon-sprite:first-child,:where(.button-filled,.button-outlined,.button-text) img.icon-mask:first-child{margin-inline-start:0;margin-inline-end:var(--v-space-8)}:where(.button-filled,.button-outlined,.button-text) img.icon-sprite:last-child,:where(.button-filled,.button-outlined,.button-text) img.icon-mask:last-child{margin-inline-start:var(--v-space-8);margin-inline-end:0}:where([data-size=small]:is(.button-filled,.button-outlined,.button-text:not([data-arrow=back]))):before{content:"";width:100%;height:40px;position:absolute;top:50%;transform:translateY(-50%)}:where(.icon-button-filled,.button-filled){--button-accent-color:var(--v-color-surface-neutral);--_v338b5b:var(--v-color-foreground-inverted);color:var(--_v338b5b);background:color-mix(in oklab,var(--button-accent-color),var(--_v338b5b)var(--_v66d5c1))}:where(.icon-button-filled,.button-filled)[data-color=accent]{--button-accent-color:var(--v-color-surface-accent-blue);--_v338b5b:var(--v-color-always-white)}:where(.icon-button-filled,.button-filled)[data-color=destructive]{--button-accent-color:var(--v-color-surface-feedback-red);--_v338b5b:var(--v-color-always-white)}@supports not (color:color-mix(in lab, red, red)){:where(.icon-button-filled,.button-filled){background:var(--button-accent-color)}}:where(.icon-button-filled,.button-filled):active:not([aria-disabled=true]){--_v66d5c1:var(--_v462cee)}:where(.icon-button-outlined,.icon-button-clear,.button-outlined){background:color-mix(in oklab,var(--_vf018ba,transparent),var(--button-accent-color)var(--_v66d5c1))}:where(.icon-button-outlined,.icon-button-clear,.button-outlined):active:not([aria-disabled=true]){--_v66d5c1:var(--_v580f4a)}:where(.icon-button-outlined,.button-outlined){box-shadow:inset 0 0 0 1px var(--button-accent-color)}:where(.icon-button-filled,.icon-button-outlined,.icon-button-clear,.button-filled,.button-outlined){--_v66d5c1:0.0%}:where(.button-filled,.button-outlined){--spinner-size:1.5rem;padding-inline:var(--v-space-24);border-radius:var(--v-shape-default)}:where(.button-filled,.button-outlined) .spinner{position:absolute}:where(.button-filled,.button-outlined)[data-size=small]{--spinner-size:1rem;padding-inline:var(--v-space-16)}:where(.icon-button-clear,.icon-button-outlined,.button-text,.button-outlined){--button-accent-color:var(--v-color-foreground-primary);color:var(--button-accent-color)}:where(.icon-button-clear,.icon-button-outlined,.button-text,.button-outlined)[data-color=accent]{--button-accent-color:var(--v-color-foreground-accent-blue)}:where(.icon-button-clear,.icon-button-outlined,.button-text,.button-outlined)[data-color=destructive]{--button-accent-color:var(--v-color-foreground-feedback-red)}:where(.button-text){text-align:start;text-underline-offset:.125em;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}:where(.button-text)[data-arrow=back]:before,:where(.button-text):not([data-arrow=none],[data-arrow=back]):after{--_vc52473:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none'%3E%3Cpath fill='%23000' fill-opacity='.96' fill-rule='evenodd' d='m2.728 10 4-4-4-4L4 .729 9.273 6 4 11.273l-1.272-1.272Z' clip-rule='evenodd'/%3E%3C/svg%3E");width:.75em;height:.75em;mask:var(--_vc52473);transition:rotate var(--_v57fab3)ease;rotate:var(--_v621c2c,0);flex-shrink:0;margin-top:.125rem;mask-size:cover}:where(.button-text):not([data-arrow=none],[data-arrow=back]):after{content:"";background-color:currentColor;margin-inline-start:var(--v-space-4)}:where(.button-text)[data-arrow=back]:before{content:"";background-color:currentColor;margin-inline-end:var(--v-space-4)}:where(.button-text)[data-arrow=back],:where(.button-text)[data-arrow=forward]:is(:lang(ar),:lang(he)),:where(.button-text):not([data-arrow]):is(:lang(ar),:lang(he)){--_v621c2c:180deg}:where(.button-text)[data-arrow=back]:is(:lang(ar),:lang(he)){--_v621c2c:0}:where(.button-text)[data-arrow=down]{--_v621c2c:90deg}:where(.button-text)[data-arrow=up]{--_v621c2c:-90deg}:where(.icon-button-clear[data-bleed=true]){margin:-.75rem}:where(.icon-button-clear[data-bleed=true]):before{content:"";width:40px;height:40px;position:absolute;top:50%;transform:translateY(-50%)}:where(.icon-button-filled,.icon-button-outlined,.icon-button-clear){border-radius:var(--v-radius-full);flex-shrink:0;width:2.5rem;height:2.5rem}:where(.button-text:active:not([aria-disabled=true])){text-decoration-line:underline;text-decoration-thickness:.125em}:where(.icon-button-clear:active:not([aria-disabled=true])){--_v66d5c1:var(--_v580f4a)}:where([data-theme=centenary]) .button-filled,:where([data-theme=centenary]) .button-outlined,:where([data-theme=centenary]) .button-text{font-weight:var(--v-font-regular-weight)}:where(:is([role=dialog],[role=alertdialog]).dialog[aria-modal=true]),:where(dialog:is(:not([class]),.dialog):is(:modal,[aria-modal=true])){z-index:var(--v-index-overlay);width:100%;max-width:100%;height:fit-content;max-height:calc(100dvh - max(3rem,10dvh));padding-block:var(--v-space-48);padding-inline:var(--v-space-24);overscroll-behavior:contain;color:var(--v-color-foreground-primary);background-color:var(--v-color-background-primary);margin:auto;margin-bottom:0;position:fixed;inset:0;overflow-y:auto}@media (width>=30rem){:is(:where(:is([role=dialog],[role=alertdialog]).dialog[aria-modal=true]),:where(dialog:is(:not([class]),.dialog):is(:modal,[aria-modal=true]))){max-width:min(31rem,100vw - 2rem);padding-inline:var(--v-space-48);margin-bottom:auto}}:is(:where(:is([role=dialog],[role=alertdialog]).dialog[aria-modal=true]),:where(dialog:is(:not([class]),.dialog):is(:modal,[aria-modal=true]))):has(.dialog__close){padding-top:0}:where(dialog.dialog-large,dialog.dialog-small,dialog.sheet){--_v968463:1;--_v9a7f44:1;--_v598965:1;--_v61c872:0;--_vcb8f5d:0;--_v59e7bb:min(100.0%,50vh);--dialog-padding:var(--v-space-24);width:var(--v-size-grid-sm);overscroll-behavior:contain;max-width:100%;min-height:min(100svh,13rem);max-height:calc(100svh - 3rem);color:var(--v-color-foreground-primary);background-color:var(--v-color-background-primary);opacity:var(--_v61c872,0);transition-timing-function:cubic-bezier(.9,0,1,1);transition-duration:var(--_v57fab3),var(--_v57fab3),var(--_vba04ca),var(--_vba04ca);scrollbar-width:thin;translate:var(--_v331d0e,0)var(--_v59e7bb,0);scale:var(--_v9a7f44,1);border-start-start-radius:var(--v-radius-md);border-start-end-radius:var(--v-radius-md);flex-direction:column;align-content:start;margin:auto auto 0;transition-property:opacity,scale,translate;position:fixed;inset:0;overflow-y:auto}:where(dialog.dialog-large,dialog.dialog-small,dialog.sheet):is([open],[data-state=open]){opacity:var(--_v598965,1);transition-timing-function:cubic-bezier(0,0,.1,1);transition-duration:var(--_v57fab3);translate:var(--_v830231,0)var(--_vcb8f5d,0);scale:var(--_v968463,1);display:flex}:where(dialog.dialog-large,dialog.dialog-small,dialog.sheet)[data-starting-style=true][open]{opacity:var(--_v61c872,0);translate:var(--_v331d0e,0)var(--_v59e7bb,0);scale:var(--_v9a7f44,1)}:where(dialog.dialog-large,dialog.dialog-small,dialog.sheet)>[slot]>*{grid-column:main}:where(dialog.dialog-large,dialog.dialog-small,dialog.sheet):has(>[slot=header],>[slot=footer])>[slot=main]{overflow-y:auto}:where(dialog.dialog-large,dialog.dialog-small,dialog.sheet)>[slot=main]{grid-template-columns:[fullbleed-start]var(--dialog-padding)[main-start]minmax(auto,100.0%)[main-end]var(--dialog-padding)[fullbleed-end];padding-block:var(--dialog-padding);flex-grow:1;align-content:start;display:grid}:where(dialog.dialog-large,dialog.dialog-small,dialog.sheet)>[slot=main]>[data-bleed=true]{grid-column:fullbleed}:where(dialog.dialog-large,dialog.dialog-small,dialog.sheet)>[slot=close]{--_vf018ba:color-mix(in oklab,transparent,var(--v-color-background-primary)84.0%);top:var(--v-space-24);height:0;justify-content:flex-end;padding-inline-end:var(--v-space-24);display:flex;position:sticky}:where(dialog.dialog-large,dialog.dialog-small,dialog.sheet)>[slot=header]{grid-template-columns:[fullbleed-start]var(--dialog-padding)[main-start]minmax(auto,100.0%)[main-end]var(--dialog-padding)[fullbleed-end];height:fit-content;min-height:4rem;padding-block:var(--v-space-8);text-align:center;border-color:var(--v-color-ornament-primary);border-bottom-width:1px;flex-shrink:0;align-items:center;display:grid}:where(dialog.dialog-large,dialog.dialog-small,dialog.sheet)>[slot=header]:has(>[slot=close],>[slot=back]){grid-template-columns:var(--v-space-24)[back-start]1fr [back-end main-start]auto [main-end close-start]1fr [close-end]var(--v-space-24)}:where(dialog.dialog-large,dialog.dialog-small,dialog.sheet)>[slot=header]>[slot=back]{flex-direction:row;grid-area:1/back;justify-self:start;align-items:center;padding-inline-end:var(--v-space-16);display:flex}:where(dialog.dialog-large,dialog.dialog-small,dialog.sheet)>[slot=header]>[slot=close]{flex-direction:row;grid-area:1/close;justify-self:end;align-items:center;padding-inline-start:var(--v-space-16);display:flex}:where(dialog.dialog-large,dialog.dialog-small,dialog.sheet)>[slot=footer]{padding-block:var(--v-space-24);padding-inline:var(--dialog-padding);background-color:inherit;border-color:var(--v-color-ornament-primary);border-top-width:1px;flex-shrink:0;grid-column:fullbleed}:where(.dialog-small){width:var(--v-size-grid-xs);border-end-end-radius:var(--v-radius-md);border-end-start-radius:var(--v-radius-md);max-width:calc(100vw - 3rem);margin-bottom:auto}:where(.dialog-small)>[slot=main]{padding-block:var(--v-space-24)}:where(dialog.dialog-large){height:100%}:where(.dialog__close){height:var(--v-space-48);top:0;justify-content:flex-end;align-items:center;display:flex;position:absolute;inset-inline-end:0}:where(.dialog__close>button){outline-offset:-2px}:where(.dialog__close:has(button)){margin-inline:calc(-1*(var(--v-space-8)));position:sticky}:where(:is([type=checkbox],[type=radio]):not([role=switch]):is(.radio,.checkbox,:not([class]))){flex-shrink:0;place-content:center;width:1.5rem;height:1.5rem;margin-inline:-.25rem;display:inline-grid;position:relative;overflow:hidden}:where(:is([type=checkbox],[type=radio]):not([role=switch]):is(.radio,.checkbox,:not([class]))):before{content:"";background-color:color-mix(in oklab,var(--_vd02e23),var(--v-color-background-primary)var(--_v66d5c1,0.0%));border:1px solid var(--_v6da65a,var(--v-color-foreground-tertiary));border-radius:var(--v-shape-default);width:1rem;height:1rem;transition:border var(--v-transition-default)}@supports not (color:color-mix(in lab, red, red)){:where(:is([type=checkbox],[type=radio]):not([role=switch]):is(.radio,.checkbox,:not([class]))):before{background-color:var(--_vd02e23)}}:where(:is([type=checkbox],[type=radio]):not([role=switch]):is(.radio,.checkbox,:not([class]))):after{content:"";width:.5rem;height:.5rem;transition:color var(--v-transition-default),background-color var(--v-transition-default),border-color var(--v-transition-default);position:absolute}:where(:is([type=checkbox],[type=radio]):not([role=switch]):is(.radio,.checkbox,:not([class]))):checked{--_vd02e23:var(--v-color-surface-accent-blue);--_v6da65a:var(--v-color-surface-accent-blue)}:where([type=checkbox]:not([role=switch]):is(.checkbox,:not([class]))):after{background-color:var(--_v792159,transparent);place-self:center;width:.75rem;height:.75rem;mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12'%3E%3Cpath fill='currentColor' d='M11.35 3.36 4.69 9.7.66 5.85l.69-.72L4.69 8.3l5.97-5.67.69.72Z'/%3E%3C/svg%3E")}:where([type=radio]:is(.radio,:not([class]))):before{border-radius:var(--v-radius-full)}:where([type=radio]:is(.radio,:not([class]))):after{background-color:var(--_v792159);border-radius:var(--v-radius-full);place-self:center}:where(:is([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class])):disabled){opacity:var(--_vd9113b)}:where(:is([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class])):disabled):checked{--_vd02e23:var(--v-color-surface-accent-blue)}:where(:is([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class])):disabled):checked:after{--_v792159:var(--v-color-always-white)}:where(:is([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class])):checked){--_vd02e23:var(--v-color-surface-accent-blue);--_v6da65a:var(--v-color-surface-accent-blue);--_v792159:var(--v-color-always-white)}:where([type=checkbox]:indeterminate){--_vd02e23:var(--v-color-surface-accent-blue);--_v792159:var(--v-color-always-white)}:where([type=checkbox]:indeterminate):before{transition:border var(--v-transition-default);border-width:0}:where([type=checkbox]:indeterminate):after{background-color:var(--_v792159);border-radius:var(--v-shape-default);place-self:center;width:10px;height:1px;mask-image:none}:where(h1:not([class]),.heading-1){font-size:var(--v-font-heading-1-size);font-weight:var(--v-font-heading-1-weight);line-height:var(--v-font-heading-1-lineheight);text-wrap:balance}:where(.heading-1[data-fluid-typography]){font-size:clamp(var(--v-font-heading-1-size-min),var(--_v1f9492,var(--v-font-heading-1-size)),var(--v-font-heading-1-size-max))}:where(h2:not([class]),.heading-2){font-size:var(--v-font-heading-2-size);font-weight:var(--v-font-heading-2-weight);line-height:var(--v-font-heading-2-lineheight);text-wrap:balance}:where(.heading-2[data-fluid-typography]){font-size:clamp(var(--v-font-heading-2-size-min),var(--_v1f9492,var(--v-font-heading-2-size)),var(--v-font-heading-2-size-max))}:where(h3:not([class]),.heading-3){font-size:var(--v-font-heading-3-size);font-weight:var(--v-font-heading-3-weight);line-height:var(--v-font-heading-3-lineheight);text-wrap:balance}:where(.heading-3[data-fluid-typography]){font-size:clamp(var(--v-font-heading-3-size-min),var(--_v1f9492,var(--v-font-heading-3-size)),var(--v-font-heading-3-size-max))}:where(img.wordmark,svg.icon-sprite,img.icon-sprite,img.icon-mask){width:var(--_v52f177);min-width:var(--_v52f177);height:var(--_v52f177);min-height:var(--_v52f177);vertical-align:middle;-webkit-user-select:none;user-select:none;flex-grow:0;flex-shrink:0;display:inline-block}:where(img.wordmark,svg.icon-sprite,img.icon-sprite,img.icon-mask)[height="80"]{--_v52f177:5rem}:where(img.wordmark,svg.icon-sprite,img.icon-sprite,img.icon-mask)[height="64"]{--_v52f177:4rem}:where(img.wordmark,svg.icon-sprite,img.icon-sprite,img.icon-mask)[height="48"]{--_v52f177:3rem}:where(img.wordmark,svg.icon-sprite,img.icon-sprite,img.icon-mask)[height="40"]{--_v52f177:2.5rem}:where(img.wordmark,svg.icon-sprite,img.icon-sprite,img.icon-mask)[height="32"]{--_v52f177:2rem}:where(img.wordmark,svg.icon-sprite,img.icon-sprite,img.icon-mask)[height="24"]{--_v52f177:1.5rem}:where(img.wordmark,svg.icon-sprite,img.icon-sprite,img.icon-mask)[height="16"]{--_v52f177:1rem}:where(img.wordmark,svg.icon-sprite,img.icon-sprite,img.icon-mask)[height="12"]{--_v52f177:.75rem}:where(img.wordmark,svg.icon-sprite,img.icon-sprite,img.icon-mask)[height="8"]{--_v52f177:.5rem}:where(svg.icon-sprite,img.icon-sprite){--_v19ec39:var(--_v01aeb4)1;--_vf0c97d:var(--_v19ec39,0);fill:currentColor;object-fit:cover;object-position:0 calc(var(--_vf0c97d)*-1*var(--_v52f177,0))}:where(svg.icon-sprite,img.icon-sprite):is(:lang(ar),:lang(he)){--_v19ec39:var(--_v01aeb4)3;--_vf0c97d:var(--_v19ec39,2)}:where(svg.icon-sprite,img.icon-sprite)[src*="/v2/"]{--_v19ec39:var(--_v01aeb4)7;--_vf0c97d:var(--_v19ec39,0)}:where(img.wordmark,img.icon-mask){--_vf0c97d:0;mask-size:cover;mask-repeat:no-repeat;mask-position:0 calc(var(--_vf0c97d)*-1*var(--_v52f177,0));object-position:0 -999px;mask-image:var(--mask-url,var(--icon-url));background-color:currentColor}img.icon-mask:is(:lang(ar),:lang(he)){--_vf0c97d:2}:where(img.wordmark){width:calc(var(--_v52f177)*13);min-width:calc(var(--_v52f177)*13);mask-size:contain}[src*="/v2/"]:is(svg.icon-sprite,img.icon-sprite,img.icon-mask):is([src*=previous-],[src*=back-],[src*=forward-],[src*=next-],[src*=share-]):is(:lang(ar),:lang(he)){transform:scaleX(-1)}:where(.img){object-fit:cover;shape-margin:.75rem;background-repeat:no-repeat;background-size:cover;max-width:100%;height:auto;font-style:italic;display:block}:where(label:has(input:not([type=checkbox],[type=radio]),textarea,select):is(.label,:not([class]))){flex-direction:column;display:inline-flex}:where(label:has(input:not([type=checkbox],[type=radio]),textarea,select):is(.label,:not([class]))) input,:where(label:has(input:not([type=checkbox],[type=radio]),textarea,select):is(.label,:not([class]))) textarea,:where(label:has(input:not([type=checkbox],[type=radio]),textarea,select):is(.label,:not([class]))) select{margin-top:var(--v-space-8)}:where([data-input-delegate]) ::-webkit-calendar-picker-indicator{display:none}@supports ((-moz-appearance:none)){[data-input-delegate]:has([type=date]:focus):after{content:" ";background-color:var(--v-color-background-primary);width:2rem;height:2rem;position:absolute;inset-inline-end:var(--v-space-48)}}:where([data-input-delegate]),:where(textarea,select,[type=text],[type=password],[type=url],[type=email],[type=tel],[type=search],[type=number],[type=date],[type=datetime-local]):where(.input,:not([class])){padding:.75rem var(--v-space-16);background-color:var(--_vd02e23,var(--v-color-background-primary));border-radius:var(--v-shape-default);box-shadow:inset 0 0 0 var(--_v1656f0,1px)var(--_v6da65a,var(--v-color-foreground-tertiary));transition:box-shadow var(--v-transition-default);outline:none}:where([data-input-delegate]),:where(select,[type=text],[type=password],[type=url],[type=email],[type=tel],[type=search],[type=number],[type=date],[type=datetime-local]):where(.input,:not([class])){height:3rem}:where([data-input-delegate]),:where(:is(textarea,select,[type=text],[type=password],[type=url],[type=email],[type=tel],[type=search],[type=number],[type=date],[type=datetime-local]):is(.input,:not([class])):not([size])){width:100%}:where([data-input-delegate]:has(>[size])){width:fit-content}:where([data-input-delegate]){column-gap:var(--v-space-8);align-items:center;min-width:fit-content;padding-block:0;display:flex}:where([data-input-delegate]):has(>input:first-child){padding-inline-start:0}:where([data-input-delegate]):has(>input:last-child){padding-inline-end:0}:where([data-input-delegate] input){border-radius:var(--v-shape-default);outline:0;width:100%;height:calc(100% - .5rem);padding:0}:where([data-input-delegate] input):first-child{margin-inline-start:.25rem;padding-inline-start:.75rem}:where([data-input-delegate] input):last-child{margin-inline-end:.25rem;padding-inline-end:.75rem}:where([data-input-delegate]:not([aria-disabled],:has(>input:disabled)):focus-within),:where(:is(textarea,select,[type=text],[type=password],[type=url],[type=email],[type=tel],[type=search],[type=number],[type=date],[type=datetime-local]):focus){--_v6da65a:var(--v-color-foreground-primary);--_v1656f0:2px}:where([aria-invalid]:not([aria-invalid=false],:checked)){--_vd02e23:var(--v-color-background-feedback-red);--_v6da65a:var(--v-color-foreground-feedback-red)}:where([data-input-delegate]:is([aria-disabled],:has(>input:disabled))),:where(:is(textarea,select,input):disabled){--_v6da65a:var(--v-color-ornament-primary);--_vd02e23:var(--v-color-background-secondary);color:var(--v-color-foreground-secondary)}:where(select:is(.input,:not([class]))){background-image:var(--_v3ba278);background-repeat:no-repeat;background-position:center var(--_vc722b2,right)var(--v-space-16);background-size:1rem 1rem}:where(select:is(.input,:not([class]))):is(:lang(ar),:lang(he)){--_vc722b2:left}:where(.chip-selectable,.chip-dismissible,.toggle-group-button){--_v66d5c1:0.0%;--_vf018ba:transparent;--_v338b5b:var(--v-color-foreground-primary);--chip-border-color:var(--v-color-foreground-tertiary);--spinner-size:1rem;min-width:max-content;max-width:100%;height:2.5rem;padding-inline:var(--v-space-16);font-size:var(--v-font-16-size);color:var(--_v338b5b);white-space:nowrap;-webkit-user-select:none;user-select:none;background-color:color-mix(in oklab,var(--_vf018ba,transparent),var(--_v338b5b)var(--_v66d5c1));border-radius:var(--v-shape-default);box-shadow:inset 0 0 0 1px var(--chip-border-color);transition:background-color var(--v-transition-default);justify-content:center;align-items:center;display:inline-flex;position:relative}:where(.chip-selectable,.chip-dismissible,.toggle-group-button)[data-size=small]{--spinner-size:.875rem;height:2rem;padding-inline:var(--v-space-8);font-size:var(--v-font-14-size);line-height:var(--v-font-14-lineheight)}:where(.chip-selectable,.chip-dismissible,.toggle-group-button) img.icon-sprite:first-child,:where(.chip-selectable,.chip-dismissible,.toggle-group-button) img.icon-mask:first-child{margin-inline-start:0;margin-inline-end:var(--v-space-8)}:where(.chip-selectable,.chip-dismissible,.toggle-group-button) img.icon-sprite:last-child,:where(.chip-selectable,.chip-dismissible,.toggle-group-button) img.icon-mask:last-child{margin-inline-start:var(--v-space-8);margin-inline-end:0}:where(.chip-selectable,.chip-dismissible,.toggle-group-button):before{content:"";width:0;height:0;transition:width var(--_vba04ca)ease-in-out;background:currentColor;flex-shrink:0}:where(.chip-selectable,.chip-dismissible,.toggle-group-button):is(:disabled,[aria-disabled=true]):not([data-loading]){pointer-events:none;opacity:var(--_vd9113b)}:where(.chip-selectable,.chip-dismissible,.toggle-group-button):is([aria-pressed=true],[aria-checked=true]){box-shadow:inset 0 0 0 2px var(--v-color-foreground-primary)}:where(.chip-selectable,.chip-dismissible,.toggle-group-button):is([aria-pressed=true],[aria-checked=true]):before{width:1rem;height:1rem;mask:var(--_vff1a2e);transition:width var(--v-transition-default),height var(--v-transition-default),margin-inline-end var(--v-transition-default);margin-inline-end:var(--v-space-8);mask-size:cover}:where(.chip-selectable,.chip-dismissible,.toggle-group-button)[data-size=small]:is([aria-pressed=true],[aria-checked=true]):before{width:.875rem;height:.875rem;margin-inline-end:var(--v-space-4)}:where(.chip-selectable,.chip-dismissible,.toggle-group-button) .spinner{position:absolute}:where(.chip-selectable,.chip-dismissible,.toggle-group-button):has(.spinner):before{visibility:hidden}:where(.chip-dismissible){gap:var(--v-space-8)}:where(.chip-dismissible):is(:disabled,[aria-disabled=true]){pointer-events:none;opacity:var(--_vd9113b)}:where(.chip-dismissible):is(:disabled,[aria-disabled=true])>[slot=dismiss]{pointer-events:none;box-shadow:none;opacity:1;outline:none}:where(.chip-dismissible)[data-size=small]{gap:var(--v-space-4)}:where(.chip-dismissible)[data-loading] .spinner{justify-content:center;align-items:center;margin:auto;position:absolute;inset:0}:where(.chip-dismissible)>[slot=dismiss] img.icon-sprite:first-child,:where(.chip-dismissible)>[slot=dismiss] img.icon-mask:first-child,:where(.chip-dismissible)>[slot=dismiss] img.icon-sprite:last-child,:where(.chip-dismissible)>[slot=dismiss] img.icon-mask:last-child{margin-inline:0}:where(.input-floating-label){contain:content;min-width:fit-content}:where(.input-floating-label label){z-index:1;width:calc(133% - 3rem);color:var(--v-color-foreground-secondary);text-overflow:ellipsis;white-space:nowrap;pointer-events:none;transition:transform var(--v-transition-default);transform-origin:0;top:0;display:inline-block;position:absolute;inset-inline-start:var(--v-space-16);overflow:hidden;transform:translateY(5px)scale(.75)}:where(.input-floating-label label):is(:lang(ar),:lang(he)){transform-origin:100%}:where(.input-floating-label:has([data-input-delegate]>:placeholder-shown:not(:focus,:autofill)) label,.input-floating-label:has(:is(input,select,textarea)[data-blank]:not(:focus,:autofill)) label,.input-floating-label:has(:is(input,textarea):placeholder-shown:not(:focus,:autofill)) label){width:calc(100% - 3rem);transform:translateY(var(--v-space-16))scale(1)}:where(.input-floating-label:has(>[data-input-delegate][aria-invalid]:not([aria-invalid=false]),>:is(input,textarea,select)[aria-invalid]:not([aria-invalid=false])) label){color:var(--v-color-foreground-feedback-red)}:where(.input-floating-label:has(>[data-input-delegate] input:is([data-blank],:placeholder-shown):not(:focus,:autofill),>:is(input,select,textarea)[data-blank]:not(:focus,:autofill),>:is(input,textarea):placeholder-shown:not(:focus,:autofill)) label){color:var(--v-color-foreground-secondary)}:where(.input-floating-label :is(input,select,[data-input-delegate])){height:3.5rem}:where(.input-floating-label [data-input-delegate] input),:where(.input-floating-label :is(input,select,textarea)){padding-top:1.625rem;padding-bottom:.625rem}:where(.input-floating-label [data-input-delegate] input){background-clip:content-box}:where(.input-floating-label [data-input-delegate]){padding-block:0}:where(.input-floating-label :is(input,select)[data-blank]:not(:focus,:autofill)),:where(.input-floating-label:has(:is(input,textarea):not(:focus))) ::placeholder{color:#0000}:where(.input-floating-label input[data-blank]:not(:focus))::-webkit-datetime-edit{color:#0000}:where(.input-floating-label input[data-blank]:not(:focus))::-webkit-datetime-edit-year-field{color:#0000}:where(.input-floating-label input[data-blank]:not(:focus))::-webkit-datetime-edit-month-field{color:#0000}:where(.input-floating-label input[data-blank]:not(:focus))::-webkit-datetime-edit-day-field{color:#0000}:where(.input-floating-label input[data-blank]:not(:focus))::-webkit-datetime-edit-text{color:#0000}:where(a[href]:not([class]),.link-inline){color:var(--v-color-foreground-primary);-webkit-text-decoration-skip-ink:auto;text-decoration-skip-ink:auto;text-underline-offset:.125em}:where(.link-underlined){-webkit-text-decoration-skip-ink:auto;text-decoration-skip-ink:auto}:where(a[href]:not([class]),.link-inline,.link-underlined,.link-plain:active){text-decoration-line:underline}:where(.link-plain,.link-underlined){text-underline-offset:.125em;position:relative}:where(a[href]:not([class]):active,.link-inline:active,.link-plain:active,.link-underlined:active){-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none;text-decoration-thickness:.125em}:where(.link-plain):after,:where(.link-underlined):after{content:"";width:100%;min-width:40px;min-height:40px;translate:calc(-50.0%*var(--_v386612))-50.0%;inset-inline-start:50%;display:block;position:absolute;top:50%}:where(ul,ol):where(.list,:not([class])){list-style-type:revert;padding-inline-start:2rem}:where(.pagination-dots){flex-direction:row;justify-content:center;align-items:center;column-gap:1rem;display:flex}:where(.pagination-dots):has(>:only-child),:where(.pagination-dots):empty{display:none}:where(.pagination-dots)>li>:is(a,button){background-color:color-mix(in lab,var(--background-color,transparent),var(--v-color-foreground-primary)var(--_v66d5c1,0.0%));border-radius:var(--v-radius-full);width:1.5rem;height:1.5rem;transition:background-color var(--_v57fab3);contain:content;justify-content:center;align-items:center;margin-inline:-.5rem;display:flex}:where(.pagination-dots)>li>:is(a,button):before{content:"";background-color:var(--v-color-foreground-tertiary);border-radius:inherit;width:.5rem;height:.5rem;transition:inherit;display:block;position:absolute}:where(.pagination-dots)>li>:is(a,button):where([aria-current=true]):before{background-color:var(--v-color-foreground-primary)}:where(.pagination-dots)>li>:is(a,button):active{--_v66d5c1:var(--_v580f4a)}:where(.range){--range-thumb-width:1.5rem;--_v76ab6a:to right}:where(.range):is(:lang(ar),:lang(he)){--_v76ab6a:to left}:where(input[type=range].range,.range>input[type=range]){appearance:none;background-color:var(--v-color-ornament-primary);background-image:linear-gradient(var(--_v76ab6a),var(--v-color-foreground-accent-blue)0.0%,var(--v-color-foreground-accent-blue)var(--range-value-percent,calc(var(--range-value,.5)*100.0%)),var(--v-color-ornament-primary)var(--range-value-percent,calc(var(--range-value,.5)*100.0%)),var(--v-color-ornament-primary)100.0%);border-radius:2px;outline:none;width:100%;height:.25rem;position:relative}:where(input[type=range].range)::-webkit-slider-thumb{anchor-name:--range-thumb;z-index:1;appearance:none;width:var(--range-thumb-width);height:var(--range-thumb-width);cursor:pointer;background:var(--v-color-foreground-accent-blue);box-shadow:0 0 0 8px color-mix(in lab,transparent,var(--v-color-foreground-accent-blue)var(--_v8073cf,0.0%));border:0;border-radius:50%;position:relative}:where(input[type=range].range)::-moz-range-thumb{anchor-name:--range-thumb;z-index:1;appearance:none;width:var(--range-thumb-width);height:var(--range-thumb-width);cursor:pointer;background:var(--v-color-foreground-accent-blue);box-shadow:0 0 0 8px color-mix(in lab,transparent,var(--v-color-foreground-accent-blue)var(--_v8073cf,0.0%));border:0;border-radius:50%;position:relative}:where(.range>input[type=range])::-webkit-slider-thumb{anchor-name:--range-thumb;z-index:1;appearance:none;width:var(--range-thumb-width);height:var(--range-thumb-width);cursor:pointer;background:var(--v-color-foreground-accent-blue);box-shadow:0 0 0 8px color-mix(in lab,transparent,var(--v-color-foreground-accent-blue)var(--_v8073cf,0.0%));border:0;border-radius:50%;position:relative}:where(.range>input[type=range])::-moz-range-thumb{anchor-name:--range-thumb;z-index:1;appearance:none;width:var(--range-thumb-width);height:var(--range-thumb-width);cursor:pointer;background:var(--v-color-foreground-accent-blue);box-shadow:0 0 0 8px color-mix(in lab,transparent,var(--v-color-foreground-accent-blue)var(--_v8073cf,0.0%));border:0;border-radius:50%;position:relative}:is():active{--_v8073cf:var(--_v580f4a)}:where(input[type=range].range:focus-visible)::-webkit-slider-thumb{outline:2px solid var(--v-color-foreground-primary);outline-offset:2px}:where(input[type=range].range:focus-visible)::-moz-range-thumb{outline:2px solid var(--v-color-foreground-primary);outline-offset:2px}:where(.range>input[type=range]:focus-visible)::-webkit-slider-thumb{outline:2px solid var(--v-color-foreground-primary);outline-offset:2px}:where(.range>input[type=range]:focus-visible)::-moz-range-thumb{outline:2px solid var(--v-color-foreground-primary);outline-offset:2px}:where(input[type=range].range)::-webkit-slider-runnable-track{cursor:pointer;background:0 0;border:0;border-radius:2px}:where(input[type=range].range)::-moz-range-track{cursor:pointer;background:0 0;border:0;border-radius:2px}:where(.range>input[type=range])::-webkit-slider-runnable-track{cursor:pointer;background:0 0;border:0;border-radius:2px}:where(.range>input[type=range])::-moz-range-track{cursor:pointer;background:0 0;border:0;border-radius:2px}:where(.range:has(>input[type=range])){height:var(--range-thumb-width);align-items:center;display:flex;position:relative}:where(.range>output[slot=output]){bottom:var(--v-space-12);justify-self:anchor-center;visibility:hidden;opacity:0;position-anchor:--range-thumb;transition:opacity var(--v-transition-micro),translate var(--v-transition-micro);position:absolute}:where(.range>input[type=range]:active~output[slot=output]){visibility:visible;opacity:1;translate:0 -100%}@supports not (justify-self:anchor-center){.range>output[slot=output]{inset-inline-start:calc(var(--range-value)*(100.0% - var(--range-thumb-width)) + var(--range-thumb-width)/2);translate:-50%}.range>input[type=range]:active~output[slot=output]{translate:-50% -100%}}:where(progress.spinner){contain:strict;width:var(--spinner-size,2.5rem);height:var(--spinner-size,2.5rem);border-style:solid;border-color:currentColor;border-width:calc(.0625*var(--spinner-size,2.5rem) + .0313rem);appearance:none;background:0 0;border-bottom-color:#0000;border-radius:50%;animation:.7s cubic-bezier(.62,.63,0,.53) infinite rotate;display:inline-flex}:where(progress.spinner)::-moz-progress-bar{background:0 0}:where(progress.spinner)::-webkit-progress-bar{display:none}:where(progress.spinner.w-16){--spinner-size:1rem}:where(progress.spinner.w-24){--spinner-size:1.5rem}:where(progress.spinner.w-32){--spinner-size:2rem}:where(progress.spinner.w-40){--spinner-size:2.5rem}:where(progress.spinner.w-48){--spinner-size:3rem}@keyframes rotate{0%{transform:rotate(0)}to{transform:rotate(360deg)}}:where(.statement-1){font-size:var(--v-font-statement-1-size);font-weight:var(--v-font-statement-1-weight);line-height:var(--v-font-statement-1-lineheight);text-wrap:balance}:where(.statement-1[data-fluid-typography]){font-size:clamp(var(--v-font-statement-1-size-min),var(--_v1f9492),var(--v-font-statement-1-size-max))}:where(.statement-2){font-size:var(--v-font-statement-2-size);font-weight:var(--v-font-statement-2-weight);line-height:var(--v-font-statement-2-lineheight);text-wrap:balance}:where(.statement-2[data-fluid-typography]){font-size:clamp(var(--v-font-statement-2-size-min),var(--_v1f9492),var(--v-font-statement-2-size-max))}:where(.statement-3){font-size:var(--v-font-statement-3-size);font-weight:var(--v-font-statement-3-weight);line-height:var(--v-font-statement-3-lineheight);text-wrap:balance}:where(.statement-3[data-fluid-typography]){font-size:clamp(var(--v-font-statement-3-size-min),var(--_v1f9492),var(--v-font-statement-3-size-max))}:where(.statement-signature){font-family:var(--v-font-broad-family);font-size:var(--v-font-statement-signature-size);font-weight:var(--v-font-statement-signature-weight);line-height:var(--v-font-statement-signature-lineheight);text-wrap:balance;letter-spacing:.02em}:where(.statement-signature[data-fluid-typography]){font-size:clamp(var(--v-font-statement-signature-size-min),var(--_v1f9492),var(--v-font-statement-signature-size-max))}:where([role=switch]:is(.switch,:not([class]))){--_v6e0899:var(--v-color-foreground-tertiary);--_vc0c441:var(--v-color-always-white);appearance:none;background-color:var(--_v6e0899);border-radius:var(--v-radius-full);flex-shrink:0;width:2.5rem;height:1.5rem;padding:.125rem;transition:background .25s;display:inline-flex}:where([role=switch]:is(.switch,:not([class]))):after{content:"";background-color:var(--_vc0c441);border-radius:var(--v-radius-full);width:1.25rem;height:1.25rem;transition:transform .25s;position:absolute}:where([role=switch]:is(.switch,:not([class])):is(:checked,[aria-checked=true])){--_v6e0899:var(--v-color-foreground-accent-blue)}:where([role=switch]:is(.switch,:not([class])):is(:checked,[aria-checked=true]))[data-color=neutral]{--_vc0c441:var(--v-color-foreground-inverted);--_v6e0899:var(--v-color-surface-neutral)}:where([role=switch]:is(.switch,:not([class])):is(:checked,[aria-checked=true])):after{transform:translateX(calc(1rem*var(--_v386612)))}:where([role=switch]:is(.switch,:not([class])):disabled){opacity:var(--_vd9113b)}:where(.tab,.tap-area){cursor:pointer;background-color:color-mix(in lab,var(--background-color,var(--v-color-background-primary)),var(--tap-area-color,var(--color,var(--v-color-foreground-primary)))var(--_v66d5c1,0.0%));transition:color,background-color,border-color,box-shadow,text-decoration-color,fill,stroke;transition-duration:var(--_v57fab3);display:block}:where(.tab:active,.tap-area:active){--_v66d5c1:var(--_v580f4a)}@supports not (background:color-mix(in oklab, white 0%, black)){:where(.tab:active,.tap-area:active){background-color:var(--v-color-background-secondary)}}:where(.tap-area:has([data-tap-area-target])){contain:content}:where(.tap-area [data-tap-area-target]){position:static}:where(.tap-area [data-tap-area-target]):before{content:"";position:absolute;inset:0}:where(.tooltip){max-width:24ch;padding-block:var(--v-space-4);padding-inline:var(--v-space-8);font-size:var(--v-font-14-size);hyphens:auto;color:var(--v-color-foreground-inverted);white-space:pre-line;background-color:var(--v-color-surface-neutral);border-radius:var(--v-shape-default);transition:opacity var(--v-transition-default);overflow:visible}:where(.tooltip) [data-arrow=true]{z-index:-1;pointer-events:none;background-color:var(--v-color-surface-neutral);width:7px;height:7px;position:absolute}:where(.skeleton){background-color:var(--v-color-ornament-primary);contain:strict;border-radius:var(--v-shape-default);min-height:1em}:where(.skeleton):before{content:"";background-image:linear-gradient(to right,transparent,var(--v-color-background-primary)64.0%,transparent);top:0;width:200%;height:100%;animation:2s linear infinite v-wave;position:absolute;inset-inline-start:-200%}@keyframes v-wave{to{transform:translate(150%)}}@media (prefers-reduced-motion){.skeleton:before{display:none}}:where(.toast-message){--_va832d7:var(--_v01aeb4)var(--v-color-ornament-primary);--_v2c3a00:var(--_va832d7,transparent);column-gap:var(--v-space-16);width:var(--v-size-grid-sm);background-color:var(--v-color-always-black);border-radius:var(--v-radius-md);box-shadow:inset 0 0 0 1px var(--_v2c3a00);view-transition-class:slide-bottom;grid-template-columns:min-content auto min-content;place-items:center start;display:grid}:where(.toast-message)[data-color=positive]{background-color:var(--v-color-surface-feedback-green)}:where(.toast-message)[data-color=negative]{background-color:var(--v-color-surface-feedback-red)}:where(.toast-message[data-state=dismissed]){view-transition-class:fade-out}::view-transition-new(.slide-bottom){--animate-from-translate-y:calc(100.0% + var(--v-space-24));animation:v-slide-in var(--v-transition-default);animation-fill-mode:forwards}::view-transition-old(.slide-bottom){--animate-to-translate-y:calc(100.0% + var(--v-space-24));animation:v-slide-in var(--v-transition-default),v-fade-out var(--v-transition-default);animation-fill-mode:forwards}:where(.inline-message){--_v2c3a00:var(--v-color-foreground-primary);--_v6e0899:var(--v-color-background-feedback-gray);gap:var(--v-space-8);padding:var(--v-space-16);background-color:var(--_v6e0899);border-color:var(--_v2c3a00);contain:content;border-inline-start-width:2px;flex-flow:column wrap;display:flex}:where(.inline-message)[data-color=positive]{--_v2c3a00:var(--v-color-foreground-feedback-green);--_v6e0899:var(--v-color-background-feedback-green)}:where(.inline-message)[data-color=negative]{--_v2c3a00:var(--v-color-foreground-feedback-red);--_v6e0899:var(--v-color-background-feedback-red)}:where(.inline-message)[data-color=warning]{--_v2c3a00:var(--v-color-foreground-feedback-orange);--_v6e0899:var(--v-color-background-feedback-orange)}:where(.inline-message)[data-orientation=horizontal]{flex-direction:row}:where(.inline-message):has([slot=close]){padding-inline-end:var(--v-space-48)}:where(.pill-filled,.pill-outlined,.pill-soft){width:fit-content;padding-block:var(--v-space-2);padding-inline:var(--v-space-8);font:var(--v-font-12);border-radius:var(--v-radius-full)}:where(.pill-filled){color:var(--v-color-foreground-inverted);background-color:var(--v-color-surface-neutral)}:where(.pill-outlined){box-shadow:inset 0 0 0 1px var(--_v2c3a00,var(--v-color-ornament-primary))}:where(.pill-soft){background-color:var(--v-color-background-secondary)}:where(.tablist,.tablist-stretched){--_v03a5b0:var(--v-color-foreground-primary);display:flex}:where(.tablist){gap:var(--v-space-8);margin-inline:calc(-1*var(--v-space-8))}:where(.tablist[data-color=accent],.tablist-stretched[data-color=accent]){--_v03a5b0:var(--v-color-foreground-accent-blue)}:where(.tablist[aria-orientation=vertical]){width:var(--v-size-grid-xs);flex-direction:column;gap:0}:where(.tab){height:3rem;padding-inline:var(--v-space-8);font-weight:var(--v-font-emphasis-weight);border-bottom:2px solid #0000;align-items:center;display:flex}:where(.tablist:not([aria-orientation=vertical]) .tab){border-radius:var(--v-shape-default)}:where(.tablist:not([aria-orientation=vertical]) .tab:is([aria-current],[aria-selected=true])){border-image:linear-gradient(90deg,transparent var(--v-space-8),var(--_v03a5b0)var(--v-space-8),var(--_v03a5b0)calc(100.0% - var(--v-space-8)),transparent calc(100.0% - var(--v-space-8)))2}:where(.tablist[aria-orientation=vertical] .tab){border-inline-end:2px solid var(--v-color-ornament-primary);border-bottom:0;padding-inline-start:var(--v-space-24)}:where(.tablist[aria-orientation=vertical] .tab:is([aria-current],[aria-selected=true])){border-inline-end-color:var(--_v03a5b0)}:where(.tablist[aria-orientation=vertical][data-placement=start] .tab){border-inline-start:2px solid var(--v-color-ornament-primary);border-inline-end:0}:where(.tablist[aria-orientation=vertical][data-placement=start] .tab:is([aria-current],[aria-selected=true])){border-inline-start-color:var(--_v03a5b0)}:where(.tablist-stretched .tab){height:4rem;font-size:var(--v-font-20-size);border-bottom-color:var(--v-color-ornament-primary);border-start-start-radius:var(--v-shape-default);border-start-end-radius:var(--v-shape-default);flex-grow:1;justify-content:center}:where(.tablist-stretched .tab:is([aria-current],[aria-selected=true]):not([aria-orientation=vertical])){border-bottom-color:var(--_v03a5b0)}:where(.button-group){gap:var(--v-space-16);flex-wrap:wrap;display:flex;container:button-group/inline-size}@media (width<=29.99rem){.button-group>:is(.button-filled,.button-outlined,.button-text){flex:1 0 40%}}@container button-group (width<30rem){.button-group>:is(.button-filled,.button-outlined,.button-text){flex:1 0 40cqw}}:where(.container-xs){--_v401a35:var(--v-size-grid-xs)}:where(.container-sm){--_v401a35:var(--v-size-grid-sm)}:where(.container-md){--_v401a35:var(--v-size-grid-md)}:where(.container-lg){--_v401a35:var(--v-size-grid-lg)}:where(.container,.container-xl){--_v401a35:var(--v-size-grid-xl)}:where(.container,.container-xs,.container-sm,.container-md,.container-lg,.container-xl,.container-max){--_vf7c86e:0px;width:100%;max-width:min(81rem,min(var(--v-size-grid-maxwidth),var(--_v401a35)) + var(--_vf7c86e));scroll-padding-inline:calc(var(--_vf7c86e)/2);margin-inline:auto;container-type:inline-size}:where(.container,.container-xs,.container-sm,.container-md,.container-lg,.container-xl,.container-max)[data-bleed]{--_vf7c86e:calc(var(--v-space-pagemargin)*2)}:where(.container-max){max-width:min((100vw - var(--v-space-pagemargin)*2) + var(--_vf7c86e),160rem)}:where(.max-w-prose){max-width:var(--v-size-contentmax)}:where(.reel){scroll-snap-type:x mandatory;scroll-snap-stop:always;scroll-behavior:smooth;overscroll-behavior-x:contain;touch-action:manipulation;scrollbar-width:thin;contain:layout paint style;display:flex;overflow:auto hidden}@media (prefers-reduced-motion:reduce){:where(.reel){scroll-behavior:auto}}:where(.reel-indicators){flex-direction:row;justify-content:center;column-gap:.25rem;margin-block:2rem;display:flex}:where(.reel-indicators):empty{display:none}:where(.reel-indicators>*){background-color:var(--v-color-ornament-primary);border-radius:9999px;width:.5rem;height:.5rem;transition:background-color .2s;display:flex}:where(.reel-indicators>[aria-current=true]){background-color:var(--v-color-surface-neutral)}:where(:is(.stack-4,.stack-8,.stack-16,.stack-24,.stack-32,.stack-48,.stack-64,.stack-s,.stack-m,.stack-l,.stack-text)>*+*){margin-top:var(--stack-gap)}:where(.stack-s>*){--stack-gap:var(--v-space-s)}:where(.stack-m>*){--stack-gap:var(--v-space-m)}:where(.stack-l>*){--stack-gap:var(--v-space-l)}:where(.stack-4>*){--stack-gap:var(--v-space-4)}:where(.stack-8>*){--stack-gap:var(--v-space-8)}:where(:is(.stack-16,.stack-text)>*){--stack-gap:var(--v-space-16)}:where(.stack-24>*){--stack-gap:var(--v-space-24)}:where(.stack-32>*){--stack-gap:var(--v-space-32)}:where(.stack-48>*){--stack-gap:var(--v-space-48)}:where(.stack-64>*){--stack-gap:var(--v-space-64)}:where(.stack-text>:is(:not(.heading-1,.heading-2,.heading-3,:is(h1,h2,h3):not([class]))+.font-20,.font-20:first-child)+:is(.font-16,.list,.micro,:is(p,ul,small):not([class]))){--stack-gap:var(--v-space-8)}:where(.stack-text>.font-medium:not(.font-20,.font-24)+:is(.micro,.font-14,.font-16,p:not([class]))){--stack-gap:var(--v-space-4)}:where(.stack-text>:not(.heading-1,.heading-2,.heading-3,:is(h1,h2,h3):not([class]))+:is(.heading-1,.heading-2,.heading-3,:is(h1,h2,h3):not([class]))){--stack-gap:calc(var(--v-space-8) + 1em)}:where(.stack-text>:is(.statement-1,.statement-2,.statement-3)+*),:where(.stack-text>:is(.statement-1,.statement-2,.statement-3)+:is(.heading-3,.font-20,.font-24,h3:not([class]))+*){--stack-gap:var(--v-space-24)}:where(.stack-text>:is(.micro:not(.font-medium),small:not([class]))+:is(.micro,small:not([class]))){--stack-gap:0rem}:where(.stack-text>:is(.button-filled,.button-outlined,.button-text,.button-group)){--stack-gap:var(--v-space-24)}:where(.stack-text>.input-floating-label~:is(.button-filled,.button-outlined,.button-group)),:where(.stack-text>.statement-3~:is(.button-filled,.button-outlined,.button-group)){--stack-gap:var(--v-space-32)}:where(.stack-text>.font-medium:not(.font-20,.font-24)+:is(.font-16,p:not([class]))~:is(.button-filled,.button-outlined,.button-text,.button-group)){--stack-gap:var(--v-space-16)}:where(.layout-4-5,.layout-5-4,.layout-6-4,.layout-4-6){gap:var(--v-space-gutter);max-width:calc(var(--v-size-grid-maxwidth) + var(--_vf7c86e,0));grid-template-columns:1fr;margin-inline:auto;display:grid}:where(.layout-6-4,.layout-4-6){--_vf7c86e:calc(var(--v-space-pagemargin)*2)}:where(.layout-6-4>:nth-child(2),.layout-4-6>:first-child,.layout-5-4>*,.layout-4-5>*){margin-inline:var(--v-space-pagemargin)}:where(.layout-4-6>:nth-child(2)){order:-1}.fade-in{animation:v-fade-in var(--v-transition-notable)}.fade-out{animation:v-fade-out var(--v-transition-notable)}@keyframes v-fade-in{0%{opacity:0}to{opacity:1}}@keyframes v-fade-out{0%{opacity:1}to{opacity:0}}@keyframes v-slide-in{0%{translate:var(--animate-from-translate-x,0.0%)var(--animate-from-translate-y,0.0%)}to{translate:var(--animate-to-translate-x,0.0%)var(--animate-to-translate-y,0.0%)}}.aspect-1\/1{aspect-ratio:1}.aspect-4\/5{aspect-ratio:4/5}.aspect-2\/3{aspect-ratio:2/3}.aspect-9\/16{aspect-ratio:9/16}.aspect-4\/3{aspect-ratio:4/3}.aspect-3\/2{aspect-ratio:3/2}.aspect-16\/9{aspect-ratio:16/9}.aspect-21\/9{aspect-ratio:21/9}.basis-auto{flex-basis:auto}.basis-0{flex-basis:0}.basis-8{flex-basis:.5rem}.basis-16{flex-basis:1rem}.basis-24{flex-basis:1.5rem}.basis-32{flex-basis:2rem}.basis-40{flex-basis:2.5rem}.basis-48{flex-basis:3rem}.basis-64{flex-basis:4rem}.basis-1\/2{flex-basis:50%}.basis-full{flex-basis:100%}.basis-xs{flex-basis:var(--v-size-grid-xs)}.basis-sm{flex-basis:var(--v-size-grid-sm)}.basis-md{flex-basis:var(--v-size-grid-md)}.basis-lg{flex-basis:var(--v-size-grid-lg)}.basis-xl{flex-basis:var(--v-size-grid-xl)}.bg-inherit{background-color:inherit}.bg-transparent{background-color:#0000}.bg-always-black{--background-color:var(--v-color-always-black);background-color:var(--background-color)}.bg-always-white{--background-color:var(--v-color-always-white);background-color:var(--background-color)}.bg-primary{--background-color:var(--v-color-background-primary);background-color:var(--background-color)}.bg-secondary{--background-color:var(--v-color-background-secondary);background-color:var(--background-color)}.bg-surface-neutral{--background-color:var(--v-color-surface-neutral);background-color:var(--background-color)}.bg-surface-accent-blue{--background-color:var(--v-color-surface-accent-blue);background-color:var(--background-color)}.bg-surface-feedback-green{--background-color:var(--v-color-surface-feedback-green);background-color:var(--background-color)}.bg-surface-feedback-orange{--background-color:var(--v-color-surface-feedback-orange);background-color:var(--background-color)}.bg-surface-feedback-red{--background-color:var(--v-color-surface-feedback-red);background-color:var(--background-color)}.bg-feedback-gray{--background-color:var(--v-color-background-feedback-gray);background-color:var(--background-color)}.bg-feedback-green{--background-color:var(--v-color-background-feedback-green);background-color:var(--background-color)}.bg-feedback-orange{--background-color:var(--v-color-background-feedback-orange);background-color:var(--background-color)}.bg-feedback-red{--background-color:var(--v-color-background-feedback-red);background-color:var(--background-color)}.current\:bg-surface-neutral:where([aria-current=true],[aria-current=page],[aria-current=step]),.checked\:bg-surface-neutral:where([aria-checked=true]),.selected\:bg-surface-neutral:where([aria-selected=true]){--background-color:var(--v-color-surface-neutral);background-color:var(--background-color)}.border-0{border-width:0}.border{border-width:1px}.border-2{border-width:2px}.border-t-0{border-top-width:0}.border-t{border-top-width:1px}.border-t-2{border-top-width:2px}.border-r-0{border-inline-end-width:0}.border-r{border-inline-end-width:1px}.border-r-2{border-inline-end-width:2px}.border-b-0{border-bottom-width:0}.border-b{border-bottom-width:1px}.border-b-2{border-bottom-width:2px}.border-l-0{border-inline-start-width:0}.border-l{border-inline-start-width:1px}.border-l-2{border-inline-start-width:2px}.border-x-0{border-inline-width:0}.border-x{border-inline-width:1px}.border-x-2{border-inline-width:2px}.border-y-0{border-block-width:0}.border-y{border-block-width:1px}.border-y-2{border-block-width:2px}:where(a:is([aria-current=true],[aria-current=page],[aria-current=step])) .link-current\:border,:where([role=radio][aria-checked=true]) .radio-checked\:border,:where([role=checkbox][aria-checked=true]) .checkbox-checked\:border,.checked\:border:where([aria-checked=true]),:where([role=tab][aria-selected=true]) .tab-selected\:border,.selected\:border:where([aria-selected=true]){border-width:1px}:where(a:is([aria-current=true],[aria-current=page],[aria-current=step])) .link-current\:border-2,:where([role=radio][aria-checked=true]) .radio-checked\:border-2,:where([role=checkbox][aria-checked=true]) .checkbox-checked\:border-2,.checked\:border-2:where([aria-checked=true]),:where([role=tab][aria-selected=true]) .tab-selected\:border-2,.selected\:border-2:where([aria-selected=true]){border-width:2px}.border-ornament{--_v2c3a00:var(--v-color-ornament-primary)}.border-always-black{--_v2c3a00:var(--v-color-always-black)}.border-always-white{--_v2c3a00:var(--v-color-always-white)}.border-primary{--_v2c3a00:var(--v-color-foreground-primary)}.border-secondary{--_v2c3a00:var(--v-color-foreground-secondary)}.border-tertiary{--_v2c3a00:var(--v-color-foreground-tertiary)}.border-accent-blue{--_v2c3a00:var(--v-color-foreground-accent-blue)}.border-feedback-green{--_v2c3a00:var(--v-color-foreground-feedback-green)}.border-feedback-orange{--_v2c3a00:var(--v-color-foreground-feedback-orange)}.border-feedback-red{--_v2c3a00:var(--v-color-foreground-feedback-red)}.border-transparent{--_v2c3a00:transparent}.border-inherit{--_v2c3a00:inherit}.focus\:border-accent-blue:focus-visible,:where([role=radio][aria-checked=true]) .radio-checked\:border-accent-blue,:where([role=checkbox][aria-checked=true]) .checkbox-checked\:border-accent-blue,.checked\:border-accent-blue:where([aria-checked=true]),:where(a:is([aria-current=true],[aria-current=page],[aria-current=step])) .link-current\:border-accent-blue,.current\:border-accent-blue:where([aria-current=true],[aria-current=page],[aria-current=step]),.expanded\:border-accent-blue:where([aria-expanded=true]),:where(button[aria-expanded=true]) .button-expanded\:border-accent-blue,:where([role=tab][aria-selected=true]) .tab-selected\:border-accent-blue,.selected\:border-accent-blue:where([aria-selected=true]){--_v2c3a00:var(--v-color-foreground-accent-blue)}:where([role=radio][aria-checked=true]) .radio-checked\:border-primary,:where([role=checkbox][aria-checked=true]) .checkbox-checked\:border-primary,.checked\:border-primary:where([aria-checked=true]),:where(a:is([aria-current=true],[aria-current=page],[aria-current=step])) .link-current\:border-primary,.current\:border-primary:where([aria-current=true],[aria-current=page],[aria-current=step]),:where(button[aria-expanded=true]) .button-expanded\:border-primary,.expanded\:border-primary:where([aria-expanded=true]),:where([role=tab][aria-selected=true]) .tab-selected\:border-primary,.selected\:border-primary:where([aria-selected=true]){--_v2c3a00:var(--v-color-foreground-primary)}.border-ring,.checked\:border-ring:where([aria-checked=true]),.selected\:border-ring:where([aria-selected=true]){box-shadow:inset 0 0 0 1px var(--_v2c3a00,var(--v-color-ornament-primary))}.border-ring-2,.checked\:border-ring-2:where([aria-checked=true]),.selected\:border-ring-2:where([aria-selected=true]){box-shadow:inset 0 0 0 2px var(--_v2c3a00,var(--v-color-ornament-primary))}.open\:border-primary[open]{--_v2c3a00:var(--v-color-foreground-primary)}.rounded-none{border-radius:0}.rounded,.rounded-sm{border-radius:var(--v-radius-sm)}.rounded-md{border-radius:var(--v-radius-md)}.rounded-lg{border-radius:var(--v-radius-lg)}.rounded-full{border-radius:var(--v-radius-full)}.rounded-t,.rounded-t-sm{border-start-start-radius:var(--v-radius-sm);border-start-end-radius:var(--v-radius-sm)}.rounded-t-md{border-start-start-radius:var(--v-radius-md);border-start-end-radius:var(--v-radius-md)}.rounded-t-lg{border-start-start-radius:var(--v-radius-lg);border-start-end-radius:var(--v-radius-lg)}.rounded-t-full{border-start-start-radius:var(--v-radius-full);border-start-end-radius:var(--v-radius-full)}.rounded-e,.rounded-e-sm{border-start-end-radius:var(--v-radius-sm);border-end-end-radius:var(--v-radius-sm)}.rounded-e-md{border-start-end-radius:var(--v-radius-md);border-end-end-radius:var(--v-radius-md)}.rounded-e-lg{border-start-end-radius:var(--v-radius-lg);border-end-end-radius:var(--v-radius-lg)}.rounded-e-full{border-start-end-radius:var(--v-radius-full);border-end-end-radius:var(--v-radius-full)}.rounded-b,.rounded-b-sm{border-end-end-radius:var(--v-radius-sm);border-end-start-radius:var(--v-radius-sm)}.rounded-b-md{border-end-end-radius:var(--v-radius-md);border-end-start-radius:var(--v-radius-md)}.rounded-b-lg{border-end-end-radius:var(--v-radius-lg);border-end-start-radius:var(--v-radius-lg)}.rounded-b-full{border-end-end-radius:var(--v-radius-full);border-end-start-radius:var(--v-radius-full)}.rounded-s,.rounded-s-sm{border-start-start-radius:var(--v-radius-sm);border-end-start-radius:var(--v-radius-sm)}.rounded-s-md{border-start-start-radius:var(--v-radius-md);border-end-start-radius:var(--v-radius-md)}.rounded-s-lg{border-start-start-radius:var(--v-radius-lg);border-end-start-radius:var(--v-radius-lg)}.rounded-s-full{border-start-start-radius:var(--v-radius-full);border-end-start-radius:var(--v-radius-full)}.contain-none{contain:none}.contain-content{contain:content}:where(.flow-root){--_v208351:block}:where(.block,.inline){--_vab2d17:flow}.block{--_v208351:block}.inline{--_v208351:inline}.flow-root{--_vab2d17:flow-root}.block,.inline,.flow-root{display:var(--_v208351)var(--_vab2d17)}@supports not (display:inline flex){.block{--_v208351: ;display:block}}.contents{display:contents}[hidden]:not([hidden=until-found]){display:none}:where(.flex,.flex-row,.flex-col,.flex-row-reverse,.flex-col-reverse){--_v208351:block}@supports not (display:inline grid){:where(.flex,.flex-row,.flex-col,.flex-row-reverse,.flex-col-reverse){--_v208351: }}.flex,.flex-col,.flex-row,.flex-col-reverse,.flex-row-reverse{--_vab2d17:flex;display:var(--_v208351)flex}.flex-row{flex-direction:row}.flex-col{flex-direction:column}.flex-row-reverse{flex-direction:row-reverse}.flex-col-reverse{flex-direction:column-reverse}.flex-wrap{flex-wrap:wrap}.flex-nowrap{flex-wrap:nowrap}.flex-grow{flex-grow:1}.flex-grow-0{flex-grow:0}.flex-shrink{flex-shrink:1}.flex-shrink-0{flex-shrink:0}.items-start{align-items:flex-start}.items-end{align-items:flex-end}.items-center{align-items:center}.items-stretch{align-items:stretch}.self-start{align-self:flex-start}.self-end{align-self:flex-end}.self-center{align-self:center}.self-stretch{align-self:stretch}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-around{justify-content:space-around}.justify-between{justify-content:space-between}.justify-evenly{justify-content:space-evenly}.justify-center{justify-content:center}.font-14{font-size:var(--v-font-14-size);line-height:var(--v-font-14-lineheight)}.font-16{font-size:var(--v-font-16-size);line-height:var(--v-font-16-lineheight)}.font-20{font-size:var(--v-font-20-size);line-height:var(--v-font-20-lineheight)}.font-24{font-size:var(--v-font-24-size);line-height:var(--v-font-24-lineheight)}small:where(:not([class])),.micro{font-size:var(--v-font-12-size);line-height:var(--v-font-12-lineheight);letter-spacing:.02em}.italic,:where(i,cite,em,var,address,dfn){--_v9ab60f:1;font-variation-settings:"DRKM" var(--_ve73fe1,0),"ital" var(--_v9ab60f,1);font-synthesis-style:none;font-style:italic}.font-medium{font-weight:var(--v-font-emphasis-weight)}.font-light{font-weight:var(--v-font-regular-weight)}.gap-0{gap:0}.gap-y-0{row-gap:0}.gap-x-0{column-gap:0}.gap-4{gap:.25rem}.gap-y-4{row-gap:.25rem}.gap-x-4{column-gap:.25rem}.gap-8{gap:.5rem}.gap-y-8{row-gap:.5rem}.gap-x-8{column-gap:.5rem}.gap-16{gap:1rem}.gap-y-16{row-gap:1rem}.gap-x-16{column-gap:1rem}.gap-24{gap:1.5rem}.gap-y-24{row-gap:1.5rem}.gap-x-24{column-gap:1.5rem}.gap-32{gap:2rem}.gap-y-32{row-gap:2rem}.gap-x-32{column-gap:2rem}.gap-48{gap:3rem}.gap-y-48{row-gap:3rem}.gap-x-48{column-gap:3rem}.gap-64{gap:4rem}.gap-y-64{row-gap:4rem}.gap-x-64{column-gap:4rem}.gap-y-l{row-gap:var(--v-space-l)}.gap-y-m{row-gap:var(--v-space-m)}.gap-y-s{row-gap:var(--v-space-s)}.gap-x-gutter{column-gap:var(--v-space-gutter)}:where(.grid,.grid-cols-2,.grid-cols-3,.grid-cols-4){--_v208351:block}@supports not (display:inline grid){:where(.grid,.grid-cols-2,.grid-cols-3,.grid-cols-4){--_v208351: }}.grid,.grid-cols-2,.grid-cols-3,.grid-cols-4{--_vab2d17:grid;display:var(--_v208351)grid}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.h-0{height:0}.h-8{height:.5rem}.h-16{height:1rem}.h-24{height:1.5rem}.h-32{height:2rem}.h-40{height:2.5rem}.h-48{height:3rem}.h-64{height:4rem}.h-1lh{height:1lh}.h-full{height:100%}.h-fit{height:fit-content}.min-h-0{min-height:0}.min-h-8{min-height:.5rem}.min-h-16{min-height:1rem}.min-h-24{min-height:1.5rem}.min-h-32{min-height:2rem}.min-h-40{min-height:2.5rem}.min-h-48{min-height:3rem}.min-h-64{min-height:4rem}.min-h-full{min-height:100%}.min-h-fit{min-height:fit-content}.max-h-0{max-height:0}.max-h-8{max-height:.5rem}.max-h-16{max-height:1rem}.max-h-24{max-height:1.5rem}.max-h-32{max-height:2rem}.max-h-40{max-height:2.5rem}.max-h-48{max-height:3rem}.max-h-64{max-height:4rem}.max-h-full{max-height:100%}.max-h-fit{max-height:fit-content}.max-h-inherit{max-height:inherit}.empty\:hidden:empty,.hidden{display:none}@media (width<=29.99rem){.until-md\:hidden{display:none}}@media (width<=63.99rem){.until-lg\:hidden{display:none}}@media (width<=99.99rem){.until-xl\:hidden{display:none}}.hyphens{hyphens:auto}.hyphens:where(:lang(en)){-webkit-hyphenate-limit-before:2;-webkit-hyphenate-limit-after:4;-webkit-hyphenate-limit-lines:2;hyphenate-limit-lines:2;hyphenate-limit-chars:10 2 4}.end-0{inset-inline-end:0}.start-0{inset-inline-start:0}.top-0{top:0}.bottom-0{bottom:0}.end-4{inset-inline-end:.25rem}.start-4{inset-inline-start:.25rem}.top-4{top:.25rem}.bottom-4{bottom:.25rem}.end-8{inset-inline-end:.5rem}.start-8{inset-inline-start:.5rem}.top-8{top:.5rem}.bottom-8{bottom:.5rem}.end-16{inset-inline-end:1rem}.start-16{inset-inline-start:1rem}.top-16{top:1rem}.bottom-16{bottom:1rem}.end-24{inset-inline-end:1.5rem}.start-24{inset-inline-start:1.5rem}.top-24{top:1.5rem}.bottom-24{bottom:1.5rem}.end-32{inset-inline-end:2rem}.start-32{inset-inline-start:2rem}.top-32{top:2rem}.bottom-32{bottom:2rem}.end-48{inset-inline-end:3rem}.start-48{inset-inline-start:3rem}.top-48{top:3rem}.bottom-48{bottom:3rem}.end-64{inset-inline-end:4rem}.start-64{inset-inline-start:4rem}.top-64{top:4rem}.bottom-64{bottom:4rem}.end-1\/2{inset-inline-end:50%}.start-1\/2{inset-inline-start:50%}.end-full{inset-inline-end:100%}.start-full{inset-inline-start:100%}.end-auto{inset-inline-end:auto}.start-auto{inset-inline-start:auto}.top-1\/2{top:50%}.bottom-1\/2{bottom:50%}.top-full{top:100%}.bottom-full{bottom:100%}.top-auto{top:auto}.bottom-auto{bottom:auto}.m-auto{margin:auto}.my-auto,.mt-auto{margin-top:auto}.my-auto,.mb-auto{margin-bottom:auto}.mx-auto,.mr-auto{margin-inline-end:auto}.mx-auto,.ml-auto{margin-inline-start:auto}.m-0{margin:0}.my-0,.mt-0{margin-top:0}.my-0,.mb-0{margin-bottom:0}.mx-0,.mr-0{margin-inline-end:0}.mx-0,.ml-0{margin-inline-start:0}.m-2{margin:.125rem}.-m-2{margin:-.125rem}.my-2,.mt-2{margin-top:.125rem}.my-2,.mb-2{margin-bottom:.125rem}.-my-2,.-mt-2{margin-top:-.125rem}.-my-2,.-mb-2{margin-bottom:-.125rem}.mx-2,.mr-2{margin-inline-end:.125rem}.mx-2,.ml-2{margin-inline-start:.125rem}.-mx-2,.-mr-2{margin-inline-end:-.125rem}.-mx-2,.-ml-2{margin-inline-start:-.125rem}.m-4{margin:.25rem}.-m-4{margin:-.25rem}.my-4,.mt-4{margin-top:.25rem}.my-4,.mb-4{margin-bottom:.25rem}.-my-4,.-mt-4{margin-top:-.25rem}.-my-4,.-mb-4{margin-bottom:-.25rem}.mx-4,.mr-4{margin-inline-end:.25rem}.mx-4,.ml-4{margin-inline-start:.25rem}.-mx-4,.-mr-4{margin-inline-end:-.25rem}.-mx-4,.-ml-4{margin-inline-start:-.25rem}.m-8{margin:.5rem}.-m-8{margin:-.5rem}.my-8,.mt-8{margin-top:.5rem}.my-8,.mb-8{margin-bottom:.5rem}.-my-8,.-mt-8{margin-top:-.5rem}.-my-8,.-mb-8{margin-bottom:-.5rem}.mx-8,.mr-8{margin-inline-end:.5rem}.mx-8,.ml-8{margin-inline-start:.5rem}.-mx-8,.-mr-8{margin-inline-end:-.5rem}.-mx-8,.-ml-8{margin-inline-start:-.5rem}.m-16{margin:1rem}.-m-16{margin:-1rem}.my-16,.mt-16{margin-top:1rem}.my-16,.mb-16{margin-bottom:1rem}.-my-16,.-mt-16{margin-top:-1rem}.-my-16,.-mb-16{margin-bottom:-1rem}.mx-16,.mr-16{margin-inline-end:1rem}.mx-16,.ml-16{margin-inline-start:1rem}.-mx-16,.-mr-16{margin-inline-end:-1rem}.-mx-16,.-ml-16{margin-inline-start:-1rem}.m-24{margin:1.5rem}.-m-24{margin:-1.5rem}.my-24,.mt-24{margin-top:1.5rem}.my-24,.mb-24{margin-bottom:1.5rem}.-my-24,.-mt-24{margin-top:-1.5rem}.-my-24,.-mb-24{margin-bottom:-1.5rem}.mx-24,.mr-24{margin-inline-end:1.5rem}.mx-24,.ml-24{margin-inline-start:1.5rem}.-mx-24,.-mr-24{margin-inline-end:-1.5rem}.-mx-24,.-ml-24{margin-inline-start:-1.5rem}.m-32{margin:2rem}.-m-32{margin:-2rem}.my-32,.mt-32{margin-top:2rem}.my-32,.mb-32{margin-bottom:2rem}.-my-32,.-mt-32{margin-top:-2rem}.-my-32,.-mb-32{margin-bottom:-2rem}.mx-32,.mr-32{margin-inline-end:2rem}.mx-32,.ml-32{margin-inline-start:2rem}.-mx-32,.-mr-32{margin-inline-end:-2rem}.-mx-32,.-ml-32{margin-inline-start:-2rem}.m-48{margin:3rem}.-m-48{margin:-3rem}.my-48,.mt-48{margin-top:3rem}.my-48,.mb-48{margin-bottom:3rem}.-my-48,.-mt-48{margin-top:-3rem}.-my-48,.-mb-48{margin-bottom:-3rem}.mx-48,.mr-48{margin-inline-end:3rem}.mx-48,.ml-48{margin-inline-start:3rem}.-mx-48,.-mr-48{margin-inline-end:-3rem}.-mx-48,.-ml-48{margin-inline-start:-3rem}.m-64{margin:4rem}.-m-64{margin:-4rem}.my-64,.mt-64{margin-top:4rem}.my-64,.mb-64{margin-bottom:4rem}.-my-64,.-mt-64{margin-top:-4rem}.-my-64,.-mb-64{margin-bottom:-4rem}.mx-64,.mr-64{margin-inline-end:4rem}.mx-64,.ml-64{margin-inline-start:4rem}.-mx-64,.-mr-64{margin-inline-end:-4rem}.-mx-64,.-ml-64{margin-inline-start:-4rem}.my-l,.mt-l{margin-top:var(--v-space-l)}.my-l,.mb-l{margin-bottom:var(--v-space-l)}.my-m,.mt-m{margin-top:var(--v-space-m)}.my-m,.mb-m{margin-bottom:var(--v-space-m)}.my-s,.mt-s{margin-top:var(--v-space-s)}.my-s,.mb-s{margin-bottom:var(--v-space-s)}.mx-pagemargin,.mr-pagemargin{margin-inline-end:var(--v-space-pagemargin)}.mx-pagemargin,.ml-pagemargin{margin-inline-start:var(--v-space-pagemargin)}.object-fill{object-fit:fill}.object-cover{object-fit:cover}.object-contain{object-fit:contain}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-visible{overflow:visible}.overflow-clip{overflow:clip}.overflow-x-auto{overflow-x:auto}.overflow-x-hidden{overflow-x:hidden}.overflow-x-visible{overflow-x:visible}.overflow-x-clip{overflow-x:clip}.overflow-y-auto{overflow-y:auto}.overflow-y-hidden{overflow-y:hidden}.overflow-y-visible{overflow-y:visible}.overflow-y-clip{overflow-y:clip}.p-0{padding:0}.py-0,.pt-0{padding-top:0}.py-0,.pb-0{padding-bottom:0}.px-0,.pr-0{padding-inline-end:0}.px-0,.pl-0{padding-inline-start:0}.p-2{padding:.125rem}.py-2,.pt-2{padding-top:.125rem}.py-2,.pb-2{padding-bottom:.125rem}.px-2,.pr-2{padding-inline-end:.125rem}.px-2,.pl-2{padding-inline-start:.125rem}.p-4{padding:.25rem}.py-4,.pt-4{padding-top:.25rem}.py-4,.pb-4{padding-bottom:.25rem}.px-4,.pr-4{padding-inline-end:.25rem}.px-4,.pl-4{padding-inline-start:.25rem}.p-8{padding:.5rem}.py-8,.pt-8{padding-top:.5rem}.py-8,.pb-8{padding-bottom:.5rem}.px-8,.pr-8{padding-inline-end:.5rem}.px-8,.pl-8{padding-inline-start:.5rem}.p-16{padding:1rem}.py-16,.pt-16{padding-top:1rem}.py-16,.pb-16{padding-bottom:1rem}.px-16,.pr-16{padding-inline-end:1rem}.px-16,.pl-16{padding-inline-start:1rem}.p-24{padding:1.5rem}.py-24,.pt-24{padding-top:1.5rem}.py-24,.pb-24{padding-bottom:1.5rem}.px-24,.pr-24{padding-inline-end:1.5rem}.px-24,.pl-24{padding-inline-start:1.5rem}.p-32{padding:2rem}.py-32,.pt-32{padding-top:2rem}.py-32,.pb-32{padding-bottom:2rem}.px-32,.pr-32{padding-inline-end:2rem}.px-32,.pl-32{padding-inline-start:2rem}.p-48{padding:3rem}.py-48,.pt-48{padding-top:3rem}.py-48,.pb-48{padding-bottom:3rem}.px-48,.pr-48{padding-inline-end:3rem}.px-48,.pl-48{padding-inline-start:3rem}.p-64{padding:4rem}.py-64,.pt-64{padding-top:4rem}.py-64,.pb-64{padding-bottom:4rem}.px-64,.pr-64{padding-inline-end:4rem}.px-64,.pl-64{padding-inline-start:4rem}.py-l,.pt-l{padding-top:var(--v-space-l)}.py-l,.pb-l{padding-bottom:var(--v-space-l)}.py-m,.pt-m{padding-top:var(--v-space-m)}.py-m,.pb-m{padding-bottom:var(--v-space-m)}.py-s,.pt-s{padding-top:var(--v-space-s)}.py-s,.pb-s{padding-bottom:var(--v-space-s)}.px-pagemargin,.pr-pagemargin{padding-inline-end:var(--v-space-pagemargin)}.px-pagemargin,.pl-pagemargin{padding-inline-start:var(--v-space-pagemargin)}.static{position:static}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.sticky{position:sticky}.rotate-0{rotate:none}.rotate-90{rotate:90deg}:where(button[aria-expanded=true]) .button-expanded\:rotate-180,:where(details[open]>summary) .details-open\:rotate-180,:where(details[open])>.details-open\:rotate-180,.rotate-180{rotate:180deg}.-rotate-90{rotate:-90deg}.active\:scale-pressed:active,.scale-pressed,.scale-96{scale:.96}.scale-100{scale:1}.scale-zoomed,.scale-110{scale:1.1}.scrollbar-none:not(:focus-visible)::-webkit-scrollbar{display:none}.scrollbar-none:not(:focus-visible){-ms-overflow-style:none;scrollbar-width:none}.snap-start{scroll-snap-align:start}.snap-end{scroll-snap-align:end}.snap-center{scroll-snap-align:center}.snap-y{scroll-snap-type:y mandatory}.snap-x{scroll-snap-type:x mandatory}.text-start{text-align:start}.text-end{text-align:end}.text-center{text-align:center}.text-inherit{color:inherit}.text-always-black{--color:var(--v-color-always-black);color:var(--v-color-always-black)}.text-always-white{--color:var(--v-color-always-white);color:var(--v-color-always-white)}.text-inverted{--color:var(--v-color-foreground-inverted);color:var(--v-color-foreground-inverted)}.text-primary{--color:var(--v-color-foreground-primary);color:var(--v-color-foreground-primary)}.text-secondary{--color:var(--v-color-foreground-secondary);color:var(--v-color-foreground-secondary)}.text-accent-blue{--color:var(--v-color-foreground-accent-blue);color:var(--v-color-foreground-accent-blue)}.text-feedback-green{--color:var(--v-color-foreground-feedback-green);color:var(--v-color-foreground-feedback-green)}.text-feedback-orange{--color:var(--v-color-foreground-feedback-orange);color:var(--v-color-foreground-feedback-orange)}.text-feedback-red{--color:var(--v-color-foreground-feedback-red);color:var(--v-color-foreground-feedback-red)}.current\:text-primary:where([aria-current=true],[aria-current=page],[aria-current=step]),.checked\:text-primary:where([aria-checked=true]),.selected\:text-primary:where([aria-selected=true]){--color:var(--v-color-foreground-primary);color:var(--v-color-foreground-primary)}.current\:text-inverted:where([aria-current=true],[aria-current=page],[aria-current=step]),.checked\:text-inverted:where([aria-checked=true]),.selected\:text-inverted:where([aria-selected=true]){--color:var(--v-color-foreground-inverted);color:var(--v-color-foreground-inverted)}.uppercase{text-transform:uppercase}.capitalize{text-transform:capitalize}.truncate{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.text-balance{text-wrap:balance}.text-wrap{text-wrap:wrap}.transition-colors{transition:color,background-color,border-color,box-shadow,text-decoration-color,fill,stroke;transition-duration:var(--_v57fab3)}.transition-opacity{transition:opacity;transition-duration:var(--_v57fab3)}.transition-transform{transition:transform,scale,rotate,translate,skew;transition-duration:var(--_v57fab3)}.transition-none{transition:none}.translate-x-0,.translate-y-0,.translate-x-1\/2,.translate-y-1\/2,.-translate-x-1\/2,.-translate-y-1\/2,.translate-x-full,.translate-y-full,.-translate-x-full,.-translate-y-full{--translate-x:0px;--translate-y:0px;translate:calc(var(--translate-x)*var(--_v386612))var(--translate-y)}.translate-x-1\/2{--translate-x:50.0%}.-translate-x-1\/2{--translate-x:-50.0%}.translate-x-full{--translate-x:100.0%}.-translate-x-full{--translate-x:-100.0%}.translate-y-1\/2{--translate-y:50.0%}.-translate-y-1\/2{--translate-y:-50.0%}.translate-y-full{--translate-y:100.0%}.-translate-y-full{--translate-y:-100.0%}.whitespace-normal{white-space:normal}.whitespace-nowrap{white-space:nowrap}.whitespace-pre-line{white-space:pre-line}.whitespace-break-spaces{white-space:break-spaces}.sr-only{clip:rect(0,0,0,0);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.empty\:invisible:empty,.invisible{visibility:hidden}@media (width<=29.99rem){.until-md\:invisible{visibility:hidden}}@media (width<=63.99rem){.until-lg\:invisible{visibility:hidden}}@media (width<=99.99rem){.until-xl\:invisible{visibility:hidden}}.w-0{width:0}.w-8{width:.5rem}.w-16{width:1rem}.w-24{width:1.5rem}.w-32{width:2rem}.w-40{width:2.5rem}.w-48{width:3rem}.w-64{width:4rem}.w-1\/2{width:50%}.w-full{width:100%}.w-min{width:min-content}.w-fit{width:fit-content}.min-w-0{min-width:0}.min-w-fit{min-width:fit-content}.min-w-min{min-width:min-content}.max-w-1\/2{max-width:50%}.max-w-full{max-width:100%}.max-w-fit{max-width:fit-content}.max-w-min{max-width:min-content}.w-xs{width:var(--v-size-grid-xs)}.w-sm{width:var(--v-size-grid-sm)}.w-md{width:var(--v-size-grid-md)}.w-lg{width:var(--v-size-grid-lg)}.w-xl{width:var(--v-size-grid-xl)}.z-spinner{z-index:var(--v-index-spinner)}.z-overlay{z-index:var(--v-index-overlay)}.z-navigation{z-index:var(--v-index-navigation)}.z-default{z-index:var(--v-index-default)}.z-deep{z-index:var(--v-index-deep)}
|