@kaizen/components 1.7.9 → 1.7.10
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/CHANGELOG.md +5 -5
- package/dist/cjs/dts/Brand/Brand.d.ts +11 -0
- package/dist/cjs/dts/Brand/index.d.ts +1 -0
- package/dist/cjs/dts/index.d.ts +2 -1
- package/dist/cjs/future.js +1 -1
- package/dist/cjs/{index-89a2803d.js → index-05670f16.js} +1 -1
- package/dist/cjs/{index-89a2803d.js.map → index-05670f16.js.map} +1 -1
- package/dist/cjs/index.css +2 -1
- package/dist/cjs/index.js +470 -451
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/dts/Brand/Brand.d.ts +11 -0
- package/dist/esm/dts/Brand/index.d.ts +1 -0
- package/dist/esm/dts/index.d.ts +2 -1
- package/dist/esm/future.js +1 -1
- package/dist/esm/{index-cd3cb19d.js → index-8eb84ea0.js} +1 -1
- package/dist/esm/{index-cd3cb19d.js.map → index-8eb84ea0.js.map} +1 -1
- package/dist/esm/index.css +2 -1
- package/dist/esm/index.js +458 -440
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +143 -133
- package/dist/styles.css +1 -1
- package/package.json +5 -4
package/dist/index.d.ts
CHANGED
|
@@ -1,10 +1,149 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import React$1, {
|
|
3
|
-
import * as _kaizen_design_tokens from '@kaizen/design-tokens';
|
|
4
|
-
import { Theme as Theme$1 } from '@kaizen/design-tokens';
|
|
2
|
+
import React$1, { HTMLAttributes, ButtonHTMLAttributes, CSSProperties, Context } from 'react';
|
|
5
3
|
import { TooltipProps } from '@kaizen/draft-tooltip';
|
|
6
4
|
import { Node } from '@react-types/shared';
|
|
7
5
|
import { SelectProps } from '@react-stately/select';
|
|
6
|
+
import * as _kaizen_design_tokens from '@kaizen/design-tokens';
|
|
7
|
+
import { Theme as Theme$1 } from '@kaizen/design-tokens';
|
|
8
|
+
|
|
9
|
+
type OverrideClassName<T extends Record<string, any>> = Omit<T, "className"> & {
|
|
10
|
+
classNameOverride?: string;
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
interface BrandProps extends OverrideClassName<HTMLAttributes<HTMLElement>> {
|
|
14
|
+
variant: "logo-horizontal" | "logo-vertical" | "enso" | "collective-intelligence";
|
|
15
|
+
alt: string;
|
|
16
|
+
reversed?: boolean;
|
|
17
|
+
}
|
|
18
|
+
declare const Brand: {
|
|
19
|
+
({ variant, alt, reversed, classNameOverride, ...restProps }: BrandProps): JSX.Element;
|
|
20
|
+
displayName: string;
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
type FilterTriggerRef = {
|
|
24
|
+
triggerRef?: React.RefObject<HTMLButtonElement>;
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
interface FilterProps extends OverrideClassName<HTMLAttributes<HTMLDivElement>> {
|
|
28
|
+
children: React$1.ReactNode;
|
|
29
|
+
isOpen: boolean;
|
|
30
|
+
setIsOpen: (isOpen: boolean) => void;
|
|
31
|
+
renderTrigger: (triggerProps: {
|
|
32
|
+
onClick: () => void;
|
|
33
|
+
isOpen: boolean;
|
|
34
|
+
}) => JSX.Element & {
|
|
35
|
+
ref?: React$1.RefObject<FilterTriggerRef>;
|
|
36
|
+
};
|
|
37
|
+
onMount?: (triggerRef: React$1.RefObject<HTMLButtonElement>) => void;
|
|
38
|
+
}
|
|
39
|
+
declare const Filter: {
|
|
40
|
+
({ children, isOpen, setIsOpen, renderTrigger, classNameOverride, onMount, ...restProps }: FilterProps): JSX.Element;
|
|
41
|
+
displayName: string;
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
interface FilterContentsProps extends OverrideClassName<HTMLAttributes<HTMLDivElement>> {
|
|
45
|
+
children: React$1.ReactNode;
|
|
46
|
+
}
|
|
47
|
+
declare const FilterContents: {
|
|
48
|
+
({ children, classNameOverride, ...restProps }: FilterContentsProps): JSX.Element;
|
|
49
|
+
displayName: string;
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
interface FilterButtonBaseProps extends OverrideClassName<ButtonHTMLAttributes<HTMLButtonElement>> {
|
|
53
|
+
children: React$1.ReactNode;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
interface FilterButtonProps extends Omit<FilterButtonBaseProps, "children"> {
|
|
57
|
+
label: string;
|
|
58
|
+
selectedValue?: string | JSX.Element;
|
|
59
|
+
isOpen?: boolean;
|
|
60
|
+
}
|
|
61
|
+
declare const FilterButton: React$1.ForwardRefExoticComponent<FilterButtonProps & React$1.RefAttributes<FilterTriggerRef>>;
|
|
62
|
+
|
|
63
|
+
type DataAttributes = {
|
|
64
|
+
[key: `data-${string}`]: string | undefined;
|
|
65
|
+
};
|
|
66
|
+
|
|
67
|
+
interface ButtonGroupProps extends OverrideClassName<HTMLAttributes<HTMLDivElement>> {
|
|
68
|
+
children: React$1.ReactElement<FilterButtonBaseProps | TooltipProps> | Array<React$1.ReactElement<FilterButtonBaseProps | TooltipProps>>;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
interface FilterButtonRemovableProps extends Omit<ButtonGroupProps, "children"> {
|
|
72
|
+
triggerButtonProps: FilterButtonProps & DataAttributes;
|
|
73
|
+
removeButtonProps: Partial<Omit<FilterButtonBaseProps, "children">> & DataAttributes & {
|
|
74
|
+
tooltipText?: string;
|
|
75
|
+
};
|
|
76
|
+
}
|
|
77
|
+
type FilterButtonRemovableRefs = FilterTriggerRef & {
|
|
78
|
+
removeButtonRef?: React$1.RefObject<HTMLButtonElement>;
|
|
79
|
+
};
|
|
80
|
+
declare const FilterButtonRemovable: React$1.ForwardRefExoticComponent<FilterButtonRemovableProps & React$1.RefAttributes<FilterButtonRemovableRefs>>;
|
|
81
|
+
|
|
82
|
+
type SelectOption = {
|
|
83
|
+
label: string;
|
|
84
|
+
value: React.Key;
|
|
85
|
+
disabled?: boolean;
|
|
86
|
+
options?: never;
|
|
87
|
+
};
|
|
88
|
+
type SelectOptionGroup<Option extends SelectOption> = {
|
|
89
|
+
label: string;
|
|
90
|
+
options: Iterable<Option>;
|
|
91
|
+
};
|
|
92
|
+
type SelectItem<Option extends SelectOption = SelectOption> = Option | SelectOptionGroup<Option>;
|
|
93
|
+
interface SelectOptionNode<Option extends SelectOption = SelectOption> extends Node<Option> {
|
|
94
|
+
type: "item";
|
|
95
|
+
hasChildNodes: false;
|
|
96
|
+
}
|
|
97
|
+
interface SelectOptionGroupNode<Option extends SelectOption = SelectOption> extends Omit<Node<SelectOptionGroup<Option>>, "childNodes"> {
|
|
98
|
+
type: "section";
|
|
99
|
+
hasChildNodes: true;
|
|
100
|
+
childNodes: Array<SelectOptionNode<Option>>;
|
|
101
|
+
}
|
|
102
|
+
type SelectItemNode<Option extends SelectOption = SelectOption> = SelectOptionNode<Option> | SelectOptionGroupNode<Option>;
|
|
103
|
+
|
|
104
|
+
type ListItemProps<Option extends SelectOption = SelectOption> = {
|
|
105
|
+
item: SelectItemNode<Option>;
|
|
106
|
+
};
|
|
107
|
+
|
|
108
|
+
interface OptionProps<Option extends SelectOption = SelectOption> extends OverrideClassName<Omit<HTMLAttributes<HTMLLIElement>, "children">> {
|
|
109
|
+
item: SelectOptionNode<Option>;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
interface ListBoxSectionProps<Option extends SelectOption> {
|
|
113
|
+
section: SelectOptionGroupNode<Option>;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
type OmittedAriaSelectProps = "label" | "children" | "isOpen" | "onOpenChange" | "defaultOpen" | "items";
|
|
117
|
+
interface FilterSelectProps<Option extends SelectOption = SelectOption> extends OverrideClassName<Omit<SelectProps<Option>, OmittedAriaSelectProps>> {
|
|
118
|
+
isOpen: boolean;
|
|
119
|
+
setIsOpen: (isOpen: boolean) => void;
|
|
120
|
+
renderTrigger: (triggerButtonProps: FilterButtonProps) => JSX.Element;
|
|
121
|
+
label: string;
|
|
122
|
+
children?: (args: {
|
|
123
|
+
items: Array<SelectItemNode<Option>>;
|
|
124
|
+
}) => React$1.ReactNode;
|
|
125
|
+
items: Array<SelectItem<Option>>;
|
|
126
|
+
}
|
|
127
|
+
declare const FilterSelect: {
|
|
128
|
+
<Option extends SelectOption = SelectOption>({ isOpen, setIsOpen, renderTrigger, label, children, items, classNameOverride, ...restProps }: FilterSelectProps<Option>): JSX.Element;
|
|
129
|
+
displayName: string;
|
|
130
|
+
Section: {
|
|
131
|
+
<Option_1 extends SelectOption = SelectOption>({ section, }: ListBoxSectionProps<Option_1>): JSX.Element;
|
|
132
|
+
displayName: string;
|
|
133
|
+
};
|
|
134
|
+
SectionDivider: {
|
|
135
|
+
(): JSX.Element;
|
|
136
|
+
displayName: string;
|
|
137
|
+
};
|
|
138
|
+
Option: {
|
|
139
|
+
<Option_2 extends SelectOption = SelectOption>({ item, classNameOverride, ...props }: OptionProps<Option_2>): JSX.Element;
|
|
140
|
+
displayName: string;
|
|
141
|
+
};
|
|
142
|
+
ItemDefaultRender: {
|
|
143
|
+
<Option_3 extends SelectOption = SelectOption>({ item, }: ListItemProps<Option_3>): JSX.Element;
|
|
144
|
+
displayName: string;
|
|
145
|
+
};
|
|
146
|
+
};
|
|
8
147
|
|
|
9
148
|
/**
|
|
10
149
|
* Use this class to set and apply themes, and to access or subscribe to the currently active one.
|
|
@@ -283,133 +422,4 @@ declare const KaizenProvider: {
|
|
|
283
422
|
displayName: string;
|
|
284
423
|
};
|
|
285
424
|
|
|
286
|
-
|
|
287
|
-
classNameOverride?: string;
|
|
288
|
-
};
|
|
289
|
-
|
|
290
|
-
type FilterTriggerRef = {
|
|
291
|
-
triggerRef?: React.RefObject<HTMLButtonElement>;
|
|
292
|
-
};
|
|
293
|
-
|
|
294
|
-
interface FilterProps extends OverrideClassName<HTMLAttributes<HTMLDivElement>> {
|
|
295
|
-
children: React$1.ReactNode;
|
|
296
|
-
isOpen: boolean;
|
|
297
|
-
setIsOpen: (isOpen: boolean) => void;
|
|
298
|
-
renderTrigger: (triggerProps: {
|
|
299
|
-
onClick: () => void;
|
|
300
|
-
isOpen: boolean;
|
|
301
|
-
}) => JSX.Element & {
|
|
302
|
-
ref?: React$1.RefObject<FilterTriggerRef>;
|
|
303
|
-
};
|
|
304
|
-
onMount?: (triggerRef: React$1.RefObject<HTMLButtonElement>) => void;
|
|
305
|
-
}
|
|
306
|
-
declare const Filter: {
|
|
307
|
-
({ children, isOpen, setIsOpen, renderTrigger, classNameOverride, onMount, ...restProps }: FilterProps): JSX.Element;
|
|
308
|
-
displayName: string;
|
|
309
|
-
};
|
|
310
|
-
|
|
311
|
-
interface FilterContentsProps extends OverrideClassName<HTMLAttributes<HTMLDivElement>> {
|
|
312
|
-
children: React$1.ReactNode;
|
|
313
|
-
}
|
|
314
|
-
declare const FilterContents: {
|
|
315
|
-
({ children, classNameOverride, ...restProps }: FilterContentsProps): JSX.Element;
|
|
316
|
-
displayName: string;
|
|
317
|
-
};
|
|
318
|
-
|
|
319
|
-
interface FilterButtonBaseProps extends OverrideClassName<ButtonHTMLAttributes<HTMLButtonElement>> {
|
|
320
|
-
children: React$1.ReactNode;
|
|
321
|
-
}
|
|
322
|
-
|
|
323
|
-
interface FilterButtonProps extends Omit<FilterButtonBaseProps, "children"> {
|
|
324
|
-
label: string;
|
|
325
|
-
selectedValue?: string | JSX.Element;
|
|
326
|
-
isOpen?: boolean;
|
|
327
|
-
}
|
|
328
|
-
declare const FilterButton: React$1.ForwardRefExoticComponent<FilterButtonProps & React$1.RefAttributes<FilterTriggerRef>>;
|
|
329
|
-
|
|
330
|
-
type DataAttributes = {
|
|
331
|
-
[key: `data-${string}`]: string | undefined;
|
|
332
|
-
};
|
|
333
|
-
|
|
334
|
-
interface ButtonGroupProps extends OverrideClassName<HTMLAttributes<HTMLDivElement>> {
|
|
335
|
-
children: React$1.ReactElement<FilterButtonBaseProps | TooltipProps> | Array<React$1.ReactElement<FilterButtonBaseProps | TooltipProps>>;
|
|
336
|
-
}
|
|
337
|
-
|
|
338
|
-
interface FilterButtonRemovableProps extends Omit<ButtonGroupProps, "children"> {
|
|
339
|
-
triggerButtonProps: FilterButtonProps & DataAttributes;
|
|
340
|
-
removeButtonProps: Partial<Omit<FilterButtonBaseProps, "children">> & DataAttributes & {
|
|
341
|
-
tooltipText?: string;
|
|
342
|
-
};
|
|
343
|
-
}
|
|
344
|
-
type FilterButtonRemovableRefs = FilterTriggerRef & {
|
|
345
|
-
removeButtonRef?: React$1.RefObject<HTMLButtonElement>;
|
|
346
|
-
};
|
|
347
|
-
declare const FilterButtonRemovable: React$1.ForwardRefExoticComponent<FilterButtonRemovableProps & React$1.RefAttributes<FilterButtonRemovableRefs>>;
|
|
348
|
-
|
|
349
|
-
type SelectOption = {
|
|
350
|
-
label: string;
|
|
351
|
-
value: React.Key;
|
|
352
|
-
disabled?: boolean;
|
|
353
|
-
options?: never;
|
|
354
|
-
};
|
|
355
|
-
type SelectOptionGroup<Option extends SelectOption> = {
|
|
356
|
-
label: string;
|
|
357
|
-
options: Iterable<Option>;
|
|
358
|
-
};
|
|
359
|
-
type SelectItem<Option extends SelectOption = SelectOption> = Option | SelectOptionGroup<Option>;
|
|
360
|
-
interface SelectOptionNode<Option extends SelectOption = SelectOption> extends Node<Option> {
|
|
361
|
-
type: "item";
|
|
362
|
-
hasChildNodes: false;
|
|
363
|
-
}
|
|
364
|
-
interface SelectOptionGroupNode<Option extends SelectOption = SelectOption> extends Omit<Node<SelectOptionGroup<Option>>, "childNodes"> {
|
|
365
|
-
type: "section";
|
|
366
|
-
hasChildNodes: true;
|
|
367
|
-
childNodes: Array<SelectOptionNode<Option>>;
|
|
368
|
-
}
|
|
369
|
-
type SelectItemNode<Option extends SelectOption = SelectOption> = SelectOptionNode<Option> | SelectOptionGroupNode<Option>;
|
|
370
|
-
|
|
371
|
-
type ListItemProps<Option extends SelectOption = SelectOption> = {
|
|
372
|
-
item: SelectItemNode<Option>;
|
|
373
|
-
};
|
|
374
|
-
|
|
375
|
-
interface OptionProps<Option extends SelectOption = SelectOption> extends OverrideClassName<Omit<HTMLAttributes<HTMLLIElement>, "children">> {
|
|
376
|
-
item: SelectOptionNode<Option>;
|
|
377
|
-
}
|
|
378
|
-
|
|
379
|
-
interface ListBoxSectionProps<Option extends SelectOption> {
|
|
380
|
-
section: SelectOptionGroupNode<Option>;
|
|
381
|
-
}
|
|
382
|
-
|
|
383
|
-
type OmittedAriaSelectProps = "label" | "children" | "isOpen" | "onOpenChange" | "defaultOpen" | "items";
|
|
384
|
-
interface FilterSelectProps<Option extends SelectOption = SelectOption> extends OverrideClassName<Omit<SelectProps<Option>, OmittedAriaSelectProps>> {
|
|
385
|
-
isOpen: boolean;
|
|
386
|
-
setIsOpen: (isOpen: boolean) => void;
|
|
387
|
-
renderTrigger: (triggerButtonProps: FilterButtonProps) => JSX.Element;
|
|
388
|
-
label: string;
|
|
389
|
-
children?: (args: {
|
|
390
|
-
items: Array<SelectItemNode<Option>>;
|
|
391
|
-
}) => React$1.ReactNode;
|
|
392
|
-
items: Array<SelectItem<Option>>;
|
|
393
|
-
}
|
|
394
|
-
declare const FilterSelect: {
|
|
395
|
-
<Option extends SelectOption = SelectOption>({ isOpen, setIsOpen, renderTrigger, label, children, items, classNameOverride, ...restProps }: FilterSelectProps<Option>): JSX.Element;
|
|
396
|
-
displayName: string;
|
|
397
|
-
Section: {
|
|
398
|
-
<Option_1 extends SelectOption = SelectOption>({ section, }: ListBoxSectionProps<Option_1>): JSX.Element;
|
|
399
|
-
displayName: string;
|
|
400
|
-
};
|
|
401
|
-
SectionDivider: {
|
|
402
|
-
(): JSX.Element;
|
|
403
|
-
displayName: string;
|
|
404
|
-
};
|
|
405
|
-
Option: {
|
|
406
|
-
<Option_2 extends SelectOption = SelectOption>({ item, classNameOverride, ...props }: OptionProps<Option_2>): JSX.Element;
|
|
407
|
-
displayName: string;
|
|
408
|
-
};
|
|
409
|
-
ItemDefaultRender: {
|
|
410
|
-
<Option_3 extends SelectOption = SelectOption>({ item, }: ListItemProps<Option_3>): JSX.Element;
|
|
411
|
-
displayName: string;
|
|
412
|
-
};
|
|
413
|
-
};
|
|
414
|
-
|
|
415
|
-
export { CSSVariableTheme, DeepMapObjectLeafs, Filter, FilterButton, FilterButtonProps, FilterButtonRemovable, FilterButtonRemovableProps, FilterButtonRemovableRefs, FilterContents, FilterContentsProps, FilterProps, FilterSelect, FilterSelectProps, FilterTriggerRef, KaizenProvider, KaizenProviderProps, SelectItem, SelectItemNode, SelectOption, SelectOptionGroup, SelectOptionGroupNode, SelectOptionNode, Theme, ThemeContext, ThemeKey, ThemeManager, ThemeProvider, TypographyFont, defaultTheme, heartTheme, useTheme };
|
|
425
|
+
export { Brand, BrandProps, CSSVariableTheme, DeepMapObjectLeafs, Filter, FilterButton, FilterButtonProps, FilterButtonRemovable, FilterButtonRemovableProps, FilterButtonRemovableRefs, FilterContents, FilterContentsProps, FilterProps, FilterSelect, FilterSelectProps, FilterTriggerRef, KaizenProvider, KaizenProviderProps, SelectItem, SelectItemNode, SelectOption, SelectOptionGroup, SelectOptionGroupNode, SelectOptionNode, Theme, ThemeContext, ThemeKey, ThemeManager, ThemeProvider, TypographyFont, defaultTheme, heartTheme, useTheme };
|
package/dist/styles.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.ExampleComponent-module_exampleComponent__GfCkW{color:#ff0}.FilterPopover-module_filterPopover__OgOEM{background-color:var(--color-white,#fff);border-radius:var(--border-borderless-border-radius,7px);box-shadow:var(--shadow-large-box-shadow,0 8px 40px rgba(0,0,0,.08),0 3px 9px rgba(0,0,0,.1));display:inline-flex;z-index:1010}.FilterContents-module_filterContents__uNUpd{padding:var(--spacing-md,1.5rem)}.SVG-module_icon__FE6iP{display:inline-block;height:20px;width:20px}.SVG-module_icon__FE6iP>use{pointer-events:none}.SVG-module_inheritSize__wiKMe{display:block;height:inherit;width:inherit}@media screen and (-ms-high-contrast:active){.SVG-module_icon__FE6iP{color:#000}}@media screen and (-ms-high-contrast:white-on-black){.SVG-module_icon__FE6iP{color:#fff}}@media screen and (-ms-high-contrast:black-on-white){.SVG-module_icon__FE6iP{color:#000}}.SVG-module_interactiveIconWrapper__ACcob{cursor:pointer}.SVG-module_interactiveIconWrapper__ACcob .SVG-module_icon__FE6iP{opacity:.7;transition:var(--animation-duration-fast,.3s) opacity}.SVG-module_interactiveIconWrapper__ACcob.SVG-module_disabled__WB5BU .SVG-module_icon__FE6iP,.SVG-module_interactiveIconWrapper__ACcob:disabled .SVG-module_icon__FE6iP{opacity:.3}.SVG-module_interactiveIconWrapper__ACcob:not(:disabled):not(.SVG-module_disabled__WB5BU).SVG-module_hover__QivVO .SVG-module_icon__FE6iP,.SVG-module_interactiveIconWrapper__ACcob:not(:disabled):not(.SVG-module_disabled__WB5BU):focus .SVG-module_icon__FE6iP,.SVG-module_interactiveIconWrapper__ACcob:not(:disabled):not(.SVG-module_disabled__WB5BU):hover .SVG-module_icon__FE6iP{opacity:1}.SVG-module_interactiveIconWrapper__ACcob:not(:disabled):not(.SVG-module_disabled__WB5BU).SVG-module_active__R9jic .SVG-module_icon__FE6iP,.SVG-module_interactiveIconWrapper__ACcob:not(:disabled):not(.SVG-module_disabled__WB5BU):active .SVG-module_icon__FE6iP{opacity:1}.SVG-module_reversedInteractiveIconWrapper__hTsnf .SVG-module_icon__FE6iP{opacity:1}.SVG-module_reversedInteractiveIconWrapper__hTsnf .SVG-module_active__R9jic .SVG-module_icon__FE6iP,.SVG-module_reversedInteractiveIconWrapper__hTsnf :active .SVG-module_icon__FE6iP{opacity:.5}.FilterButtonBase-module_filterButtonBase__I8mV-{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;background-color:var(--color-blue-100,#e6f6ff);border:0;border-radius:var(--border-solid-border-radius,7px);color:inherit;color:var(--color-blue-500,#0168b3);display:inline;display:inline-flex;font:inherit;font-family:var(--typography-button-secondary-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-button-secondary-font-size,1rem);font-weight:var(--typography-button-secondary-font-weight,500);height:3rem;letter-spacing:var(--typography-button-secondary-letter-spacing,normal);line-height:var(--typography-button-secondary-line-height,1.5rem);margin:0;padding:0;padding:var(--spacing-sm,.75rem);position:relative;white-space:nowrap}.FilterButtonBase-module_filterButtonBase__I8mV-.story__filter-button-base--active,.FilterButtonBase-module_filterButtonBase__I8mV-.story__filter-button-base--hover,.FilterButtonBase-module_filterButtonBase__I8mV-:active,.FilterButtonBase-module_filterButtonBase__I8mV-:hover{z-index:2}.FilterButtonBase-module_filterButtonBase__I8mV-.story__filter-button-base--active,.FilterButtonBase-module_filterButtonBase__I8mV-.story__filter-button-base--focus,.FilterButtonBase-module_filterButtonBase__I8mV-.story__filter-button-base--hover,.FilterButtonBase-module_filterButtonBase__I8mV-:active,.FilterButtonBase-module_filterButtonBase__I8mV-:focus-visible,.FilterButtonBase-module_filterButtonBase__I8mV-:hover,.js-focus-visible .FilterButtonBase-module_filterButtonBase__I8mV-.focus-visible{background-color:var(--color-blue-200,#bde2f5)}.FilterButtonBase-module_filterButtonBase__I8mV-:focus{outline:none}.FilterButtonBase-module_filterButtonBase__I8mV-.story__filter-button-base--focus,.FilterButtonBase-module_filterButtonBase__I8mV-:focus-visible,.js-focus-visible .FilterButtonBase-module_filterButtonBase__I8mV-.focus-visible{outline:none}.FilterButtonBase-module_filterButtonBase__I8mV-.story__filter-button-base--focus:after,.FilterButtonBase-module_filterButtonBase__I8mV-:focus-visible:after,.js-focus-visible .FilterButtonBase-module_filterButtonBase__I8mV-.focus-visible:after{border:var(--border-focus-ring-border-width,2px) var(--border-focus-ring-border-style,solid) var(--color-blue-500,#0168b3);border-radius:var(--border-focus-ring-border-radius,10px);bottom:calc(var(--border-focus-ring-border-width, 2px)*-1 - 1px);content:"";left:calc(var(--border-focus-ring-border-width, 2px)*-1 - 1px);position:absolute;right:calc(var(--border-focus-ring-border-width, 2px)*-1 - 1px);top:calc(var(--border-focus-ring-border-width, 2px)*-1 - 1px);z-index:3}.FilterButton-module_filterButton__Q2dMX{gap:var(--spacing-xs,.375rem)}.FilterButton-module_labelContainer__5G-MD{display:inline-flex}.FilterButton-module_hasSelectedValues__dyQkL{font-weight:var(--typography-button-primary-font-weight,700)}.FilterButton-module_labelSeparator__xrkAx{-webkit-margin-end:var(--spacing-xs,.375rem);margin-inline-end:var(--spacing-xs,.375rem)}[dir=ltr] [dir=rtl] .FilterButton-module_labelSeparator__xrkAx{margin-right:0}.Tooltip-module_tooltip__80yPv{pointer-events:none;position:relative;z-index:1070}.Tooltip-module_tooltipContent__gXHKT{border-radius:var(--border-solid-border-radius,7px);box-shadow:var(--shadow-small-box-shadow,0 3px 16px rgba(0,0,0,.06),0 1px 3px rgba(0,0,0,.1));color:var(--color-purple-800,#2f2438);font-family:var(--typography-paragraph-body-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-heading-6-font-size,.875rem);font-weight:var(--typography-paragraph-body-font-weight,400);letter-spacing:var(--typography-paragraph-body-letter-spacing,normal);line-height:var(--typography-paragraph-small-line-height,1.125rem);max-width:400px;padding:.4375rem .53125rem;text-align:center;transition:opacity var(--animation-duration-fast,.3s),transform var(--animation-duration-fast,.3s)}.Tooltip-module_tooltipContent__gXHKT.Tooltip-module_default__oLBfa{background-color:var(--color-white,#fff);border:var(--border-solid-border-width,2px) var(--border-solid-border-style,solid) var(--color-gray-300,#eaeaec)}.Tooltip-module_tooltipContent__gXHKT.Tooltip-module_informative__Lw2ZJ{background-color:var(--color-blue-100,#e6f6ff);border:var(--border-solid-border-width,2px) var(--border-solid-border-style,solid) var(--color-blue-300,#73c0e8)}.Tooltip-module_tooltipContent__gXHKT.Tooltip-module_positive__31-es{background-color:var(--color-green-100,#e8f8f4);border:var(--border-solid-border-width,2px) var(--border-solid-border-style,solid) var(--color-green-300,#8fdbc7)}.Tooltip-module_tooltipContent__gXHKT.Tooltip-module_cautionary__jr2QQ{background-color:var(--color-yellow-100,#fff9e4);border:var(--border-solid-border-width,2px) var(--border-solid-border-style,solid) var(--color-yellow-300,#ffe36e)}.Tooltip-module_tooltipContent__gXHKT.Tooltip-module_highlight__b5HMe{background-color:var(--color-purple-100,#f4edf8);border:var(--border-solid-border-width,2px) var(--border-solid-border-style,solid) var(--color-purple-300,#c9a5dd)}.Tooltip-module_arrow__LWe4h{position:absolute;z-index:1}[data-popper-placement^=top] .Tooltip-module_arrow__LWe4h{bottom:0}[data-popper-placement^=bottom] .Tooltip-module_arrow__LWe4h{top:0}[data-popper-placement^=bottom] .Tooltip-module_arrow__LWe4h .Tooltip-module_arrowInner__whQvw{transform:rotate(180deg)}[data-popper-placement^=left] .Tooltip-module_arrow__LWe4h{right:0}[data-popper-placement^=left] .Tooltip-module_arrow__LWe4h .Tooltip-module_arrowInner__whQvw{transform:rotate(270deg)}[data-popper-placement^=right] .Tooltip-module_arrow__LWe4h{left:0}[data-popper-placement^=right] .Tooltip-module_arrow__LWe4h .Tooltip-module_arrowInner__whQvw{transform:rotate(90deg)}.Tooltip-module_arrowMain__VSut6:after,.Tooltip-module_arrowMain__VSut6:before{border-left:7px solid transparent;border-right:7px solid transparent;content:"";left:50%;margin-left:-7px;position:absolute}.Tooltip-module_arrowMain__VSut6.Tooltip-module_default__oLBfa:before{border-top:7px solid var(--color-gray-300,#eaeaec)}.Tooltip-module_arrowMain__VSut6.Tooltip-module_informative__Lw2ZJ:before{border-top:7px solid var(--color-blue-300,#73c0e8)}.Tooltip-module_arrowMain__VSut6.Tooltip-module_positive__31-es:before{border-top:7px solid var(--color-green-300,#8fdbc7)}.Tooltip-module_arrowMain__VSut6.Tooltip-module_highlight__b5HMe:before{border-top:7px solid var(--color-purple-300,#c9a5dd)}.Tooltip-module_arrowMain__VSut6.Tooltip-module_cautionary__jr2QQ:before{border-top:7px solid var(--color-yellow-300,#ffe36e)}.Tooltip-module_arrowMain__VSut6:after{margin-top:-3px}.Tooltip-module_arrowMain__VSut6.Tooltip-module_default__oLBfa:after{border-top:7px solid #fff}.Tooltip-module_arrowMain__VSut6.Tooltip-module_informative__Lw2ZJ:after{border-top:7px solid var(--color-blue-100,#e6f6ff)}.Tooltip-module_arrowMain__VSut6.Tooltip-module_positive__31-es:after{border-top:7px solid var(--color-green-100,#e8f8f4)}.Tooltip-module_arrowMain__VSut6.Tooltip-module_highlight__b5HMe:after{border-top:7px solid var(--color-purple-100,#f4edf8)}.Tooltip-module_arrowMain__VSut6.Tooltip-module_cautionary__jr2QQ:after{border-top:7px solid var(--color-yellow-100,#fff9e4)}.Tooltip-module_arrowShadow__cwgsV:before{border-top:0 solid var(--color-gray-300,#eaeaec)}.Tooltip-module_arrowShadow__cwgsV:after{border-top:7px solid rgba(var(--color-purple-800-rgb,47,36,56),.09);filter:blur(4px);margin-top:1px}.Tooltip-module_displayInline__iojZb{display:inline}.Tooltip-module_displayBlock__RfmWl{display:block}.Tooltip-module_displayInlineBlock__2q-e6{display:inline-block}.Tooltip-module_displayFlex__orTOm{display:flex}.Tooltip-module_displayInlineFlex__z-4AS{display:inline-flex}.ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-.ButtonGroup-module_firstChild__uEn1j,.ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-.ButtonGroup-module_firstChild__uEn1j.story__button-group--focus:after,.ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-.ButtonGroup-module_firstChild__uEn1j:focus-visible:after,.js-focus-visible .ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-.ButtonGroup-module_firstChild__uEn1j.focus-visible:after{border-end-start-radius:var(--border-focus-ring-border-radius,10px);border-start-start-radius:var(--border-focus-ring-border-radius,10px)}.ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-.ButtonGroup-module_lastChild__Vicsx,.ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-.ButtonGroup-module_lastChild__Vicsx.story__button-group--focus:after,.ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-.ButtonGroup-module_lastChild__Vicsx:focus-visible:after,.js-focus-visible .ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-.ButtonGroup-module_lastChild__Vicsx.focus-visible:after{border-end-end-radius:var(--border-focus-ring-border-radius,10px);border-start-end-radius:var(--border-focus-ring-border-radius,10px)}.ButtonGroup-module_buttonGroup__bsy2X{display:inline-flex}.ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-{border-radius:0}.ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-.story__button-group--focus:after,.ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-:focus-visible:after,.js-focus-visible .ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-.focus-visible:after{border-radius:0}.ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-.ButtonGroup-module_firstChild__uEn1j.story__button-group--focus:after,.ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-.ButtonGroup-module_firstChild__uEn1j:focus-visible:after,.js-focus-visible .ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-.ButtonGroup-module_firstChild__uEn1j.focus-visible:after{inset-inline-end:-1px}.ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-:not(.ButtonGroup-module_firstChild__uEn1j){-webkit-border-start:1px solid var(--color-blue-300,#73c0e8);border-inline-start:1px solid var(--color-blue-300,#73c0e8)}.ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-:not(.ButtonGroup-module_firstChild__uEn1j):not(.ButtonGroup-module_lastChild__Vicsx).story__button-group--focus:after,.ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-:not(.ButtonGroup-module_firstChild__uEn1j):not(.ButtonGroup-module_lastChild__Vicsx):focus-visible:after,.js-focus-visible .ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-:not(.ButtonGroup-module_firstChild__uEn1j):not(.ButtonGroup-module_lastChild__Vicsx).focus-visible:after{inset-inline-end:-1px;inset-inline-start:-1px}.ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-.ButtonGroup-module_lastChild__Vicsx.story__button-group--focus:after,.ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-.ButtonGroup-module_lastChild__Vicsx:focus-visible:after,.js-focus-visible .ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-.ButtonGroup-module_lastChild__Vicsx.focus-visible:after{inset-inline-start:-1px}.ListBox-module_listBox__FQ9sQ{display:grid;list-style:none;margin-bottom:0;margin-top:0;max-height:22rem;padding:0}.ListBox-module_listBox__FQ9sQ.ListBox-module_focus__Tm-jn{outline:none}.Heading-module_heading__Fe11y{margin:0}.Heading-module_display-0__As5Ny{font-family:var(--typography-display-0-font-family,"Tiempos Headline",Georgia,serif);font-size:var(--typography-display-0-font-size,4.5rem);font-weight:var(--typography-display-0-font-weight,800);letter-spacing:var(--typography-display-0-letter-spacing,0);line-height:var(--typography-display-0-line-height,5.25rem)}.Heading-module_heading-1__fMzkm{font-family:var(--typography-heading-1-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-heading-1-font-size,2.125rem);font-weight:var(--typography-heading-1-font-weight,700);letter-spacing:var(--typography-heading-1-letter-spacing,normal);line-height:var(--typography-heading-1-line-height,2.625rem)}.Heading-module_heading-2__bgkcr{font-family:var(--typography-heading-2-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-heading-2-font-size,1.75rem);font-weight:var(--typography-heading-2-font-weight,700);letter-spacing:var(--typography-heading-2-letter-spacing,normal);line-height:var(--typography-heading-2-line-height,2.25rem)}.Heading-module_heading-3__ZRUkC{font-family:var(--typography-heading-3-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-heading-3-font-size,1.375rem);font-weight:var(--typography-heading-3-font-weight,700);letter-spacing:var(--typography-heading-3-letter-spacing,normal);line-height:var(--typography-heading-3-line-height,1.875rem)}.Heading-module_heading-4__XbONZ{font-family:var(--typography-heading-4-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-heading-4-font-size,1.125rem);font-weight:var(--typography-heading-4-font-weight,600);letter-spacing:var(--typography-heading-4-letter-spacing,normal);line-height:var(--typography-heading-4-line-height,1.5rem)}.Heading-module_heading-5__fj2Gb{font-family:var(--typography-heading-5-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-heading-5-font-size,1rem);font-weight:var(--typography-heading-5-font-weight,600);letter-spacing:var(--typography-heading-5-letter-spacing,normal);line-height:var(--typography-heading-5-line-height,1.5rem)}.Heading-module_heading-6__Cmand{font-family:var(--typography-heading-6-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-heading-6-font-size,.875rem);font-weight:var(--typography-heading-6-font-weight,700);letter-spacing:var(--typography-heading-6-letter-spacing,normal);line-height:var(--typography-heading-6-line-height,1.5rem);text-transform:none}.Heading-module_dark__9m1Av{color:var(--color-purple-800,#2f2438);opacity:1}.Heading-module_dark-reduced-opacity__APHzM{color:var(--color-purple-800,#2f2438);opacity:.7}.Heading-module_white__6Flbw{color:var(--color-white,#fff);opacity:1}.Heading-module_white-reduced-opacity__-3jNg{color:var(--color-white,#fff);opacity:.8}.Heading-module_positive__uTfoL.Heading-module_small__I8UMW{color:var(--color-green-600,#2c7d67)}.Heading-module_positive__uTfoL.Heading-module_large__wKrUS{color:var(--color-green-500,#44a289)}.Heading-module_negative__hcnMm.Heading-module_small__I8UMW{color:var(--color-red-600,#a82433)}.Heading-module_negative__hcnMm.Heading-module_large__wKrUS{color:var(--color-red-500,#c93b55)}.Paragraph-module_paragraph__4W6qH{margin:0}.Paragraph-module_paragraph__4W6qH strong{font-weight:var(--typography-paragraph-bold-font-weight,600)}.Paragraph-module_intro-lede__uFhW-{font-family:var(--typography-paragraph-intro-lede-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-paragraph-intro-lede-font-size,1.25rem);font-weight:var(--typography-paragraph-intro-lede-font-weight,400);letter-spacing:var(--typography-paragraph-intro-lede-letter-spacing,0);line-height:var(--typography-paragraph-intro-lede-line-height,1.875rem)}.Paragraph-module_body__0R0qn{font-family:var(--typography-paragraph-body-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-paragraph-body-font-size,1rem);font-weight:var(--typography-paragraph-body-font-weight,400);letter-spacing:var(--typography-paragraph-body-letter-spacing,normal);line-height:var(--typography-paragraph-body-line-height,1.5rem)}.Paragraph-module_small__GQQjR{font-family:var(--typography-paragraph-small-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-paragraph-small-font-size,.875rem);font-weight:var(--typography-paragraph-small-font-weight,400);letter-spacing:var(--typography-paragraph-small-letter-spacing,normal);line-height:var(--typography-paragraph-small-line-height,1.125rem)}.Paragraph-module_extra-small__Nx9pp{font-family:var(--typography-paragraph-extra-small-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-paragraph-extra-small-font-size,.75rem);font-weight:var(--typography-paragraph-extra-small-font-weight,400);letter-spacing:var(--typography-paragraph-extra-small-letter-spacing,normal);line-height:var(--typography-paragraph-extra-small-line-height,1.125rem)}.Paragraph-module_dark__x5bRT{color:var(--color-purple-800,#2f2438);opacity:1}.Paragraph-module_dark-reduced-opacity__6jIPJ{color:var(--color-purple-800,#2f2438);opacity:.7}.Paragraph-module_white__geIrR{color:var(--color-white,#fff);opacity:1}.Paragraph-module_white-reduced-opacity__2Q7c7{color:var(--color-white,#fff);opacity:.8}.Paragraph-module_positive__mC-GU{color:var(--color-green-600,#2c7d67)}.Paragraph-module_negative__KoAoh{color:var(--color-red-600,#a82433)}.Icon-module_icon__1r20x{display:inline-block;height:20px;width:20px}.Icon-module_icon__1r20x>use{pointer-events:none}.Icon-module_inheritSize__xtkKA{display:block;height:inherit;width:inherit}.Icon-module_interactiveIconWrapper__ieTrE .Icon-module_icon__1r20x{transition:var(--animation-duration-fast,.3s) opacity}.Icon-module_interactiveIconWrapper__ieTrE:not(:disabled):not(.Icon-module_disabled__bqMQV).Icon-module_hover__EdRCd .Icon-module_icon__1r20x,.Icon-module_interactiveIconWrapper__ieTrE:not(:disabled):not(.Icon-module_disabled__bqMQV):focus .Icon-module_icon__1r20x,.Icon-module_interactiveIconWrapper__ieTrE:not(:disabled):not(.Icon-module_disabled__bqMQV):hover .Icon-module_icon__1r20x{opacity:1}.Icon-module_interactiveIconWrapper__ieTrE:not(:disabled):not(.Icon-module_disabled__bqMQV).Icon-module_active__d47mz .Icon-module_icon__1r20x,.Icon-module_interactiveIconWrapper__ieTrE:not(:disabled):not(.Icon-module_disabled__bqMQV):active .Icon-module_icon__1r20x{opacity:1}.Icon-module_reversedInteractiveIconWrapper__sZ6CO .Icon-module_active__d47mz .Icon-module_icon__1r20x,.Icon-module_reversedInteractiveIconWrapper__sZ6CO :active .Icon-module_icon__1r20x{opacity:.5}.Dropdown-module_dropdown__09sgL{padding:calc(.75rem - var(--border-solid-border-width, 2px)) calc(1.5rem - var(--border-solid-border-width, 2px));position:relative}.Dropdown-module_buttonReset__O69sc{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;border:none;color:inherit;cursor:pointer;display:inline;font:inherit;margin:0;padding:0}.Dropdown-module_dropdownButton__FiRVW{-webkit-text-decoration-skip:ink;align-items:center;color:var(--color-blue-500,#0168b3);cursor:pointer;display:flex;font-family:var(--typography-paragraph-body-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif),Helvetica,Arial,sans-serif;font-size:1rem;font-weight:400;height:100%;justify-content:center;letter-spacing:var(--typography-heading-1-letter-spacing,normal);line-height:1.5;position:relative;position:static;text-decoration:none;text-decoration-skip-ink:auto;top:.39em;width:100%}html:lang(he) .Dropdown-module_dropdownButton__FiRVW{font-family:Inter,Tahoma,sans-serif}html:lang(ar) .Dropdown-module_dropdownButton__FiRVW{font-family:Inter,Tahoma,sans-serif}.Dropdown-module_dropdownButton__FiRVW:hover{text-decoration:underline}.Dropdown-module_dropdownControlAction__iWJog{-webkit-text-decoration-skip:ink;color:var(--color-blue-500,#0168b3);cursor:pointer;font-family:var(--typography-paragraph-body-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif),Helvetica,Arial,sans-serif;font-size:1rem;font-weight:400;letter-spacing:var(--typography-heading-1-letter-spacing,normal);line-height:1.5;position:relative;position:static;text-decoration:none;text-decoration-skip-ink:auto;top:.39em}html:lang(he) .Dropdown-module_dropdownControlAction__iWJog{font-family:Inter,Tahoma,sans-serif}html:lang(ar) .Dropdown-module_dropdownControlAction__iWJog{font-family:Inter,Tahoma,sans-serif}.Dropdown-module_dropdownControlAction__iWJog:hover{text-decoration:underline}.Dropdown-module_dropdownIcon__tZfDQ{box-sizing:border-box;height:1.5rem;padding:2px;width:1.5rem}.Dropdown-module_dropdownIcon__tZfDQ+.Dropdown-module_dropdownLabel__bpY-X{margin-left:calc(.75rem - 2px)}[dir=rtl] .Dropdown-module_dropdownIcon__tZfDQ+.Dropdown-module_dropdownLabel__bpY-X{margin-left:0;margin-right:calc(.75rem - 2px)}.Dropdown-module_dropdownHoverArea__M-Y-K .Dropdown-module_dropdownIcon__tZfDQ{opacity:0}.Dropdown-module_dropdownHoverArea__M-Y-K .Dropdown-module_dropdownIcon__tZfDQ.Dropdown-module_isOpen__Kf4XR,.Dropdown-module_dropdownHoverArea__M-Y-K .Dropdown-module_dropdownIcon__tZfDQ:focus{opacity:1}.Dropdown-module_dropdownHoverArea__M-Y-K:hover .Dropdown-module_dropdownIcon__tZfDQ{opacity:1}.Dropdown-module_chevronIcon__Ieh4i{position:relative;top:4px}.Dropdown-module_menuContainer__xl9MT{position:absolute;right:0;width:248px;z-index:1000}[dir=rtl] .Dropdown-module_menuContainer__xl9MT{left:0;right:auto}.Dropdown-module_reversedColor__rGeiB{color:var(--color-white,#fff)}.Layout-module_root__SgXZT{align-items:stretch;display:flex;flex-direction:column;height:100vh}.Layout-module_navigationBar__1xbfp{flex:0 0 auto}.Layout-module_page__ZSTUO{align-items:center;display:flex;flex:1 0 0px;flex-direction:column}.Layout-module_footer__wFknz,.Layout-module_header__X1E96{flex:0 0 auto;width:100%}.Layout-module_body__r1d-M{display:flex;flex:1 1 0px;flex-direction:column;height:auto;position:relative;width:100%}.Layout-module_bodyInner__e5WA6{align-self:center;display:flex;height:100%;max-width:1416px;position:static;width:100%}@media print{.Layout-module_bodyInner__e5WA6{display:block;height:auto;position:static;width:auto}}.Layout-module_sidebar__FSH-B{height:auto;margin:0 1.5rem;overflow:visible;padding:1.5rem 0;position:static;width:15rem}@media print{.Layout-module_sidebar__FSH-B{background-color:transparent;height:auto;overflow:visible;padding:0;position:static;width:auto}}.Layout-module_content__6gaoR{display:flex;flex:1 1 auto;flex-direction:column;margin:0 1.5rem;max-width:1080px;padding:1.5rem 0}@media print{.Layout-module_content__6gaoR{display:block;margin-left:0;overflow:visible;padding:0}}.Layout-module_content__6gaoR:only-child{margin:0 auto;min-width:100%;width:100%}@media (min-width:480px){.Layout-module_content__6gaoR:only-child{min-width:auto}}.Layout-module_navigationBar__1xbfp{box-sizing:border-box;top:0;z-index:1030}.Layout-module_page__ZSTUO{box-sizing:border-box;position:relative}.Layout-module_body__r1d-M,.Layout-module_content__6gaoR,.Layout-module_footer__wFknz,.Layout-module_header__X1E96,.Layout-module_sidebar__FSH-B{box-sizing:border-box}.Layout-module_toasts__ZDy2G{position:absolute;right:0;top:0}.Layout-module_announcers__fAmmq{clip:rect(0,0,0,0);border:0;height:1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.Icon-module_icon__1r20x{@extend %caIcon}@media screen and (-ms-high-contrast:active){.Icon-module_icon__1r20x{color:#000}}@media screen and (-ms-high-contrast:white-on-black){.Icon-module_icon__1r20x{color:#fff}}@media screen and (-ms-high-contrast:black-on-white){.Icon-module_icon__1r20x{color:#000}}.Icon-module_inheritSize__xtkKA{@extend %caIconInheritSize}.Icon-module_interactiveIconWrapper__ieTrE{cursor:pointer}.Icon-module_interactiveIconWrapper__ieTrE .Icon-module_icon__1r20x{opacity:.7;transition:$animation-duration-fast opacity}.Icon-module_interactiveIconWrapper__ieTrE.Icon-module_disabled__bqMQV .Icon-module_icon__1r20x,.Icon-module_interactiveIconWrapper__ieTrE:disabled .Icon-module_icon__1r20x{opacity:.3}.Icon-module_interactiveIconWrapper__ieTrE.Icon-module_hover__EdRCd:not(:disabled):not(.Icon-module_disabled__bqMQV) .Icon-module_icon__1r20x,.Icon-module_interactiveIconWrapper__ieTrE:not(:disabled):not(.Icon-module_disabled__bqMQV):focus .Icon-module_icon__1r20x,.Icon-module_interactiveIconWrapper__ieTrE:not(:disabled):not(.Icon-module_disabled__bqMQV):hover .Icon-module_icon__1r20x{opacity:1}.Icon-module_interactiveIconWrapper__ieTrE.Icon-module_active__d47mz:not(:disabled):not(.Icon-module_disabled__bqMQV) .Icon-module_icon__1r20x,.Icon-module_interactiveIconWrapper__ieTrE:not(:disabled):not(.Icon-module_disabled__bqMQV):active .Icon-module_icon__1r20x{opacity:1}.Icon-module_reversedInteractiveIconWrapper__sZ6CO .Icon-module_icon__1r20x{opacity:1}.Icon-module_reversedInteractiveIconWrapper__sZ6CO.Icon-module_active__d47mz:not(:disabled,.Icon-module_disabled__bqMQV) .Icon-module_icon__1r20x,.Icon-module_reversedInteractiveIconWrapper__sZ6CO:not(:disabled,.Icon-module_disabled__bqMQV):active .Icon-module_icon__1r20x{opacity:.5}.Menu-module_menuList__behqY{background:#fff;border:var(--border-solid-border-width,2px) var(--border-solid-border-style,solid) var(--color-purple-200,#dfc9ea);box-shadow:var(--shadow-small-box-shadow,0 3px 16px rgba(0,0,0,.06),0 1px 3px rgba(0,0,0,.1));line-height:40px}.Menu-module_header__MMpNm{border-bottom:1px solid var(--border-solid-border-color,#e1e2ea);color:rgba(var(--color-purple-800-rgb,47,36,56),.4);padding:10px 1.125rem;text-align:left}.Menu-module_header__title__4QK0E{display:block;font-family:var(--typography-paragraph-body-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif),Helvetica,Arial,sans-serif;font-size:.875rem;font-weight:var(--typography-heading-6-font-weight,700);letter-spacing:var(--typography-heading-6-letter-spacing,normal);line-height:1.71429;position:relative;position:static;top:.49714em}html:lang(he) .Menu-module_header__title__4QK0E{font-family:Inter,Tahoma,sans-serif}html:lang(ar) .Menu-module_header__title__4QK0E{font-family:Inter,Tahoma,sans-serif}.Menu-module_menuItem__0rlZg{background:transparent;color:var(--color-purple-800,#2f2438);cursor:pointer;display:flex;flex:0 0 100%;font-family:var(--typography-paragraph-body-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif),Helvetica,Arial,sans-serif;font-size:1rem;font-weight:var(--typography-paragraph-body-font-weight,400);letter-spacing:var(--typography-paragraph-body-letter-spacing,normal);line-height:1.5;padding:10px 1.125rem;position:relative;position:static;text-align:left;text-decoration:none;top:.39em;transition:var(--animation-duration-immediate,.1s) background-color ease,var(--animation-duration-immediate,.1s) color ease}html:lang(he) .Menu-module_menuItem__0rlZg{font-family:Inter,Tahoma,sans-serif}html:lang(ar) .Menu-module_menuItem__0rlZg{font-family:Inter,Tahoma,sans-serif}[dir=rtl] .Menu-module_menuItem__0rlZg{text-align:right}.Menu-module_menuItem__0rlZg.Menu-module_menuItem--active__xr3IS,.Menu-module_menuItem__0rlZg:focus,.Menu-module_menuItem__0rlZg:hover{background:var(--color-gray-100,#f9f9f9);color:var(--color-blue-500,#0168b3);text-decoration:none}.Menu-module_menuItem__0rlZg.Menu-module_menuItem--active__xr3IS .Menu-module_menuItem__Icon__SEvH-,.Menu-module_menuItem__0rlZg:focus .Menu-module_menuItem__Icon__SEvH-,.Menu-module_menuItem__0rlZg:hover .Menu-module_menuItem__Icon__SEvH-{color:var(--color-blue-500,#0168b3)}.Menu-module_menuItem--destructive__bg0qx,.Menu-module_menuItem--destructive__bg0qx .Menu-module_menuItem__Icon__SEvH-{color:var(--color-red-600,#a82433)}.Menu-module_menuItem__Label__KPrkg{flex:1}.Menu-module_menuItem__Label__KPrkg :not(:only-child){margin-left:0;margin-right:.75rem}.Menu-module_menuItem__Label__KPrkg :not(:only-child)[dir=rtl],[dir=rtl] .Menu-module_menuItem__Label__KPrkg :not(:only-child){margin-left:.75rem;margin-right:0}.Menu-module_menuItem__Icon__SEvH-{color:var(--color-purple-800,#2f2438);position:relative;text-align:right;top:3px}.Menu-module_hoverIcon__WCsbC .Menu-module_menuItem__Icon__SEvH-{opacity:0}.Menu-module_hoverIcon__WCsbC:focus .Menu-module_menuItem__Icon__SEvH-,.Menu-module_hoverIcon__WCsbC:hover .Menu-module_menuItem__Icon__SEvH-,.Menu-module_menuItem--active__xr3IS .Menu-module_menuItem__Icon__SEvH-{opacity:1}.Menu-module_separator__RCRVm{background:var(--color-purple-200,#dfc9ea);border:0;height:1px;margin:5px 0;visibility:visible;width:100%}.Text-module_page-title__LPGyH,h1.Text-module_default-style__wxvqC{font-family:Inter,Noto Sans,Helvetica,Arial,sans-serif;font-size:2rem;font-weight:700;letter-spacing:normal;line-height:1.125;margin-bottom:1.5rem;margin-top:0;position:relative;top:.2025em}html:lang(he) .Text-module_page-title__LPGyH,html:lang(he) h1.Text-module_default-style__wxvqC{font-family:Inter,Tahoma,sans-serif}html:lang(ar) .Text-module_page-title__LPGyH,html:lang(ar) h1.Text-module_default-style__wxvqC{font-family:Inter,Tahoma,sans-serif}.Text-module_title__zDZi1,h2.Text-module_default-style__wxvqC{font-family:Inter,Noto Sans,Helvetica,Arial,sans-serif;font-size:1.625rem;font-weight:700;letter-spacing:normal;line-height:1.38462;margin-bottom:1.5rem;margin-top:0;position:relative;top:.33231em}html:lang(he) .Text-module_title__zDZi1,html:lang(he) h2.Text-module_default-style__wxvqC{font-family:Inter,Tahoma,sans-serif}html:lang(ar) .Text-module_title__zDZi1,html:lang(ar) h2.Text-module_default-style__wxvqC{font-family:Inter,Tahoma,sans-serif}.Text-module_display__4XAjg,h3.Text-module_default-style__wxvqC{font-family:Inter,Noto Sans,Helvetica,Arial,sans-serif;font-size:1.375rem;font-weight:600;letter-spacing:normal;line-height:1.09091;margin-bottom:1.5rem;margin-top:0;position:relative;top:.18545em}html:lang(he) .Text-module_display__4XAjg,html:lang(he) h3.Text-module_default-style__wxvqC{font-family:Inter,Tahoma,sans-serif}html:lang(ar) .Text-module_display__4XAjg,html:lang(ar) h3.Text-module_default-style__wxvqC{font-family:Inter,Tahoma,sans-serif}.Text-module_heading__bdw3r,h4.Text-module_default-style__wxvqC,h5.Text-module_default-style__wxvqC,h6.Text-module_default-style__wxvqC{font-family:Inter,Noto Sans,Helvetica,Arial,sans-serif;font-size:1.125rem;font-weight:600;letter-spacing:normal;line-height:1.33333;margin-bottom:1.5rem;margin-top:0;position:relative;top:.30667em}html:lang(he) .Text-module_heading__bdw3r,html:lang(he) h4.Text-module_default-style__wxvqC,html:lang(he) h5.Text-module_default-style__wxvqC,html:lang(he) h6.Text-module_default-style__wxvqC{font-family:Inter,Tahoma,sans-serif}html:lang(ar) .Text-module_heading__bdw3r,html:lang(ar) h4.Text-module_default-style__wxvqC,html:lang(ar) h5.Text-module_default-style__wxvqC,html:lang(ar) h6.Text-module_default-style__wxvqC{font-family:Inter,Tahoma,sans-serif}.Text-module_lede__rvztp{font-family:Inter,Noto Sans,Helvetica,Arial,sans-serif;font-size:1.25rem;font-weight:400;letter-spacing:normal;line-height:1.2;margin-bottom:1.5rem;margin-top:0;position:relative;top:.24em}html:lang(he) .Text-module_lede__rvztp{font-family:Inter,Tahoma,sans-serif}html:lang(ar) .Text-module_lede__rvztp{font-family:Inter,Tahoma,sans-serif}.Text-module_paragraph__65c7w,p.Text-module_default-style__wxvqC{font-family:Inter,Noto Sans,Helvetica,Arial,sans-serif;font-size:1rem;font-weight:400;letter-spacing:normal;line-height:1.5;margin-bottom:1.5rem;margin-top:0;position:relative;top:.39em}html:lang(he) .Text-module_paragraph__65c7w,html:lang(he) p.Text-module_default-style__wxvqC{font-family:Inter,Tahoma,sans-serif}html:lang(ar) .Text-module_paragraph__65c7w,html:lang(ar) p.Text-module_default-style__wxvqC{font-family:Inter,Tahoma,sans-serif}.Text-module_body__5HknB,.Text-module_default-style__wxvqC{font-family:Inter,Noto Sans,Helvetica,Arial,sans-serif;font-size:1rem;font-weight:400;letter-spacing:normal;line-height:1.5;margin:0;position:relative;top:.39em}html:lang(he) .Text-module_body__5HknB,html:lang(he) .Text-module_default-style__wxvqC{font-family:Inter,Tahoma,sans-serif}html:lang(ar) .Text-module_body__5HknB,html:lang(ar) .Text-module_default-style__wxvqC{font-family:Inter,Tahoma,sans-serif}.Text-module_body-bold__M2YFx{font-family:Inter,Noto Sans,Helvetica,Arial,sans-serif;font-size:1rem;font-weight:600;letter-spacing:normal;line-height:1.5;margin:0;position:relative;top:.39em}html:lang(he) .Text-module_body-bold__M2YFx{font-family:Inter,Tahoma,sans-serif}html:lang(ar) .Text-module_body-bold__M2YFx{font-family:Inter,Tahoma,sans-serif}.Text-module_small__VBWdb{font-family:Inter,Noto Sans,Helvetica,Arial,sans-serif;font-size:.875rem;font-weight:400;letter-spacing:normal;line-height:1.71429;margin:0;position:relative;top:.49714em}html:lang(he) .Text-module_small__VBWdb{font-family:Inter,Tahoma,sans-serif}html:lang(ar) .Text-module_small__VBWdb{font-family:Inter,Tahoma,sans-serif}.Text-module_small-bold__IFUAu{font-family:Inter,Noto Sans,Helvetica,Arial,sans-serif;font-size:.875rem;font-weight:600;letter-spacing:normal;line-height:1.71429;margin:0;position:relative;top:.49714em}html:lang(he) .Text-module_small-bold__IFUAu{font-family:Inter,Tahoma,sans-serif}html:lang(ar) .Text-module_small-bold__IFUAu{font-family:Inter,Tahoma,sans-serif}.Text-module_notification__jl725{font-family:Inter,Noto Sans,Helvetica,Arial,sans-serif;font-size:.9375rem;font-weight:300;letter-spacing:normal;line-height:1.2;margin:0;position:relative;top:.24em}html:lang(he) .Text-module_notification__jl725{font-family:Inter,Tahoma,sans-serif}html:lang(ar) .Text-module_notification__jl725{font-family:Inter,Tahoma,sans-serif}.Text-module_label__gUBTw{font-family:Inter,Noto Sans,Helvetica,Arial,sans-serif;font-size:.75rem;font-weight:600;letter-spacing:.04167em;line-height:2;margin:0;position:relative;text-transform:uppercase;top:.64em}html:lang(he) .Text-module_label__gUBTw{font-family:Inter,Tahoma,sans-serif}html:lang(ar) .Text-module_label__gUBTw{font-family:Inter,Tahoma,sans-serif}.Text-module_control-action__BErPr{-webkit-text-decoration-skip:ink;color:var(--color-blue-500,#0168b3);cursor:pointer;font-family:Inter,Noto Sans,Helvetica,Arial,sans-serif;font-size:1rem;font-weight:500;letter-spacing:normal;line-height:1.5;margin:0;position:relative;text-decoration:none;text-decoration-skip-ink:auto;top:.39em}html:lang(he) .Text-module_control-action__BErPr{font-family:Inter,Tahoma,sans-serif}html:lang(ar) .Text-module_control-action__BErPr{font-family:Inter,Tahoma,sans-serif}.Text-module_control-action__BErPr:hover{text-decoration:underline}.Text-module_button__nPbRH{font-family:Inter,Noto Sans,Helvetica,Arial,sans-serif;font-size:1.125rem;font-weight:700;letter-spacing:normal;line-height:1.33333;margin:0;position:relative;top:.30667em}html:lang(he) .Text-module_button__nPbRH{font-family:Inter,Tahoma,sans-serif}html:lang(ar) .Text-module_button__nPbRH{font-family:Inter,Tahoma,sans-serif}.Text-module_inheritBaseline__D0Lfs.Text-module_inheritBaseline__D0Lfs{position:static}.Text-module_inline__KlYw2.Text-module_inline__KlYw2{display:inline-flex;margin-bottom:0}.Text-module_zen-display-0__s1w7g{font-family:var(--typography-heading-1-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif),Helvetica,Arial,sans-serif;font-size:4.5rem;font-weight:var(--typography-display-0-font-weight,800);letter-spacing:var(--typography-display-0-letter-spacing,0);line-height:1;margin-bottom:1.5rem;margin-top:0;position:relative;top:.098em}html:lang(he) .Text-module_zen-display-0__s1w7g{font-family:Inter,Tahoma,sans-serif}html:lang(ar) .Text-module_zen-display-0__s1w7g{font-family:Inter,Tahoma,sans-serif}.Text-module_zen-heading-1__YX01A{font-family:var(--typography-heading-1-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif),Helvetica,Arial,sans-serif;font-size:2.25rem;font-weight:var(--typography-heading-1-font-weight,700);letter-spacing:var(--typography-heading-1-letter-spacing,normal);line-height:1;margin-bottom:1.5rem;margin-top:0;position:relative;top:.098em}html:lang(he) .Text-module_zen-heading-1__YX01A{font-family:Inter,Tahoma,sans-serif}html:lang(ar) .Text-module_zen-heading-1__YX01A{font-family:Inter,Tahoma,sans-serif}.Text-module_zen-heading-2__JVOtq{font-family:var(--typography-heading-1-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif),Helvetica,Arial,sans-serif;font-size:1.875rem;font-weight:var(--typography-heading-2-font-weight,700);letter-spacing:var(--typography-heading-2-letter-spacing,normal);line-height:1.2;margin-bottom:1.5rem;margin-top:0;position:relative;top:.198em}html:lang(he) .Text-module_zen-heading-2__JVOtq{font-family:Inter,Tahoma,sans-serif}html:lang(ar) .Text-module_zen-heading-2__JVOtq{font-family:Inter,Tahoma,sans-serif}.Text-module_zen-heading-3__JOT3q{font-family:var(--typography-heading-1-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif),Helvetica,Arial,sans-serif;font-size:1.375rem;font-weight:var(--typography-heading-3-font-weight,700);letter-spacing:var(--typography-heading-3-letter-spacing,normal);line-height:1.09091;margin-bottom:1.5rem;margin-top:0;position:relative;top:.14345em}html:lang(he) .Text-module_zen-heading-3__JOT3q{font-family:Inter,Tahoma,sans-serif}html:lang(ar) .Text-module_zen-heading-3__JOT3q{font-family:Inter,Tahoma,sans-serif}.Text-module_zen-data-large__EgwWh{font-family:var(--typography-heading-1-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif),Helvetica,Arial,sans-serif;font-size:5.25rem;font-weight:var(--typography-data-large-font-weight,700);letter-spacing:var(--typography-data-large-letter-spacing,normal);line-height:1;margin-bottom:1.5rem;margin-top:0;position:relative;top:.098em}html:lang(he) .Text-module_zen-data-large__EgwWh{font-family:Inter,Tahoma,sans-serif}html:lang(ar) .Text-module_zen-data-large__EgwWh{font-family:Inter,Tahoma,sans-serif}.Text-module_zen-data-large-units__lZjpK{font-family:var(--typography-heading-1-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif),Helvetica,Arial,sans-serif;font-size:2.625rem;font-weight:var(--typography-data-large-units-font-weight,700);letter-spacing:var(--typography-data-large-units-letter-spacing,normal);line-height:2;margin-bottom:1.5rem;margin-top:0;position:relative;top:.598em}html:lang(he) .Text-module_zen-data-large-units__lZjpK{font-family:Inter,Tahoma,sans-serif}html:lang(ar) .Text-module_zen-data-large-units__lZjpK{font-family:Inter,Tahoma,sans-serif}.Text-module_zen-data-medium__wKodD{font-family:var(--typography-heading-1-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif),Helvetica,Arial,sans-serif;font-size:3rem;font-weight:var(--typography-data-medium-font-weight,700);letter-spacing:var(--typography-data-medium-letter-spacing,normal);line-height:1.66667;margin-bottom:1.5rem;margin-top:0;position:relative;top:.43133em}html:lang(he) .Text-module_zen-data-medium__wKodD{font-family:Inter,Tahoma,sans-serif}html:lang(ar) .Text-module_zen-data-medium__wKodD{font-family:Inter,Tahoma,sans-serif}.Text-module_zen-data-medium-units__zh-e8{font-family:var(--typography-heading-1-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif),Helvetica,Arial,sans-serif;font-size:1.5rem;font-weight:var(--typography-data-medium-units-font-weight,700);letter-spacing:var(--typography-data-medium-units-letter-spacing,normal);line-height:3.33333;margin-bottom:1.5rem;margin-top:0;position:relative;top:1.26467em}html:lang(he) .Text-module_zen-data-medium-units__zh-e8{font-family:Inter,Tahoma,sans-serif}html:lang(ar) .Text-module_zen-data-medium-units__zh-e8{font-family:Inter,Tahoma,sans-serif}.Text-module_zen-data-small__LtxHR{font-family:var(--typography-heading-1-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif),Helvetica,Arial,sans-serif;font-size:1.5rem;font-weight:var(--typography-data-small-font-weight,700);letter-spacing:var(--typography-data-small-letter-spacing,normal);line-height:1;margin-bottom:1.5rem;margin-top:0;position:relative;top:.098em}html:lang(he) .Text-module_zen-data-small__LtxHR{font-family:Inter,Tahoma,sans-serif}html:lang(ar) .Text-module_zen-data-small__LtxHR{font-family:Inter,Tahoma,sans-serif}.Text-module_zen-data-small-units__0RtFJ{font-family:var(--typography-heading-1-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif),Helvetica,Arial,sans-serif;font-size:1.125rem;font-weight:var(--typography-data-small-units-font-weight,700);letter-spacing:var(--typography-data-small-units-letter-spacing,normal);line-height:1.33333;margin-bottom:1.5rem;margin-top:0;position:relative;top:.26467em}html:lang(he) .Text-module_zen-data-small-units__0RtFJ{font-family:Inter,Tahoma,sans-serif}html:lang(ar) .Text-module_zen-data-small-units__0RtFJ{font-family:Inter,Tahoma,sans-serif}.Padding-module_p-0__MEDlm{padding:0}.Padding-module_pt-0__2lPMY{padding-top:0}.Padding-module_pr-0__tgwOG{padding-right:0}.Padding-module_pb-0__h-og-{padding-bottom:0}.Padding-module_pl-0__KQQIN{padding-left:0}.Padding-module_p-0-point-25__WR6Pl{padding:calc(var(--spacing-md, 1.5rem)*.25)}.Padding-module_pt-0-point-25__OHxwL{padding-top:calc(var(--spacing-md, 1.5rem)*.25)}.Padding-module_pr-0-point-25__dw3lt{padding-right:calc(var(--spacing-md, 1.5rem)*.25)}.Padding-module_pb-0-point-25__R-G37{padding-bottom:calc(var(--spacing-md, 1.5rem)*.25)}.Padding-module_pl-0-point-25__4H6f8{padding-left:calc(var(--spacing-md, 1.5rem)*.25)}.Padding-module_p-0-point-5__5z-Tg{padding:calc(var(--spacing-md, 1.5rem)*.5)}.Padding-module_pt-0-point-5__BILAZ{padding-top:calc(var(--spacing-md, 1.5rem)*.5)}.Padding-module_pr-0-point-5__Qdc6L{padding-right:calc(var(--spacing-md, 1.5rem)*.5)}.Padding-module_pb-0-point-5__FJOcg{padding-bottom:calc(var(--spacing-md, 1.5rem)*.5)}.Padding-module_pl-0-point-5__gctiZ{padding-left:calc(var(--spacing-md, 1.5rem)*.5)}.Padding-module_p-0-point-75__SCNgd{padding:calc(var(--spacing-md, 1.5rem)*.75)}.Padding-module_pt-0-point-75__Cve0I{padding-top:calc(var(--spacing-md, 1.5rem)*.75)}.Padding-module_pr-0-point-75__11l9x{padding-right:calc(var(--spacing-md, 1.5rem)*.75)}.Padding-module_pb-0-point-75__WfgDh{padding-bottom:calc(var(--spacing-md, 1.5rem)*.75)}.Padding-module_pl-0-point-75__YKbVF{padding-left:calc(var(--spacing-md, 1.5rem)*.75)}.Padding-module_p-1__jIDUT{padding:var(--spacing-md,1.5rem)}.Padding-module_pt-1__r358b{padding-top:var(--spacing-md,1.5rem)}.Padding-module_pr-1__fdsMH{padding-right:var(--spacing-md,1.5rem)}.Padding-module_pb-1__gkHqH{padding-bottom:var(--spacing-md,1.5rem)}.Padding-module_pl-1__1fvrt{padding-left:var(--spacing-md,1.5rem)}.Padding-module_p-1-point-25__9q2Tk{padding:calc(var(--spacing-md, 1.5rem)*1.25)}.Padding-module_pt-1-point-25__uYpt3{padding-top:calc(var(--spacing-md, 1.5rem)*1.25)}.Padding-module_pr-1-point-25__8xYeA{padding-right:calc(var(--spacing-md, 1.5rem)*1.25)}.Padding-module_pb-1-point-25__JwIfB{padding-bottom:calc(var(--spacing-md, 1.5rem)*1.25)}.Padding-module_pl-1-point-25__-w5XU{padding-left:calc(var(--spacing-md, 1.5rem)*1.25)}.Padding-module_p-1-point-5__LICS6{padding:calc(var(--spacing-md, 1.5rem)*1.5)}.Padding-module_pt-1-point-5__p9H7t{padding-top:calc(var(--spacing-md, 1.5rem)*1.5)}.Padding-module_pr-1-point-5__agJTp{padding-right:calc(var(--spacing-md, 1.5rem)*1.5)}.Padding-module_pb-1-point-5__Ig7SW{padding-bottom:calc(var(--spacing-md, 1.5rem)*1.5)}.Padding-module_pl-1-point-5__iBcnI{padding-left:calc(var(--spacing-md, 1.5rem)*1.5)}.Padding-module_p-1-point-75__lctpg{padding:calc(var(--spacing-md, 1.5rem)*1.75)}.Padding-module_pt-1-point-75__MVIUz{padding-top:calc(var(--spacing-md, 1.5rem)*1.75)}.Padding-module_pr-1-point-75__A-Ur-{padding-right:calc(var(--spacing-md, 1.5rem)*1.75)}.Padding-module_pb-1-point-75__TctUk{padding-bottom:calc(var(--spacing-md, 1.5rem)*1.75)}.Padding-module_pl-1-point-75__ahplz{padding-left:calc(var(--spacing-md, 1.5rem)*1.75)}.Padding-module_p-2__iEsEq{padding:calc(var(--spacing-md, 1.5rem)*2)}.Padding-module_pt-2__-uaDE{padding-top:calc(var(--spacing-md, 1.5rem)*2)}.Padding-module_pr-2__py781{padding-right:calc(var(--spacing-md, 1.5rem)*2)}.Padding-module_pb-2__75eso{padding-bottom:calc(var(--spacing-md, 1.5rem)*2)}.Padding-module_pl-2__4L8zZ{padding-left:calc(var(--spacing-md, 1.5rem)*2)}.Padding-module_p-2-point-5__fFM5N{padding:calc(var(--spacing-md, 1.5rem)*2.5)}.Padding-module_pt-2-point-5__aDZvm{padding-top:calc(var(--spacing-md, 1.5rem)*2.5)}.Padding-module_pr-2-point-5__H-fJW{padding-right:calc(var(--spacing-md, 1.5rem)*2.5)}.Padding-module_pb-2-point-5__0oSvZ{padding-bottom:calc(var(--spacing-md, 1.5rem)*2.5)}.Padding-module_pl-2-point-5__BGKgq{padding-left:calc(var(--spacing-md, 1.5rem)*2.5)}.Padding-module_p-3__LltVV{padding:calc(var(--spacing-md, 1.5rem)*3)}.Padding-module_pt-3__Ew6IB{padding-top:calc(var(--spacing-md, 1.5rem)*3)}.Padding-module_pr-3__ehVq5{padding-right:calc(var(--spacing-md, 1.5rem)*3)}.Padding-module_pb-3__u8K7J{padding-bottom:calc(var(--spacing-md, 1.5rem)*3)}.Padding-module_pl-3__GLx74{padding-left:calc(var(--spacing-md, 1.5rem)*3)}.Padding-module_p-3-point-5__PyzuE{padding:calc(var(--spacing-md, 1.5rem)*3.5)}.Padding-module_pt-3-point-5__qKa2E{padding-top:calc(var(--spacing-md, 1.5rem)*3.5)}.Padding-module_pr-3-point-5__xJlsH{padding-right:calc(var(--spacing-md, 1.5rem)*3.5)}.Padding-module_pb-3-point-5__H4D4H{padding-bottom:calc(var(--spacing-md, 1.5rem)*3.5)}.Padding-module_pl-3-point-5__krW-a{padding-left:calc(var(--spacing-md, 1.5rem)*3.5)}.Padding-module_p-4__boMST{padding:calc(var(--spacing-md, 1.5rem)*4)}.Padding-module_pt-4__lHX5n{padding-top:calc(var(--spacing-md, 1.5rem)*4)}.Padding-module_pr-4__sl2rR{padding-right:calc(var(--spacing-md, 1.5rem)*4)}.Padding-module_pb-4__ffDeO{padding-bottom:calc(var(--spacing-md, 1.5rem)*4)}.Padding-module_pl-4__mRkKo{padding-left:calc(var(--spacing-md, 1.5rem)*4)}@font-face{font-family:Tiempos Headline;font-weight:800;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/tiempos/tiempos-headline-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/tiempos/tiempos-headline-bold.woff)}@font-face{font-family:Greycliff CF;font-weight:300;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-light.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:400;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-regular.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:500;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-medium.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:600;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-demi-bold.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:700;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-bold.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:800;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-extra-bold.woff) format("woff")}@font-face{font-family:Inter;font-weight:300;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-light.woff2) url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-light.woff)}@font-face{font-family:Inter;font-weight:400;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-regular.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-regular.woff)}@font-face{font-family:Inter;font-weight:500;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-medium.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-medium.woff)}@font-face{font-family:Inter;font-weight:600;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-demi-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-demi-bold.woff)}@font-face{font-family:Inter;font-weight:700;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-bold.woff)}@font-face{font-family:Inter;font-weight:800;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-extra-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-extra-bold.woff)}@font-face{font-family:IBM Plex Mono;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/ibm-plex-mono/ibm-plex-mono-regular.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/ibm-plex-mono/ibm-plex-mono-regular.woff)}.Margin-module_m-0__hSA96{margin:0}.Margin-module_mt-0__7WGbv{margin-top:0}.Margin-module_mr-0__CX8k-{margin-right:0}.Margin-module_mb-0__LjHy2{margin-bottom:0}.Margin-module_ml-0__Ffq2J{margin-left:0}.Margin-module_m-0-point-25__RrkvF{margin:calc(var(--spacing-md, 1.5rem)*.25)}.Margin-module_mt-0-point-25__lOnmq{margin-top:calc(var(--spacing-md, 1.5rem)*.25)}.Margin-module_mr-0-point-25__JYjnr{margin-right:calc(var(--spacing-md, 1.5rem)*.25)}.Margin-module_mb-0-point-25__aSIWe{margin-bottom:calc(var(--spacing-md, 1.5rem)*.25)}.Margin-module_ml-0-point-25__UIx-6{margin-left:calc(var(--spacing-md, 1.5rem)*.25)}.Margin-module_m-0-point-5__o1ClI{margin:calc(var(--spacing-md, 1.5rem)*.5)}.Margin-module_mt-0-point-5__Hlw6J{margin-top:calc(var(--spacing-md, 1.5rem)*.5)}.Margin-module_mr-0-point-5__lTVga{margin-right:calc(var(--spacing-md, 1.5rem)*.5)}.Margin-module_mb-0-point-5__09Kv0{margin-bottom:calc(var(--spacing-md, 1.5rem)*.5)}.Margin-module_ml-0-point-5__IyBy5{margin-left:calc(var(--spacing-md, 1.5rem)*.5)}.Margin-module_m-0-point-75__IttHs{margin:calc(var(--spacing-md, 1.5rem)*.75)}.Margin-module_mt-0-point-75__8aL1j{margin-top:calc(var(--spacing-md, 1.5rem)*.75)}.Margin-module_mr-0-point-75__1iTsr{margin-right:calc(var(--spacing-md, 1.5rem)*.75)}.Margin-module_mb-0-point-75__bcGVL{margin-bottom:calc(var(--spacing-md, 1.5rem)*.75)}.Margin-module_ml-0-point-75__UoIM3{margin-left:calc(var(--spacing-md, 1.5rem)*.75)}.Margin-module_m-1__WoH7S{margin:var(--spacing-md,1.5rem)}.Margin-module_mt-1__rmDMg{margin-top:var(--spacing-md,1.5rem)}.Margin-module_mr-1__bFRhS{margin-right:var(--spacing-md,1.5rem)}.Margin-module_mb-1__6Siyc{margin-bottom:var(--spacing-md,1.5rem)}.Margin-module_ml-1__j3WF6{margin-left:var(--spacing-md,1.5rem)}.Margin-module_m-1-point-25__aslNk{margin:calc(var(--spacing-md, 1.5rem)*1.25)}.Margin-module_mt-1-point-25__l-Kna{margin-top:calc(var(--spacing-md, 1.5rem)*1.25)}.Margin-module_mr-1-point-25__yKHfB{margin-right:calc(var(--spacing-md, 1.5rem)*1.25)}.Margin-module_mb-1-point-25__k7Wnb{margin-bottom:calc(var(--spacing-md, 1.5rem)*1.25)}.Margin-module_ml-1-point-25__tKCHD{margin-left:calc(var(--spacing-md, 1.5rem)*1.25)}.Margin-module_m-1-point-5__e5RRa{margin:calc(var(--spacing-md, 1.5rem)*1.5)}.Margin-module_mt-1-point-5__0oleV{margin-top:calc(var(--spacing-md, 1.5rem)*1.5)}.Margin-module_mr-1-point-5__UV2Ds{margin-right:calc(var(--spacing-md, 1.5rem)*1.5)}.Margin-module_mb-1-point-5__DgIcA{margin-bottom:calc(var(--spacing-md, 1.5rem)*1.5)}.Margin-module_ml-1-point-5__-a31T{margin-left:calc(var(--spacing-md, 1.5rem)*1.5)}.Margin-module_m-1-point-75__IxxDx{margin:calc(var(--spacing-md, 1.5rem)*1.75)}.Margin-module_mt-1-point-75__zBEJc{margin-top:calc(var(--spacing-md, 1.5rem)*1.75)}.Margin-module_mr-1-point-75__7oQH3{margin-right:calc(var(--spacing-md, 1.5rem)*1.75)}.Margin-module_mb-1-point-75__CyezZ{margin-bottom:calc(var(--spacing-md, 1.5rem)*1.75)}.Margin-module_ml-1-point-75__8AcEE{margin-left:calc(var(--spacing-md, 1.5rem)*1.75)}.Margin-module_m-2__xDAX5{margin:calc(var(--spacing-md, 1.5rem)*2)}.Margin-module_mt-2__BaPgk{margin-top:calc(var(--spacing-md, 1.5rem)*2)}.Margin-module_mr-2__-8KSg{margin-right:calc(var(--spacing-md, 1.5rem)*2)}.Margin-module_mb-2__lqKMm{margin-bottom:calc(var(--spacing-md, 1.5rem)*2)}.Margin-module_ml-2__y6zUv{margin-left:calc(var(--spacing-md, 1.5rem)*2)}.Margin-module_m-2-point-5__nPaB6{margin:calc(var(--spacing-md, 1.5rem)*2.5)}.Margin-module_mt-2-point-5__NtVq0{margin-top:calc(var(--spacing-md, 1.5rem)*2.5)}.Margin-module_mr-2-point-5__u5ycP{margin-right:calc(var(--spacing-md, 1.5rem)*2.5)}.Margin-module_mb-2-point-5__KoWcH{margin-bottom:calc(var(--spacing-md, 1.5rem)*2.5)}.Margin-module_ml-2-point-5__rKkfV{margin-left:calc(var(--spacing-md, 1.5rem)*2.5)}.Margin-module_m-3__3Xx0F{margin:calc(var(--spacing-md, 1.5rem)*3)}.Margin-module_mt-3__M2Jx3{margin-top:calc(var(--spacing-md, 1.5rem)*3)}.Margin-module_mr-3__Ydznr{margin-right:calc(var(--spacing-md, 1.5rem)*3)}.Margin-module_mb-3__-jI8t{margin-bottom:calc(var(--spacing-md, 1.5rem)*3)}.Margin-module_ml-3__GKa-l{margin-left:calc(var(--spacing-md, 1.5rem)*3)}.Margin-module_m-3-point-5__3ZDkz{margin:calc(var(--spacing-md, 1.5rem)*3.5)}.Margin-module_mt-3-point-5__VBSF-{margin-top:calc(var(--spacing-md, 1.5rem)*3.5)}.Margin-module_mr-3-point-5__wf0U2{margin-right:calc(var(--spacing-md, 1.5rem)*3.5)}.Margin-module_mb-3-point-5__OMror{margin-bottom:calc(var(--spacing-md, 1.5rem)*3.5)}.Margin-module_ml-3-point-5__ootW1{margin-left:calc(var(--spacing-md, 1.5rem)*3.5)}.Margin-module_m-4__dZ985{margin:calc(var(--spacing-md, 1.5rem)*4)}.Margin-module_mt-4__BUm9K{margin-top:calc(var(--spacing-md, 1.5rem)*4)}.Margin-module_mr-4__mKUUj{margin-right:calc(var(--spacing-md, 1.5rem)*4)}.Margin-module_mb-4__dO-YX{margin-bottom:calc(var(--spacing-md, 1.5rem)*4)}.Margin-module_ml-4__EE62n{margin-left:calc(var(--spacing-md, 1.5rem)*4)}.Option-module_option__U-MsL{align-items:center;border:var(--border-solid-border-width,2px) var(--border-solid-border-style,solid);border-color:var(--border-borderless-border-color,transparent);border-radius:4px;cursor:default;display:inline-grid;font-family:var(--typography-paragraph-body-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-paragraph-body-font-size,1rem);font-weight:var(--typography-paragraph-body-font-weight,400);gap:var(--spacing-xs,.375rem);grid-template-columns:auto var(--spacing-md,1.5rem);height:-moz-fit-content;height:fit-content;letter-spacing:var(--typography-paragraph-body-letter-spacing,normal);line-height:var(--typography-paragraph-body-line-height,1.5rem);padding:.5rem var(--spacing-xs,.375rem) .5rem var(--spacing-sm,.75rem);position:relative}.Option-module_option__U-MsL:focus{outline:none}.Option-module_option__U-MsL.story__option-hover:not(.Option-module_disabled__RV081),.Option-module_option__U-MsL:active:not(.Option-module_disabled__RV081),.Option-module_option__U-MsL:hover:not(.Option-module_disabled__RV081){background-color:var(--color-blue-100,#e6f6ff);color:var(--color-blue-500,#0168b3)}.Option-module_option__U-MsL.story__option-hover:not(.Option-module_disabled__RV081) .Option-module_icon__0ECp6,.Option-module_option__U-MsL:active:not(.Option-module_disabled__RV081) .Option-module_icon__0ECp6,.Option-module_option__U-MsL:hover:not(.Option-module_disabled__RV081) .Option-module_icon__0ECp6{color:var(--color-blue-500,#0168b3)}.Option-module_option__U-MsL.Option-module_isFocusVisible__yYC7y,.Option-module_option__U-MsL.story__option-focus{background-color:var(--color-blue-100,#e6f6ff);color:var(--color-blue-500,#0168b3)}.Option-module_option__U-MsL.Option-module_isFocusVisible__yYC7y:after,.Option-module_option__U-MsL.story__option-focus:after{background:transparent;border:var(--border-focus-ring-border-width,2px) var(--border-focus-ring-border-style,solid) var(--color-blue-500,#0168b3);border-radius:4px;bottom:calc(var(--border-focus-ring-border-width, 2px)*2*-1 - 1px);content:"";left:calc(var(--border-focus-ring-border-width, 2px)*2*-1 - 1px);position:absolute;right:calc(var(--border-focus-ring-border-width, 2px)*2*-1 - 1px);top:calc(var(--border-focus-ring-border-width, 2px)*2*-1 - 1px);z-index:1}.Option-module_option__U-MsL.Option-module_isFocusVisible__yYC7y .Option-module_icon__0ECp6,.Option-module_option__U-MsL.story__option-focus .Option-module_icon__0ECp6{color:var(--color-blue-500,#0168b3)}.Option-module_icon__0ECp6{align-items:center;display:inline-flex;height:calc(var(--spacing-md, 1.5rem) - var(--border-solid-border-width, 2px)*2);justify-content:center;line-height:1;width:calc(var(--spacing-md, 1.5rem) - var(--border-solid-border-width, 2px)*2)}.Option-module_isSelected__L3nhB{font-weight:var(--typography-paragraph-bold-font-weight,600)}.Option-module_isSelected__L3nhB,.Option-module_isSelected__L3nhB.Option-module_icon__0ECp6{color:var(--color-blue-500,#0168b3)}.Option-module_disabled__RV081{color:var(--color-gray-500,#8c8c97)}.ListBoxSection-module_sectionWrapper__NYQwa{display:flex;flex-direction:column}.ListBoxSection-module_sectionWrapper__NYQwa:not(:first-child){margin-top:var(--spacing-8,.5rem)}.ListBoxSection-module_sectionHeading__KiOi1{padding-left:4px}.ListBoxSection-module_sectionList__xiPZY{display:flex;flex-direction:column;padding:var(--spacing-xs,.375rem) 0 0 0}.Divider-module_wrapper__NSxvt{border:0;border-radius:var(--border-solid-border-radius,7px);margin:0;visibility:visible;width:100%}.Divider-module_content__9Tzmt,.Divider-module_menuSeparator__D9dVJ{border-top:1px solid;border-color:rgba(var(--color-gray-600-rgb,82,78,86),.1)}.Divider-module_content__9Tzmt.Divider-module_reversed__8MS2v,.Divider-module_reversed__8MS2v.Divider-module_menuSeparator__D9dVJ{border-color:rgba(var(--color-white-rgb,255,255,255),.1)}.Divider-module_canvas__Pdcbk{border-bottom:1px solid;border-top:1px solid;border-color:rgba(var(--color-gray-600-rgb,82,78,86),.1)}.Divider-module_canvas__Pdcbk.Divider-module_reversed__8MS2v{border-color:rgba(var(--color-white-rgb,255,255,255),.1)}.Divider-module_menuSeparator__D9dVJ{margin:5px 0}.SectionDivider-module_divider__-idrC{margin:var(--spacing-8,.5rem) 0}.SectionDivider-module_divider__-idrC+.SectionDivider-module_divider__-idrC,.SectionDivider-module_divider__-idrC:first-child,.SectionDivider-module_divider__-idrC:last-child{display:none}.FilterSelect-module_filterContents__2LknZ{overflow:auto;padding:var(--spacing-12,.75rem);width:224px}*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(1,104,179,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(1,104,179,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.container{width:100%}@media (min-width:768px){.container{max-width:768px}}@media (min-width:1080px){.container{max-width:1080px}}.visible{visibility:visible}.fixed{position:fixed}.inline-block{display:inline-block}.contents{display:contents}.hidden{display:none}.bg-green-300{--tw-bg-opacity:1;background-color:rgb(143 219 199/var(--tw-bg-opacity))}.blur{--tw-blur:blur(8px)}.blur,.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}
|
|
1
|
+
.ExampleComponent-module_exampleComponent__GfCkW{color:#ff0}.Brand-module_img__uWvra{display:flex;max-inline-size:100%}.FilterPopover-module_filterPopover__OgOEM{background-color:var(--color-white,#fff);border-radius:var(--border-borderless-border-radius,7px);box-shadow:var(--shadow-large-box-shadow,0 8px 40px rgba(0,0,0,.08),0 3px 9px rgba(0,0,0,.1));display:inline-flex;z-index:1010}.FilterContents-module_filterContents__uNUpd{padding:var(--spacing-md,1.5rem)}.SVG-module_icon__FE6iP{display:inline-block;height:20px;width:20px}.SVG-module_icon__FE6iP>use{pointer-events:none}.SVG-module_inheritSize__wiKMe{display:block;height:inherit;width:inherit}@media screen and (-ms-high-contrast:active){.SVG-module_icon__FE6iP{color:#000}}@media screen and (-ms-high-contrast:white-on-black){.SVG-module_icon__FE6iP{color:#fff}}@media screen and (-ms-high-contrast:black-on-white){.SVG-module_icon__FE6iP{color:#000}}.SVG-module_interactiveIconWrapper__ACcob{cursor:pointer}.SVG-module_interactiveIconWrapper__ACcob .SVG-module_icon__FE6iP{opacity:.7;transition:var(--animation-duration-fast,.3s) opacity}.SVG-module_interactiveIconWrapper__ACcob.SVG-module_disabled__WB5BU .SVG-module_icon__FE6iP,.SVG-module_interactiveIconWrapper__ACcob:disabled .SVG-module_icon__FE6iP{opacity:.3}.SVG-module_interactiveIconWrapper__ACcob:not(:disabled):not(.SVG-module_disabled__WB5BU).SVG-module_active__R9jic .SVG-module_icon__FE6iP,.SVG-module_interactiveIconWrapper__ACcob:not(:disabled):not(.SVG-module_disabled__WB5BU).SVG-module_hover__QivVO .SVG-module_icon__FE6iP,.SVG-module_interactiveIconWrapper__ACcob:not(:disabled):not(.SVG-module_disabled__WB5BU):active .SVG-module_icon__FE6iP,.SVG-module_interactiveIconWrapper__ACcob:not(:disabled):not(.SVG-module_disabled__WB5BU):focus .SVG-module_icon__FE6iP,.SVG-module_interactiveIconWrapper__ACcob:not(:disabled):not(.SVG-module_disabled__WB5BU):hover .SVG-module_icon__FE6iP,.SVG-module_reversedInteractiveIconWrapper__hTsnf .SVG-module_icon__FE6iP{opacity:1}.SVG-module_reversedInteractiveIconWrapper__hTsnf .SVG-module_active__R9jic .SVG-module_icon__FE6iP,.SVG-module_reversedInteractiveIconWrapper__hTsnf :active .SVG-module_icon__FE6iP{opacity:.5}.FilterButtonBase-module_filterButtonBase__I8mV-{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;background-color:var(--color-blue-100,#e6f6ff);border:0;border-radius:var(--border-solid-border-radius,7px);color:inherit;color:var(--color-blue-500,#0168b3);display:inline;display:inline-flex;font:inherit;font-family:var(--typography-button-secondary-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-button-secondary-font-size,1rem);font-weight:var(--typography-button-secondary-font-weight,500);height:3rem;letter-spacing:var(--typography-button-secondary-letter-spacing,normal);line-height:var(--typography-button-secondary-line-height,1.5rem);margin:0;padding:0;padding:var(--spacing-sm,.75rem);position:relative;white-space:nowrap}.FilterButtonBase-module_filterButtonBase__I8mV-.story__filter-button-base--active,.FilterButtonBase-module_filterButtonBase__I8mV-.story__filter-button-base--hover,.FilterButtonBase-module_filterButtonBase__I8mV-:active,.FilterButtonBase-module_filterButtonBase__I8mV-:hover{z-index:2}.FilterButtonBase-module_filterButtonBase__I8mV-.story__filter-button-base--active,.FilterButtonBase-module_filterButtonBase__I8mV-.story__filter-button-base--focus,.FilterButtonBase-module_filterButtonBase__I8mV-.story__filter-button-base--hover,.FilterButtonBase-module_filterButtonBase__I8mV-:active,.FilterButtonBase-module_filterButtonBase__I8mV-:focus-visible,.FilterButtonBase-module_filterButtonBase__I8mV-:hover,.js-focus-visible .FilterButtonBase-module_filterButtonBase__I8mV-.focus-visible{background-color:var(--color-blue-200,#bde2f5)}.FilterButtonBase-module_filterButtonBase__I8mV-:focus{outline:none}.FilterButtonBase-module_filterButtonBase__I8mV-.story__filter-button-base--focus,.FilterButtonBase-module_filterButtonBase__I8mV-:focus-visible,.js-focus-visible .FilterButtonBase-module_filterButtonBase__I8mV-.focus-visible{outline:none}.FilterButtonBase-module_filterButtonBase__I8mV-.story__filter-button-base--focus:after,.FilterButtonBase-module_filterButtonBase__I8mV-:focus-visible:after,.js-focus-visible .FilterButtonBase-module_filterButtonBase__I8mV-.focus-visible:after{border:var(--border-focus-ring-border-width,2px) var(--border-focus-ring-border-style,solid) var(--color-blue-500,#0168b3);border-radius:var(--border-focus-ring-border-radius,10px);bottom:calc(var(--border-focus-ring-border-width, 2px)*-1 - 1px);content:"";left:calc(var(--border-focus-ring-border-width, 2px)*-1 - 1px);position:absolute;right:calc(var(--border-focus-ring-border-width, 2px)*-1 - 1px);top:calc(var(--border-focus-ring-border-width, 2px)*-1 - 1px);z-index:3}.FilterButton-module_filterButton__Q2dMX{gap:var(--spacing-xs,.375rem)}.FilterButton-module_labelContainer__5G-MD{display:inline-flex}.FilterButton-module_hasSelectedValues__dyQkL{font-weight:var(--typography-button-primary-font-weight,700)}.FilterButton-module_labelSeparator__xrkAx{-webkit-margin-end:var(--spacing-xs,.375rem);margin-inline-end:var(--spacing-xs,.375rem)}[dir=ltr] [dir=rtl] .FilterButton-module_labelSeparator__xrkAx{margin-right:0}.Tooltip-module_tooltip__80yPv{pointer-events:none;position:relative;z-index:1070}.Tooltip-module_tooltipContent__gXHKT{border-radius:var(--border-solid-border-radius,7px);box-shadow:var(--shadow-small-box-shadow,0 3px 16px rgba(0,0,0,.06),0 1px 3px rgba(0,0,0,.1));color:var(--color-purple-800,#2f2438);font-family:var(--typography-paragraph-body-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-heading-6-font-size,.875rem);font-weight:var(--typography-paragraph-body-font-weight,400);letter-spacing:var(--typography-paragraph-body-letter-spacing,normal);line-height:var(--typography-paragraph-small-line-height,1.125rem);max-width:400px;padding:.4375rem .53125rem;text-align:center;transition:opacity var(--animation-duration-fast,.3s),transform var(--animation-duration-fast,.3s)}.Tooltip-module_tooltipContent__gXHKT.Tooltip-module_default__oLBfa{background-color:var(--color-white,#fff);border:var(--border-solid-border-width,2px) var(--border-solid-border-style,solid) var(--color-gray-300,#eaeaec)}.Tooltip-module_tooltipContent__gXHKT.Tooltip-module_informative__Lw2ZJ{background-color:var(--color-blue-100,#e6f6ff);border:var(--border-solid-border-width,2px) var(--border-solid-border-style,solid) var(--color-blue-300,#73c0e8)}.Tooltip-module_tooltipContent__gXHKT.Tooltip-module_positive__31-es{background-color:var(--color-green-100,#e8f8f4);border:var(--border-solid-border-width,2px) var(--border-solid-border-style,solid) var(--color-green-300,#8fdbc7)}.Tooltip-module_tooltipContent__gXHKT.Tooltip-module_cautionary__jr2QQ{background-color:var(--color-yellow-100,#fff9e4);border:var(--border-solid-border-width,2px) var(--border-solid-border-style,solid) var(--color-yellow-300,#ffe36e)}.Tooltip-module_tooltipContent__gXHKT.Tooltip-module_highlight__b5HMe{background-color:var(--color-purple-100,#f4edf8);border:var(--border-solid-border-width,2px) var(--border-solid-border-style,solid) var(--color-purple-300,#c9a5dd)}.Tooltip-module_arrow__LWe4h{position:absolute;z-index:1}[data-popper-placement^=top] .Tooltip-module_arrow__LWe4h{bottom:0}[data-popper-placement^=bottom] .Tooltip-module_arrow__LWe4h{top:0}[data-popper-placement^=bottom] .Tooltip-module_arrow__LWe4h .Tooltip-module_arrowInner__whQvw{transform:rotate(180deg)}[data-popper-placement^=left] .Tooltip-module_arrow__LWe4h{right:0}[data-popper-placement^=left] .Tooltip-module_arrow__LWe4h .Tooltip-module_arrowInner__whQvw{transform:rotate(270deg)}[data-popper-placement^=right] .Tooltip-module_arrow__LWe4h{left:0}[data-popper-placement^=right] .Tooltip-module_arrow__LWe4h .Tooltip-module_arrowInner__whQvw{transform:rotate(90deg)}.Tooltip-module_arrowMain__VSut6:after,.Tooltip-module_arrowMain__VSut6:before{border-left:7px solid transparent;border-right:7px solid transparent;content:"";left:50%;margin-left:-7px;position:absolute}.Tooltip-module_arrowMain__VSut6.Tooltip-module_default__oLBfa:before{border-top:7px solid var(--color-gray-300,#eaeaec)}.Tooltip-module_arrowMain__VSut6.Tooltip-module_informative__Lw2ZJ:before{border-top:7px solid var(--color-blue-300,#73c0e8)}.Tooltip-module_arrowMain__VSut6.Tooltip-module_positive__31-es:before{border-top:7px solid var(--color-green-300,#8fdbc7)}.Tooltip-module_arrowMain__VSut6.Tooltip-module_highlight__b5HMe:before{border-top:7px solid var(--color-purple-300,#c9a5dd)}.Tooltip-module_arrowMain__VSut6.Tooltip-module_cautionary__jr2QQ:before{border-top:7px solid var(--color-yellow-300,#ffe36e)}.Tooltip-module_arrowMain__VSut6:after{margin-top:-3px}.Tooltip-module_arrowMain__VSut6.Tooltip-module_default__oLBfa:after{border-top:7px solid #fff}.Tooltip-module_arrowMain__VSut6.Tooltip-module_informative__Lw2ZJ:after{border-top:7px solid var(--color-blue-100,#e6f6ff)}.Tooltip-module_arrowMain__VSut6.Tooltip-module_positive__31-es:after{border-top:7px solid var(--color-green-100,#e8f8f4)}.Tooltip-module_arrowMain__VSut6.Tooltip-module_highlight__b5HMe:after{border-top:7px solid var(--color-purple-100,#f4edf8)}.Tooltip-module_arrowMain__VSut6.Tooltip-module_cautionary__jr2QQ:after{border-top:7px solid var(--color-yellow-100,#fff9e4)}.Tooltip-module_arrowShadow__cwgsV:before{border-top:0 solid var(--color-gray-300,#eaeaec)}.Tooltip-module_arrowShadow__cwgsV:after{border-top:7px solid rgba(var(--color-purple-800-rgb,47,36,56),.09);filter:blur(4px);margin-top:1px}.Tooltip-module_displayInline__iojZb{display:inline}.Tooltip-module_displayBlock__RfmWl{display:block}.Tooltip-module_displayInlineBlock__2q-e6{display:inline-block}.Tooltip-module_displayFlex__orTOm{display:flex}.Tooltip-module_displayInlineFlex__z-4AS{display:inline-flex}.ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-.ButtonGroup-module_firstChild__uEn1j,.ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-.ButtonGroup-module_firstChild__uEn1j.story__button-group--focus:after,.ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-.ButtonGroup-module_firstChild__uEn1j:focus-visible:after,.js-focus-visible .ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-.ButtonGroup-module_firstChild__uEn1j.focus-visible:after{border-end-start-radius:var(--border-focus-ring-border-radius,10px);border-start-start-radius:var(--border-focus-ring-border-radius,10px)}.ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-.ButtonGroup-module_lastChild__Vicsx,.ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-.ButtonGroup-module_lastChild__Vicsx.story__button-group--focus:after,.ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-.ButtonGroup-module_lastChild__Vicsx:focus-visible:after,.js-focus-visible .ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-.ButtonGroup-module_lastChild__Vicsx.focus-visible:after{border-end-end-radius:var(--border-focus-ring-border-radius,10px);border-start-end-radius:var(--border-focus-ring-border-radius,10px)}.ButtonGroup-module_buttonGroup__bsy2X{display:inline-flex}.ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-{border-radius:0}.ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-.story__button-group--focus:after,.ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-:focus-visible:after,.js-focus-visible .ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-.focus-visible:after{border-radius:0}.ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-.ButtonGroup-module_firstChild__uEn1j.story__button-group--focus:after,.ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-.ButtonGroup-module_firstChild__uEn1j:focus-visible:after,.js-focus-visible .ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-.ButtonGroup-module_firstChild__uEn1j.focus-visible:after{inset-inline-end:-1px}.ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-:not(.ButtonGroup-module_firstChild__uEn1j){-webkit-border-start:1px solid var(--color-blue-300,#73c0e8);border-inline-start:1px solid var(--color-blue-300,#73c0e8)}.ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-:not(.ButtonGroup-module_firstChild__uEn1j):not(.ButtonGroup-module_lastChild__Vicsx).story__button-group--focus:after,.ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-:not(.ButtonGroup-module_firstChild__uEn1j):not(.ButtonGroup-module_lastChild__Vicsx):focus-visible:after,.js-focus-visible .ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-:not(.ButtonGroup-module_firstChild__uEn1j):not(.ButtonGroup-module_lastChild__Vicsx).focus-visible:after{inset-inline-end:-1px;inset-inline-start:-1px}.ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-.ButtonGroup-module_lastChild__Vicsx.story__button-group--focus:after,.ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-.ButtonGroup-module_lastChild__Vicsx:focus-visible:after,.js-focus-visible .ButtonGroup-module_buttonGroup__bsy2X .ButtonGroup-module_child__K6AP-.ButtonGroup-module_lastChild__Vicsx.focus-visible:after{inset-inline-start:-1px}.ListBox-module_listBox__FQ9sQ{display:grid;list-style:none;margin-bottom:0;margin-top:0;max-height:22rem;padding:0}.ListBox-module_listBox__FQ9sQ.ListBox-module_focus__Tm-jn{outline:none}.Heading-module_heading__Fe11y{margin:0}.Heading-module_display-0__As5Ny{font-family:var(--typography-display-0-font-family,"Tiempos Headline",Georgia,serif);font-size:var(--typography-display-0-font-size,4.5rem);font-weight:var(--typography-display-0-font-weight,800);letter-spacing:var(--typography-display-0-letter-spacing,0);line-height:var(--typography-display-0-line-height,5.25rem)}.Heading-module_heading-1__fMzkm{font-family:var(--typography-heading-1-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-heading-1-font-size,2.125rem);font-weight:var(--typography-heading-1-font-weight,700);letter-spacing:var(--typography-heading-1-letter-spacing,normal);line-height:var(--typography-heading-1-line-height,2.625rem)}.Heading-module_heading-2__bgkcr{font-family:var(--typography-heading-2-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-heading-2-font-size,1.75rem);font-weight:var(--typography-heading-2-font-weight,700);letter-spacing:var(--typography-heading-2-letter-spacing,normal);line-height:var(--typography-heading-2-line-height,2.25rem)}.Heading-module_heading-3__ZRUkC{font-family:var(--typography-heading-3-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-heading-3-font-size,1.375rem);font-weight:var(--typography-heading-3-font-weight,700);letter-spacing:var(--typography-heading-3-letter-spacing,normal);line-height:var(--typography-heading-3-line-height,1.875rem)}.Heading-module_heading-4__XbONZ{font-family:var(--typography-heading-4-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-heading-4-font-size,1.125rem);font-weight:var(--typography-heading-4-font-weight,600);letter-spacing:var(--typography-heading-4-letter-spacing,normal);line-height:var(--typography-heading-4-line-height,1.5rem)}.Heading-module_heading-5__fj2Gb{font-family:var(--typography-heading-5-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-heading-5-font-size,1rem);font-weight:var(--typography-heading-5-font-weight,600);letter-spacing:var(--typography-heading-5-letter-spacing,normal);line-height:var(--typography-heading-5-line-height,1.5rem)}.Heading-module_heading-6__Cmand{font-family:var(--typography-heading-6-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-heading-6-font-size,.875rem);font-weight:var(--typography-heading-6-font-weight,700);letter-spacing:var(--typography-heading-6-letter-spacing,normal);line-height:var(--typography-heading-6-line-height,1.5rem);text-transform:none}.Heading-module_dark__9m1Av{color:var(--color-purple-800,#2f2438);opacity:1}.Heading-module_dark-reduced-opacity__APHzM{color:var(--color-purple-800,#2f2438);opacity:.7}.Heading-module_white__6Flbw{color:var(--color-white,#fff);opacity:1}.Heading-module_white-reduced-opacity__-3jNg{color:var(--color-white,#fff);opacity:.8}.Heading-module_positive__uTfoL.Heading-module_small__I8UMW{color:var(--color-green-600,#2c7d67)}.Heading-module_positive__uTfoL.Heading-module_large__wKrUS{color:var(--color-green-500,#44a289)}.Heading-module_negative__hcnMm.Heading-module_small__I8UMW{color:var(--color-red-600,#a82433)}.Heading-module_negative__hcnMm.Heading-module_large__wKrUS{color:var(--color-red-500,#c93b55)}.Paragraph-module_paragraph__4W6qH{margin:0}.Paragraph-module_paragraph__4W6qH strong{font-weight:var(--typography-paragraph-bold-font-weight,600)}.Paragraph-module_intro-lede__uFhW-{font-family:var(--typography-paragraph-intro-lede-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-paragraph-intro-lede-font-size,1.25rem);font-weight:var(--typography-paragraph-intro-lede-font-weight,400);letter-spacing:var(--typography-paragraph-intro-lede-letter-spacing,0);line-height:var(--typography-paragraph-intro-lede-line-height,1.875rem)}.Paragraph-module_body__0R0qn{font-family:var(--typography-paragraph-body-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-paragraph-body-font-size,1rem);font-weight:var(--typography-paragraph-body-font-weight,400);letter-spacing:var(--typography-paragraph-body-letter-spacing,normal);line-height:var(--typography-paragraph-body-line-height,1.5rem)}.Paragraph-module_small__GQQjR{font-family:var(--typography-paragraph-small-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-paragraph-small-font-size,.875rem);font-weight:var(--typography-paragraph-small-font-weight,400);letter-spacing:var(--typography-paragraph-small-letter-spacing,normal);line-height:var(--typography-paragraph-small-line-height,1.125rem)}.Paragraph-module_extra-small__Nx9pp{font-family:var(--typography-paragraph-extra-small-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-paragraph-extra-small-font-size,.75rem);font-weight:var(--typography-paragraph-extra-small-font-weight,400);letter-spacing:var(--typography-paragraph-extra-small-letter-spacing,normal);line-height:var(--typography-paragraph-extra-small-line-height,1.125rem)}.Paragraph-module_dark__x5bRT{color:var(--color-purple-800,#2f2438);opacity:1}.Paragraph-module_dark-reduced-opacity__6jIPJ{color:var(--color-purple-800,#2f2438);opacity:.7}.Paragraph-module_white__geIrR{color:var(--color-white,#fff);opacity:1}.Paragraph-module_white-reduced-opacity__2Q7c7{color:var(--color-white,#fff);opacity:.8}.Paragraph-module_positive__mC-GU{color:var(--color-green-600,#2c7d67)}.Paragraph-module_negative__KoAoh{color:var(--color-red-600,#a82433)}.Icon-module_icon__1r20x{display:inline-block;height:20px;width:20px}.Icon-module_icon__1r20x>use{pointer-events:none}.Icon-module_inheritSize__xtkKA{display:block;height:inherit;width:inherit}.Icon-module_interactiveIconWrapper__ieTrE .Icon-module_icon__1r20x{transition:var(--animation-duration-fast,.3s) opacity}.Icon-module_interactiveIconWrapper__ieTrE:not(:disabled):not(.Icon-module_disabled__bqMQV).Icon-module_active__d47mz .Icon-module_icon__1r20x,.Icon-module_interactiveIconWrapper__ieTrE:not(:disabled):not(.Icon-module_disabled__bqMQV).Icon-module_hover__EdRCd .Icon-module_icon__1r20x,.Icon-module_interactiveIconWrapper__ieTrE:not(:disabled):not(.Icon-module_disabled__bqMQV):active .Icon-module_icon__1r20x,.Icon-module_interactiveIconWrapper__ieTrE:not(:disabled):not(.Icon-module_disabled__bqMQV):focus .Icon-module_icon__1r20x,.Icon-module_interactiveIconWrapper__ieTrE:not(:disabled):not(.Icon-module_disabled__bqMQV):hover .Icon-module_icon__1r20x{opacity:1}.Icon-module_reversedInteractiveIconWrapper__sZ6CO .Icon-module_active__d47mz .Icon-module_icon__1r20x,.Icon-module_reversedInteractiveIconWrapper__sZ6CO :active .Icon-module_icon__1r20x{opacity:.5}.Dropdown-module_dropdown__09sgL{padding:calc(.75rem - var(--border-solid-border-width, 2px)) calc(1.5rem - var(--border-solid-border-width, 2px));position:relative}.Dropdown-module_buttonReset__O69sc{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;border:none;color:inherit;cursor:pointer;display:inline;font:inherit;margin:0;padding:0}.Dropdown-module_dropdownButton__FiRVW{-webkit-text-decoration-skip:ink;align-items:center;color:var(--color-blue-500,#0168b3);cursor:pointer;display:flex;font-family:var(--typography-paragraph-body-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif),Helvetica,Arial,sans-serif;font-size:1rem;font-weight:400;height:100%;justify-content:center;letter-spacing:var(--typography-heading-1-letter-spacing,normal);line-height:1.5;position:relative;position:static;text-decoration:none;text-decoration-skip-ink:auto;top:.39em;width:100%}html:lang(ar) .Dropdown-module_dropdownButton__FiRVW,html:lang(he) .Dropdown-module_dropdownButton__FiRVW{font-family:Inter,Tahoma,sans-serif}.Dropdown-module_dropdownButton__FiRVW:hover{text-decoration:underline}.Dropdown-module_dropdownControlAction__iWJog{-webkit-text-decoration-skip:ink;color:var(--color-blue-500,#0168b3);cursor:pointer;font-family:var(--typography-paragraph-body-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif),Helvetica,Arial,sans-serif;font-size:1rem;font-weight:400;letter-spacing:var(--typography-heading-1-letter-spacing,normal);line-height:1.5;position:relative;position:static;text-decoration:none;text-decoration-skip-ink:auto;top:.39em}html:lang(ar) .Dropdown-module_dropdownControlAction__iWJog,html:lang(he) .Dropdown-module_dropdownControlAction__iWJog{font-family:Inter,Tahoma,sans-serif}.Dropdown-module_dropdownControlAction__iWJog:hover{text-decoration:underline}.Dropdown-module_dropdownIcon__tZfDQ{box-sizing:border-box;height:1.5rem;padding:2px;width:1.5rem}.Dropdown-module_dropdownIcon__tZfDQ+.Dropdown-module_dropdownLabel__bpY-X{margin-left:calc(.75rem - 2px)}[dir=rtl] .Dropdown-module_dropdownIcon__tZfDQ+.Dropdown-module_dropdownLabel__bpY-X{margin-left:0;margin-right:calc(.75rem - 2px)}.Dropdown-module_dropdownHoverArea__M-Y-K .Dropdown-module_dropdownIcon__tZfDQ{opacity:0}.Dropdown-module_dropdownHoverArea__M-Y-K .Dropdown-module_dropdownIcon__tZfDQ.Dropdown-module_isOpen__Kf4XR,.Dropdown-module_dropdownHoverArea__M-Y-K .Dropdown-module_dropdownIcon__tZfDQ:focus,.Dropdown-module_dropdownHoverArea__M-Y-K:hover .Dropdown-module_dropdownIcon__tZfDQ{opacity:1}.Dropdown-module_chevronIcon__Ieh4i{position:relative;top:4px}.Dropdown-module_menuContainer__xl9MT{position:absolute;right:0;width:248px;z-index:1000}[dir=rtl] .Dropdown-module_menuContainer__xl9MT{left:0;right:auto}.Dropdown-module_reversedColor__rGeiB{color:var(--color-white,#fff)}.Layout-module_root__SgXZT{align-items:stretch;display:flex;flex-direction:column;height:100vh}.Layout-module_navigationBar__1xbfp{flex:0 0 auto}.Layout-module_page__ZSTUO{align-items:center;display:flex;flex:1 0 0px;flex-direction:column}.Layout-module_footer__wFknz,.Layout-module_header__X1E96{flex:0 0 auto;width:100%}.Layout-module_body__r1d-M{display:flex;flex:1 1 0px;flex-direction:column;height:auto;position:relative;width:100%}.Layout-module_bodyInner__e5WA6{align-self:center;display:flex;height:100%;max-width:1416px;position:static;width:100%}@media print{.Layout-module_bodyInner__e5WA6{display:block;height:auto;position:static;width:auto}}.Layout-module_sidebar__FSH-B{height:auto;margin:0 1.5rem;overflow:visible;padding:1.5rem 0;position:static;width:15rem}@media print{.Layout-module_sidebar__FSH-B{background-color:transparent;height:auto;overflow:visible;padding:0;position:static;width:auto}}.Layout-module_content__6gaoR{display:flex;flex:1 1 auto;flex-direction:column;margin:0 1.5rem;max-width:1080px;padding:1.5rem 0}@media print{.Layout-module_content__6gaoR{display:block;margin-left:0;overflow:visible;padding:0}}.Layout-module_content__6gaoR:only-child{margin:0 auto;min-width:100%;width:100%}@media (min-width:480px){.Layout-module_content__6gaoR:only-child{min-width:auto}}.Layout-module_navigationBar__1xbfp{box-sizing:border-box;top:0;z-index:1030}.Layout-module_page__ZSTUO{box-sizing:border-box;position:relative}.Layout-module_body__r1d-M,.Layout-module_content__6gaoR,.Layout-module_footer__wFknz,.Layout-module_header__X1E96,.Layout-module_sidebar__FSH-B{box-sizing:border-box}.Layout-module_toasts__ZDy2G{position:absolute;right:0;top:0}.Layout-module_announcers__fAmmq{clip:rect(0,0,0,0);border:0;height:1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.Icon-module_icon__1r20x{@extend %caIcon}@media screen and (-ms-high-contrast:active){.Icon-module_icon__1r20x{color:#000}}@media screen and (-ms-high-contrast:white-on-black){.Icon-module_icon__1r20x{color:#fff}}@media screen and (-ms-high-contrast:black-on-white){.Icon-module_icon__1r20x{color:#000}}.Icon-module_inheritSize__xtkKA{@extend %caIconInheritSize}.Icon-module_interactiveIconWrapper__ieTrE{cursor:pointer}.Icon-module_interactiveIconWrapper__ieTrE .Icon-module_icon__1r20x{opacity:.7;transition:$animation-duration-fast opacity}.Icon-module_interactiveIconWrapper__ieTrE.Icon-module_disabled__bqMQV .Icon-module_icon__1r20x,.Icon-module_interactiveIconWrapper__ieTrE:disabled .Icon-module_icon__1r20x{opacity:.3}.Icon-module_interactiveIconWrapper__ieTrE.Icon-module_active__d47mz:not(:disabled):not(.Icon-module_disabled__bqMQV) .Icon-module_icon__1r20x,.Icon-module_interactiveIconWrapper__ieTrE.Icon-module_hover__EdRCd:not(:disabled):not(.Icon-module_disabled__bqMQV) .Icon-module_icon__1r20x,.Icon-module_interactiveIconWrapper__ieTrE:not(:disabled):not(.Icon-module_disabled__bqMQV):active .Icon-module_icon__1r20x,.Icon-module_interactiveIconWrapper__ieTrE:not(:disabled):not(.Icon-module_disabled__bqMQV):focus .Icon-module_icon__1r20x,.Icon-module_interactiveIconWrapper__ieTrE:not(:disabled):not(.Icon-module_disabled__bqMQV):hover .Icon-module_icon__1r20x,.Icon-module_reversedInteractiveIconWrapper__sZ6CO .Icon-module_icon__1r20x{opacity:1}.Icon-module_reversedInteractiveIconWrapper__sZ6CO.Icon-module_active__d47mz:not(:disabled,.Icon-module_disabled__bqMQV) .Icon-module_icon__1r20x,.Icon-module_reversedInteractiveIconWrapper__sZ6CO:not(:disabled,.Icon-module_disabled__bqMQV):active .Icon-module_icon__1r20x{opacity:.5}.Menu-module_menuList__behqY{background:#fff;border:var(--border-solid-border-width,2px) var(--border-solid-border-style,solid) var(--color-purple-200,#dfc9ea);box-shadow:var(--shadow-small-box-shadow,0 3px 16px rgba(0,0,0,.06),0 1px 3px rgba(0,0,0,.1));line-height:40px}.Menu-module_header__MMpNm{border-bottom:1px solid var(--border-solid-border-color,#e1e2ea);color:rgba(var(--color-purple-800-rgb,47,36,56),.4);padding:10px 1.125rem;text-align:left}.Menu-module_header__title__4QK0E{display:block;font-family:var(--typography-paragraph-body-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif),Helvetica,Arial,sans-serif;font-size:.875rem;font-weight:var(--typography-heading-6-font-weight,700);letter-spacing:var(--typography-heading-6-letter-spacing,normal);line-height:1.71429;position:relative;position:static;top:.49714em}html:lang(ar) .Menu-module_header__title__4QK0E,html:lang(he) .Menu-module_header__title__4QK0E{font-family:Inter,Tahoma,sans-serif}.Menu-module_menuItem__0rlZg{background:transparent;color:var(--color-purple-800,#2f2438);cursor:pointer;display:flex;flex:0 0 100%;font-family:var(--typography-paragraph-body-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif),Helvetica,Arial,sans-serif;font-size:1rem;font-weight:var(--typography-paragraph-body-font-weight,400);letter-spacing:var(--typography-paragraph-body-letter-spacing,normal);line-height:1.5;padding:10px 1.125rem;position:relative;position:static;text-align:left;text-decoration:none;top:.39em;transition:var(--animation-duration-immediate,.1s) background-color ease,var(--animation-duration-immediate,.1s) color ease}html:lang(ar) .Menu-module_menuItem__0rlZg,html:lang(he) .Menu-module_menuItem__0rlZg{font-family:Inter,Tahoma,sans-serif}[dir=rtl] .Menu-module_menuItem__0rlZg{text-align:right}.Menu-module_menuItem__0rlZg.Menu-module_menuItem--active__xr3IS,.Menu-module_menuItem__0rlZg:focus,.Menu-module_menuItem__0rlZg:hover{background:var(--color-gray-100,#f9f9f9);color:var(--color-blue-500,#0168b3);text-decoration:none}.Menu-module_menuItem__0rlZg.Menu-module_menuItem--active__xr3IS .Menu-module_menuItem__Icon__SEvH-,.Menu-module_menuItem__0rlZg:focus .Menu-module_menuItem__Icon__SEvH-,.Menu-module_menuItem__0rlZg:hover .Menu-module_menuItem__Icon__SEvH-{color:var(--color-blue-500,#0168b3)}.Menu-module_menuItem--destructive__bg0qx,.Menu-module_menuItem--destructive__bg0qx .Menu-module_menuItem__Icon__SEvH-{color:var(--color-red-600,#a82433)}.Menu-module_menuItem__Label__KPrkg{flex:1}.Menu-module_menuItem__Label__KPrkg :not(:only-child){margin-left:0;margin-right:.75rem}.Menu-module_menuItem__Label__KPrkg :not(:only-child)[dir=rtl],[dir=rtl] .Menu-module_menuItem__Label__KPrkg :not(:only-child){margin-left:.75rem;margin-right:0}.Menu-module_menuItem__Icon__SEvH-{color:var(--color-purple-800,#2f2438);position:relative;text-align:right;top:3px}.Menu-module_hoverIcon__WCsbC .Menu-module_menuItem__Icon__SEvH-{opacity:0}.Menu-module_hoverIcon__WCsbC:focus .Menu-module_menuItem__Icon__SEvH-,.Menu-module_hoverIcon__WCsbC:hover .Menu-module_menuItem__Icon__SEvH-,.Menu-module_menuItem--active__xr3IS .Menu-module_menuItem__Icon__SEvH-{opacity:1}.Menu-module_separator__RCRVm{background:var(--color-purple-200,#dfc9ea);border:0;height:1px;margin:5px 0;visibility:visible;width:100%}.Text-module_page-title__LPGyH,h1.Text-module_default-style__wxvqC{font-family:Inter,Noto Sans,Helvetica,Arial,sans-serif;font-size:2rem;font-weight:700;letter-spacing:normal;line-height:1.125;margin-bottom:1.5rem;margin-top:0;position:relative;top:.2025em}html:lang(ar) .Text-module_page-title__LPGyH,html:lang(ar) h1.Text-module_default-style__wxvqC,html:lang(he) .Text-module_page-title__LPGyH,html:lang(he) h1.Text-module_default-style__wxvqC{font-family:Inter,Tahoma,sans-serif}.Text-module_title__zDZi1,h2.Text-module_default-style__wxvqC{font-family:Inter,Noto Sans,Helvetica,Arial,sans-serif;font-size:1.625rem;font-weight:700;letter-spacing:normal;line-height:1.38462;margin-bottom:1.5rem;margin-top:0;position:relative;top:.33231em}html:lang(ar) .Text-module_title__zDZi1,html:lang(ar) h2.Text-module_default-style__wxvqC,html:lang(he) .Text-module_title__zDZi1,html:lang(he) h2.Text-module_default-style__wxvqC{font-family:Inter,Tahoma,sans-serif}.Text-module_display__4XAjg,h3.Text-module_default-style__wxvqC{font-family:Inter,Noto Sans,Helvetica,Arial,sans-serif;font-size:1.375rem;font-weight:600;letter-spacing:normal;line-height:1.09091;margin-bottom:1.5rem;margin-top:0;position:relative;top:.18545em}html:lang(ar) .Text-module_display__4XAjg,html:lang(ar) h3.Text-module_default-style__wxvqC,html:lang(he) .Text-module_display__4XAjg,html:lang(he) h3.Text-module_default-style__wxvqC{font-family:Inter,Tahoma,sans-serif}.Text-module_heading__bdw3r,h4.Text-module_default-style__wxvqC,h5.Text-module_default-style__wxvqC,h6.Text-module_default-style__wxvqC{font-family:Inter,Noto Sans,Helvetica,Arial,sans-serif;font-size:1.125rem;font-weight:600;letter-spacing:normal;line-height:1.33333;margin-bottom:1.5rem;margin-top:0;position:relative;top:.30667em}html:lang(ar) .Text-module_heading__bdw3r,html:lang(ar) h4.Text-module_default-style__wxvqC,html:lang(ar) h5.Text-module_default-style__wxvqC,html:lang(ar) h6.Text-module_default-style__wxvqC,html:lang(he) .Text-module_heading__bdw3r,html:lang(he) h4.Text-module_default-style__wxvqC,html:lang(he) h5.Text-module_default-style__wxvqC,html:lang(he) h6.Text-module_default-style__wxvqC{font-family:Inter,Tahoma,sans-serif}.Text-module_lede__rvztp{font-family:Inter,Noto Sans,Helvetica,Arial,sans-serif;font-size:1.25rem;font-weight:400;letter-spacing:normal;line-height:1.2;margin-bottom:1.5rem;margin-top:0;position:relative;top:.24em}html:lang(ar) .Text-module_lede__rvztp,html:lang(he) .Text-module_lede__rvztp{font-family:Inter,Tahoma,sans-serif}.Text-module_paragraph__65c7w,p.Text-module_default-style__wxvqC{font-family:Inter,Noto Sans,Helvetica,Arial,sans-serif;font-size:1rem;font-weight:400;letter-spacing:normal;line-height:1.5;margin-bottom:1.5rem;margin-top:0;position:relative;top:.39em}html:lang(ar) .Text-module_paragraph__65c7w,html:lang(ar) p.Text-module_default-style__wxvqC,html:lang(he) .Text-module_paragraph__65c7w,html:lang(he) p.Text-module_default-style__wxvqC{font-family:Inter,Tahoma,sans-serif}.Text-module_body__5HknB,.Text-module_default-style__wxvqC{font-family:Inter,Noto Sans,Helvetica,Arial,sans-serif;font-size:1rem;font-weight:400;letter-spacing:normal;line-height:1.5;margin:0;position:relative;top:.39em}html:lang(ar) .Text-module_body__5HknB,html:lang(ar) .Text-module_default-style__wxvqC,html:lang(he) .Text-module_body__5HknB,html:lang(he) .Text-module_default-style__wxvqC{font-family:Inter,Tahoma,sans-serif}.Text-module_body-bold__M2YFx{font-family:Inter,Noto Sans,Helvetica,Arial,sans-serif;font-size:1rem;font-weight:600;letter-spacing:normal;line-height:1.5;margin:0;position:relative;top:.39em}html:lang(ar) .Text-module_body-bold__M2YFx,html:lang(he) .Text-module_body-bold__M2YFx{font-family:Inter,Tahoma,sans-serif}.Text-module_small__VBWdb{font-family:Inter,Noto Sans,Helvetica,Arial,sans-serif;font-size:.875rem;font-weight:400;letter-spacing:normal;line-height:1.71429;margin:0;position:relative;top:.49714em}html:lang(ar) .Text-module_small__VBWdb,html:lang(he) .Text-module_small__VBWdb{font-family:Inter,Tahoma,sans-serif}.Text-module_small-bold__IFUAu{font-family:Inter,Noto Sans,Helvetica,Arial,sans-serif;font-size:.875rem;font-weight:600;letter-spacing:normal;line-height:1.71429;margin:0;position:relative;top:.49714em}html:lang(ar) .Text-module_small-bold__IFUAu,html:lang(he) .Text-module_small-bold__IFUAu{font-family:Inter,Tahoma,sans-serif}.Text-module_notification__jl725{font-family:Inter,Noto Sans,Helvetica,Arial,sans-serif;font-size:.9375rem;font-weight:300;letter-spacing:normal;line-height:1.2;margin:0;position:relative;top:.24em}html:lang(ar) .Text-module_notification__jl725,html:lang(he) .Text-module_notification__jl725{font-family:Inter,Tahoma,sans-serif}.Text-module_label__gUBTw{font-family:Inter,Noto Sans,Helvetica,Arial,sans-serif;font-size:.75rem;font-weight:600;letter-spacing:.04167em;line-height:2;margin:0;position:relative;text-transform:uppercase;top:.64em}html:lang(ar) .Text-module_label__gUBTw,html:lang(he) .Text-module_label__gUBTw{font-family:Inter,Tahoma,sans-serif}.Text-module_control-action__BErPr{-webkit-text-decoration-skip:ink;color:var(--color-blue-500,#0168b3);cursor:pointer;font-family:Inter,Noto Sans,Helvetica,Arial,sans-serif;font-size:1rem;font-weight:500;letter-spacing:normal;line-height:1.5;margin:0;position:relative;text-decoration:none;text-decoration-skip-ink:auto;top:.39em}html:lang(ar) .Text-module_control-action__BErPr,html:lang(he) .Text-module_control-action__BErPr{font-family:Inter,Tahoma,sans-serif}.Text-module_control-action__BErPr:hover{text-decoration:underline}.Text-module_button__nPbRH{font-family:Inter,Noto Sans,Helvetica,Arial,sans-serif;font-size:1.125rem;font-weight:700;letter-spacing:normal;line-height:1.33333;margin:0;position:relative;top:.30667em}html:lang(ar) .Text-module_button__nPbRH,html:lang(he) .Text-module_button__nPbRH{font-family:Inter,Tahoma,sans-serif}.Text-module_inheritBaseline__D0Lfs.Text-module_inheritBaseline__D0Lfs{position:static}.Text-module_inline__KlYw2.Text-module_inline__KlYw2{display:inline-flex;margin-bottom:0}.Text-module_zen-display-0__s1w7g{font-family:var(--typography-heading-1-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif),Helvetica,Arial,sans-serif;font-size:4.5rem;font-weight:var(--typography-display-0-font-weight,800);letter-spacing:var(--typography-display-0-letter-spacing,0);line-height:1;margin-bottom:1.5rem;margin-top:0;position:relative;top:.098em}html:lang(ar) .Text-module_zen-display-0__s1w7g,html:lang(he) .Text-module_zen-display-0__s1w7g{font-family:Inter,Tahoma,sans-serif}.Text-module_zen-heading-1__YX01A{font-family:var(--typography-heading-1-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif),Helvetica,Arial,sans-serif;font-size:2.25rem;font-weight:var(--typography-heading-1-font-weight,700);letter-spacing:var(--typography-heading-1-letter-spacing,normal);line-height:1;margin-bottom:1.5rem;margin-top:0;position:relative;top:.098em}html:lang(ar) .Text-module_zen-heading-1__YX01A,html:lang(he) .Text-module_zen-heading-1__YX01A{font-family:Inter,Tahoma,sans-serif}.Text-module_zen-heading-2__JVOtq{font-family:var(--typography-heading-1-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif),Helvetica,Arial,sans-serif;font-size:1.875rem;font-weight:var(--typography-heading-2-font-weight,700);letter-spacing:var(--typography-heading-2-letter-spacing,normal);line-height:1.2;margin-bottom:1.5rem;margin-top:0;position:relative;top:.198em}html:lang(ar) .Text-module_zen-heading-2__JVOtq,html:lang(he) .Text-module_zen-heading-2__JVOtq{font-family:Inter,Tahoma,sans-serif}.Text-module_zen-heading-3__JOT3q{font-family:var(--typography-heading-1-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif),Helvetica,Arial,sans-serif;font-size:1.375rem;font-weight:var(--typography-heading-3-font-weight,700);letter-spacing:var(--typography-heading-3-letter-spacing,normal);line-height:1.09091;margin-bottom:1.5rem;margin-top:0;position:relative;top:.14345em}html:lang(ar) .Text-module_zen-heading-3__JOT3q,html:lang(he) .Text-module_zen-heading-3__JOT3q{font-family:Inter,Tahoma,sans-serif}.Text-module_zen-data-large__EgwWh{font-family:var(--typography-heading-1-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif),Helvetica,Arial,sans-serif;font-size:5.25rem;font-weight:var(--typography-data-large-font-weight,700);letter-spacing:var(--typography-data-large-letter-spacing,normal);line-height:1;margin-bottom:1.5rem;margin-top:0;position:relative;top:.098em}html:lang(ar) .Text-module_zen-data-large__EgwWh,html:lang(he) .Text-module_zen-data-large__EgwWh{font-family:Inter,Tahoma,sans-serif}.Text-module_zen-data-large-units__lZjpK{font-family:var(--typography-heading-1-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif),Helvetica,Arial,sans-serif;font-size:2.625rem;font-weight:var(--typography-data-large-units-font-weight,700);letter-spacing:var(--typography-data-large-units-letter-spacing,normal);line-height:2;margin-bottom:1.5rem;margin-top:0;position:relative;top:.598em}html:lang(ar) .Text-module_zen-data-large-units__lZjpK,html:lang(he) .Text-module_zen-data-large-units__lZjpK{font-family:Inter,Tahoma,sans-serif}.Text-module_zen-data-medium__wKodD{font-family:var(--typography-heading-1-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif),Helvetica,Arial,sans-serif;font-size:3rem;font-weight:var(--typography-data-medium-font-weight,700);letter-spacing:var(--typography-data-medium-letter-spacing,normal);line-height:1.66667;margin-bottom:1.5rem;margin-top:0;position:relative;top:.43133em}html:lang(ar) .Text-module_zen-data-medium__wKodD,html:lang(he) .Text-module_zen-data-medium__wKodD{font-family:Inter,Tahoma,sans-serif}.Text-module_zen-data-medium-units__zh-e8{font-family:var(--typography-heading-1-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif),Helvetica,Arial,sans-serif;font-size:1.5rem;font-weight:var(--typography-data-medium-units-font-weight,700);letter-spacing:var(--typography-data-medium-units-letter-spacing,normal);line-height:3.33333;margin-bottom:1.5rem;margin-top:0;position:relative;top:1.26467em}html:lang(ar) .Text-module_zen-data-medium-units__zh-e8,html:lang(he) .Text-module_zen-data-medium-units__zh-e8{font-family:Inter,Tahoma,sans-serif}.Text-module_zen-data-small__LtxHR{font-family:var(--typography-heading-1-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif),Helvetica,Arial,sans-serif;font-size:1.5rem;font-weight:var(--typography-data-small-font-weight,700);letter-spacing:var(--typography-data-small-letter-spacing,normal);line-height:1;margin-bottom:1.5rem;margin-top:0;position:relative;top:.098em}html:lang(ar) .Text-module_zen-data-small__LtxHR,html:lang(he) .Text-module_zen-data-small__LtxHR{font-family:Inter,Tahoma,sans-serif}.Text-module_zen-data-small-units__0RtFJ{font-family:var(--typography-heading-1-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif),Helvetica,Arial,sans-serif;font-size:1.125rem;font-weight:var(--typography-data-small-units-font-weight,700);letter-spacing:var(--typography-data-small-units-letter-spacing,normal);line-height:1.33333;margin-bottom:1.5rem;margin-top:0;position:relative;top:.26467em}html:lang(ar) .Text-module_zen-data-small-units__0RtFJ,html:lang(he) .Text-module_zen-data-small-units__0RtFJ{font-family:Inter,Tahoma,sans-serif}.Padding-module_p-0__MEDlm{padding:0}.Padding-module_pt-0__2lPMY{padding-top:0}.Padding-module_pr-0__tgwOG{padding-right:0}.Padding-module_pb-0__h-og-{padding-bottom:0}.Padding-module_pl-0__KQQIN{padding-left:0}.Padding-module_p-0-point-25__WR6Pl{padding:calc(var(--spacing-md, 1.5rem)*.25)}.Padding-module_pt-0-point-25__OHxwL{padding-top:calc(var(--spacing-md, 1.5rem)*.25)}.Padding-module_pr-0-point-25__dw3lt{padding-right:calc(var(--spacing-md, 1.5rem)*.25)}.Padding-module_pb-0-point-25__R-G37{padding-bottom:calc(var(--spacing-md, 1.5rem)*.25)}.Padding-module_pl-0-point-25__4H6f8{padding-left:calc(var(--spacing-md, 1.5rem)*.25)}.Padding-module_p-0-point-5__5z-Tg{padding:calc(var(--spacing-md, 1.5rem)*.5)}.Padding-module_pt-0-point-5__BILAZ{padding-top:calc(var(--spacing-md, 1.5rem)*.5)}.Padding-module_pr-0-point-5__Qdc6L{padding-right:calc(var(--spacing-md, 1.5rem)*.5)}.Padding-module_pb-0-point-5__FJOcg{padding-bottom:calc(var(--spacing-md, 1.5rem)*.5)}.Padding-module_pl-0-point-5__gctiZ{padding-left:calc(var(--spacing-md, 1.5rem)*.5)}.Padding-module_p-0-point-75__SCNgd{padding:calc(var(--spacing-md, 1.5rem)*.75)}.Padding-module_pt-0-point-75__Cve0I{padding-top:calc(var(--spacing-md, 1.5rem)*.75)}.Padding-module_pr-0-point-75__11l9x{padding-right:calc(var(--spacing-md, 1.5rem)*.75)}.Padding-module_pb-0-point-75__WfgDh{padding-bottom:calc(var(--spacing-md, 1.5rem)*.75)}.Padding-module_pl-0-point-75__YKbVF{padding-left:calc(var(--spacing-md, 1.5rem)*.75)}.Padding-module_p-1__jIDUT{padding:var(--spacing-md,1.5rem)}.Padding-module_pt-1__r358b{padding-top:var(--spacing-md,1.5rem)}.Padding-module_pr-1__fdsMH{padding-right:var(--spacing-md,1.5rem)}.Padding-module_pb-1__gkHqH{padding-bottom:var(--spacing-md,1.5rem)}.Padding-module_pl-1__1fvrt{padding-left:var(--spacing-md,1.5rem)}.Padding-module_p-1-point-25__9q2Tk{padding:calc(var(--spacing-md, 1.5rem)*1.25)}.Padding-module_pt-1-point-25__uYpt3{padding-top:calc(var(--spacing-md, 1.5rem)*1.25)}.Padding-module_pr-1-point-25__8xYeA{padding-right:calc(var(--spacing-md, 1.5rem)*1.25)}.Padding-module_pb-1-point-25__JwIfB{padding-bottom:calc(var(--spacing-md, 1.5rem)*1.25)}.Padding-module_pl-1-point-25__-w5XU{padding-left:calc(var(--spacing-md, 1.5rem)*1.25)}.Padding-module_p-1-point-5__LICS6{padding:calc(var(--spacing-md, 1.5rem)*1.5)}.Padding-module_pt-1-point-5__p9H7t{padding-top:calc(var(--spacing-md, 1.5rem)*1.5)}.Padding-module_pr-1-point-5__agJTp{padding-right:calc(var(--spacing-md, 1.5rem)*1.5)}.Padding-module_pb-1-point-5__Ig7SW{padding-bottom:calc(var(--spacing-md, 1.5rem)*1.5)}.Padding-module_pl-1-point-5__iBcnI{padding-left:calc(var(--spacing-md, 1.5rem)*1.5)}.Padding-module_p-1-point-75__lctpg{padding:calc(var(--spacing-md, 1.5rem)*1.75)}.Padding-module_pt-1-point-75__MVIUz{padding-top:calc(var(--spacing-md, 1.5rem)*1.75)}.Padding-module_pr-1-point-75__A-Ur-{padding-right:calc(var(--spacing-md, 1.5rem)*1.75)}.Padding-module_pb-1-point-75__TctUk{padding-bottom:calc(var(--spacing-md, 1.5rem)*1.75)}.Padding-module_pl-1-point-75__ahplz{padding-left:calc(var(--spacing-md, 1.5rem)*1.75)}.Padding-module_p-2__iEsEq{padding:calc(var(--spacing-md, 1.5rem)*2)}.Padding-module_pt-2__-uaDE{padding-top:calc(var(--spacing-md, 1.5rem)*2)}.Padding-module_pr-2__py781{padding-right:calc(var(--spacing-md, 1.5rem)*2)}.Padding-module_pb-2__75eso{padding-bottom:calc(var(--spacing-md, 1.5rem)*2)}.Padding-module_pl-2__4L8zZ{padding-left:calc(var(--spacing-md, 1.5rem)*2)}.Padding-module_p-2-point-5__fFM5N{padding:calc(var(--spacing-md, 1.5rem)*2.5)}.Padding-module_pt-2-point-5__aDZvm{padding-top:calc(var(--spacing-md, 1.5rem)*2.5)}.Padding-module_pr-2-point-5__H-fJW{padding-right:calc(var(--spacing-md, 1.5rem)*2.5)}.Padding-module_pb-2-point-5__0oSvZ{padding-bottom:calc(var(--spacing-md, 1.5rem)*2.5)}.Padding-module_pl-2-point-5__BGKgq{padding-left:calc(var(--spacing-md, 1.5rem)*2.5)}.Padding-module_p-3__LltVV{padding:calc(var(--spacing-md, 1.5rem)*3)}.Padding-module_pt-3__Ew6IB{padding-top:calc(var(--spacing-md, 1.5rem)*3)}.Padding-module_pr-3__ehVq5{padding-right:calc(var(--spacing-md, 1.5rem)*3)}.Padding-module_pb-3__u8K7J{padding-bottom:calc(var(--spacing-md, 1.5rem)*3)}.Padding-module_pl-3__GLx74{padding-left:calc(var(--spacing-md, 1.5rem)*3)}.Padding-module_p-3-point-5__PyzuE{padding:calc(var(--spacing-md, 1.5rem)*3.5)}.Padding-module_pt-3-point-5__qKa2E{padding-top:calc(var(--spacing-md, 1.5rem)*3.5)}.Padding-module_pr-3-point-5__xJlsH{padding-right:calc(var(--spacing-md, 1.5rem)*3.5)}.Padding-module_pb-3-point-5__H4D4H{padding-bottom:calc(var(--spacing-md, 1.5rem)*3.5)}.Padding-module_pl-3-point-5__krW-a{padding-left:calc(var(--spacing-md, 1.5rem)*3.5)}.Padding-module_p-4__boMST{padding:calc(var(--spacing-md, 1.5rem)*4)}.Padding-module_pt-4__lHX5n{padding-top:calc(var(--spacing-md, 1.5rem)*4)}.Padding-module_pr-4__sl2rR{padding-right:calc(var(--spacing-md, 1.5rem)*4)}.Padding-module_pb-4__ffDeO{padding-bottom:calc(var(--spacing-md, 1.5rem)*4)}.Padding-module_pl-4__mRkKo{padding-left:calc(var(--spacing-md, 1.5rem)*4)}@font-face{font-family:Tiempos Headline;font-weight:800;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/tiempos/tiempos-headline-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/tiempos/tiempos-headline-bold.woff)}@font-face{font-family:Greycliff CF;font-weight:300;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-light.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:400;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-regular.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:500;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-medium.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:600;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-demi-bold.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:700;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-bold.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:800;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-extra-bold.woff) format("woff")}@font-face{font-family:Inter;font-weight:300;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-light.woff2) url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-light.woff)}@font-face{font-family:Inter;font-weight:400;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-regular.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-regular.woff)}@font-face{font-family:Inter;font-weight:500;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-medium.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-medium.woff)}@font-face{font-family:Inter;font-weight:600;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-demi-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-demi-bold.woff)}@font-face{font-family:Inter;font-weight:700;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-bold.woff)}@font-face{font-family:Inter;font-weight:800;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-extra-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-extra-bold.woff)}@font-face{font-family:IBM Plex Mono;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/ibm-plex-mono/ibm-plex-mono-regular.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/ibm-plex-mono/ibm-plex-mono-regular.woff)}.Margin-module_m-0__hSA96{margin:0}.Margin-module_mt-0__7WGbv{margin-top:0}.Margin-module_mr-0__CX8k-{margin-right:0}.Margin-module_mb-0__LjHy2{margin-bottom:0}.Margin-module_ml-0__Ffq2J{margin-left:0}.Margin-module_m-0-point-25__RrkvF{margin:calc(var(--spacing-md, 1.5rem)*.25)}.Margin-module_mt-0-point-25__lOnmq{margin-top:calc(var(--spacing-md, 1.5rem)*.25)}.Margin-module_mr-0-point-25__JYjnr{margin-right:calc(var(--spacing-md, 1.5rem)*.25)}.Margin-module_mb-0-point-25__aSIWe{margin-bottom:calc(var(--spacing-md, 1.5rem)*.25)}.Margin-module_ml-0-point-25__UIx-6{margin-left:calc(var(--spacing-md, 1.5rem)*.25)}.Margin-module_m-0-point-5__o1ClI{margin:calc(var(--spacing-md, 1.5rem)*.5)}.Margin-module_mt-0-point-5__Hlw6J{margin-top:calc(var(--spacing-md, 1.5rem)*.5)}.Margin-module_mr-0-point-5__lTVga{margin-right:calc(var(--spacing-md, 1.5rem)*.5)}.Margin-module_mb-0-point-5__09Kv0{margin-bottom:calc(var(--spacing-md, 1.5rem)*.5)}.Margin-module_ml-0-point-5__IyBy5{margin-left:calc(var(--spacing-md, 1.5rem)*.5)}.Margin-module_m-0-point-75__IttHs{margin:calc(var(--spacing-md, 1.5rem)*.75)}.Margin-module_mt-0-point-75__8aL1j{margin-top:calc(var(--spacing-md, 1.5rem)*.75)}.Margin-module_mr-0-point-75__1iTsr{margin-right:calc(var(--spacing-md, 1.5rem)*.75)}.Margin-module_mb-0-point-75__bcGVL{margin-bottom:calc(var(--spacing-md, 1.5rem)*.75)}.Margin-module_ml-0-point-75__UoIM3{margin-left:calc(var(--spacing-md, 1.5rem)*.75)}.Margin-module_m-1__WoH7S{margin:var(--spacing-md,1.5rem)}.Margin-module_mt-1__rmDMg{margin-top:var(--spacing-md,1.5rem)}.Margin-module_mr-1__bFRhS{margin-right:var(--spacing-md,1.5rem)}.Margin-module_mb-1__6Siyc{margin-bottom:var(--spacing-md,1.5rem)}.Margin-module_ml-1__j3WF6{margin-left:var(--spacing-md,1.5rem)}.Margin-module_m-1-point-25__aslNk{margin:calc(var(--spacing-md, 1.5rem)*1.25)}.Margin-module_mt-1-point-25__l-Kna{margin-top:calc(var(--spacing-md, 1.5rem)*1.25)}.Margin-module_mr-1-point-25__yKHfB{margin-right:calc(var(--spacing-md, 1.5rem)*1.25)}.Margin-module_mb-1-point-25__k7Wnb{margin-bottom:calc(var(--spacing-md, 1.5rem)*1.25)}.Margin-module_ml-1-point-25__tKCHD{margin-left:calc(var(--spacing-md, 1.5rem)*1.25)}.Margin-module_m-1-point-5__e5RRa{margin:calc(var(--spacing-md, 1.5rem)*1.5)}.Margin-module_mt-1-point-5__0oleV{margin-top:calc(var(--spacing-md, 1.5rem)*1.5)}.Margin-module_mr-1-point-5__UV2Ds{margin-right:calc(var(--spacing-md, 1.5rem)*1.5)}.Margin-module_mb-1-point-5__DgIcA{margin-bottom:calc(var(--spacing-md, 1.5rem)*1.5)}.Margin-module_ml-1-point-5__-a31T{margin-left:calc(var(--spacing-md, 1.5rem)*1.5)}.Margin-module_m-1-point-75__IxxDx{margin:calc(var(--spacing-md, 1.5rem)*1.75)}.Margin-module_mt-1-point-75__zBEJc{margin-top:calc(var(--spacing-md, 1.5rem)*1.75)}.Margin-module_mr-1-point-75__7oQH3{margin-right:calc(var(--spacing-md, 1.5rem)*1.75)}.Margin-module_mb-1-point-75__CyezZ{margin-bottom:calc(var(--spacing-md, 1.5rem)*1.75)}.Margin-module_ml-1-point-75__8AcEE{margin-left:calc(var(--spacing-md, 1.5rem)*1.75)}.Margin-module_m-2__xDAX5{margin:calc(var(--spacing-md, 1.5rem)*2)}.Margin-module_mt-2__BaPgk{margin-top:calc(var(--spacing-md, 1.5rem)*2)}.Margin-module_mr-2__-8KSg{margin-right:calc(var(--spacing-md, 1.5rem)*2)}.Margin-module_mb-2__lqKMm{margin-bottom:calc(var(--spacing-md, 1.5rem)*2)}.Margin-module_ml-2__y6zUv{margin-left:calc(var(--spacing-md, 1.5rem)*2)}.Margin-module_m-2-point-5__nPaB6{margin:calc(var(--spacing-md, 1.5rem)*2.5)}.Margin-module_mt-2-point-5__NtVq0{margin-top:calc(var(--spacing-md, 1.5rem)*2.5)}.Margin-module_mr-2-point-5__u5ycP{margin-right:calc(var(--spacing-md, 1.5rem)*2.5)}.Margin-module_mb-2-point-5__KoWcH{margin-bottom:calc(var(--spacing-md, 1.5rem)*2.5)}.Margin-module_ml-2-point-5__rKkfV{margin-left:calc(var(--spacing-md, 1.5rem)*2.5)}.Margin-module_m-3__3Xx0F{margin:calc(var(--spacing-md, 1.5rem)*3)}.Margin-module_mt-3__M2Jx3{margin-top:calc(var(--spacing-md, 1.5rem)*3)}.Margin-module_mr-3__Ydznr{margin-right:calc(var(--spacing-md, 1.5rem)*3)}.Margin-module_mb-3__-jI8t{margin-bottom:calc(var(--spacing-md, 1.5rem)*3)}.Margin-module_ml-3__GKa-l{margin-left:calc(var(--spacing-md, 1.5rem)*3)}.Margin-module_m-3-point-5__3ZDkz{margin:calc(var(--spacing-md, 1.5rem)*3.5)}.Margin-module_mt-3-point-5__VBSF-{margin-top:calc(var(--spacing-md, 1.5rem)*3.5)}.Margin-module_mr-3-point-5__wf0U2{margin-right:calc(var(--spacing-md, 1.5rem)*3.5)}.Margin-module_mb-3-point-5__OMror{margin-bottom:calc(var(--spacing-md, 1.5rem)*3.5)}.Margin-module_ml-3-point-5__ootW1{margin-left:calc(var(--spacing-md, 1.5rem)*3.5)}.Margin-module_m-4__dZ985{margin:calc(var(--spacing-md, 1.5rem)*4)}.Margin-module_mt-4__BUm9K{margin-top:calc(var(--spacing-md, 1.5rem)*4)}.Margin-module_mr-4__mKUUj{margin-right:calc(var(--spacing-md, 1.5rem)*4)}.Margin-module_mb-4__dO-YX{margin-bottom:calc(var(--spacing-md, 1.5rem)*4)}.Margin-module_ml-4__EE62n{margin-left:calc(var(--spacing-md, 1.5rem)*4)}.Option-module_option__U-MsL{align-items:center;border:var(--border-solid-border-width,2px) var(--border-solid-border-style,solid);border-color:var(--border-borderless-border-color,transparent);border-radius:4px;cursor:default;display:inline-grid;font-family:var(--typography-paragraph-body-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-paragraph-body-font-size,1rem);font-weight:var(--typography-paragraph-body-font-weight,400);gap:var(--spacing-xs,.375rem);grid-template-columns:auto var(--spacing-md,1.5rem);height:-moz-fit-content;height:fit-content;letter-spacing:var(--typography-paragraph-body-letter-spacing,normal);line-height:var(--typography-paragraph-body-line-height,1.5rem);padding:.5rem var(--spacing-xs,.375rem) .5rem var(--spacing-sm,.75rem);position:relative}.Option-module_option__U-MsL:focus{outline:none}.Option-module_option__U-MsL.story__option-hover:not(.Option-module_disabled__RV081),.Option-module_option__U-MsL:active:not(.Option-module_disabled__RV081),.Option-module_option__U-MsL:hover:not(.Option-module_disabled__RV081){background-color:var(--color-blue-100,#e6f6ff);color:var(--color-blue-500,#0168b3)}.Option-module_option__U-MsL.story__option-hover:not(.Option-module_disabled__RV081) .Option-module_icon__0ECp6,.Option-module_option__U-MsL:active:not(.Option-module_disabled__RV081) .Option-module_icon__0ECp6,.Option-module_option__U-MsL:hover:not(.Option-module_disabled__RV081) .Option-module_icon__0ECp6{color:var(--color-blue-500,#0168b3)}.Option-module_option__U-MsL.Option-module_isFocusVisible__yYC7y,.Option-module_option__U-MsL.story__option-focus{background-color:var(--color-blue-100,#e6f6ff);color:var(--color-blue-500,#0168b3)}.Option-module_option__U-MsL.Option-module_isFocusVisible__yYC7y:after,.Option-module_option__U-MsL.story__option-focus:after{background:transparent;border:var(--border-focus-ring-border-width,2px) var(--border-focus-ring-border-style,solid) var(--color-blue-500,#0168b3);border-radius:4px;bottom:calc(var(--border-focus-ring-border-width, 2px)*2*-1 - 1px);content:"";left:calc(var(--border-focus-ring-border-width, 2px)*2*-1 - 1px);position:absolute;right:calc(var(--border-focus-ring-border-width, 2px)*2*-1 - 1px);top:calc(var(--border-focus-ring-border-width, 2px)*2*-1 - 1px);z-index:1}.Option-module_option__U-MsL.Option-module_isFocusVisible__yYC7y .Option-module_icon__0ECp6,.Option-module_option__U-MsL.story__option-focus .Option-module_icon__0ECp6{color:var(--color-blue-500,#0168b3)}.Option-module_icon__0ECp6{align-items:center;display:inline-flex;height:calc(var(--spacing-md, 1.5rem) - var(--border-solid-border-width, 2px)*2);justify-content:center;line-height:1;width:calc(var(--spacing-md, 1.5rem) - var(--border-solid-border-width, 2px)*2)}.Option-module_isSelected__L3nhB{font-weight:var(--typography-paragraph-bold-font-weight,600)}.Option-module_isSelected__L3nhB,.Option-module_isSelected__L3nhB.Option-module_icon__0ECp6{color:var(--color-blue-500,#0168b3)}.Option-module_disabled__RV081{color:var(--color-gray-500,#8c8c97)}.ListBoxSection-module_sectionWrapper__NYQwa{display:flex;flex-direction:column}.ListBoxSection-module_sectionWrapper__NYQwa:not(:first-child){margin-top:var(--spacing-8,.5rem)}.ListBoxSection-module_sectionHeading__KiOi1{padding-left:4px}.ListBoxSection-module_sectionList__xiPZY{display:flex;flex-direction:column;padding:var(--spacing-xs,.375rem) 0 0 0}.Divider-module_wrapper__NSxvt{border:0;border-radius:var(--border-solid-border-radius,7px);margin:0;visibility:visible;width:100%}.Divider-module_content__9Tzmt,.Divider-module_menuSeparator__D9dVJ{border-top:1px solid;border-color:rgba(var(--color-gray-600-rgb,82,78,86),.1)}.Divider-module_content__9Tzmt.Divider-module_reversed__8MS2v,.Divider-module_reversed__8MS2v.Divider-module_menuSeparator__D9dVJ{border-color:rgba(var(--color-white-rgb,255,255,255),.1)}.Divider-module_canvas__Pdcbk{border-bottom:1px solid;border-top:1px solid;border-color:rgba(var(--color-gray-600-rgb,82,78,86),.1)}.Divider-module_canvas__Pdcbk.Divider-module_reversed__8MS2v{border-color:rgba(var(--color-white-rgb,255,255,255),.1)}.Divider-module_menuSeparator__D9dVJ{margin:5px 0}.SectionDivider-module_divider__-idrC{margin:var(--spacing-8,.5rem) 0}.SectionDivider-module_divider__-idrC+.SectionDivider-module_divider__-idrC,.SectionDivider-module_divider__-idrC:first-child,.SectionDivider-module_divider__-idrC:last-child{display:none}.FilterSelect-module_filterContents__2LknZ{overflow:auto;padding:var(--spacing-12,.75rem);width:224px}*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(1,104,179,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(1,104,179,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.container{width:100%}@media (min-width:768px){.container{max-width:768px}}@media (min-width:1080px){.container{max-width:1080px}}.visible{visibility:visible}.fixed{position:fixed}.inline-block{display:inline-block}.contents{display:contents}.hidden{display:none}.bg-green-300{--tw-bg-opacity:1;background-color:rgb(143 219 199/var(--tw-bg-opacity))}.blur{--tw-blur:blur(8px)}.blur,.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kaizen/components",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.10",
|
|
4
4
|
"description": "Kaizen component library",
|
|
5
5
|
"author": "Geoffrey Chong <geoff.chong@cultureamp.com>",
|
|
6
6
|
"homepage": "https://cultureamp.design",
|
|
@@ -38,6 +38,7 @@
|
|
|
38
38
|
"@kaizen/component-library": "^16.5.3",
|
|
39
39
|
"@kaizen/draft-divider": "^2.2.8",
|
|
40
40
|
"@kaizen/draft-tooltip": "^5.4.37",
|
|
41
|
+
"@kaizen/hosted-assets": "^2.0.1",
|
|
41
42
|
"@kaizen/typography": "^2.3.8",
|
|
42
43
|
"@popperjs/core": "^2.11.7",
|
|
43
44
|
"@react-aria/button": "^3.7.0",
|
|
@@ -62,13 +63,13 @@
|
|
|
62
63
|
"@rollup/plugin-typescript": "^11.0.0",
|
|
63
64
|
"autoprefixer": "^10.4.14",
|
|
64
65
|
"concat-cli": "^4.0.0",
|
|
65
|
-
"esbuild": "^0.17.
|
|
66
|
+
"esbuild": "^0.17.15",
|
|
66
67
|
"rollup": "^3.20.2",
|
|
67
68
|
"rollup-plugin-dts": "^5.3.0",
|
|
68
69
|
"rollup-plugin-esbuild": "^5.0.0",
|
|
69
70
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
70
71
|
"rollup-plugin-postcss": "^4.0.2",
|
|
71
|
-
"ts-jest": "^29.0
|
|
72
|
+
"ts-jest": "^29.1.0",
|
|
72
73
|
"ttypescript": "^1.5.15",
|
|
73
74
|
"typescript-transform-paths": "^3.4.6"
|
|
74
75
|
},
|
|
@@ -76,5 +77,5 @@
|
|
|
76
77
|
"@kaizen/design-tokens": "^2.10.3 || ^3.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0",
|
|
77
78
|
"react": "^16.14.0 || ^17.0.0 || ^18.0.0"
|
|
78
79
|
},
|
|
79
|
-
"gitHead": "
|
|
80
|
+
"gitHead": "8ccf872593370b67f0e4f23df83aa69bfe01f6b5"
|
|
80
81
|
}
|