cozy-ui 140.1.1 → 140.2.0
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 +20 -0
- package/package.json +2 -1
- package/react/Autocomplete/Readme.md +7 -1
- package/react/ColorPickerCustom/Readme.md +22 -0
- package/react/ColorPickerCustom/index.jsx +35 -0
- package/react/ColorPickerCustom/styles.styl +20 -0
- package/react/FileInput/Readme.md +2 -0
- package/react/Filename/Readme.md +2 -0
- package/react/GhostFileBadge/Readme.md +2 -0
- package/react/IconButton/Readme.md +2 -0
- package/react/InfosBadge/Readme.md +2 -0
- package/react/Labs/IconGrid/Readme.md +2 -0
- package/react/Layout/Layout.md +2 -0
- package/react/List/Readme.md +2 -0
- package/react/ListItem/Readme.md +2 -0
- package/react/ListSubheader/Readme.md +2 -0
- package/react/Menu/Readme.md +2 -0
- package/react/MobileStepper/Readme.md +2 -0
- package/react/MuiCozyTheme/overrides/makeLightOverrides.js +47 -0
- package/react/index.js +1 -0
- package/skills/cozy-ui-reference/SKILL.md +23 -22
- package/skills/cozy-ui-reference/references/components.md +31 -1
- package/skills/cozy-ui-reference/references/css-classes.md +10 -10
- package/transpiled/react/ColorPickerCustom/index.d.ts +14 -0
- package/transpiled/react/ColorPickerCustom/index.js +41 -0
- package/transpiled/react/MuiCozyTheme/overrides/makeDarkOverrides.d.ts +46 -0
- package/transpiled/react/MuiCozyTheme/overrides/makeLightOverrides.d.ts +46 -0
- package/transpiled/react/MuiCozyTheme/overrides/makeLightOverrides.js +46 -0
- package/transpiled/react/index.d.ts +1 -0
- package/transpiled/react/index.js +1 -0
- package/transpiled/react/stylesheet.css +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
# [140.2.0](https://github.com/cozy/cozy-ui/compare/v140.1.2...v140.2.0) (2026-07-09)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* Markdown lint ([184fd6b](https://github.com/cozy/cozy-ui/commit/184fd6b))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* Add ColorPickerCustom component ([25bb4c3](https://github.com/cozy/cozy-ui/commit/25bb4c3))
|
|
12
|
+
* Add react-colorful ([a8e0390](https://github.com/cozy/cozy-ui/commit/a8e0390))
|
|
13
|
+
|
|
14
|
+
## [140.1.2](https://github.com/cozy/cozy-ui/compare/v140.1.1...v140.1.2) (2026-07-02)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **Autocomplete:** Small size is now the same as TextField component ([f4b75a5](https://github.com/cozy/cozy-ui/commit/f4b75a5))
|
|
20
|
+
|
|
1
21
|
## [140.1.1](https://github.com/cozy/cozy-ui/compare/v140.1.0...v140.1.1) (2026-06-25)
|
|
2
22
|
|
|
3
23
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cozy-ui",
|
|
3
|
-
"version": "140.
|
|
3
|
+
"version": "140.2.0",
|
|
4
4
|
"description": "Cozy apps UI SDK",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": "24.x"
|
|
@@ -174,6 +174,7 @@
|
|
|
174
174
|
"normalize.css": "^8.0.0",
|
|
175
175
|
"patch-package": "^8.0.0",
|
|
176
176
|
"pdf-lib": "1.17.1",
|
|
177
|
+
"react-colorful": "5.7.0",
|
|
177
178
|
"react-markdown": "^4.0.8",
|
|
178
179
|
"react-popper": "^2.2.3",
|
|
179
180
|
"react-remove-scroll": "^2.4.0",
|
|
@@ -11,7 +11,13 @@ const options = ['one', 'two', 'three']
|
|
|
11
11
|
<DemoProvider>
|
|
12
12
|
<Autocomplete
|
|
13
13
|
options={options}
|
|
14
|
-
renderInput={params => <TextField {...params} label="Basic" />}
|
|
14
|
+
renderInput={params => <TextField {...params} label="Basic" variant="outlined" />}
|
|
15
|
+
/>
|
|
16
|
+
<Autocomplete
|
|
17
|
+
className="u-mt-1"
|
|
18
|
+
options={options}
|
|
19
|
+
size="small"
|
|
20
|
+
renderInput={params => <TextField {...params} label="Basic" variant="outlined" />}
|
|
15
21
|
/>
|
|
16
22
|
</DemoProvider>
|
|
17
23
|
```
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
### ColorPickerCustom
|
|
2
|
+
|
|
3
|
+
With saturation, hue and hex input for manual input or copy/paste.
|
|
4
|
+
|
|
5
|
+
```jsx
|
|
6
|
+
import { useState } from 'react'
|
|
7
|
+
|
|
8
|
+
import { BreakpointsProvider } from 'cozy-ui/transpiled/react/providers/Breakpoints'
|
|
9
|
+
import Paper from 'cozy-ui/transpiled/react/Paper';
|
|
10
|
+
import ColorPickerCustom from 'cozy-ui/transpiled/react/ColorPickerCustom'
|
|
11
|
+
|
|
12
|
+
const [color, setColor] = useState('#aabbcc')
|
|
13
|
+
;
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
<BreakpointsProvider>
|
|
17
|
+
<Paper className="u-p-1">
|
|
18
|
+
<ColorPickerCustom color={color} setColor={setColor}/>
|
|
19
|
+
</Paper>
|
|
20
|
+
</BreakpointsProvider>
|
|
21
|
+
|
|
22
|
+
```
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import cx from 'classnames'
|
|
2
|
+
import PropTypes from 'prop-types'
|
|
3
|
+
import React from 'react'
|
|
4
|
+
import { HexColorPicker, HexColorInput } from 'react-colorful'
|
|
5
|
+
|
|
6
|
+
import styles from './styles.styl'
|
|
7
|
+
import TextField from '../../react/TextField'
|
|
8
|
+
import Typography from '../../react/Typography'
|
|
9
|
+
|
|
10
|
+
const ColorPickerCustom = ({ color, setColor, className }) => {
|
|
11
|
+
return (
|
|
12
|
+
<div className={cx('u-flex u-flex-column', styles.root, className)}>
|
|
13
|
+
<HexColorPicker color={color} onChange={setColor} />
|
|
14
|
+
<div className="u-flex u-flex-row u-flex-items-center u-mt-1">
|
|
15
|
+
<Typography variant="h6" className="u-mr-half">
|
|
16
|
+
Hex
|
|
17
|
+
</Typography>
|
|
18
|
+
<TextField
|
|
19
|
+
value={color}
|
|
20
|
+
onChange={e => setColor(e.target.value)}
|
|
21
|
+
inputComponent={HexColorInput}
|
|
22
|
+
className={styles.input}
|
|
23
|
+
/>
|
|
24
|
+
</div>
|
|
25
|
+
</div>
|
|
26
|
+
)
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
ColorPickerCustom.propTypes = {
|
|
30
|
+
color: PropTypes.string,
|
|
31
|
+
setColor: PropTypes.func,
|
|
32
|
+
className: PropTypes.string
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export default ColorPickerCustom
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
// Scoping anchor required so CSS modules don't strip :global block
|
|
2
|
+
.root
|
|
3
|
+
:global
|
|
4
|
+
.react-colorful
|
|
5
|
+
height 140px
|
|
6
|
+
|
|
7
|
+
&__saturation
|
|
8
|
+
width 246px
|
|
9
|
+
border-radius 0
|
|
10
|
+
&__hue
|
|
11
|
+
width 246px
|
|
12
|
+
height 18px
|
|
13
|
+
border-radius 0
|
|
14
|
+
margin-top 20px
|
|
15
|
+
&__pointer
|
|
16
|
+
width 20px
|
|
17
|
+
height 20px
|
|
18
|
+
border-width 1px
|
|
19
|
+
.input
|
|
20
|
+
width 72px
|
package/react/Filename/Readme.md
CHANGED
package/react/Layout/Layout.md
CHANGED
package/react/List/Readme.md
CHANGED
package/react/ListItem/Readme.md
CHANGED
package/react/Menu/Readme.md
CHANGED
|
@@ -959,6 +959,53 @@ export const makeLightOverrides = theme => ({
|
|
|
959
959
|
padding: '8px 12px'
|
|
960
960
|
}
|
|
961
961
|
},
|
|
962
|
+
MuiAutocomplete: {
|
|
963
|
+
inputRoot: {
|
|
964
|
+
'&[class*="MuiInput-root"]': {
|
|
965
|
+
paddingBottom: undefined,
|
|
966
|
+
'& $input': {
|
|
967
|
+
padding: undefined
|
|
968
|
+
}
|
|
969
|
+
},
|
|
970
|
+
'&[class*="MuiInput-root"][class*="MuiInput-marginDense"]': {
|
|
971
|
+
'& $input': {
|
|
972
|
+
padding: undefined
|
|
973
|
+
},
|
|
974
|
+
'& $input:first-child': {
|
|
975
|
+
padding: undefined
|
|
976
|
+
}
|
|
977
|
+
},
|
|
978
|
+
'&[class*="MuiOutlinedInput-root"]': {
|
|
979
|
+
padding: undefined,
|
|
980
|
+
'& $input': {
|
|
981
|
+
padding: undefined
|
|
982
|
+
},
|
|
983
|
+
'& $input:first-child': {
|
|
984
|
+
paddingLeft: undefined
|
|
985
|
+
}
|
|
986
|
+
},
|
|
987
|
+
'&[class*="MuiOutlinedInput-root"][class*="MuiOutlinedInput-marginDense"]':
|
|
988
|
+
{
|
|
989
|
+
padding: undefined,
|
|
990
|
+
'& $input': {
|
|
991
|
+
padding: undefined
|
|
992
|
+
}
|
|
993
|
+
},
|
|
994
|
+
'&[class*="MuiFilledInput-root"]': {
|
|
995
|
+
paddingTop: undefined,
|
|
996
|
+
paddingLeft: undefined,
|
|
997
|
+
'& $input': {
|
|
998
|
+
padding: undefined
|
|
999
|
+
}
|
|
1000
|
+
},
|
|
1001
|
+
'&[class*="MuiFilledInput-root"][class*="MuiFilledInput-marginDense"]': {
|
|
1002
|
+
paddingBottom: undefined,
|
|
1003
|
+
'& $input': {
|
|
1004
|
+
padding: undefined
|
|
1005
|
+
}
|
|
1006
|
+
}
|
|
1007
|
+
}
|
|
1008
|
+
},
|
|
962
1009
|
MuiIconButton: {
|
|
963
1010
|
root: {
|
|
964
1011
|
color: theme.palette.text.secondary,
|
package/react/index.js
CHANGED
|
@@ -55,6 +55,7 @@ export {
|
|
|
55
55
|
BottomSheetHeader
|
|
56
56
|
} from './BottomSheet'
|
|
57
57
|
export { default as Chips } from './Chips'
|
|
58
|
+
export { default as ColorPickerCustom } from './ColorPickerCustom'
|
|
58
59
|
export { default as DropdownText } from './DropdownText'
|
|
59
60
|
export { default as Alert } from './Alert'
|
|
60
61
|
export { default as AlertTitle } from './AlertTitle'
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
|
|
1
|
+
* * *
|
|
2
|
+
|
|
2
3
|
name: cozy-ui-reference
|
|
3
|
-
|
|
4
|
-
|
|
4
|
+
|
|
5
|
+
## description: Build, review, or modify Cozy applications with cozy-ui React components, Material-UI v4 based theming, Cozy design patterns, CSS utility classes, icons, and component APIs. Use when Codex needs to choose cozy-ui components, write imports from cozy-ui, apply Cozy styling utilities, or answer implementation questions about cozy-ui.
|
|
5
6
|
|
|
6
7
|
<!-- Auto-generated by scripts/generate-skill.js — do not edit manually -->
|
|
7
8
|
|
|
@@ -24,10 +25,10 @@ import 'cozy-ui/transpiled/react/stylesheet.css'
|
|
|
24
25
|
|
|
25
26
|
## What This Skill Provides
|
|
26
27
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
28
|
+
* 90+ React components with examples and extracted props.
|
|
29
|
+
* CSS utility classes for spacing, typography, colors, layout, and component-specific classes.
|
|
30
|
+
* Cozy theming conventions built on Material-UI v4.
|
|
31
|
+
* Import patterns for `cozy-ui/transpiled/react` and `cozy-ui/dist`.
|
|
31
32
|
|
|
32
33
|
## Quick Reference
|
|
33
34
|
|
|
@@ -37,11 +38,11 @@ Read `references/components.md` when choosing a component, checking props, or lo
|
|
|
37
38
|
|
|
38
39
|
Common starting points:
|
|
39
40
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
41
|
+
* Buttons and actions: `Button`, `Buttons`, `IconButton`, `ActionsMenu`, `ActionsBar`.
|
|
42
|
+
* Forms: `TextField`, `SelectBox`, `Checkbox`, `Radios`, `Switch`, `SearchBar`, `FileInput`.
|
|
43
|
+
* Layout: `Stack`, `Grid`, `Paper`, `Card`, `Container`, `Divider`.
|
|
44
|
+
* Feedback: `Alert`, `Banner`, `Snackbar`, `Spinner`, `Skeletons`, `ProgressionBanner`.
|
|
45
|
+
* Dialogs and menus: `CozyDialogs`, `Dialog`, `Menu`, `ActionsMenu`.
|
|
45
46
|
|
|
46
47
|
### CSS Utilities
|
|
47
48
|
|
|
@@ -72,19 +73,19 @@ import { CozyTheme } from 'cozy-ui/transpiled/react/providers/CozyTheme'
|
|
|
72
73
|
|
|
73
74
|
1. Identify whether the task is component selection, CSS utility usage, theming, or implementation review.
|
|
74
75
|
2. Load only the needed reference file:
|
|
75
|
-
|
|
76
|
-
|
|
76
|
+
* `references/components.md` for React components, imports, examples, and props.
|
|
77
|
+
* `references/css-classes.md` for utility classes and Stylus/CSS usage.
|
|
77
78
|
3. Prefer cozy-ui exports over raw Material-UI components when a Cozy wrapper exists.
|
|
78
79
|
4. Preserve existing app conventions and imports; do not migrate import style unless required.
|
|
79
80
|
5. If adding or changing components inside cozy-ui itself, follow the repository README guidance for component development and tests.
|
|
80
81
|
|
|
81
82
|
## Specific Tasks
|
|
82
83
|
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
84
|
+
* Choosing and composing Cozy UI components — `references/components.md`
|
|
85
|
+
* Checking component props and examples — `references/components.md`
|
|
86
|
+
* Applying spacing, typography, color, and utility classes — `references/css-classes.md`
|
|
87
|
+
* Using Cozy theme providers and variants — start with this file, then inspect component references when needed
|
|
88
|
+
* Reviewing Cozy UI usage in app code — check imports and component APIs against `references/components.md`
|
|
88
89
|
|
|
89
90
|
## Installed Skill Layout
|
|
90
91
|
|
|
@@ -98,6 +99,6 @@ skills/cozy-ui-reference/
|
|
|
98
99
|
|
|
99
100
|
## Additional Resources
|
|
100
101
|
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
102
|
+
* [GitHub Repository](https://github.com/cozy/cozy-ui)
|
|
103
|
+
* [Styleguide](https://docs.cozy.io/cozy-ui/)
|
|
104
|
+
* [Material-UI v4 Docs](https://v4.mui.com/)
|
|
@@ -17,7 +17,7 @@ Generated reference for React components available in cozy-ui. Use this file to
|
|
|
17
17
|
- **Utils**: [DropdownText](#dropdowntext), [MuiCozyTheme](#muicozytheme)
|
|
18
18
|
- **Hooks & Providers**: [Breakpoints (providers/Breakpoints)](#breakpoints-providers-breakpoints), [ConfirmDialog (providers/ConfirmDialog)](#confirmdialog-providers-confirmdialog), [CozyTheme (providers/CozyTheme)](#cozytheme-providers-cozytheme), [Selection (providers/Selection)](#selection-providers-selection), [useConfirmExit (hooks/useConfirmExit)](#useconfirmexit-hooks-useconfirmexit)
|
|
19
19
|
- **Labs**: [IconGrid (Labs/IconGrid)](#icongrid-labs-icongrid), [Labs](#labs), [PasswordInput (Labs/PasswordInput)](#passwordinput-labs-passwordinput)
|
|
20
|
-
- **Other**: [Autocomplete](#autocomplete), [BottomSheet](#bottomsheet), [providers](#providers)
|
|
20
|
+
- **Other**: [Autocomplete](#autocomplete), [BottomSheet](#bottomsheet), [ColorPickerCustom](#colorpickercustom), [providers](#providers)
|
|
21
21
|
|
|
22
22
|
## Buttons
|
|
23
23
|
|
|
@@ -1824,6 +1824,36 @@ import BottomSheet from 'cozy-ui/transpiled/react/BottomSheet'
|
|
|
1824
1824
|
```
|
|
1825
1825
|
|
|
1826
1826
|
|
|
1827
|
+
### ColorPickerCustom
|
|
1828
|
+
|
|
1829
|
+
With saturation, hue and hex input for manual input or copy/paste.
|
|
1830
|
+
|
|
1831
|
+
```jsx
|
|
1832
|
+
import ColorPickerCustom from 'cozy-ui/transpiled/react/ColorPickerCustom'
|
|
1833
|
+
```
|
|
1834
|
+
|
|
1835
|
+
**Example:**
|
|
1836
|
+
|
|
1837
|
+
```jsx
|
|
1838
|
+
import { useState } from 'react'
|
|
1839
|
+
import { BreakpointsProvider } from 'cozy-ui/transpiled/react/providers/Breakpoints'
|
|
1840
|
+
import Paper from 'cozy-ui/transpiled/react/Paper';
|
|
1841
|
+
import ColorPickerCustom from 'cozy-ui/transpiled/react/ColorPickerCustom'
|
|
1842
|
+
|
|
1843
|
+
<BreakpointsProvider>
|
|
1844
|
+
<Paper className="u-p-1">
|
|
1845
|
+
<ColorPickerCustom color={color} setColor={setColor}/>
|
|
1846
|
+
</Paper>
|
|
1847
|
+
</BreakpointsProvider>
|
|
1848
|
+
```
|
|
1849
|
+
|
|
1850
|
+
| Prop | Type | Default | Description |
|
|
1851
|
+
|------|------|---------|-------------|
|
|
1852
|
+
| `color` | string | - | - |
|
|
1853
|
+
| `setColor` | function | - | - |
|
|
1854
|
+
| `className` | string | - | - |
|
|
1855
|
+
|
|
1856
|
+
|
|
1827
1857
|
### providers
|
|
1828
1858
|
|
|
1829
1859
|
```jsx
|
|
@@ -17,7 +17,7 @@ Complete reference for CSS utility classes and component-specific classes in coz
|
|
|
17
17
|
@import 'cozy-ui/stylus/mixins'
|
|
18
18
|
```
|
|
19
19
|
|
|
20
|
-
|
|
20
|
+
* * *
|
|
21
21
|
|
|
22
22
|
## Utility Classes
|
|
23
23
|
|
|
@@ -58,7 +58,7 @@ Complete reference for CSS utility classes and component-specific classes in coz
|
|
|
58
58
|
.u-m-{size}-{breakpoint} /* responsive margin */
|
|
59
59
|
```
|
|
60
60
|
|
|
61
|
-
|
|
61
|
+
* * *
|
|
62
62
|
|
|
63
63
|
### Typography Utilities
|
|
64
64
|
|
|
@@ -120,7 +120,7 @@ Complete reference for CSS utility classes and component-specific classes in coz
|
|
|
120
120
|
.u-link /* link color and hover state */
|
|
121
121
|
```
|
|
122
122
|
|
|
123
|
-
|
|
123
|
+
* * *
|
|
124
124
|
|
|
125
125
|
### Color Utilities
|
|
126
126
|
|
|
@@ -149,7 +149,7 @@ Complete reference for CSS utility classes and component-specific classes in coz
|
|
|
149
149
|
.u-bg-info /* info background */
|
|
150
150
|
```
|
|
151
151
|
|
|
152
|
-
|
|
152
|
+
* * *
|
|
153
153
|
|
|
154
154
|
### Opacity Utilities
|
|
155
155
|
|
|
@@ -169,7 +169,7 @@ Complete reference for CSS utility classes and component-specific classes in coz
|
|
|
169
169
|
.u-o-100 /* opacity: 100% */
|
|
170
170
|
```
|
|
171
171
|
|
|
172
|
-
|
|
172
|
+
* * *
|
|
173
173
|
|
|
174
174
|
### Elevation (Shadows)
|
|
175
175
|
|
|
@@ -180,7 +180,7 @@ Complete reference for CSS utility classes and component-specific classes in coz
|
|
|
180
180
|
.u-elevation-3 /* elevation level 3 */
|
|
181
181
|
```
|
|
182
182
|
|
|
183
|
-
|
|
183
|
+
* * *
|
|
184
184
|
|
|
185
185
|
### Visual Effects
|
|
186
186
|
|
|
@@ -190,7 +190,7 @@ Complete reference for CSS utility classes and component-specific classes in coz
|
|
|
190
190
|
.u-visuallyhidden /* visually hidden but accessible */
|
|
191
191
|
```
|
|
192
192
|
|
|
193
|
-
|
|
193
|
+
* * *
|
|
194
194
|
|
|
195
195
|
## Component Classes
|
|
196
196
|
|
|
@@ -246,7 +246,7 @@ Complete reference for CSS utility classes and component-specific classes in coz
|
|
|
246
246
|
.c-table-ellipsis /* ellipsis in cell */
|
|
247
247
|
```
|
|
248
248
|
|
|
249
|
-
|
|
249
|
+
* * *
|
|
250
250
|
|
|
251
251
|
## Theme Classes
|
|
252
252
|
|
|
@@ -255,7 +255,7 @@ Complete reference for CSS utility classes and component-specific classes in coz
|
|
|
255
255
|
.TwakeTheme--dark /* dark theme */
|
|
256
256
|
```
|
|
257
257
|
|
|
258
|
-
|
|
258
|
+
* * *
|
|
259
259
|
|
|
260
260
|
## Animation Keyframes
|
|
261
261
|
|
|
@@ -267,7 +267,7 @@ Complete reference for CSS utility classes and component-specific classes in coz
|
|
|
267
267
|
@keyframes shake
|
|
268
268
|
```
|
|
269
269
|
|
|
270
|
-
|
|
270
|
+
* * *
|
|
271
271
|
|
|
272
272
|
## CSS Variables
|
|
273
273
|
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export default ColorPickerCustom;
|
|
2
|
+
declare function ColorPickerCustom({ color, setColor, className }: {
|
|
3
|
+
color: any;
|
|
4
|
+
setColor: any;
|
|
5
|
+
className: any;
|
|
6
|
+
}): JSX.Element;
|
|
7
|
+
declare namespace ColorPickerCustom {
|
|
8
|
+
namespace propTypes {
|
|
9
|
+
const color: PropTypes.Requireable<string>;
|
|
10
|
+
const setColor: PropTypes.Requireable<(...args: any[]) => any>;
|
|
11
|
+
const className: PropTypes.Requireable<string>;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
import PropTypes from "prop-types";
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import cx from 'classnames';
|
|
2
|
+
import PropTypes from 'prop-types';
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import { HexColorPicker, HexColorInput } from 'react-colorful';
|
|
5
|
+
var styles = {
|
|
6
|
+
"root": "styles__root___1wSag",
|
|
7
|
+
"input": "styles__input___QRNzz"
|
|
8
|
+
};
|
|
9
|
+
import TextField from "cozy-ui/transpiled/react/TextField";
|
|
10
|
+
import Typography from "cozy-ui/transpiled/react/Typography";
|
|
11
|
+
|
|
12
|
+
var ColorPickerCustom = function ColorPickerCustom(_ref) {
|
|
13
|
+
var color = _ref.color,
|
|
14
|
+
setColor = _ref.setColor,
|
|
15
|
+
className = _ref.className;
|
|
16
|
+
return /*#__PURE__*/React.createElement("div", {
|
|
17
|
+
className: cx('u-flex u-flex-column', styles.root, className)
|
|
18
|
+
}, /*#__PURE__*/React.createElement(HexColorPicker, {
|
|
19
|
+
color: color,
|
|
20
|
+
onChange: setColor
|
|
21
|
+
}), /*#__PURE__*/React.createElement("div", {
|
|
22
|
+
className: "u-flex u-flex-row u-flex-items-center u-mt-1"
|
|
23
|
+
}, /*#__PURE__*/React.createElement(Typography, {
|
|
24
|
+
variant: "h6",
|
|
25
|
+
className: "u-mr-half"
|
|
26
|
+
}, "Hex"), /*#__PURE__*/React.createElement(TextField, {
|
|
27
|
+
value: color,
|
|
28
|
+
onChange: function onChange(e) {
|
|
29
|
+
return setColor(e.target.value);
|
|
30
|
+
},
|
|
31
|
+
inputComponent: HexColorInput,
|
|
32
|
+
className: styles.input
|
|
33
|
+
})));
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
ColorPickerCustom.propTypes = {
|
|
37
|
+
color: PropTypes.string,
|
|
38
|
+
setColor: PropTypes.func,
|
|
39
|
+
className: PropTypes.string
|
|
40
|
+
};
|
|
41
|
+
export default ColorPickerCustom;
|
|
@@ -981,6 +981,52 @@ export function makeDarkOverrides(theme: any): {
|
|
|
981
981
|
padding: string;
|
|
982
982
|
};
|
|
983
983
|
};
|
|
984
|
+
MuiAutocomplete: {
|
|
985
|
+
inputRoot: {
|
|
986
|
+
'&[class*="MuiInput-root"]': {
|
|
987
|
+
paddingBottom: undefined;
|
|
988
|
+
'& $input': {
|
|
989
|
+
padding: undefined;
|
|
990
|
+
};
|
|
991
|
+
};
|
|
992
|
+
'&[class*="MuiInput-root"][class*="MuiInput-marginDense"]': {
|
|
993
|
+
'& $input': {
|
|
994
|
+
padding: undefined;
|
|
995
|
+
};
|
|
996
|
+
'& $input:first-child': {
|
|
997
|
+
padding: undefined;
|
|
998
|
+
};
|
|
999
|
+
};
|
|
1000
|
+
'&[class*="MuiOutlinedInput-root"]': {
|
|
1001
|
+
padding: undefined;
|
|
1002
|
+
'& $input': {
|
|
1003
|
+
padding: undefined;
|
|
1004
|
+
};
|
|
1005
|
+
'& $input:first-child': {
|
|
1006
|
+
paddingLeft: undefined;
|
|
1007
|
+
};
|
|
1008
|
+
};
|
|
1009
|
+
'&[class*="MuiOutlinedInput-root"][class*="MuiOutlinedInput-marginDense"]': {
|
|
1010
|
+
padding: undefined;
|
|
1011
|
+
'& $input': {
|
|
1012
|
+
padding: undefined;
|
|
1013
|
+
};
|
|
1014
|
+
};
|
|
1015
|
+
'&[class*="MuiFilledInput-root"]': {
|
|
1016
|
+
paddingTop: undefined;
|
|
1017
|
+
paddingLeft: undefined;
|
|
1018
|
+
'& $input': {
|
|
1019
|
+
padding: undefined;
|
|
1020
|
+
};
|
|
1021
|
+
};
|
|
1022
|
+
'&[class*="MuiFilledInput-root"][class*="MuiFilledInput-marginDense"]': {
|
|
1023
|
+
paddingBottom: undefined;
|
|
1024
|
+
'& $input': {
|
|
1025
|
+
padding: undefined;
|
|
1026
|
+
};
|
|
1027
|
+
};
|
|
1028
|
+
};
|
|
1029
|
+
};
|
|
984
1030
|
MuiIconButton: {
|
|
985
1031
|
root: {
|
|
986
1032
|
color: any;
|
|
@@ -981,6 +981,52 @@ export function makeLightOverrides(theme: any): {
|
|
|
981
981
|
padding: string;
|
|
982
982
|
};
|
|
983
983
|
};
|
|
984
|
+
MuiAutocomplete: {
|
|
985
|
+
inputRoot: {
|
|
986
|
+
'&[class*="MuiInput-root"]': {
|
|
987
|
+
paddingBottom: undefined;
|
|
988
|
+
'& $input': {
|
|
989
|
+
padding: undefined;
|
|
990
|
+
};
|
|
991
|
+
};
|
|
992
|
+
'&[class*="MuiInput-root"][class*="MuiInput-marginDense"]': {
|
|
993
|
+
'& $input': {
|
|
994
|
+
padding: undefined;
|
|
995
|
+
};
|
|
996
|
+
'& $input:first-child': {
|
|
997
|
+
padding: undefined;
|
|
998
|
+
};
|
|
999
|
+
};
|
|
1000
|
+
'&[class*="MuiOutlinedInput-root"]': {
|
|
1001
|
+
padding: undefined;
|
|
1002
|
+
'& $input': {
|
|
1003
|
+
padding: undefined;
|
|
1004
|
+
};
|
|
1005
|
+
'& $input:first-child': {
|
|
1006
|
+
paddingLeft: undefined;
|
|
1007
|
+
};
|
|
1008
|
+
};
|
|
1009
|
+
'&[class*="MuiOutlinedInput-root"][class*="MuiOutlinedInput-marginDense"]': {
|
|
1010
|
+
padding: undefined;
|
|
1011
|
+
'& $input': {
|
|
1012
|
+
padding: undefined;
|
|
1013
|
+
};
|
|
1014
|
+
};
|
|
1015
|
+
'&[class*="MuiFilledInput-root"]': {
|
|
1016
|
+
paddingTop: undefined;
|
|
1017
|
+
paddingLeft: undefined;
|
|
1018
|
+
'& $input': {
|
|
1019
|
+
padding: undefined;
|
|
1020
|
+
};
|
|
1021
|
+
};
|
|
1022
|
+
'&[class*="MuiFilledInput-root"][class*="MuiFilledInput-marginDense"]': {
|
|
1023
|
+
paddingBottom: undefined;
|
|
1024
|
+
'& $input': {
|
|
1025
|
+
padding: undefined;
|
|
1026
|
+
};
|
|
1027
|
+
};
|
|
1028
|
+
};
|
|
1029
|
+
};
|
|
984
1030
|
MuiIconButton: {
|
|
985
1031
|
root: {
|
|
986
1032
|
color: any;
|
|
@@ -906,6 +906,52 @@ export var makeLightOverrides = function makeLightOverrides(theme) {
|
|
|
906
906
|
padding: '8px 12px'
|
|
907
907
|
}
|
|
908
908
|
},
|
|
909
|
+
MuiAutocomplete: {
|
|
910
|
+
inputRoot: {
|
|
911
|
+
'&[class*="MuiInput-root"]': {
|
|
912
|
+
paddingBottom: undefined,
|
|
913
|
+
'& $input': {
|
|
914
|
+
padding: undefined
|
|
915
|
+
}
|
|
916
|
+
},
|
|
917
|
+
'&[class*="MuiInput-root"][class*="MuiInput-marginDense"]': {
|
|
918
|
+
'& $input': {
|
|
919
|
+
padding: undefined
|
|
920
|
+
},
|
|
921
|
+
'& $input:first-child': {
|
|
922
|
+
padding: undefined
|
|
923
|
+
}
|
|
924
|
+
},
|
|
925
|
+
'&[class*="MuiOutlinedInput-root"]': {
|
|
926
|
+
padding: undefined,
|
|
927
|
+
'& $input': {
|
|
928
|
+
padding: undefined
|
|
929
|
+
},
|
|
930
|
+
'& $input:first-child': {
|
|
931
|
+
paddingLeft: undefined
|
|
932
|
+
}
|
|
933
|
+
},
|
|
934
|
+
'&[class*="MuiOutlinedInput-root"][class*="MuiOutlinedInput-marginDense"]': {
|
|
935
|
+
padding: undefined,
|
|
936
|
+
'& $input': {
|
|
937
|
+
padding: undefined
|
|
938
|
+
}
|
|
939
|
+
},
|
|
940
|
+
'&[class*="MuiFilledInput-root"]': {
|
|
941
|
+
paddingTop: undefined,
|
|
942
|
+
paddingLeft: undefined,
|
|
943
|
+
'& $input': {
|
|
944
|
+
padding: undefined
|
|
945
|
+
}
|
|
946
|
+
},
|
|
947
|
+
'&[class*="MuiFilledInput-root"][class*="MuiFilledInput-marginDense"]': {
|
|
948
|
+
paddingBottom: undefined,
|
|
949
|
+
'& $input': {
|
|
950
|
+
padding: undefined
|
|
951
|
+
}
|
|
952
|
+
}
|
|
953
|
+
}
|
|
954
|
+
},
|
|
909
955
|
MuiIconButton: {
|
|
910
956
|
root: {
|
|
911
957
|
color: theme.palette.text.secondary,
|
|
@@ -30,6 +30,7 @@ export { default as Paper } from "./Paper";
|
|
|
30
30
|
export { default as ProgressionBanner } from "./ProgressionBanner";
|
|
31
31
|
export { default as Radios } from "./Radios";
|
|
32
32
|
export { default as Chips } from "./Chips";
|
|
33
|
+
export { default as ColorPickerCustom } from "./ColorPickerCustom";
|
|
33
34
|
export { default as DropdownText } from "./DropdownText";
|
|
34
35
|
export { default as Alert } from "./Alert";
|
|
35
36
|
export { default as AlertTitle } from "./AlertTitle";
|
|
@@ -39,6 +39,7 @@ export { default as Fab, ExtendableFab } from './Fab';
|
|
|
39
39
|
export { default as Radios } from './Radios';
|
|
40
40
|
export { default as BottomSheet, BottomSheetItem, BottomSheetHeader } from './BottomSheet';
|
|
41
41
|
export { default as Chips } from './Chips';
|
|
42
|
+
export { default as ColorPickerCustom } from './ColorPickerCustom';
|
|
42
43
|
export { default as DropdownText } from './DropdownText';
|
|
43
44
|
export { default as Alert } from './Alert';
|
|
44
45
|
export { default as AlertTitle } from './AlertTitle';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.styles__c-apptitle___eqV9l{display:inline-flex;align-items:center;margin:0}.styles__c-apptitle-light___49VIZ{fill:var(--black)!important}.styles__c-apptitle-dark___13RM5{fill:var(--white)!important}.styles__c-apptitle-app-icon___oQp8q{margin-right:4px}.styles__BarTitle___I5r2e{margin:0;height:3rem;display:flex;align-items:center;font-size:1.125rem}.styles__renderSaferAnim___2rNtc{position:absolute;bottom:0;height:0;width:100%;animation:styles__slidein___1E_4T 1s}@-webkit-keyframes styles__slidein___1E_4T{0%{height:100%}to{height:0}}@keyframes styles__slidein___1E_4T{0%{height:100%}to{height:0}}.styles__DialogCloseButton___cxKPO{position:absolute;top:1.15rem;right:1.15rem;z-index:1}@media (max-width:48rem){.styles__DialogCloseButton___cxKPO{top:.25rem;right:.25rem}}.styles__DialogBackButton___1c7yH{position:absolute;top:1.15rem;left:1.15rem;z-index:1}@media (max-width:48rem){.styles__DialogBackButton___1c7yH{top:.25rem;left:.25rem}}.styles__DateMonthPicker__YearControls___1DGlB{box-shadow:0 4px 12px 0 rgba(0,0,0,.08);border:1px solid rgba(0,0,0,.08)}.styles__DateMonthPicker__MonthButton___3I_Mm.styles__DateMonthPicker__MonthButton--selected___40hCm,.styles__DateMonthPicker__MonthButton___3I_Mm:hover,.styles__DateMonthPicker__YearButton___3zNDK:hover{background:var(--defaultBackgroundColor);color:var(--primaryTextColor)}.styles__DateMonthPicker__MonthButton___3I_Mm:active,.styles__DateMonthPicker__MonthButton___3I_Mm:hover:active,.styles__DateMonthPicker__YearButton___3zNDK:active,.styles__DateMonthPicker__YearButton___3zNDK:hover:active{background-color:var(--actionColorFocus);font-weight:700;outline:0}.styles__DateMonthPicker__MonthButton___3I_Mm,.styles__DateMonthPicker__YearButton___3zNDK{background:none;min-height:3rem;min-width:3rem;display:inline-block;border-width:0;color:var(--secondaryTextColor);cursor:pointer}.styles__DateMonthPicker__MonthButton___3I_Mm:focus,.styles__DateMonthPicker__YearButton___3zNDK:focus{outline:0}.styles__DateMonthPicker__YearControls___1DGlB{justify-content:center;display:flex;align-items:center;border-radius:8px;border:1px solid var(--borderMainColor);overflow:hidden;margin-bottom:1rem;font-weight:700}.styles__DateMonthPicker__YearButton___3zNDK{flex-grow:0;cursor:pointer}.styles__DateMonthPicker__Year___387bP{flex-grow:1;display:inline-flex;justify-content:center}.styles__DateMonthPicker__MonthGrid___TCFg4{display:grid;grid-template-columns:repeat(4,auto);grid-template-rows:repeat(3,1fr);overflow:hidden;grid-gap:1rem}.styles__DateMonthPicker__MonthButton___3I_Mm{border-radius:3rem}.styles__DateMonthPicker__MonthButton___3I_Mm.styles__DateMonthPicker__MonthButton--selected___40hCm{font-weight:700}.styles__divider___SuA5q{align-items:center;display:flex}.styles__divider___SuA5q:after,.styles__divider___SuA5q:before{content:"";height:1px;background-color:var(--dividerColor)}.styles__divider___SuA5q:before{display:none;margin-right:.5rem}.styles__divider___SuA5q:after{flex:1;margin-left:.5rem}.styles__center___3K8dw:before{display:block;flex:1}.styles__c-empty___3w5oV{display:flex;flex-direction:column;justify-content:center;flex:1 0 auto;align-self:center;margin:0 auto;padding:2rem;text-align:center;width:calc(100% - 4rem);max-width:32rem}@media (max-width:63.938rem){.styles__c-empty--centered___2ijsY{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%)}}.styles__c-empty-img___2GC4d{display:block;margin:0 auto 1rem;height:8rem}@media (max-width:63.938rem){.styles__c-empty-img___2GC4d{margin-bottom:.5rem;height:6rem}}.styles__c-empty-img--medium___1d2Zd{height:10rem}@media (max-width:63.938rem){.styles__c-empty-img--medium___1d2Zd{height:8rem}}.styles__c-empty-img--large___3s3vC{height:12rem}@media (max-width:63.938rem){.styles__c-empty-img--large___3s3vC{height:10rem}}.styles__c-empty-title___2HduE{margin:0 auto;max-width:63rem;line-height:1.3}@media (max-width:63.938rem){.styles__c-empty-title___2HduE{margin:0 1.5rem}}.styles__c-empty-text___3HnvR{max-width:63rem;color:var(--secondaryTextColor);line-height:1.5}.styles__c-file-input___YNZSh{cursor:pointer}.styles__c-file-path___XvgNN{display:block;color:var(--secondaryTextColor);font-size:.75rem;text-decoration:none;position:relative;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.styles__icon-withPath___1IcPC{float:left;top:4px}.styles__HistoryRowCircleWrapper___3r8Uo{width:2.6rem;height:2.6rem;justify-content:center;display:flex;align-self:start}.styles__HistoryRowCircle___4FWWa{border:1px solid var(--dividerColor);background-color:var(--paperBackgroundColor)}.styles__HistoryRowRevisionLoader___a5y5b{display:flex;justify-content:center}.styles__HistoryRowCaption___2fe_H{margin-bottom:2rem;padding-left:2rem;padding-right:2rem}.styles__HistoryRowMedia___2jgYN{position:relative;display:flex;align-items:center;padding:1rem}.styles__HistoryRowMedia___2jgYN:before{content:"";border-left:1px dashed var(--coolGrey);position:absolute;margin-left:20px;top:2.125rem;bottom:-1rem}.styles__HistoryRowMedia___2jgYN:last-child:before{border:0}.styles__HistoryRowMediaImg___1J9OI{align-self:flex-start;z-index:1;line-height:0;flex:0 0 auto}.styles__HistoryRowMediaBd___28KVS{flex:1 1 auto;overflow:hidden}.styles__c-inputgroup___12OVJ input[aria-disabled=true],.styles__c-inputgroup___12OVJ input[disabled]{cursor:not-allowed;background-color:var(--actionColorDisabledBackground);color:var(--actionColorDisabled)}.styles__c-inputgroup___12OVJ input[aria-disabled=true]:focus,.styles__c-inputgroup___12OVJ input[aria-disabled=true]:hover,.styles__c-inputgroup___12OVJ input[disabled]:focus,.styles__c-inputgroup___12OVJ input[disabled]:hover{border:.063rem solid var(--borderMainColor)}.styles__c-inputgroup___12OVJ input{display:inline-block;width:100%;max-width:32rem;padding:.813rem 1rem;box-sizing:border-box;border-radius:.188rem;background:var(--paperBackgroundColor);border:.063rem solid var(--borderMainColor);font-size:1rem;line-height:1.25;color:var(--primaryTextColor);outline:0}.styles__c-inputgroup___12OVJ input::placeholder{color:var(--secondaryTextColor);font-size:1rem}.styles__c-inputgroup___12OVJ input:hover{border:.063rem solid var(--hintTextColor)}.styles__c-inputgroup___12OVJ input:focus{border:.063rem solid var(--primaryColor);outline:0}.styles__c-inputgroup___12OVJ input.styles__is-error___2dj3S,.styles__c-inputgroup___12OVJ input:not(:focus):invalid{border:.063rem solid var(--errorColor)}.styles__c-inputgroup___12OVJ{display:inline-flex;flex-direction:row;box-sizing:border-box;align-items:stretch;width:100%;max-width:32rem;border:.063rem solid var(--dividerColor);border-radius:.125rem}.styles__c-inputgroup___12OVJ:hover{border:.063rem solid var(--borderMainColor)}.styles__c-inputgroup--focus___Tk5-Z,.styles__c-inputgroup--focus___Tk5-Z:hover{border-color:var(--primaryColor)}.styles__c-inputgroup--error___1JNbu{border-color:var(--errorColor)}.styles__c-inputgroup--fullwidth___3nuay{max-width:none}.styles__c-inputgroup-main___1LP4B{flex:1 1 auto}.styles__c-inputgroup___12OVJ input{border:0;padding-right:.5rem}.styles__c-inputgroup___12OVJ input:focus,.styles__c-inputgroup___12OVJ input:hover{position:relative;z-index:1;border:0;outline:0}.styles__c-inputgroup-side___60v0v{display:flex;flex-direction:column;justify-content:center;flex:0 1 auto;max-width:8.75rem}.styles__c-inputgroup-unit___bFj9a{padding-left:1rem;padding-right:1rem;font-weight:700}.styles__intentHeader___m5Qjh{display:flex;align-items:center;height:2rem;padding:.5rem 1rem;background-color:var(--contrastBackgroundColor);margin:0;flex-basis:auto;flex-shrink:0}.styles__intentHeader-title___1r4ex{display:flex;align-items:center;font-size:1.25rem;color:var(--primaryTextColor)}.styles__intentHeader-title___1r4ex span{font-weight:400}.styles__intentHeader-icon___3s30C{height:1.125rem;margin-right:.5rem}.styles__iconGrid___7nBAB{display:grid;grid-template-columns:repeat(2,16px);grid-template-rows:repeat(2,16px);grid-gap:1px}.styles__PasswordInput___3Oa3V{display:inline-flex;flex-direction:column;width:100%;max-width:32rem}.styles__PasswordInput--withStrength___1Msxm{border-bottom-left-radius:0;border-bottom-right-radius:0}.styles__PasswordInput__strength___1hpSg{background-color:var(--paleGrey);border-radius:.188rem;border-top-left-radius:0;border-top-right-radius:0;border:.063rem solid var(--silver);border-top:0;box-sizing:border-box;height:.25rem}.styles__PasswordInput__strength--weak___dzrGl{color:var(--pomegranate)}.styles__PasswordInput__strength--weak___dzrGl::-webkit-progress-value{background-color:var(--errorColor)}.styles__PasswordInput__strength--weak___dzrGl::-moz-progress-bar{background-color:var(--errorColor)}.styles__PasswordInput__strength--moderate___1ME_z{color:var(--texasRose)}.styles__PasswordInput__strength--moderate___1ME_z::-webkit-progress-value{background-color:var(--warningColor)}.styles__PasswordInput__strength--moderate___1ME_z::-moz-progress-bar{background-color:var(--warningColor)}.styles__PasswordInput__strength--strong___3yuP0{color:var(--emerald)}.styles__PasswordInput__strength--strong___3yuP0::-webkit-progress-value{background-color:var(--successColor)}.styles__PasswordInput__strength--strong___3yuP0::-moz-progress-bar{background-color:var(--successColor)}.styles__PasswordInput__visibilityButton___2B6RJ{height:100%;width:3rem;background-color:initial;border:0}.styles__o-layout___3TSz9{box-sizing:border-box;display:flex;max-width:100%;width:100%;height:100%;background-color:var(--paperBackgroundColor);color:var(--primaryTextColor)}.styles__o-layout-2panes___1CDQw{flex:0 0 100%;align-items:stretch}.styles__o-layout-main___3mPxz{display:flex;flex-direction:column;position:relative;flex:1 1 auto;box-sizing:border-box;overflow:hidden;height:100%}.styles__o-layout-main-topbar___3FSE_:before{content:"";display:block;height:3rem;width:100%;background-color:var(--paperBackgroundColor)}.styles__o-layout-main-2panes___3ickD{background-color:var(--defaultBackgroundColor)}@media (max-width:63.938rem){.styles__o-layout-main-2panes___3ickD{height:calc(100vh - var(--sidebarHeight));background-color:initial}}.styles__o-layout-content___3D5gN{position:relative;display:flex;flex-direction:column;flex:1 1 auto;box-sizing:border-box;overflow:hidden auto;background-color:var(--paperBackgroundColor);height:100%}.styles__o-layout-content-2panes___2Hotr{margin:1rem 1rem 1rem 0;border-radius:1rem}@media (max-width:63.938rem){.styles__o-layout-content-2panes___2Hotr{margin:0;border-radius:0}}.styles__c-nav___33dZy{margin:1.5rem 0;padding:0;list-style:none}@media (max-width:63.938rem){.styles__c-nav___33dZy{display:flex;justify-content:space-around;margin:6px 0 4px;padding-right:0}}.styles__c-nav-item___3XOLK{position:relative;z-index:var(--zIndex-app);height:2.25rem;box-sizing:border-box;cursor:pointer}.styles__c-nav-item___3XOLK:hover:before{content:"";position:absolute;z-index:var(--zIndex-below);border-radius:8px;top:0;left:1rem;right:1rem;bottom:0;background:var(--actionColorHover)}@media (hover:none){.styles__c-nav-item___3XOLK:hover:before{content:none}}@media (max-width:63.938rem){.styles__c-nav-item___3XOLK{margin:0 .75rem;height:auto;display:block;flex:0 0 2.5rem;padding-right:0}.styles__c-nav-item___3XOLK:hover:before{content:none}}.styles__c-nav-icon___hrJUe{display:inline-block;margin-right:12px;color:var(--primaryTextColor);fill:currentColor}.styles__c-nav-icon___hrJUe svg{display:block}@media (max-width:63.938rem){.styles__c-nav-icon___hrJUe{display:block;margin-right:0;color:var(--secondaryTextColor)}.styles__c-nav-icon___hrJUe svg{margin:4px auto 5px;width:1rem;height:1rem}}.styles__c-nav-text___1J3yU{font-size:14px;font-weight:500;letter-spacing:.15px}@media (max-width:63.938rem){.styles__c-nav-text___1J3yU{display:block;text-align:center;white-space:nowrap;font-size:12px}.styles__is-active___2D0jN .styles__c-nav-text___1J3yU{color:var(--primaryTextColor)}}.styles__c-nav-link___3mK6W{display:flex;box-shadow:border-box;margin:0 1rem;padding-left:.5rem;padding-right:.5rem;line-height:1.375;text-decoration:none;color:var(--primaryTextColor);height:100%;align-items:center;flex:1;background-repeat:no-repeat;background-position:1.5rem}.styles__c-nav-link___3mK6W:visited{color:var(--actionColorActive)}.styles__c-nav-link___3mK6W.styles__is-active___2D0jN{background-color:var(--actionColorSelected);border-radius:8px;font-weight:700;color:var(--primaryColor)}@media (max-width:63.938rem){.styles__c-nav-link___3mK6W.styles__is-active___2D0jN{background-color:initial;border-radius:initial}}.styles__c-nav-link___3mK6W.styles__is-active___2D0jN .styles__c-nav-icon___hrJUe{color:var(--primaryColor)}@media (max-width:63.938rem){.styles__c-nav-link___3mK6W.styles__is-active___2D0jN .styles__c-nav-icon___hrJUe{color:var(--primaryTextColor)}}@media (max-width:63.938rem){.styles__c-nav-link___3mK6W{display:block;height:auto;margin:0;padding:0;text-align:center;font-size:.688rem;line-height:.75rem;background-position:top;background-size:1.5rem;color:color var(--secondaryTextColor)}.styles__c-nav-link___3mK6W.styles__is-active___2D0jN,.styles__c-nav-link___3mK6W:hover{box-shadow:none;font-weight:400}}.styles__c-nav-item-secondary___k14rf{height:auto;margin:3px 0}@media (max-width:63.938rem){.styles__c-nav-item-secondary___k14rf{display:none}}.styles__c-nav-item-secondary___k14rf:hover:before{content:"";position:absolute;z-index:var(--zIndex-below);border-radius:8px;top:0;right:0;left:2.813rem;bottom:0;background:var(--actionColorHover)}@media (hover:none){.styles__c-nav-item-secondary___k14rf:hover:before{content:none}}.styles__c-nav-item-secondary___k14rf .styles__c-nav-link___3mK6W{padding:8px 16px;margin-left:2.8rem;border-radius:8px;box-shadow:none;font-size:.875rem;color:var(--primaryTextColor);text-decoration:none;height:auto}.styles__c-nav-item-secondary___k14rf .styles__c-nav-link___3mK6W.styles__is-active___2D0jN{color:var(--primaryContrastTextColor);background-color:var(--secondaryColor)}.styles__c-nav-item-secondary___k14rf .styles__c-nav-limiter___3oxQU{background:transparent;border:0;cursor:pointer}.styles__DesktopSectionWrapper___1rIWP{list-style-type:none}.styles__Modal__back___qxUn_{cursor:pointer;margin-right:.5rem;margin-left:-.25rem;font-size:1.5rem;line-height:0;margin-bottom:-1rem;position:relative;top:-.5rem}.styles__title-container--without-title___HEYQL{margin-top:4rem}.styles__search-container--without-title___3P2fe{margin-right:1rem;margin-top:.5rem}.styles__OrderedList___17A_o{list-style:none;counter-reset:cozy-ui-ordered-list;padding-left:0;line-height:1.5}.styles__ListItem___2Lu4a{counter-increment:cozy-ui-ordered-list;position:relative;padding-left:1.5rem}.styles__ListItem___2Lu4a:before{content:counter(cozy-ui-ordered-list) ". ";font-weight:700;position:absolute;left:0;top:0}.styles__select--disabled___1W3en{cursor:not-allowed;background-color:var(--actionColorDisabledBackground);color:var(--actionColorDisabled)}.styles__select--disabled___1W3en:focus,.styles__select--disabled___1W3en:hover{border:.063rem solid var(--borderMainColor)}.styles__select--fullwidth___2l_xM{max-width:100%;padding-right:2.375rem}.styles__select--disabled___1W3en:focus,.styles__select--disabled___1W3en:hover{border-width:0}.styles__select-control__input___1xDlj{width:0;height:0;overflow:hidden}.styles__select--autowidth___16AEp{max-width:32rem}.styles__select--fullwidth___2l_xM{padding-right:0}.styles__select-option___ov_IT{display:flex;flex-direction:row;justify-content:flex-start;align-items:center;padding:.5rem;border-left:.25rem solid transparent;color:var(--primaryTextColor);background-color:var(--paperBackgroundColor);transition:all .2s ease-out;white-space:normal}.styles__select-option___ov_IT:hover:not(.styles__select-option--disabled___1du57){background-color:var(--actionColorSelected);cursor:pointer}.styles__select-option___ov_IT:hover:not(.styles__select-option--disabled___1du57) .styles__select-option__actions___2WOjb{opacity:1}.styles__select-option--focused___1Vpjv:not(.styles__select-option--disabled___1du57){background-color:var(--actionColorHover)}.styles__select-option--selected___R3_ES{background-color:var(--actionColorSelected);border-left-color:var(--primaryColor)}.styles__select-option--disabled___1du57{color:var(--disabledTextColor);cursor:not-allowed}.styles__select-option__checkbox___15WVE{margin-right:.5rem;vertical-align:top}.styles__select-option__label___1Xi5R{flex-grow:1;display:flex;justify-content:space-between;align-items:center;width:100%;overflow:hidden}.styles__select-option__checkmark___ChXXs{width:2rem}.styles__select-option__actions___2WOjb{opacity:0;white-space:nowrap;transition:opacity .2s ease-out}@media (max-width:63.938rem){.styles__select-option__actions___2WOjb{opacity:1}}.styles__select__overlay___3H8Jy:before{content:"\A0";width:200vw;height:200vh;top:-50vh;left:-50vh;display:block;position:fixed}.styles__MenuList___1H_pH{display:flex;flex-direction:column}.styles__FixedGroup___2izTc,.styles__Group___J6s7k{overflow-y:auto;padding-top:.25rem!important;padding-bottom:.25rem!important}.styles__FixedGroup___2izTc{flex-shrink:0;border-top:1px solid var(--borderMainColor)}:root{--sidebarHeight:3.25rem}.styles__o-sidebar___1295j{width:14.75rem;background-color:var(--defaultBackgroundColor);overflow-y:auto;overflow-x:hidden;display:flex;flex-direction:column;flex:0 0 auto}.styles__o-sidebar--border___32tfw{border-right:.063rem solid var(--dividerColor)}@media (max-width:63.938rem){.styles__o-sidebar___1295j{justify-content:space-between;border:0;border-top:.063rem solid var(--dividerColor);height:var(--sidebarHeight);width:100%;position:fixed;bottom:0;left:0;display:block;z-index:var(--zIndex-nav)}}.styles__c-spinner___1snK7{display:inline-block;margin:0 .5rem}.styles__c-spinner___1snK7:before{content:""}.styles__c-spinner___1snK7 p{margin-top:.938rem;line-height:1.5}.styles__c-spinner--middle___RwyII{position:absolute;top:50%;left:50%;transform:translateX(-50%) translateY(-50%);text-align:center}.styles__c-spinner--middle___RwyII:before{display:block;margin:0 auto}.styles__c-spinner--nomargin___13JyW{margin:0}.styles__Stack--m___1tSpV>*+*{margin-top:1rem}.styles__Stack--xs___2R5lW>*+*{margin-top:.5rem}.styles__Stack--s___22WMg>*+*{margin-top:.75rem}.styles__Stack--l___3oxCJ>*+*{margin-top:1.5rem}.styles__Stack--xl___3qy-m>*+*{margin-top:2rem}.styles__Stack--xxl___2KAsb>*+*{margin-top:3rem}.styles__Tile___2SqRi{box-sizing:border-box;position:relative;display:flex;flex-direction:column;flex:0 0 8.75rem;width:8.75rem;height:8.75rem;align-items:center;background:var(--paperBackgroundColor);border-radius:4px;border:1px solid var(--dividerColor);padding:.375rem;margin-bottom:1rem;margin-right:.75rem;overflow:hidden;transition:all .15s ease}.styles__Tile___2SqRi.styles__Tile-secondary___2zYdn{background:var(--contrastBackgroundColor);border-color:var(--contrastBackgroundColor)}.styles__Tile___2SqRi:active,.styles__Tile___2SqRi:focus,.styles__Tile___2SqRi:hover{box-shadow:0 4px 12px 0 rgba(0,0,0,.08);cursor:pointer;transform:scale(1.1)}@media (max-width:48rem){.styles__Tile___2SqRi{flex-basis:100%;flex-direction:row;height:3.75rem;justify-content:flex-start;margin-right:.5rem;margin-bottom:.5rem;padding-left:.5rem}.styles__Tile___2SqRi:active,.styles__Tile___2SqRi:focus,.styles__Tile___2SqRi:hover{transform:scale(1.01)}}.styles__Tile-icon-wrapper___24AzZ{margin-top:.25rem;margin-bottom:.25rem;width:3rem;height:3rem}.styles__Tile-desc___3lPj6{display:flex;flex-direction:column;justify-content:flex-start;align-items:center;margin-top:.5rem;text-align:center;max-width:100%}.styles__Tile-developer___2GOfB,.styles__Tile-status___33VkE,.styles__Tile-title___3gbq-{display:block;margin:0;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;max-width:100%}.styles__Tile-title___3gbq-{color:var(--black)}.styles__Tile-title___3gbq-.styles__Tile-title-multiline___17HPx{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;white-space:normal}.styles__Tile-developer___2GOfB{height:1rem}.styles__Tile-status___33VkE{margin-top:.5rem;height:1rem}.styles__Tile-status___33VkE.styles__Tile-status-accent___an9au{color:var(--primaryColor)}@media (max-width:48rem){.styles__Tile-icon-wrapper___24AzZ{margin-top:0;margin-bottom:0;width:3rem;height:2.5rem}.styles__Tile-desc___3lPj6{margin-top:0;margin-left:.5rem;text-align:left;flex-grow:1}.styles__Tile-title___3gbq-{height:1rem;font-weight:400;font-size:.75rem!important}.styles__Tile-developer___2GOfB,.styles__Tile-status___33VkE,.styles__Tile-title___3gbq-{width:100%}.styles__Tile-developer___2GOfB{display:none}.styles__Tile-status___33VkE{margin-top:.125rem}}.styles__UnorderedList___2uFFY{padding-left:0;list-style:none}.styles__ListItem___3cRoI{position:relative;line-height:1.5;padding-left:1.5rem}.styles__ListItem___3cRoI:before{content:"";position:absolute;top:.75rem;left:0;width:.5rem;height:.5rem;background-color:var(--slateGrey);border-radius:50%;transform:translateY(-50%)}.styles__c-actionmenu___IUGX7{z-index:var(--zIndex-popover);border:.063rem solid var(--dividerColor);border-radius:.25rem;box-shadow:0 .063rem .188rem 0 rgba(50,54,63,.19),0 .375rem 1.125rem 0 rgba(50,54,63,.19);background-color:var(--paperBackgroundColor)}.styles__c-actionmenu___IUGX7 hr{margin:.313rem 0;border:0;border-top:.063rem solid var(--dividerColor)}.styles__c-actionmenu___IUGX7 [role=button],.styles__c-actionmenu___IUGX7 a,.styles__c-actionmenu___IUGX7 button{display:block;padding:.5rem 2rem .5rem 2.5rem;color:var(--charcoalGrey);text-decoration:none;white-space:nowrap;cursor:pointer}.styles__c-actionmenu___IUGX7 [role=button]:hover,.styles__c-actionmenu___IUGX7 a:hover,.styles__c-actionmenu___IUGX7 button:hover{text-decoration:none}.styles__c-actionmenu___IUGX7{color:var(--primaryTextColor);--iconColor:var(--iconTextColor);padding-bottom:env(safe-area-inset-bottom)}.styles__c-actionmenu___IUGX7 hr{margin-top:0}@media (max-width:48rem){.styles__c-actionmenu___IUGX7{border:0;border-radius:0}}.styles__c-actionmenu--inline___1RWrO{width:16rem}.styles__c-actionmenu-header___2p_ke{box-sizing:border-box;border-bottom:.063rem solid var(--dividerColor);padding:1rem;min-height:4rem;margin-top:-.5rem}.styles__c-actionmenu-item___WzUJQ{padding:.75rem 0;cursor:pointer}.styles__c-actionmenu-item___WzUJQ:hover{background-color:var(--actionColorHover)}.styles__c-actionmenu-radio___38gls{height:1rem;width:1rem;margin-top:.125rem;margin-bottom:0}.styles__c-btn--alert-error___3uH5i,.styles__c-btn--alert-info___1xAkg,.styles__c-btn--alert-success___3PgiM{border:0;height:auto;padding:.5rem 1rem;background-color:var(--white);font-weight:700;font-size:.875rem;text-decoration:none}.styles__c-btn--alert-error___3uH5i{color:#f52d2d!important;background-color:var(--white)!important;border-color:var(--white)!important}.styles__c-btn--alert-error___3uH5i:visited{color:#f52d2d!important}.styles__c-btn--alert-error___3uH5i:active,.styles__c-btn--alert-error___3uH5i:focus,.styles__c-btn--alert-error___3uH5i:hover{color:var(--monza)!important;background-color:#fdcbcb!important;border-color:#fdcbcb!important}.styles__c-btn--alert-info___1xAkg{color:var(--white)!important;border-color:var(--coolGrey)!important}.styles__c-btn--alert-info___1xAkg,.styles__c-btn--alert-info___1xAkg[aria-disabled=true]:hover,.styles__c-btn--alert-info___1xAkg[disabled]:hover{background-color:var(--coolGrey)!important}.styles__c-btn--alert-info___1xAkg:visited{color:var(--white)!important}.styles__c-btn--alert-info___1xAkg:active,.styles__c-btn--alert-info___1xAkg:focus,.styles__c-btn--alert-info___1xAkg:hover{background-color:var(--charcoalGrey)!important;border-color:var(--charcoalGrey)!important}.styles__c-btn--alert-success___3PgiM{color:#35ce68!important;background-color:var(--white)!important;border-color:var(--white)!important}.styles__c-btn--alert-success___3PgiM:visited{color:#35ce68!important}.styles__c-btn--alert-success___3PgiM:active,.styles__c-btn--alert-success___3PgiM:focus,.styles__c-btn--alert-success___3PgiM:hover{color:#08b442!important;background-color:#def7e7!important;border-color:#def7e7!important}.styles__c-alert___dJvZ8{position:fixed;z-index:var(--zIndex-alert);right:0;bottom:calc(3rem + env(safe-area-inset-bottom));left:0;opacity:1;transition:transform .2s ease-out,opacity .2s ease-out;cursor:default;pointer-events:none}@media (prefers-reduced-motion:reduce){.styles__c-alert___dJvZ8{transition:none}}@media (min-width:40rem){.styles__c-alert___dJvZ8{z-index:var(--zIndex-alert);top:1rem;bottom:auto;text-align:center}}.has-modal .styles__c-alert___dJvZ8{z-index:var(--zIndex-alert);bottom:0}.styles__c-alert-wrapper___1VWFK{display:inline-flex;flex-wrap:nowrap;align-items:center;justify-content:center;box-sizing:border-box;width:100%;box-shadow:0 .375rem 1.125rem 0 rgba(50,54,63,.23);padding:.813rem 1rem;pointer-events:auto}.styles__c-alert-wrapper___1VWFK p{margin:0;line-height:1.5}.styles__c-alert-wrapper___1VWFK p+button{margin-left:1.5rem}@media (min-width:40rem){.styles__c-alert-wrapper___1VWFK{width:auto;max-width:40rem;padding:1rem 1.5rem;border-radius:.625rem;text-align:left}}.styles__c-alert--hidden___2HD9e{transform:translateY(5rem);opacity:0;transition-timing-function:ease-out}@media (min-width:40rem){.styles__c-alert--hidden___2HD9e{transform:translateY(-5rem)}}.styles__c-alert-title___229Am{font-weight:700}.styles__c-alert--error___g5tIs{color:var(--primaryTextColor);background-color:var(--errorBackground)}.styles__c-alert--success___2DGDO{color:var(--primaryTextColor);background-color:var(--successBackground)}.styles__c-alert--info___2EDwe{color:var(--primaryTextColor);background-color:var(--secondaryBackground)}.styles__with-transition___3OLmI{transition:transform .1s ease-out}@media (prefers-reduced-motion:reduce){.styles__with-transition___3OLmI{transition:none}}.styles__BottomDrawer-content___IYCrj{z-index:var(--zIndex-drawer);position:fixed;bottom:0;left:0;right:0;width:100%;margin:0;max-height:100vh;overflow-y:auto}.styles__c-btn--regular___1ilYT,.styles__c-btn___3kXsk{position:relative;box-sizing:border-box;display:inline-flex;margin:0 .25rem;border-radius:.125rem;min-height:2.5rem;min-width:7rem;padding:.188rem 1rem;vertical-align:top;text-align:center;font-size:.875rem;font-weight:700;line-height:1;text-transform:uppercase;text-decoration:none;cursor:pointer;align-items:center;background-color:var(--primaryColor);color:var(--primaryContrastTextColor);border:.063rem solid var(--primaryColor)}.styles__c-btn--regular___1ilYT svg,.styles__c-btn___3kXsk svg{fill:currentColor}.styles__c-btn--regular___1ilYT svg+span,.styles__c-btn___3kXsk svg+span{margin-left:.375rem}.styles__c-btn--regular___1ilYT input,.styles__c-btn___3kXsk input{cursor:pointer}.styles__c-btn--regular___1ilYT>span,.styles__c-btn___3kXsk>span{display:flex;align-items:center;justify-content:center;width:100%}.styles__c-btn--regular___1ilYT[aria-disabled=true],.styles__c-btn--regular___1ilYT[disabled],.styles__c-btn___3kXsk[aria-disabled=true],.styles__c-btn___3kXsk[disabled]{opacity:.5;cursor:not-allowed}.styles__c-btn--regular___1ilYT[aria-disabled=true] input,.styles__c-btn--regular___1ilYT[disabled] input,.styles__c-btn___3kXsk[aria-disabled=true] input,.styles__c-btn___3kXsk[disabled] input{cursor:not-allowed}.styles__c-btn--regular___1ilYT[aria-busy=true],.styles__c-btn___3kXsk[aria-busy=true]{opacity:.5;pointer-events:none}.styles__c-btn--regular___1ilYT:visited,.styles__c-btn___3kXsk:visited{color:var(--primaryContrastTextColor)}.styles__c-btn--regular___1ilYT:active,.styles__c-btn--regular___1ilYT:focus,.styles__c-btn--regular___1ilYT:hover,.styles__c-btn___3kXsk:active,.styles__c-btn___3kXsk:focus,.styles__c-btn___3kXsk:hover{border-color:var(--primaryColorDark);background-color:var(--primaryColorDark)}.styles__c-btn--regular___1ilYT[aria-disabled=true]:hover,.styles__c-btn--regular___1ilYT[disabled]:hover,.styles__c-btn___3kXsk[aria-disabled=true]:hover,.styles__c-btn___3kXsk[disabled]:hover{border-color:var(--primaryColor);background-color:var(--primaryColor)}.styles__c-btn--ghost___Md7mm{background-color:var(--zircon);color:var(--primaryColor);border-color:#c2dcff;border-style:dashed}.styles__c-btn--ghost___Md7mm:visited{color:var(--primaryColor)}.styles__c-btn--ghost___Md7mm:active,.styles__c-btn--ghost___Md7mm:focus,.styles__c-btn--ghost___Md7mm:hover{border-color:#c2dcff;background-color:#c2dcff}.styles__c-btn--ghost___Md7mm[aria-disabled=true]:hover,.styles__c-btn--ghost___Md7mm[disabled]:hover{border-color:#c2dcff;background-color:var(--zircon)}.styles__c-btn--highlight___GlDOj{background-color:#35ce68;color:var(--white);border-color:#35ce68}.styles__c-btn--highlight___GlDOj:visited{color:var(--white)}.styles__c-btn--highlight___GlDOj:active,.styles__c-btn--highlight___GlDOj:focus,.styles__c-btn--highlight___GlDOj:hover{border-color:#08b442;background-color:#08b442}.styles__c-btn--highlight___GlDOj[aria-disabled=true]:hover,.styles__c-btn--highlight___GlDOj[disabled]:hover{border-color:#35ce68;background-color:#35ce68}.styles__c-btn--action___3z98K,.styles__c-btn--alpha___2-bRT,.styles__c-btn--close___C19bl{background-color:initial;color:var(--white);border-color:var(--white)}.styles__c-btn--action___3z98K:visited,.styles__c-btn--alpha___2-bRT:visited,.styles__c-btn--close___C19bl:visited{color:var(--white)}.styles__c-btn--action___3z98K:active,.styles__c-btn--action___3z98K:focus,.styles__c-btn--action___3z98K:hover,.styles__c-btn--alpha___2-bRT:active,.styles__c-btn--alpha___2-bRT:focus,.styles__c-btn--alpha___2-bRT:hover,.styles__c-btn--close___C19bl:active,.styles__c-btn--close___C19bl:focus,.styles__c-btn--close___C19bl:hover{border-color:var(--scienceBlue);background-color:var(--scienceBlue)}.styles__c-btn--action___3z98K[aria-disabled=true]:hover,.styles__c-btn--action___3z98K[disabled]:hover,.styles__c-btn--alpha___2-bRT[aria-disabled=true]:hover,.styles__c-btn--alpha___2-bRT[disabled]:hover,.styles__c-btn--close___C19bl[aria-disabled=true]:hover,.styles__c-btn--close___C19bl[disabled]:hover{border-color:var(--white);background-color:initial}.styles__c-btn--danger___wzHFo{background-color:#f52d2d;color:var(--white);border-color:#f52d2d}.styles__c-btn--danger___wzHFo:visited{color:var(--white)}.styles__c-btn--danger___wzHFo:active,.styles__c-btn--danger___wzHFo:focus,.styles__c-btn--danger___wzHFo:hover{border-color:var(--monza);background-color:var(--monza)}.styles__c-btn--danger___wzHFo[aria-disabled=true]:hover,.styles__c-btn--danger___wzHFo[disabled]:hover{border-color:#f52d2d;background-color:#f52d2d}.styles__c-btn--secondary___1hLVM{background-color:var(--white);color:var(--black);border-color:var(--silver)}.styles__c-btn--secondary___1hLVM:visited{color:var(--black)}.styles__c-btn--secondary___1hLVM:active,.styles__c-btn--secondary___1hLVM:focus,.styles__c-btn--secondary___1hLVM:hover{border-color:var(--silver);background-color:var(--silver)}.styles__c-btn--secondary___1hLVM[aria-disabled=true]:hover,.styles__c-btn--secondary___1hLVM[disabled]:hover{border-color:var(--silver);background-color:var(--white)}.styles__c-btn--danger-outline___BCng5{background-color:var(--white);color:#f52d2d;border-color:#fdcbcb}.styles__c-btn--danger-outline___BCng5:visited{color:#f52d2d}.styles__c-btn--danger-outline___BCng5:active,.styles__c-btn--danger-outline___BCng5:focus,.styles__c-btn--danger-outline___BCng5:hover{border-color:#fdcbcb;background-color:#fdcbcb}.styles__c-btn--danger-outline___BCng5[aria-disabled=true]:hover,.styles__c-btn--danger-outline___BCng5[disabled]:hover{border-color:#fdcbcb;background-color:var(--white)}.styles__c-btn--text___33vmu{background-color:initial;color:var(--primaryColor);border-color:transparent}.styles__c-btn--text___33vmu:visited{color:var(--primaryColor)}.styles__c-btn--text___33vmu:active,.styles__c-btn--text___33vmu:focus,.styles__c-btn--text___33vmu:hover,.styles__c-btn--text___33vmu[aria-disabled=true]:hover,.styles__c-btn--text___33vmu[disabled]:hover{border-color:transparent;background-color:initial}.styles__c-btn--text___33vmu:focus,.styles__c-btn--text___33vmu:hover{color:var(--primaryColorDark)}.styles__c-btn--action___3z98K{border-color:transparent;padding:.5rem;opacity:.5}.styles__c-btn--action___3z98K:active,.styles__c-btn--action___3z98K:focus,.styles__c-btn--action___3z98K:hover{background-color:initial;border-color:transparent}.styles__c-btn--close___C19bl{border-color:transparent;padding:.5rem}.styles__c-btn--close___C19bl:active,.styles__c-btn--close___C19bl:focus,.styles__c-btn--close___C19bl:hover{background-color:initial;border-color:transparent}.styles__c-btn--left___3f1zH>span{justify-content:flex-start}.styles__c-btn--center___Nny0n>span{justify-content:center}.styles__c-btn--right___1B9Tn>span{justify-content:flex-end}.styles__c-btn___3kXsk.styles__c-btn--tiny___fK37G{min-height:1.5rem;min-width:5rem;padding:.125rem 1rem;font-size:.75rem;line-height:1.3}.styles__c-btn___3kXsk.styles__c-btn--small___9JKyq{min-height:2rem;min-width:6rem;padding:.188rem .5rem;font-size:.813rem;line-height:1.4}.styles__c-btn___3kXsk.styles__c-btn--large___3PnsT{min-height:3rem;min-width:10rem;padding:.5rem 1.5rem;font-size:1rem;line-height:1.5}.styles__c-btn___3kXsk.styles__c-btn--full___1VumB{width:100%;margin-left:0;margin-right:0}.styles__c-btn___3kXsk.styles__c-btn--narrow___erKsd,.styles__c-btn___3kXsk.styles__c-btn--round___35GfW{min-width:auto}.styles__c-btn___3kXsk.styles__c-btn--round___35GfW{border-radius:100%;min-height:auto;padding:.25rem}.styles__c-btn___3kXsk.styles__c-btn--round___35GfW svg{width:.625rem;height:.625rem}@media (pointer:coarse){.styles__c-btn___3kXsk.styles__c-btn--round___35GfW:after{content:"";position:absolute;top:-.875rem;right:-.875rem;bottom:-.875rem;left:-.875rem}}.styles__c-btn--subtle___2rRQ0{color:var(--primaryColor);min-height:auto;min-width:auto;border:0;margin:1rem 0;padding:0;vertical-align:initial;background:transparent;cursor:pointer;font-size:.875rem;font-weight:700;text-transform:uppercase}.styles__c-btn--subtle___2rRQ0:active,.styles__c-btn--subtle___2rRQ0:focus,.styles__c-btn--subtle___2rRQ0:hover{color:var(--primaryColorDark)}.styles__c-btn--subtle___2rRQ0>span{display:flex;align-items:center;justify-content:center;width:100%}.styles__c-btn--subtle___2rRQ0[aria-disabled=true],.styles__c-btn--subtle___2rRQ0[disabled]{opacity:.5;cursor:not-allowed}.styles__c-btn--subtle___2rRQ0[aria-disabled=true]:hover,.styles__c-btn--subtle___2rRQ0[disabled]:hover{background:transparent}.styles__c-btn--subtle___2rRQ0[aria-busy=true]{opacity:.5;cursor:not-allowed;pointer-events:none}.styles__c-btn--subtle___2rRQ0[aria-busy=true]:hover{background:transparent}.styles__c-btn--subtle___2rRQ0:active,.styles__c-btn--subtle___2rRQ0:focus,.styles__c-btn--subtle___2rRQ0:hover,.styles__c-btn--subtle___2rRQ0:visited{color:var(--primaryColorDark);background:transparent}*+.styles__c-btn--subtle___2rRQ0{margin-left:.063rem}.styles__c-btn--subtle___2rRQ0.styles__c-btn--tiny___fK37G{min-height:0;min-width:0;padding:0;font-size:.563rem}.styles__c-btn--subtle___2rRQ0.styles__c-btn--small___9JKyq{min-height:0;min-width:0;padding:0;font-size:.75rem}.styles__c-btn--subtle___2rRQ0.styles__c-btn--large___3PnsT{min-height:0;min-width:0;padding:0;font-size:1rem}.styles__c-btn--subtle___2rRQ0.styles__c-btn--danger___wzHFo{color:#f52d2d}.styles__c-btn--subtle___2rRQ0.styles__c-btn--danger___wzHFo:active,.styles__c-btn--subtle___2rRQ0.styles__c-btn--danger___wzHFo:focus,.styles__c-btn--subtle___2rRQ0.styles__c-btn--danger___wzHFo:hover{color:var(--monza)}.styles__c-btn--subtle___2rRQ0.styles__c-btn--highlight___GlDOj{color:#35ce68}.styles__c-btn--subtle___2rRQ0.styles__c-btn--highlight___GlDOj:active,.styles__c-btn--subtle___2rRQ0.styles__c-btn--highlight___GlDOj:focus,.styles__c-btn--subtle___2rRQ0.styles__c-btn--highlight___GlDOj:hover{color:#08b442}.styles__c-btn--subtle___2rRQ0.styles__c-btn--regular___1ilYT{color:var(--primaryColor)}.styles__c-btn--subtle___2rRQ0.styles__c-btn--regular___1ilYT:active,.styles__c-btn--subtle___2rRQ0.styles__c-btn--regular___1ilYT:focus,.styles__c-btn--subtle___2rRQ0.styles__c-btn--regular___1ilYT:hover{color:var(--primaryColorDark)}.styles__c-btn--subtle___2rRQ0.styles__c-btn--secondary___1hLVM{color:var(--slateGrey)}.styles__c-btn--subtle___2rRQ0.styles__c-btn--secondary___1hLVM:active,.styles__c-btn--subtle___2rRQ0.styles__c-btn--secondary___1hLVM:focus,.styles__c-btn--subtle___2rRQ0.styles__c-btn--secondary___1hLVM:hover{color:var(--charcoalGrey)}.styles__c-btn--subtle___2rRQ0.styles__c-btn--secondary___1hLVM:active svg,.styles__c-btn--subtle___2rRQ0.styles__c-btn--secondary___1hLVM:focus svg,.styles__c-btn--subtle___2rRQ0.styles__c-btn--secondary___1hLVM:hover svg{color:var(--slateGrey)}.styles__c-btn--subtle___2rRQ0.styles__c-btn--secondary___1hLVM svg{color:var(--coolGrey)}.styles__c-actionbtn___294nr{position:relative;box-sizing:border-box;display:inline-flex;margin:0 .25rem;border-radius:.125rem;min-height:2.5rem;min-width:7rem;padding:.188rem 1rem;vertical-align:top;text-align:center;font-size:.875rem;font-weight:700;line-height:1;text-transform:uppercase;text-decoration:none;cursor:pointer;align-items:center;background-color:var(--primaryColor);color:var(--primaryContrastTextColor);border:.063rem solid var(--primaryColor)}.styles__c-actionbtn___294nr svg{fill:currentColor}.styles__c-actionbtn___294nr svg+span{margin-left:.375rem}.styles__c-actionbtn___294nr input{cursor:pointer}.styles__c-actionbtn___294nr>span{display:flex;align-items:center;justify-content:center;width:100%}.styles__c-actionbtn___294nr[aria-disabled=true],.styles__c-actionbtn___294nr[disabled]{opacity:.5;cursor:not-allowed}.styles__c-actionbtn___294nr[aria-disabled=true] input,.styles__c-actionbtn___294nr[disabled] input{cursor:not-allowed}.styles__c-actionbtn___294nr[aria-busy=true]{opacity:.5;pointer-events:none}.styles__c-actionbtn___294nr:visited{color:var(--primaryContrastTextColor)}.styles__c-actionbtn___294nr:active,.styles__c-actionbtn___294nr:focus,.styles__c-actionbtn___294nr:hover{border-color:var(--primaryColorDark);background-color:var(--primaryColorDark)}.styles__c-actionbtn___294nr[aria-disabled=true]:hover,.styles__c-actionbtn___294nr[disabled]:hover{border-color:var(--primaryColor);background-color:var(--primaryColor)}.styles__c-actionbtn___294nr.styles__c-actionbtn--compact___3CFm-{min-width:auto}.styles__c-actionbtn___294nr{border-color:var(--silver);text-transform:none;max-width:12.5rem;min-height:2rem;width:100%;padding-right:.5rem;text-align:left;line-height:1.3;outline:0}.styles__c-actionbtn___294nr>span{justify-content:flex-start;flex-wrap:nowrap}.styles__c-actionbtn___294nr [data-action=icon]{border-left:.063rem solid var(--dividerColor)}.styles__c-actionbtn___294nr:not([disabled]):focus [data-action=icon],.styles__c-actionbtn___294nr:not([disabled]):hover [data-action=icon]{border-color:currentColor}.styles__c-actionbtn___294nr.styles__c-actionbtn--compact___3CFm-{position:relative;border:0;background-color:initial;padding:0;margin:0;min-height:2rem;width:2.5rem}.styles__c-actionbtn___294nr.styles__c-actionbtn--compact___3CFm->span{justify-content:center}.styles__c-actionbtn___294nr.styles__c-actionbtn--compact___3CFm- [data-action=label]{display:none!important;visibility:hidden!important}.styles__c-actionbtn___294nr.styles__c-actionbtn--compact___3CFm- [data-action=icon]{border-left:none;margin-left:0;padding:0}.styles__c-actionbtn___294nr.styles__c-actionbtn--compact___3CFm-:focus,.styles__c-actionbtn___294nr.styles__c-actionbtn--compact___3CFm-:hover{background-color:var(--paleGrey);border:0}.styles__c-actionbtn--normal___5JbA8{background-color:var(--paleGrey);color:var(--charcoalGrey);border-color:var(--silver)}.styles__c-actionbtn--normal___5JbA8 [data-action=icon]{border-color:var(--silver)}.styles__c-actionbtn--normal___5JbA8:focus,.styles__c-actionbtn--normal___5JbA8:hover{background-color:var(--silver);border-color:var(--silver)}.styles__c-actionbtn--normal___5JbA8[aria-disabled=true]:hover,.styles__c-actionbtn--normal___5JbA8[disabled]:hover{background-color:var(--paleGrey)}.styles__c-actionbtn--error___3opWY{background-color:var(--chablis);color:#f52d2d;border-color:#fdcbcb}.styles__c-actionbtn--error___3opWY [data-action=icon]{border-color:#fdcbcb}.styles__c-actionbtn--error___3opWY:focus,.styles__c-actionbtn--error___3opWY:hover{background-color:#fdcbcb;border-color:#fdcbcb}.styles__c-actionbtn--error___3opWY[aria-disabled=true]:hover,.styles__c-actionbtn--error___3opWY[disabled]:hover{background-color:var(--chablis)}.styles__c-actionbtn--new___2cPsw{background-color:var(--zircon);color:var(--dodgerBlue);border:.063rem dashed #c2dcff}.styles__c-actionbtn--new___2cPsw [data-action=icon]{border-color:#c2dcff}.styles__c-actionbtn--new___2cPsw:focus,.styles__c-actionbtn--new___2cPsw:hover{background-color:#c2dcff;border-color:#c2dcff}.styles__c-actionbtn--new___2cPsw[aria-disabled=true]:hover,.styles__c-actionbtn--new___2cPsw[disabled]:hover{background-color:var(--zircon)}.styles__c-actionbtn--new___2cPsw:focus:not([disabled]),.styles__c-actionbtn--new___2cPsw:hover:not([disabled]){border-style:solid}.styles__c-actionbtn-label___1BCiN{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding-right:.5rem}.styles__c-actionbtn-icon___1rgZf{display:block;margin-left:auto;padding-left:.5rem}.styles__c-actionbtn-icon___1rgZf svg{display:block}.styles__c-chip___3sc2k{box-sizing:border-box;line-height:1;display:inline-flex;align-items:center;margin-right:.25rem;margin-bottom:.25rem;border:0}.styles__c-chip--round___2_oss{width:2.5rem;text-align:center;justify-content:center}.styles__c-chip--tinySize___3Dsfw{height:1.5rem;padding:0 .375rem;border-radius:.75rem;font-size:.75rem}.styles__c-chip--smallSize___lf4ip{height:2rem;padding:0 .5625rem;border-radius:1rem;font-size:.875rem}.styles__c-chip--normalSize___ZCdYE{height:2.5rem;padding:0 .75rem;border-radius:1.25rem}.styles__c-chip--outlinedVariant___1j_bo{border:1px solid}.styles__c-chip--dashedVariant___3pDfw{border:1px dashed}.styles__c-chip--normalTheme___gBU5V{border-color:var(--silver);background-color:var(--paleGrey);color:inherit}.styles__c-chip--primaryTheme___2ra2n{border-color:var(--primaryColorLightest);background-color:var(--primaryBackgroundLight);color:var(--primaryColor)}.styles__c-chip--errorTheme___1v_aF{border-color:var(--errorColorLight);background-color:var(--errorColorLightest);color:var(--errorColor)}.styles__c-chip--hoverableNormalTheme___3VGJe{color:var(--charcoalGrey)}.styles__c-chip--hoverableNormalTheme___3VGJe:focus,.styles__c-chip--hoverableNormalTheme___3VGJe:hover{background-color:var(--silver)}.styles__c-chip--hoverablePrimaryTheme___2EiKE:focus,.styles__c-chip--hoverablePrimaryTheme___2EiKE:hover{background-color:var(--primaryBackgroundLight)}.styles__c-chip--normalPrimaryTheme___BNWJ3{background-color:var(--primaryColor);color:var(--white)}.styles__c-chip--hoverableErrorTheme___1sVT6:focus,.styles__c-chip--hoverableErrorTheme___1sVT6:hover{background-color:var(--errorColorLight)}.styles__c-chip--outlinedNormalTheme___2H2PP{background-color:initial}.styles__c-chip--clickable___1Bews{cursor:pointer}.styles__c-chip-separator___2C0c5{width:.063rem;border-left:.063rem solid var(--dividerColor);display:inline-block;height:40%;margin-left:.5rem;margin-right:.5rem}.styles__c-chip-button___3ocF4{cursor:pointer;color:var(--slateGrey)}.styles__c-chip-button--disabled___3T0Bs{color:var(--coolGrey)}.styles__CompositeRow___1Dmi2{min-height:3rem;padding:1rem}.styles__CompositeRow__dense___3p1f3{padding-top:0;padding-bottom:0}.styles__CompositeRow__body___1Bjsp>*+*{margin-top:2px}.styles__gridItem-container___2Xeyk{text-align:center;box-sizing:border-box;border-radius:4px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.styles__Infos___tpCYh{position:relative;border-radius:8px;padding:1rem 1.5rem}@media (max-width:48rem){.styles__Infos___tpCYh{padding:.75rem 1rem}}.styles__Infos___tpCYh.styles__Infos--primary____iqfw{color:var(--primaryTextColor);background-color:var(--primaryBackground)}.styles__Infos___tpCYh.styles__Infos--secondary___2rlHM{color:var(--primaryTextColor);background-color:var(--secondaryBackground)}.styles__Infos___tpCYh.styles__Infos--danger___1HWww{color:var(--primaryTextColor);background-color:var(--errorBackground)}.styles__Infos-description___3q8sW{max-width:32rem}.styles__Info-close___EnUCb{position:absolute;top:0;right:0;padding:.75rem}.styles__InfosCarrousel___1-aJZ{position:relative}.styles__InfosCarrousel-navigation___2Cm0M{position:absolute;display:flex;align-items:center;height:2.5rem;bottom:1rem;right:1rem;box-sizing:border-box}@media (max-width:48rem){.styles__InfosCarrousel-navigation___2Cm0M{height:2.5rem;bottom:.75rem;right:.75rem}}.styles__InfosCarrousel-separator___3GYRV{border-left:1px solid var(--dividerColor);height:1rem;margin:0 .5rem}.styles__c-inline-card___1a8Og{display:inline-block;border:.063rem solid var(--silver);box-shadow:0 0 .625rem rgba(0,0,0,.1);padding:.375rem}.styles__media___1rIBu{display:flex;align-items:center}.styles__media--top___1t0j5{align-items:flex-start}.styles__media--bottom___XsQQe{align-items:flex-end}.styles__bd___3SAX2{flex:1 1 auto;overflow:hidden}.styles__img___3sztD{line-height:0;flex:0 0 auto}html{--primaryFont:Inter,Lato,sans-serif}body,body button,body input,body optgroup,body select,body textarea{font-family:var(--primaryFont)}:root{--safe-area-inset-top:env(safe-area-inset-top);--safe-area-inset-right:env(safe-area-inset-right);--safe-area-inset-bottom:env(safe-area-inset-bottom);--safe-area-inset-left:env(safe-area-inset-left)}html{font-size:100%}body,html{height:100%}body{font:100%/1.5;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:flex;flex-direction:column;align-items:stretch;width:100vw;margin:0}[role=application]{display:flex;height:inherit;flex:1 1 100%;overflow:hidden auto}[data-input=checkbox],[data-input=radio]{display:flex}[data-input=checkbox] input[type=checkbox],[data-input=checkbox] input[type=radio],[data-input=radio] input[type=checkbox],[data-input=radio] input[type=radio]{display:none!important;visibility:hidden!important}[data-input=checkbox] label,[data-input=radio] label{position:relative;display:inline-block;width:1rem;height:1rem;padding-left:1.4rem;cursor:pointer}[data-input=checkbox] label:after,[data-input=checkbox] label:before,[data-input=radio] label:after,[data-input=radio] label:before{content:"";position:absolute;left:0;top:0;box-sizing:border-box;width:1rem;height:1rem}[data-input=checkbox] label:before,[data-input=radio] label:before{transition:box-shadow .35s cubic-bezier(0,.89,.44,1)}[data-input=checkbox] label:after,[data-input=radio] label:after{transition-duration:.2s;transition-property:opacity,transform}[data-input=radio] label:before{border-radius:50%;border:.125rem solid var(--coolGrey);box-shadow:inset 0 0 0 1rem transparent}[data-input=radio] input[type=radio]:checked+label:before{box-shadow:inset 0 0 0 .188rem var(--paleGrey),inset 0 0 0 1rem var(--dodgerBlue)}[data-input=checkbox] label:after,[data-input=checkbox] label:before{border-radius:.125rem}[data-input=checkbox] label:before{background-color:var(--white);box-shadow:inset 0 0 0 .125rem var(--silver)}[data-input=checkbox] label:before:hover{box-shadow:inset 0 0 0 .125rem var(--dodgerBlue)}[data-input=checkbox] label:after{background-image:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTMiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTUuMDg1IDkuNjI0TDEuMjkyIDUuODMgMCA3LjExM2w1LjA4NSA1LjA4NUwxNiAxLjI4MyAxNC43MTcgMCA1LjA4NSA5LjYyNHoiIGZpbGw9IiNmZmYiLz48L3N2Zz4=");background-size:contain}[data-input=checkbox][aria-checked=mixed] label:after{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+PHBhdGggZD0iTTMuNDk3IDEwaDEzLjAwNiIgc3Ryb2tlPSIjRkZGIiBzdHJva2Utd2lkdGg9IjIiLz48L3N2Zz4=");background-size:contain}[data-input=checkbox] input[type=checkbox]:checked+label:before{box-shadow:inset 0 0 0 1rem var(--dodgerBlue)}[data-input=checkbox] input[type=checkbox]:checked+label:after{opacity:1;transform:scale(1)}[data-input=checkbox] input[type=checkbox]:not(:checked)+label:after{opacity:0;transform:scale(0)}.styles__c-modal___dljYk{display:flex;flex-flow:column nowrap;align-items:stretch}.styles__c-modal-content___22N4k{background-repeat:no-repeat;background-color:var(--paperBackgroundColor);background-size:100% 2rem,100% 2rem,100% .5rem,100% .5rem;background-attachment:local,local,scroll,scroll;background-clip:padding-box;overflow:auto;-webkit-overflow-scrolling:touch}.styles__c-modal-footer___3JCxm,.styles__c-modal-header--branded___17z1P,.styles__c-modal-header___38uqi{flex:0 0 auto}.styles__c-modal-container___1AAl5{position:relative;z-index:var(--zIndex-modal)}.styles__c-modal-wrapper___y79-C{position:fixed;top:0;left:0;display:flex;flex-direction:column;align-items:center;box-sizing:border-box;width:100vw;height:100%;overflow-y:auto;padding:3rem}@media (max-width:48rem){.styles__c-modal-wrapper___y79-C{justify-content:center;padding:1.5rem}}@media (max-width:30rem){.styles__c-modal-wrapper___y79-C{padding:.5rem}}.styles__c-modal___dljYk{position:relative;border-radius:.5rem;max-height:100%;max-width:100%;background-color:var(--paperBackgroundColor);color:var(--primaryTextColor)}.styles__c-modal--xsmall___VxVzh{width:24rem}@media (max-width:25rem){.styles__c-modal--xsmall___VxVzh{width:100%}}.styles__c-modal--small___3xSfG{width:34rem}@media (max-width:35rem){.styles__c-modal--small___3xSfG{width:100%}}.styles__c-modal--medium___2Pu0O{width:36rem}@media (max-width:39rem){.styles__c-modal--medium___2Pu0O{width:100%}}.styles__c-modal--large___2k5qx{width:40rem}@media (max-width:46rem){.styles__c-modal--large___2k5qx{width:100%}}.styles__c-modal--xlarge___ZLRMN{width:50rem}@media (max-width:56rem){.styles__c-modal--xlarge___ZLRMN{width:100%}}.styles__c-modal--xxlarge___18Had{width:60rem}@media (max-width:66rem){.styles__c-modal--xxlarge___18Had{width:100%}}@media (max-width:48rem){.styles__c-modal-wrapper___y79-C.styles__c-modal-wrapper--fullscreen___3oSPW{padding:0}}@media (max-width:48rem){.styles__c-modal___dljYk.styles__c-modal--fullscreen___4RcnS{height:100%;width:100%;border-radius:0;box-sizing:border-box}}.styles__c-modal-header--branded___17z1P,.styles__c-modal-header___38uqi{margin:0 0 1rem;padding:1.687rem 3rem 0 2rem;overflow:visible;min-height:2.5rem}.styles__c-modal-header--branded___17z1P h2,.styles__c-modal-header___38uqi h2{margin:0;font-weight:700}@media (max-width:30rem){.styles__c-modal-header--branded___17z1P,.styles__c-modal-header___38uqi{margin-bottom:.5rem;padding:1.187rem 2rem 0 1.5rem}.styles__c-modal-header--branded___17z1P h2,.styles__c-modal-header___38uqi h2{font-size:1.25rem}}.styles__c-modal-header--branded___17z1P{padding:1rem 3rem}.styles__c-modal-header--branded___17z1P img{display:block;max-height:3.5rem;margin:0 auto}.styles__c-modal-illu-header--ghost___1gH1t,.styles__c-modal-illu-header___2UbH8{display:flex;align-items:center;justify-content:center;margin:0 0 1rem;max-width:100%}.styles__c-modal-illu-header--ghost___1gH1t>*,.styles__c-modal-illu-header___2UbH8>*{max-width:inherit}.styles__c-modal-illu-header--ghost___1gH1t{position:absolute;left:0;right:0;top:1rem;margin:.5rem 0;opacity:0;max-height:2rem;transition:opacity .15s ease-in,top .15s ease-in 50ms}.styles__c-modal-illu-header--ghost___1gH1t>*{max-height:inherit}.styles__c-modal-illu-header--ghost___1gH1t.styles__is-active___JlHre{top:0;opacity:1;transition:opacity .15s ease-in 50ms,top .15s ease-in}.styles__c-modal--small-spacing___1Qal6 .styles__c-modal-header___38uqi{padding:1.187rem 3rem 0 1.5rem}@media (max-width:30rem){.styles__c-modal--small-spacing___1Qal6 .styles__c-modal-header___38uqi{padding:.687rem 2rem 0 1rem}}.styles__c-modal--large-spacing___2ktm1 .styles__c-modal-header___38uqi{padding:2.687rem 3rem 0}@media (max-width:48rem){.styles__c-modal--large-spacing___2ktm1 .styles__c-modal-header___38uqi{padding:1.687rem 2rem 0}}.styles__c-modal-app___2FX9h{display:flex;align-items:center;font-size:1.25rem;color:var(--primaryTextColor)}.styles__c-app-editor___3FI4Z{font-weight:400}.styles__c-modal-app-icon___3iNz6{height:1.125rem;margin-right:.5rem}.styles__c-modal-content-fixed___1F97i{border-bottom:.063rem solid var(--dividerColor);flex:0 0 auto;padding:0 2rem}.styles__c-modal--small-spacing___1Qal6 .styles__c-modal-content-fixed___1F97i{padding:0 1.5rem}@media (max-width:30rem){.styles__c-modal--small-spacing___1Qal6 .styles__c-modal-content-fixed___1F97i{padding:0 1rem}}.styles__c-modal--large-spacing___2ktm1 .styles__c-modal-content-fixed___1F97i{padding:0 3rem}@media (max-width:30rem){.styles__c-modal--large-spacing___2ktm1 .styles__c-modal-content-fixed___1F97i{padding:0 2rem}}.styles__c-modal-content___22N4k{padding:0 2rem}.styles__c-modal-content___22N4k:last-child{padding-bottom:2rem;border-bottom-right-radius:.5rem;border-bottom-left-radius:.5rem}@media (max-width:30rem){.styles__c-modal-content___22N4k{padding:0 1.5rem}.styles__c-modal-content___22N4k:last-child{padding-bottom:1.5rem}}.styles__c-modal--small-spacing___1Qal6 .styles__c-modal-content___22N4k{padding:0 1.5rem}.styles__c-modal--small-spacing___1Qal6 .styles__c-modal-content___22N4k:last-child{padding-bottom:1.5rem}@media (max-width:30rem){.styles__c-modal--small-spacing___1Qal6 .styles__c-modal-content___22N4k{padding:0 1rem}.styles__c-modal--small-spacing___1Qal6 .styles__c-modal-content___22N4k:last-child{padding-bottom:1rem}}.styles__c-modal--large-spacing___2ktm1 .styles__c-modal-content___22N4k{padding:0 3rem}.styles__c-modal--large-spacing___2ktm1 .styles__c-modal-content___22N4k:last-child{padding-bottom:3rem}@media (max-width:48rem){.styles__c-modal--large-spacing___2ktm1 .styles__c-modal-content___22N4k{padding:0 2rem}.styles__c-modal--large-spacing___2ktm1 .styles__c-modal-content___22N4k:last-child{padding-bottom:2rem}}.styles__c-modal-footer___3JCxm{padding:1rem 1.25rem 1.25rem}.styles__c-modal-footer--button___3AdGX button{margin-bottom:.25rem}@media (max-width:48rem){.styles__c-modal-footer--button___3AdGX button{min-width:calc(50% - .5rem)}}.styles__c-modal-section___2LJKl{border-top:.063rem solid var(--dividerColor)}.styles__c-modal-close___1M8Jn{box-sizing:border-box;position:absolute;top:1.5rem;right:1.5rem;margin:0;padding:.5rem;background-color:initial;border:0;cursor:pointer;display:block;width:2.5rem;height:2.5rem;z-index:1}@media (max-width:30rem){.styles__c-modal-close___1M8Jn{top:.813rem;right:1rem}}.styles__c-modal--small-spacing___1Qal6 .styles__c-modal-close___1M8Jn{top:1rem;right:1rem}@media (max-width:30rem){.styles__c-modal--small-spacing___1Qal6 .styles__c-modal-close___1M8Jn{top:.313rem;right:.5rem}}.styles__c-modal--closable___3Wo68 .styles__c-modal-header___38uqi{padding-right:4.5rem}.styles__c-modal--large-spacing___2ktm1 .styles__c-modal-close___1M8Jn{top:2.5rem;right:2.5rem}@media (max-width:48rem){.styles__c-modal--large-spacing___2ktm1 .styles__c-modal-close___1M8Jn{top:1.313rem;right:1.5rem}}.styles__c-modal-close--notitle___3dCIQ{top:.375rem;right:.375rem}.styles__c-modal--overflowHidden___1QDY9{overflow:hidden}.styles__c-modal-back-button___AjaZO{top:.375rem;left:.375rem;color:var(--actionColorActive)}@media (max-width:48rem){.styles__c-modal-back-button___AjaZO{top:0;left:0}}.styles__c-modal-close--notitle___3dCIQ+.styles__c-modal-content___22N4k{margin-top:3rem}.styles__NarrowContent___2rvIN{max-width:32rem}.styles__c-overlay___8W1LN{z-index:var(--zIndex-overlay);position:fixed;top:0;left:0;height:100%;width:100%;background:var(--overlay);visibility:visible;transition:opacity .3s,visibility 0s ease-out}.styles__PercentageBar___1cT4_{background-color:var(--defaultBackgroundColor);border:1px solid var(--borderMainColor);height:1.5rem;border-radius:4px}.styles__PercentageBar___1cT4_ .styles__PercentageBar__line___2AheW{height:100%;border-radius:4px}.PercentageLine__PercentageLine___VIEsK{transition:transform .3s ease;transform-origin:0 0;height:5px}.styles__c-btn-client___2ZSQt{position:relative;box-sizing:border-box;display:inline-flex;margin:0 .25rem;border-radius:.125rem;min-height:2.5rem;min-width:7rem;padding:.188rem 1rem;vertical-align:top;text-align:center;font-size:.875rem;line-height:1;text-transform:uppercase;text-decoration:none;cursor:pointer;background-color:var(--primaryColor);color:var(--primaryContrastTextColor);border:.063rem solid var(--primaryColor)}.styles__c-btn-client___2ZSQt svg{fill:currentColor}.styles__c-btn-client___2ZSQt svg+span{margin-left:.375rem}.styles__c-btn-client___2ZSQt input{cursor:pointer}.styles__c-btn-client___2ZSQt>span{display:flex;align-items:center;justify-content:center;width:100%}.styles__c-btn-client___2ZSQt[aria-disabled=true],.styles__c-btn-client___2ZSQt[disabled]{opacity:.5;cursor:not-allowed}.styles__c-btn-client___2ZSQt[aria-disabled=true] input,.styles__c-btn-client___2ZSQt[disabled] input{cursor:not-allowed}.styles__c-btn-client___2ZSQt[aria-busy=true]{opacity:.5;pointer-events:none}.styles__c-btn-client___2ZSQt:visited{color:var(--primaryContrastTextColor)}.styles__c-btn-client___2ZSQt:active,.styles__c-btn-client___2ZSQt:focus,.styles__c-btn-client___2ZSQt:hover{border-color:var(--primaryColorDark);background-color:var(--primaryColorDark)}.styles__c-btn-client___2ZSQt[aria-disabled=true]:hover,.styles__c-btn-client___2ZSQt[disabled]:hover{border-color:var(--primaryColor);background-color:var(--primaryColor)}.styles__c-btn-client___2ZSQt{background-color:var(--white);color:var(--black);border-color:var(--silver)}.styles__c-btn-client___2ZSQt:visited{color:var(--black)}.styles__c-btn-client___2ZSQt:active,.styles__c-btn-client___2ZSQt:focus,.styles__c-btn-client___2ZSQt:hover{border-color:var(--silver);background-color:var(--silver)}.styles__c-btn-client___2ZSQt[aria-disabled=true]:hover,.styles__c-btn-client___2ZSQt[disabled]:hover{border-color:var(--silver);background-color:var(--white)}.styles__c-btn-client___2ZSQt{display:flex;justify-content:center;align-items:center;height:auto;min-height:3.5rem;margin:0;padding-left:1rem;padding-right:1rem;background-color:initial;text-align:left;font-size:.813rem;font-weight:700;line-height:1.3;color:var(--slateGrey)}.styles__c-btn-client___2ZSQt:visited{color:var(--slateGrey)}.styles__c-btn-client___2ZSQt span{flex:0 1 auto}.styles__c-btn-client___2ZSQt figure{flex:0 0 2rem;margin:0 .75rem 0 0}.styles__c-input-radio___1f4CB{display:flex;align-items:center;min-width:1rem;min-height:1rem}.styles__c-input-radio___1f4CB span{position:relative;display:inline-block;padding-left:1.5rem;cursor:pointer;line-height:1.5}.styles__c-input-radio___1f4CB span:after,.styles__c-input-radio___1f4CB span:before{content:"";position:absolute;left:0;top:50%;box-sizing:border-box;width:1rem;height:1rem;border-radius:.125rem}.styles__c-input-radio___1f4CB span:before{transition:box-shadow .35s cubic-bezier(0,.89,.44,1);background-color:var(--paperBackgroundColor);box-shadow:inset 0 0 0 .125rem var(--dividerColor);transform:translateY(-50%)}.styles__c-input-radio___1f4CB span:hover:before{box-shadow:inset 0 0 0 .125rem var(--primaryColor)}.styles__c-input-radio___1f4CB span:after{background-image:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTMiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTUuMDg1IDkuNjI0TDEuMjkyIDUuODMgMCA3LjExM2w1LjA4NSA1LjA4NUwxNiAxLjI4MyAxNC43MTcgMCA1LjA4NSA5LjYyNHoiIGZpbGw9IiNmZmYiLz48L3N2Zz4=");background-size:contain;transition-duration:.2s;transition-property:opacity,transform}.styles__c-input-radio___1f4CB[aria-checked=mixed] span:after{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+PHBhdGggZD0iTTMuNDk3IDEwaDEzLjAwNiIgc3Ryb2tlPSIjRkZGIiBzdHJva2Utd2lkdGg9IjIiLz48L3N2Zz4=");background-size:contain}.styles__c-input-radio___1f4CB[aria-disabled=true] span{opacity:.5;cursor:not-allowed}.styles__c-input-radio___1f4CB[aria-disabled=true] :hover:before{box-shadow:inset 0 0 0 .125rem var(--dividerColor)}.styles__c-input-radio___1f4CB[aria-disabled=true] :before{background-color:var(--dividerColor)}.styles__c-input-radio___1f4CB input{border:0;clip:rect(0 0 0 0);clip-path:polygon(0 0,0 0,0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap}.styles__c-input-radio___1f4CB input:focus+span:before{box-shadow:inset 0 0 0 .125rem var(--primaryColor)}.styles__c-input-radio___1f4CB input:checked+span:before{box-shadow:inset 0 0 0 1rem var(--primaryColor)}.styles__c-input-radio___1f4CB input:checked+span:after{opacity:1;transform:translateY(-50%) scale(1)}.styles__c-input-radio___1f4CB input:not(:checked)+span:after{opacity:0;transform:translateY(-50%) scale(0)}.styles__c-input-radio___1f4CB.styles__is-error___5jyha span{color:var(--errorColor)}.styles__c-input-radio___1f4CB.styles__is-error___5jyha span:before{box-shadow:inset 0 0 0 .125rem var(--errorColor);background-color:var(--errorColorLight)}.styles__c-input-radio--noGutter___2gFTH span{padding-left:0}.styles__c-input-radio___1f4CB span:after,.styles__c-input-radio___1f4CB span:before{border-radius:50%}.styles__c-input-radio___1f4CB span:after{content:"";background:var(--paperBackgroundColor);border:.313rem solid var(--primaryColor);box-sizing:border-box;width:1rem;height:1rem}.styles__Table___39nEw{position:relative;display:flex;flex-direction:column;flex:1 1 100%;height:100%;text-align:left;color:var(--secondaryTextColor)}.styles__TableHead___3ZqIs{flex:0 0 2rem}@media (max-width:48rem){.styles__TableHead___3ZqIs{display:none}}.styles__TableBody___4ThMV{flex:1 1 auto;display:flex;flex-direction:column;overflow:auto}@media (max-width:48rem){.styles__TableBody___4ThMV{max-height:100%}}.styles__TableHead___3ZqIs .styles__TableRow___UyGEc,.styles__TableRow___UyGEc{box-sizing:border-box;display:flex;flex-direction:row;align-items:center;flex:0 0 auto;height:3rem;width:100%;border-top:.063rem solid var(--dividerColor)}.styles__TableHead___3ZqIs .styles__TableRow___UyGEc:hover,.styles__TableRow___UyGEc:hover{background-color:var(--actionColorHover)}@media (hover:none){.styles__TableHead___3ZqIs .styles__TableRow___UyGEc:hover,.styles__TableRow___UyGEc:hover{background-color:initial}}.styles__TableHead___3ZqIs .styles__TableRow___UyGEc:last-child,.styles__TableRow___UyGEc:last-child{border-bottom:.063rem solid var(--dividerColor)}@media (max-width:63.938rem){.styles__TableHead___3ZqIs .styles__TableRow___UyGEc,.styles__TableRow___UyGEc{max-width:100vw}}.styles__TableHead___3ZqIs .styles__TableRow___UyGEc{border:0}.styles__TableHead___3ZqIs .styles__TableRow___UyGEc:hover{background-color:initial}.styles__TableHead___3ZqIs .styles__TableRow___UyGEc:last-child{border-bottom:0}.styles__TableCell___3vgVE,.styles__TableHeader___ERsVK{box-sizing:border-box;padding:.875rem 1rem;font-size:.875rem;line-height:1.3}.styles__TableHeader___ERsVK{padding:.5rem 1rem;font-size:.75rem;font-weight:700;text-transform:uppercase}.styles__Breadcrumb___2p17B{display:flex;align-items:center;color:var(--primaryTextColor)}.styles__Breadcrumb__previousButton___1FEmP.styles__Breadcrumb__previousButton___1FEmP{margin-left:-.75rem;margin-right:.25rem}.styles__Breadcrumb__items___C99rj{flex-grow:1}.styles__Breadcrumb__previousItems___20hGg{display:flex}.styles__BreadcrumbSeparator___37ZIH{display:inline-block;margin-left:.125rem;margin-right:.125rem}.styles__c-input-text___1Tl4E[aria-disabled=true],.styles__c-input-text___1Tl4E[disabled]{cursor:not-allowed;background-color:var(--actionColorDisabledBackground);color:var(--actionColorDisabled)}.styles__c-input-text___1Tl4E[aria-disabled=true]:focus,.styles__c-input-text___1Tl4E[aria-disabled=true]:hover,.styles__c-input-text___1Tl4E[disabled]:focus,.styles__c-input-text___1Tl4E[disabled]:hover{border:.063rem solid var(--borderMainColor)}.styles__c-input-text___1Tl4E{display:inline-block;width:100%;max-width:32rem;padding:.813rem 1rem;box-sizing:border-box;border-radius:.188rem;background:var(--paperBackgroundColor);border:.063rem solid var(--borderMainColor);font-size:1rem;line-height:1.25;color:var(--primaryTextColor);outline:0}.styles__c-input-text___1Tl4E::placeholder{color:var(--secondaryTextColor);font-size:1rem}.styles__c-input-text___1Tl4E:hover{border:.063rem solid var(--hintTextColor)}.styles__c-input-text___1Tl4E:focus{border:.063rem solid var(--primaryColor);outline:0}.styles__c-input-text___1Tl4E.styles__is-error___wKsQv,.styles__c-input-text___1Tl4E:not(:focus):invalid{border:.063rem solid var(--errorColor)}.styles__c-input-text--tiny___wubKz{border-radius:.125rem;padding:.25rem .5rem .375rem}.styles__c-input-text--medium___1ISo1{border-radius:.125rem;padding:.5rem 1rem .625rem}.styles__c-input-text--large___2sSPx{border-radius:.188rem;padding:.813rem 1rem}.styles__c-input-text--fullwidth___cqKU6{max-width:100%}
|
|
1
|
+
.styles__c-apptitle___eqV9l{display:inline-flex;align-items:center;margin:0}.styles__c-apptitle-light___49VIZ{fill:var(--black)!important}.styles__c-apptitle-dark___13RM5{fill:var(--white)!important}.styles__c-apptitle-app-icon___oQp8q{margin-right:4px}.styles__BarTitle___I5r2e{margin:0;height:3rem;display:flex;align-items:center;font-size:1.125rem}.styles__renderSaferAnim___2rNtc{position:absolute;bottom:0;height:0;width:100%;animation:styles__slidein___1E_4T 1s}@-webkit-keyframes styles__slidein___1E_4T{0%{height:100%}to{height:0}}@keyframes styles__slidein___1E_4T{0%{height:100%}to{height:0}}.styles__root___1wSag .react-colorful{height:140px}.styles__root___1wSag .react-colorful__saturation{width:246px;border-radius:0}.styles__root___1wSag .react-colorful__hue{width:246px;height:18px;border-radius:0;margin-top:20px}.styles__root___1wSag .react-colorful__pointer{width:20px;height:20px;border-width:1px}.styles__input___QRNzz{width:72px}.styles__DialogCloseButton___cxKPO{position:absolute;top:1.15rem;right:1.15rem;z-index:1}@media (max-width:48rem){.styles__DialogCloseButton___cxKPO{top:.25rem;right:.25rem}}.styles__DialogBackButton___1c7yH{position:absolute;top:1.15rem;left:1.15rem;z-index:1}@media (max-width:48rem){.styles__DialogBackButton___1c7yH{top:.25rem;left:.25rem}}.styles__DateMonthPicker__YearControls___1DGlB{box-shadow:0 4px 12px 0 rgba(0,0,0,.08);border:1px solid rgba(0,0,0,.08)}.styles__DateMonthPicker__MonthButton___3I_Mm.styles__DateMonthPicker__MonthButton--selected___40hCm,.styles__DateMonthPicker__MonthButton___3I_Mm:hover,.styles__DateMonthPicker__YearButton___3zNDK:hover{background:var(--defaultBackgroundColor);color:var(--primaryTextColor)}.styles__DateMonthPicker__MonthButton___3I_Mm:active,.styles__DateMonthPicker__MonthButton___3I_Mm:hover:active,.styles__DateMonthPicker__YearButton___3zNDK:active,.styles__DateMonthPicker__YearButton___3zNDK:hover:active{background-color:var(--actionColorFocus);font-weight:700;outline:0}.styles__DateMonthPicker__MonthButton___3I_Mm,.styles__DateMonthPicker__YearButton___3zNDK{background:none;min-height:3rem;min-width:3rem;display:inline-block;border-width:0;color:var(--secondaryTextColor);cursor:pointer}.styles__DateMonthPicker__MonthButton___3I_Mm:focus,.styles__DateMonthPicker__YearButton___3zNDK:focus{outline:0}.styles__DateMonthPicker__YearControls___1DGlB{justify-content:center;display:flex;align-items:center;border-radius:8px;border:1px solid var(--borderMainColor);overflow:hidden;margin-bottom:1rem;font-weight:700}.styles__DateMonthPicker__YearButton___3zNDK{flex-grow:0;cursor:pointer}.styles__DateMonthPicker__Year___387bP{flex-grow:1;display:inline-flex;justify-content:center}.styles__DateMonthPicker__MonthGrid___TCFg4{display:grid;grid-template-columns:repeat(4,auto);grid-template-rows:repeat(3,1fr);overflow:hidden;grid-gap:1rem}.styles__DateMonthPicker__MonthButton___3I_Mm{border-radius:3rem}.styles__DateMonthPicker__MonthButton___3I_Mm.styles__DateMonthPicker__MonthButton--selected___40hCm{font-weight:700}.styles__divider___SuA5q{align-items:center;display:flex}.styles__divider___SuA5q:after,.styles__divider___SuA5q:before{content:"";height:1px;background-color:var(--dividerColor)}.styles__divider___SuA5q:before{display:none;margin-right:.5rem}.styles__divider___SuA5q:after{flex:1;margin-left:.5rem}.styles__center___3K8dw:before{display:block;flex:1}.styles__c-empty___3w5oV{display:flex;flex-direction:column;justify-content:center;flex:1 0 auto;align-self:center;margin:0 auto;padding:2rem;text-align:center;width:calc(100% - 4rem);max-width:32rem}@media (max-width:63.938rem){.styles__c-empty--centered___2ijsY{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%)}}.styles__c-empty-img___2GC4d{display:block;margin:0 auto 1rem;height:8rem}@media (max-width:63.938rem){.styles__c-empty-img___2GC4d{margin-bottom:.5rem;height:6rem}}.styles__c-empty-img--medium___1d2Zd{height:10rem}@media (max-width:63.938rem){.styles__c-empty-img--medium___1d2Zd{height:8rem}}.styles__c-empty-img--large___3s3vC{height:12rem}@media (max-width:63.938rem){.styles__c-empty-img--large___3s3vC{height:10rem}}.styles__c-empty-title___2HduE{margin:0 auto;max-width:63rem;line-height:1.3}@media (max-width:63.938rem){.styles__c-empty-title___2HduE{margin:0 1.5rem}}.styles__c-empty-text___3HnvR{max-width:63rem;color:var(--secondaryTextColor);line-height:1.5}.styles__c-file-input___YNZSh{cursor:pointer}.styles__c-file-path___XvgNN{display:block;color:var(--secondaryTextColor);font-size:.75rem;text-decoration:none;position:relative;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.styles__icon-withPath___1IcPC{float:left;top:4px}.styles__HistoryRowCircleWrapper___3r8Uo{width:2.6rem;height:2.6rem;justify-content:center;display:flex;align-self:start}.styles__HistoryRowCircle___4FWWa{border:1px solid var(--dividerColor);background-color:var(--paperBackgroundColor)}.styles__HistoryRowRevisionLoader___a5y5b{display:flex;justify-content:center}.styles__HistoryRowCaption___2fe_H{margin-bottom:2rem;padding-left:2rem;padding-right:2rem}.styles__HistoryRowMedia___2jgYN{position:relative;display:flex;align-items:center;padding:1rem}.styles__HistoryRowMedia___2jgYN:before{content:"";border-left:1px dashed var(--coolGrey);position:absolute;margin-left:20px;top:2.125rem;bottom:-1rem}.styles__HistoryRowMedia___2jgYN:last-child:before{border:0}.styles__HistoryRowMediaImg___1J9OI{align-self:flex-start;z-index:1;line-height:0;flex:0 0 auto}.styles__HistoryRowMediaBd___28KVS{flex:1 1 auto;overflow:hidden}.styles__c-inputgroup___12OVJ input[aria-disabled=true],.styles__c-inputgroup___12OVJ input[disabled]{cursor:not-allowed;background-color:var(--actionColorDisabledBackground);color:var(--actionColorDisabled)}.styles__c-inputgroup___12OVJ input[aria-disabled=true]:focus,.styles__c-inputgroup___12OVJ input[aria-disabled=true]:hover,.styles__c-inputgroup___12OVJ input[disabled]:focus,.styles__c-inputgroup___12OVJ input[disabled]:hover{border:.063rem solid var(--borderMainColor)}.styles__c-inputgroup___12OVJ input{display:inline-block;width:100%;max-width:32rem;padding:.813rem 1rem;box-sizing:border-box;border-radius:.188rem;background:var(--paperBackgroundColor);border:.063rem solid var(--borderMainColor);font-size:1rem;line-height:1.25;color:var(--primaryTextColor);outline:0}.styles__c-inputgroup___12OVJ input::placeholder{color:var(--secondaryTextColor);font-size:1rem}.styles__c-inputgroup___12OVJ input:hover{border:.063rem solid var(--hintTextColor)}.styles__c-inputgroup___12OVJ input:focus{border:.063rem solid var(--primaryColor);outline:0}.styles__c-inputgroup___12OVJ input.styles__is-error___2dj3S,.styles__c-inputgroup___12OVJ input:not(:focus):invalid{border:.063rem solid var(--errorColor)}.styles__c-inputgroup___12OVJ{display:inline-flex;flex-direction:row;box-sizing:border-box;align-items:stretch;width:100%;max-width:32rem;border:.063rem solid var(--dividerColor);border-radius:.125rem}.styles__c-inputgroup___12OVJ:hover{border:.063rem solid var(--borderMainColor)}.styles__c-inputgroup--focus___Tk5-Z,.styles__c-inputgroup--focus___Tk5-Z:hover{border-color:var(--primaryColor)}.styles__c-inputgroup--error___1JNbu{border-color:var(--errorColor)}.styles__c-inputgroup--fullwidth___3nuay{max-width:none}.styles__c-inputgroup-main___1LP4B{flex:1 1 auto}.styles__c-inputgroup___12OVJ input{border:0;padding-right:.5rem}.styles__c-inputgroup___12OVJ input:focus,.styles__c-inputgroup___12OVJ input:hover{position:relative;z-index:1;border:0;outline:0}.styles__c-inputgroup-side___60v0v{display:flex;flex-direction:column;justify-content:center;flex:0 1 auto;max-width:8.75rem}.styles__c-inputgroup-unit___bFj9a{padding-left:1rem;padding-right:1rem;font-weight:700}.styles__intentHeader___m5Qjh{display:flex;align-items:center;height:2rem;padding:.5rem 1rem;background-color:var(--contrastBackgroundColor);margin:0;flex-basis:auto;flex-shrink:0}.styles__intentHeader-title___1r4ex{display:flex;align-items:center;font-size:1.25rem;color:var(--primaryTextColor)}.styles__intentHeader-title___1r4ex span{font-weight:400}.styles__intentHeader-icon___3s30C{height:1.125rem;margin-right:.5rem}.styles__iconGrid___7nBAB{display:grid;grid-template-columns:repeat(2,16px);grid-template-rows:repeat(2,16px);grid-gap:1px}.styles__PasswordInput___3Oa3V{display:inline-flex;flex-direction:column;width:100%;max-width:32rem}.styles__PasswordInput--withStrength___1Msxm{border-bottom-left-radius:0;border-bottom-right-radius:0}.styles__PasswordInput__strength___1hpSg{background-color:var(--paleGrey);border-radius:.188rem;border-top-left-radius:0;border-top-right-radius:0;border:.063rem solid var(--silver);border-top:0;box-sizing:border-box;height:.25rem}.styles__PasswordInput__strength--weak___dzrGl{color:var(--pomegranate)}.styles__PasswordInput__strength--weak___dzrGl::-webkit-progress-value{background-color:var(--errorColor)}.styles__PasswordInput__strength--weak___dzrGl::-moz-progress-bar{background-color:var(--errorColor)}.styles__PasswordInput__strength--moderate___1ME_z{color:var(--texasRose)}.styles__PasswordInput__strength--moderate___1ME_z::-webkit-progress-value{background-color:var(--warningColor)}.styles__PasswordInput__strength--moderate___1ME_z::-moz-progress-bar{background-color:var(--warningColor)}.styles__PasswordInput__strength--strong___3yuP0{color:var(--emerald)}.styles__PasswordInput__strength--strong___3yuP0::-webkit-progress-value{background-color:var(--successColor)}.styles__PasswordInput__strength--strong___3yuP0::-moz-progress-bar{background-color:var(--successColor)}.styles__PasswordInput__visibilityButton___2B6RJ{height:100%;width:3rem;background-color:initial;border:0}.styles__o-layout___3TSz9{box-sizing:border-box;display:flex;max-width:100%;width:100%;height:100%;background-color:var(--paperBackgroundColor);color:var(--primaryTextColor)}.styles__o-layout-2panes___1CDQw{flex:0 0 100%;align-items:stretch}.styles__o-layout-main___3mPxz{display:flex;flex-direction:column;position:relative;flex:1 1 auto;box-sizing:border-box;overflow:hidden;height:100%}.styles__o-layout-main-topbar___3FSE_:before{content:"";display:block;height:3rem;width:100%;background-color:var(--paperBackgroundColor)}.styles__o-layout-main-2panes___3ickD{background-color:var(--defaultBackgroundColor)}@media (max-width:63.938rem){.styles__o-layout-main-2panes___3ickD{height:calc(100vh - var(--sidebarHeight));background-color:initial}}.styles__o-layout-content___3D5gN{position:relative;display:flex;flex-direction:column;flex:1 1 auto;box-sizing:border-box;overflow:hidden auto;background-color:var(--paperBackgroundColor);height:100%}.styles__o-layout-content-2panes___2Hotr{margin:1rem 1rem 1rem 0;border-radius:1rem}@media (max-width:63.938rem){.styles__o-layout-content-2panes___2Hotr{margin:0;border-radius:0}}.styles__c-nav___33dZy{margin:1.5rem 0;padding:0;list-style:none}@media (max-width:63.938rem){.styles__c-nav___33dZy{display:flex;justify-content:space-around;margin:6px 0 4px;padding-right:0}}.styles__c-nav-item___3XOLK{position:relative;z-index:var(--zIndex-app);height:2.25rem;box-sizing:border-box;cursor:pointer}.styles__c-nav-item___3XOLK:hover:before{content:"";position:absolute;z-index:var(--zIndex-below);border-radius:8px;top:0;left:1rem;right:1rem;bottom:0;background:var(--actionColorHover)}@media (hover:none){.styles__c-nav-item___3XOLK:hover:before{content:none}}@media (max-width:63.938rem){.styles__c-nav-item___3XOLK{margin:0 .75rem;height:auto;display:block;flex:0 0 2.5rem;padding-right:0}.styles__c-nav-item___3XOLK:hover:before{content:none}}.styles__c-nav-icon___hrJUe{display:inline-block;margin-right:12px;color:var(--primaryTextColor);fill:currentColor}.styles__c-nav-icon___hrJUe svg{display:block}@media (max-width:63.938rem){.styles__c-nav-icon___hrJUe{display:block;margin-right:0;color:var(--secondaryTextColor)}.styles__c-nav-icon___hrJUe svg{margin:4px auto 5px;width:1rem;height:1rem}}.styles__c-nav-text___1J3yU{font-size:14px;font-weight:500;letter-spacing:.15px}@media (max-width:63.938rem){.styles__c-nav-text___1J3yU{display:block;text-align:center;white-space:nowrap;font-size:12px}.styles__is-active___2D0jN .styles__c-nav-text___1J3yU{color:var(--primaryTextColor)}}.styles__c-nav-link___3mK6W{display:flex;box-shadow:border-box;margin:0 1rem;padding-left:.5rem;padding-right:.5rem;line-height:1.375;text-decoration:none;color:var(--primaryTextColor);height:100%;align-items:center;flex:1;background-repeat:no-repeat;background-position:1.5rem}.styles__c-nav-link___3mK6W:visited{color:var(--actionColorActive)}.styles__c-nav-link___3mK6W.styles__is-active___2D0jN{background-color:var(--actionColorSelected);border-radius:8px;font-weight:700;color:var(--primaryColor)}@media (max-width:63.938rem){.styles__c-nav-link___3mK6W.styles__is-active___2D0jN{background-color:initial;border-radius:initial}}.styles__c-nav-link___3mK6W.styles__is-active___2D0jN .styles__c-nav-icon___hrJUe{color:var(--primaryColor)}@media (max-width:63.938rem){.styles__c-nav-link___3mK6W.styles__is-active___2D0jN .styles__c-nav-icon___hrJUe{color:var(--primaryTextColor)}}@media (max-width:63.938rem){.styles__c-nav-link___3mK6W{display:block;height:auto;margin:0;padding:0;text-align:center;font-size:.688rem;line-height:.75rem;background-position:top;background-size:1.5rem;color:color var(--secondaryTextColor)}.styles__c-nav-link___3mK6W.styles__is-active___2D0jN,.styles__c-nav-link___3mK6W:hover{box-shadow:none;font-weight:400}}.styles__c-nav-item-secondary___k14rf{height:auto;margin:3px 0}@media (max-width:63.938rem){.styles__c-nav-item-secondary___k14rf{display:none}}.styles__c-nav-item-secondary___k14rf:hover:before{content:"";position:absolute;z-index:var(--zIndex-below);border-radius:8px;top:0;right:0;left:2.813rem;bottom:0;background:var(--actionColorHover)}@media (hover:none){.styles__c-nav-item-secondary___k14rf:hover:before{content:none}}.styles__c-nav-item-secondary___k14rf .styles__c-nav-link___3mK6W{padding:8px 16px;margin-left:2.8rem;border-radius:8px;box-shadow:none;font-size:.875rem;color:var(--primaryTextColor);text-decoration:none;height:auto}.styles__c-nav-item-secondary___k14rf .styles__c-nav-link___3mK6W.styles__is-active___2D0jN{color:var(--primaryContrastTextColor);background-color:var(--secondaryColor)}.styles__c-nav-item-secondary___k14rf .styles__c-nav-limiter___3oxQU{background:transparent;border:0;cursor:pointer}.styles__DesktopSectionWrapper___1rIWP{list-style-type:none}.styles__Modal__back___qxUn_{cursor:pointer;margin-right:.5rem;margin-left:-.25rem;font-size:1.5rem;line-height:0;margin-bottom:-1rem;position:relative;top:-.5rem}.styles__title-container--without-title___HEYQL{margin-top:4rem}.styles__search-container--without-title___3P2fe{margin-right:1rem;margin-top:.5rem}.styles__OrderedList___17A_o{list-style:none;counter-reset:cozy-ui-ordered-list;padding-left:0;line-height:1.5}.styles__ListItem___2Lu4a{counter-increment:cozy-ui-ordered-list;position:relative;padding-left:1.5rem}.styles__ListItem___2Lu4a:before{content:counter(cozy-ui-ordered-list) ". ";font-weight:700;position:absolute;left:0;top:0}.styles__select--disabled___1W3en{cursor:not-allowed;background-color:var(--actionColorDisabledBackground);color:var(--actionColorDisabled)}.styles__select--disabled___1W3en:focus,.styles__select--disabled___1W3en:hover{border:.063rem solid var(--borderMainColor)}.styles__select--fullwidth___2l_xM{max-width:100%;padding-right:2.375rem}.styles__select--disabled___1W3en:focus,.styles__select--disabled___1W3en:hover{border-width:0}.styles__select-control__input___1xDlj{width:0;height:0;overflow:hidden}.styles__select--autowidth___16AEp{max-width:32rem}.styles__select--fullwidth___2l_xM{padding-right:0}.styles__select-option___ov_IT{display:flex;flex-direction:row;justify-content:flex-start;align-items:center;padding:.5rem;border-left:.25rem solid transparent;color:var(--primaryTextColor);background-color:var(--paperBackgroundColor);transition:all .2s ease-out;white-space:normal}.styles__select-option___ov_IT:hover:not(.styles__select-option--disabled___1du57){background-color:var(--actionColorSelected);cursor:pointer}.styles__select-option___ov_IT:hover:not(.styles__select-option--disabled___1du57) .styles__select-option__actions___2WOjb{opacity:1}.styles__select-option--focused___1Vpjv:not(.styles__select-option--disabled___1du57){background-color:var(--actionColorHover)}.styles__select-option--selected___R3_ES{background-color:var(--actionColorSelected);border-left-color:var(--primaryColor)}.styles__select-option--disabled___1du57{color:var(--disabledTextColor);cursor:not-allowed}.styles__select-option__checkbox___15WVE{margin-right:.5rem;vertical-align:top}.styles__select-option__label___1Xi5R{flex-grow:1;display:flex;justify-content:space-between;align-items:center;width:100%;overflow:hidden}.styles__select-option__checkmark___ChXXs{width:2rem}.styles__select-option__actions___2WOjb{opacity:0;white-space:nowrap;transition:opacity .2s ease-out}@media (max-width:63.938rem){.styles__select-option__actions___2WOjb{opacity:1}}.styles__select__overlay___3H8Jy:before{content:"\A0";width:200vw;height:200vh;top:-50vh;left:-50vh;display:block;position:fixed}.styles__MenuList___1H_pH{display:flex;flex-direction:column}.styles__FixedGroup___2izTc,.styles__Group___J6s7k{overflow-y:auto;padding-top:.25rem!important;padding-bottom:.25rem!important}.styles__FixedGroup___2izTc{flex-shrink:0;border-top:1px solid var(--borderMainColor)}:root{--sidebarHeight:3.25rem}.styles__o-sidebar___1295j{width:14.75rem;background-color:var(--defaultBackgroundColor);overflow-y:auto;overflow-x:hidden;display:flex;flex-direction:column;flex:0 0 auto}.styles__o-sidebar--border___32tfw{border-right:.063rem solid var(--dividerColor)}@media (max-width:63.938rem){.styles__o-sidebar___1295j{justify-content:space-between;border:0;border-top:.063rem solid var(--dividerColor);height:var(--sidebarHeight);width:100%;position:fixed;bottom:0;left:0;display:block;z-index:var(--zIndex-nav)}}.styles__c-spinner___1snK7{display:inline-block;margin:0 .5rem}.styles__c-spinner___1snK7:before{content:""}.styles__c-spinner___1snK7 p{margin-top:.938rem;line-height:1.5}.styles__c-spinner--middle___RwyII{position:absolute;top:50%;left:50%;transform:translateX(-50%) translateY(-50%);text-align:center}.styles__c-spinner--middle___RwyII:before{display:block;margin:0 auto}.styles__c-spinner--nomargin___13JyW{margin:0}.styles__Stack--m___1tSpV>*+*{margin-top:1rem}.styles__Stack--xs___2R5lW>*+*{margin-top:.5rem}.styles__Stack--s___22WMg>*+*{margin-top:.75rem}.styles__Stack--l___3oxCJ>*+*{margin-top:1.5rem}.styles__Stack--xl___3qy-m>*+*{margin-top:2rem}.styles__Stack--xxl___2KAsb>*+*{margin-top:3rem}.styles__Tile___2SqRi{box-sizing:border-box;position:relative;display:flex;flex-direction:column;flex:0 0 8.75rem;width:8.75rem;height:8.75rem;align-items:center;background:var(--paperBackgroundColor);border-radius:4px;border:1px solid var(--dividerColor);padding:.375rem;margin-bottom:1rem;margin-right:.75rem;overflow:hidden;transition:all .15s ease}.styles__Tile___2SqRi.styles__Tile-secondary___2zYdn{background:var(--contrastBackgroundColor);border-color:var(--contrastBackgroundColor)}.styles__Tile___2SqRi:active,.styles__Tile___2SqRi:focus,.styles__Tile___2SqRi:hover{box-shadow:0 4px 12px 0 rgba(0,0,0,.08);cursor:pointer;transform:scale(1.1)}@media (max-width:48rem){.styles__Tile___2SqRi{flex-basis:100%;flex-direction:row;height:3.75rem;justify-content:flex-start;margin-right:.5rem;margin-bottom:.5rem;padding-left:.5rem}.styles__Tile___2SqRi:active,.styles__Tile___2SqRi:focus,.styles__Tile___2SqRi:hover{transform:scale(1.01)}}.styles__Tile-icon-wrapper___24AzZ{margin-top:.25rem;margin-bottom:.25rem;width:3rem;height:3rem}.styles__Tile-desc___3lPj6{display:flex;flex-direction:column;justify-content:flex-start;align-items:center;margin-top:.5rem;text-align:center;max-width:100%}.styles__Tile-developer___2GOfB,.styles__Tile-status___33VkE,.styles__Tile-title___3gbq-{display:block;margin:0;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;max-width:100%}.styles__Tile-title___3gbq-{color:var(--black)}.styles__Tile-title___3gbq-.styles__Tile-title-multiline___17HPx{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;white-space:normal}.styles__Tile-developer___2GOfB{height:1rem}.styles__Tile-status___33VkE{margin-top:.5rem;height:1rem}.styles__Tile-status___33VkE.styles__Tile-status-accent___an9au{color:var(--primaryColor)}@media (max-width:48rem){.styles__Tile-icon-wrapper___24AzZ{margin-top:0;margin-bottom:0;width:3rem;height:2.5rem}.styles__Tile-desc___3lPj6{margin-top:0;margin-left:.5rem;text-align:left;flex-grow:1}.styles__Tile-title___3gbq-{height:1rem;font-weight:400;font-size:.75rem!important}.styles__Tile-developer___2GOfB,.styles__Tile-status___33VkE,.styles__Tile-title___3gbq-{width:100%}.styles__Tile-developer___2GOfB{display:none}.styles__Tile-status___33VkE{margin-top:.125rem}}.styles__UnorderedList___2uFFY{padding-left:0;list-style:none}.styles__ListItem___3cRoI{position:relative;line-height:1.5;padding-left:1.5rem}.styles__ListItem___3cRoI:before{content:"";position:absolute;top:.75rem;left:0;width:.5rem;height:.5rem;background-color:var(--slateGrey);border-radius:50%;transform:translateY(-50%)}.styles__c-actionmenu___IUGX7{z-index:var(--zIndex-popover);border:.063rem solid var(--dividerColor);border-radius:.25rem;box-shadow:0 .063rem .188rem 0 rgba(50,54,63,.19),0 .375rem 1.125rem 0 rgba(50,54,63,.19);background-color:var(--paperBackgroundColor)}.styles__c-actionmenu___IUGX7 hr{margin:.313rem 0;border:0;border-top:.063rem solid var(--dividerColor)}.styles__c-actionmenu___IUGX7 [role=button],.styles__c-actionmenu___IUGX7 a,.styles__c-actionmenu___IUGX7 button{display:block;padding:.5rem 2rem .5rem 2.5rem;color:var(--charcoalGrey);text-decoration:none;white-space:nowrap;cursor:pointer}.styles__c-actionmenu___IUGX7 [role=button]:hover,.styles__c-actionmenu___IUGX7 a:hover,.styles__c-actionmenu___IUGX7 button:hover{text-decoration:none}.styles__c-actionmenu___IUGX7{color:var(--primaryTextColor);--iconColor:var(--iconTextColor);padding-bottom:env(safe-area-inset-bottom)}.styles__c-actionmenu___IUGX7 hr{margin-top:0}@media (max-width:48rem){.styles__c-actionmenu___IUGX7{border:0;border-radius:0}}.styles__c-actionmenu--inline___1RWrO{width:16rem}.styles__c-actionmenu-header___2p_ke{box-sizing:border-box;border-bottom:.063rem solid var(--dividerColor);padding:1rem;min-height:4rem;margin-top:-.5rem}.styles__c-actionmenu-item___WzUJQ{padding:.75rem 0;cursor:pointer}.styles__c-actionmenu-item___WzUJQ:hover{background-color:var(--actionColorHover)}.styles__c-actionmenu-radio___38gls{height:1rem;width:1rem;margin-top:.125rem;margin-bottom:0}.styles__c-btn--alert-error___3uH5i,.styles__c-btn--alert-info___1xAkg,.styles__c-btn--alert-success___3PgiM{border:0;height:auto;padding:.5rem 1rem;background-color:var(--white);font-weight:700;font-size:.875rem;text-decoration:none}.styles__c-btn--alert-error___3uH5i{color:#f52d2d!important;background-color:var(--white)!important;border-color:var(--white)!important}.styles__c-btn--alert-error___3uH5i:visited{color:#f52d2d!important}.styles__c-btn--alert-error___3uH5i:active,.styles__c-btn--alert-error___3uH5i:focus,.styles__c-btn--alert-error___3uH5i:hover{color:var(--monza)!important;background-color:#fdcbcb!important;border-color:#fdcbcb!important}.styles__c-btn--alert-info___1xAkg{color:var(--white)!important;border-color:var(--coolGrey)!important}.styles__c-btn--alert-info___1xAkg,.styles__c-btn--alert-info___1xAkg[aria-disabled=true]:hover,.styles__c-btn--alert-info___1xAkg[disabled]:hover{background-color:var(--coolGrey)!important}.styles__c-btn--alert-info___1xAkg:visited{color:var(--white)!important}.styles__c-btn--alert-info___1xAkg:active,.styles__c-btn--alert-info___1xAkg:focus,.styles__c-btn--alert-info___1xAkg:hover{background-color:var(--charcoalGrey)!important;border-color:var(--charcoalGrey)!important}.styles__c-btn--alert-success___3PgiM{color:#35ce68!important;background-color:var(--white)!important;border-color:var(--white)!important}.styles__c-btn--alert-success___3PgiM:visited{color:#35ce68!important}.styles__c-btn--alert-success___3PgiM:active,.styles__c-btn--alert-success___3PgiM:focus,.styles__c-btn--alert-success___3PgiM:hover{color:#08b442!important;background-color:#def7e7!important;border-color:#def7e7!important}.styles__c-alert___dJvZ8{position:fixed;z-index:var(--zIndex-alert);right:0;bottom:calc(3rem + env(safe-area-inset-bottom));left:0;opacity:1;transition:transform .2s ease-out,opacity .2s ease-out;cursor:default;pointer-events:none}@media (prefers-reduced-motion:reduce){.styles__c-alert___dJvZ8{transition:none}}@media (min-width:40rem){.styles__c-alert___dJvZ8{z-index:var(--zIndex-alert);top:1rem;bottom:auto;text-align:center}}.has-modal .styles__c-alert___dJvZ8{z-index:var(--zIndex-alert);bottom:0}.styles__c-alert-wrapper___1VWFK{display:inline-flex;flex-wrap:nowrap;align-items:center;justify-content:center;box-sizing:border-box;width:100%;box-shadow:0 .375rem 1.125rem 0 rgba(50,54,63,.23);padding:.813rem 1rem;pointer-events:auto}.styles__c-alert-wrapper___1VWFK p{margin:0;line-height:1.5}.styles__c-alert-wrapper___1VWFK p+button{margin-left:1.5rem}@media (min-width:40rem){.styles__c-alert-wrapper___1VWFK{width:auto;max-width:40rem;padding:1rem 1.5rem;border-radius:.625rem;text-align:left}}.styles__c-alert--hidden___2HD9e{transform:translateY(5rem);opacity:0;transition-timing-function:ease-out}@media (min-width:40rem){.styles__c-alert--hidden___2HD9e{transform:translateY(-5rem)}}.styles__c-alert-title___229Am{font-weight:700}.styles__c-alert--error___g5tIs{color:var(--primaryTextColor);background-color:var(--errorBackground)}.styles__c-alert--success___2DGDO{color:var(--primaryTextColor);background-color:var(--successBackground)}.styles__c-alert--info___2EDwe{color:var(--primaryTextColor);background-color:var(--secondaryBackground)}.styles__with-transition___3OLmI{transition:transform .1s ease-out}@media (prefers-reduced-motion:reduce){.styles__with-transition___3OLmI{transition:none}}.styles__BottomDrawer-content___IYCrj{z-index:var(--zIndex-drawer);position:fixed;bottom:0;left:0;right:0;width:100%;margin:0;max-height:100vh;overflow-y:auto}.styles__c-btn--regular___1ilYT,.styles__c-btn___3kXsk{position:relative;box-sizing:border-box;display:inline-flex;margin:0 .25rem;border-radius:.125rem;min-height:2.5rem;min-width:7rem;padding:.188rem 1rem;vertical-align:top;text-align:center;font-size:.875rem;font-weight:700;line-height:1;text-transform:uppercase;text-decoration:none;cursor:pointer;align-items:center;background-color:var(--primaryColor);color:var(--primaryContrastTextColor);border:.063rem solid var(--primaryColor)}.styles__c-btn--regular___1ilYT svg,.styles__c-btn___3kXsk svg{fill:currentColor}.styles__c-btn--regular___1ilYT svg+span,.styles__c-btn___3kXsk svg+span{margin-left:.375rem}.styles__c-btn--regular___1ilYT input,.styles__c-btn___3kXsk input{cursor:pointer}.styles__c-btn--regular___1ilYT>span,.styles__c-btn___3kXsk>span{display:flex;align-items:center;justify-content:center;width:100%}.styles__c-btn--regular___1ilYT[aria-disabled=true],.styles__c-btn--regular___1ilYT[disabled],.styles__c-btn___3kXsk[aria-disabled=true],.styles__c-btn___3kXsk[disabled]{opacity:.5;cursor:not-allowed}.styles__c-btn--regular___1ilYT[aria-disabled=true] input,.styles__c-btn--regular___1ilYT[disabled] input,.styles__c-btn___3kXsk[aria-disabled=true] input,.styles__c-btn___3kXsk[disabled] input{cursor:not-allowed}.styles__c-btn--regular___1ilYT[aria-busy=true],.styles__c-btn___3kXsk[aria-busy=true]{opacity:.5;pointer-events:none}.styles__c-btn--regular___1ilYT:visited,.styles__c-btn___3kXsk:visited{color:var(--primaryContrastTextColor)}.styles__c-btn--regular___1ilYT:active,.styles__c-btn--regular___1ilYT:focus,.styles__c-btn--regular___1ilYT:hover,.styles__c-btn___3kXsk:active,.styles__c-btn___3kXsk:focus,.styles__c-btn___3kXsk:hover{border-color:var(--primaryColorDark);background-color:var(--primaryColorDark)}.styles__c-btn--regular___1ilYT[aria-disabled=true]:hover,.styles__c-btn--regular___1ilYT[disabled]:hover,.styles__c-btn___3kXsk[aria-disabled=true]:hover,.styles__c-btn___3kXsk[disabled]:hover{border-color:var(--primaryColor);background-color:var(--primaryColor)}.styles__c-btn--ghost___Md7mm{background-color:var(--zircon);color:var(--primaryColor);border-color:#c2dcff;border-style:dashed}.styles__c-btn--ghost___Md7mm:visited{color:var(--primaryColor)}.styles__c-btn--ghost___Md7mm:active,.styles__c-btn--ghost___Md7mm:focus,.styles__c-btn--ghost___Md7mm:hover{border-color:#c2dcff;background-color:#c2dcff}.styles__c-btn--ghost___Md7mm[aria-disabled=true]:hover,.styles__c-btn--ghost___Md7mm[disabled]:hover{border-color:#c2dcff;background-color:var(--zircon)}.styles__c-btn--highlight___GlDOj{background-color:#35ce68;color:var(--white);border-color:#35ce68}.styles__c-btn--highlight___GlDOj:visited{color:var(--white)}.styles__c-btn--highlight___GlDOj:active,.styles__c-btn--highlight___GlDOj:focus,.styles__c-btn--highlight___GlDOj:hover{border-color:#08b442;background-color:#08b442}.styles__c-btn--highlight___GlDOj[aria-disabled=true]:hover,.styles__c-btn--highlight___GlDOj[disabled]:hover{border-color:#35ce68;background-color:#35ce68}.styles__c-btn--action___3z98K,.styles__c-btn--alpha___2-bRT,.styles__c-btn--close___C19bl{background-color:initial;color:var(--white);border-color:var(--white)}.styles__c-btn--action___3z98K:visited,.styles__c-btn--alpha___2-bRT:visited,.styles__c-btn--close___C19bl:visited{color:var(--white)}.styles__c-btn--action___3z98K:active,.styles__c-btn--action___3z98K:focus,.styles__c-btn--action___3z98K:hover,.styles__c-btn--alpha___2-bRT:active,.styles__c-btn--alpha___2-bRT:focus,.styles__c-btn--alpha___2-bRT:hover,.styles__c-btn--close___C19bl:active,.styles__c-btn--close___C19bl:focus,.styles__c-btn--close___C19bl:hover{border-color:var(--scienceBlue);background-color:var(--scienceBlue)}.styles__c-btn--action___3z98K[aria-disabled=true]:hover,.styles__c-btn--action___3z98K[disabled]:hover,.styles__c-btn--alpha___2-bRT[aria-disabled=true]:hover,.styles__c-btn--alpha___2-bRT[disabled]:hover,.styles__c-btn--close___C19bl[aria-disabled=true]:hover,.styles__c-btn--close___C19bl[disabled]:hover{border-color:var(--white);background-color:initial}.styles__c-btn--danger___wzHFo{background-color:#f52d2d;color:var(--white);border-color:#f52d2d}.styles__c-btn--danger___wzHFo:visited{color:var(--white)}.styles__c-btn--danger___wzHFo:active,.styles__c-btn--danger___wzHFo:focus,.styles__c-btn--danger___wzHFo:hover{border-color:var(--monza);background-color:var(--monza)}.styles__c-btn--danger___wzHFo[aria-disabled=true]:hover,.styles__c-btn--danger___wzHFo[disabled]:hover{border-color:#f52d2d;background-color:#f52d2d}.styles__c-btn--secondary___1hLVM{background-color:var(--white);color:var(--black);border-color:var(--silver)}.styles__c-btn--secondary___1hLVM:visited{color:var(--black)}.styles__c-btn--secondary___1hLVM:active,.styles__c-btn--secondary___1hLVM:focus,.styles__c-btn--secondary___1hLVM:hover{border-color:var(--silver);background-color:var(--silver)}.styles__c-btn--secondary___1hLVM[aria-disabled=true]:hover,.styles__c-btn--secondary___1hLVM[disabled]:hover{border-color:var(--silver);background-color:var(--white)}.styles__c-btn--danger-outline___BCng5{background-color:var(--white);color:#f52d2d;border-color:#fdcbcb}.styles__c-btn--danger-outline___BCng5:visited{color:#f52d2d}.styles__c-btn--danger-outline___BCng5:active,.styles__c-btn--danger-outline___BCng5:focus,.styles__c-btn--danger-outline___BCng5:hover{border-color:#fdcbcb;background-color:#fdcbcb}.styles__c-btn--danger-outline___BCng5[aria-disabled=true]:hover,.styles__c-btn--danger-outline___BCng5[disabled]:hover{border-color:#fdcbcb;background-color:var(--white)}.styles__c-btn--text___33vmu{background-color:initial;color:var(--primaryColor);border-color:transparent}.styles__c-btn--text___33vmu:visited{color:var(--primaryColor)}.styles__c-btn--text___33vmu:active,.styles__c-btn--text___33vmu:focus,.styles__c-btn--text___33vmu:hover,.styles__c-btn--text___33vmu[aria-disabled=true]:hover,.styles__c-btn--text___33vmu[disabled]:hover{border-color:transparent;background-color:initial}.styles__c-btn--text___33vmu:focus,.styles__c-btn--text___33vmu:hover{color:var(--primaryColorDark)}.styles__c-btn--action___3z98K{border-color:transparent;padding:.5rem;opacity:.5}.styles__c-btn--action___3z98K:active,.styles__c-btn--action___3z98K:focus,.styles__c-btn--action___3z98K:hover{background-color:initial;border-color:transparent}.styles__c-btn--close___C19bl{border-color:transparent;padding:.5rem}.styles__c-btn--close___C19bl:active,.styles__c-btn--close___C19bl:focus,.styles__c-btn--close___C19bl:hover{background-color:initial;border-color:transparent}.styles__c-btn--left___3f1zH>span{justify-content:flex-start}.styles__c-btn--center___Nny0n>span{justify-content:center}.styles__c-btn--right___1B9Tn>span{justify-content:flex-end}.styles__c-btn___3kXsk.styles__c-btn--tiny___fK37G{min-height:1.5rem;min-width:5rem;padding:.125rem 1rem;font-size:.75rem;line-height:1.3}.styles__c-btn___3kXsk.styles__c-btn--small___9JKyq{min-height:2rem;min-width:6rem;padding:.188rem .5rem;font-size:.813rem;line-height:1.4}.styles__c-btn___3kXsk.styles__c-btn--large___3PnsT{min-height:3rem;min-width:10rem;padding:.5rem 1.5rem;font-size:1rem;line-height:1.5}.styles__c-btn___3kXsk.styles__c-btn--full___1VumB{width:100%;margin-left:0;margin-right:0}.styles__c-btn___3kXsk.styles__c-btn--narrow___erKsd,.styles__c-btn___3kXsk.styles__c-btn--round___35GfW{min-width:auto}.styles__c-btn___3kXsk.styles__c-btn--round___35GfW{border-radius:100%;min-height:auto;padding:.25rem}.styles__c-btn___3kXsk.styles__c-btn--round___35GfW svg{width:.625rem;height:.625rem}@media (pointer:coarse){.styles__c-btn___3kXsk.styles__c-btn--round___35GfW:after{content:"";position:absolute;top:-.875rem;right:-.875rem;bottom:-.875rem;left:-.875rem}}.styles__c-btn--subtle___2rRQ0{color:var(--primaryColor);min-height:auto;min-width:auto;border:0;margin:1rem 0;padding:0;vertical-align:initial;background:transparent;cursor:pointer;font-size:.875rem;font-weight:700;text-transform:uppercase}.styles__c-btn--subtle___2rRQ0:active,.styles__c-btn--subtle___2rRQ0:focus,.styles__c-btn--subtle___2rRQ0:hover{color:var(--primaryColorDark)}.styles__c-btn--subtle___2rRQ0>span{display:flex;align-items:center;justify-content:center;width:100%}.styles__c-btn--subtle___2rRQ0[aria-disabled=true],.styles__c-btn--subtle___2rRQ0[disabled]{opacity:.5;cursor:not-allowed}.styles__c-btn--subtle___2rRQ0[aria-disabled=true]:hover,.styles__c-btn--subtle___2rRQ0[disabled]:hover{background:transparent}.styles__c-btn--subtle___2rRQ0[aria-busy=true]{opacity:.5;cursor:not-allowed;pointer-events:none}.styles__c-btn--subtle___2rRQ0[aria-busy=true]:hover{background:transparent}.styles__c-btn--subtle___2rRQ0:active,.styles__c-btn--subtle___2rRQ0:focus,.styles__c-btn--subtle___2rRQ0:hover,.styles__c-btn--subtle___2rRQ0:visited{color:var(--primaryColorDark);background:transparent}*+.styles__c-btn--subtle___2rRQ0{margin-left:.063rem}.styles__c-btn--subtle___2rRQ0.styles__c-btn--tiny___fK37G{min-height:0;min-width:0;padding:0;font-size:.563rem}.styles__c-btn--subtle___2rRQ0.styles__c-btn--small___9JKyq{min-height:0;min-width:0;padding:0;font-size:.75rem}.styles__c-btn--subtle___2rRQ0.styles__c-btn--large___3PnsT{min-height:0;min-width:0;padding:0;font-size:1rem}.styles__c-btn--subtle___2rRQ0.styles__c-btn--danger___wzHFo{color:#f52d2d}.styles__c-btn--subtle___2rRQ0.styles__c-btn--danger___wzHFo:active,.styles__c-btn--subtle___2rRQ0.styles__c-btn--danger___wzHFo:focus,.styles__c-btn--subtle___2rRQ0.styles__c-btn--danger___wzHFo:hover{color:var(--monza)}.styles__c-btn--subtle___2rRQ0.styles__c-btn--highlight___GlDOj{color:#35ce68}.styles__c-btn--subtle___2rRQ0.styles__c-btn--highlight___GlDOj:active,.styles__c-btn--subtle___2rRQ0.styles__c-btn--highlight___GlDOj:focus,.styles__c-btn--subtle___2rRQ0.styles__c-btn--highlight___GlDOj:hover{color:#08b442}.styles__c-btn--subtle___2rRQ0.styles__c-btn--regular___1ilYT{color:var(--primaryColor)}.styles__c-btn--subtle___2rRQ0.styles__c-btn--regular___1ilYT:active,.styles__c-btn--subtle___2rRQ0.styles__c-btn--regular___1ilYT:focus,.styles__c-btn--subtle___2rRQ0.styles__c-btn--regular___1ilYT:hover{color:var(--primaryColorDark)}.styles__c-btn--subtle___2rRQ0.styles__c-btn--secondary___1hLVM{color:var(--slateGrey)}.styles__c-btn--subtle___2rRQ0.styles__c-btn--secondary___1hLVM:active,.styles__c-btn--subtle___2rRQ0.styles__c-btn--secondary___1hLVM:focus,.styles__c-btn--subtle___2rRQ0.styles__c-btn--secondary___1hLVM:hover{color:var(--charcoalGrey)}.styles__c-btn--subtle___2rRQ0.styles__c-btn--secondary___1hLVM:active svg,.styles__c-btn--subtle___2rRQ0.styles__c-btn--secondary___1hLVM:focus svg,.styles__c-btn--subtle___2rRQ0.styles__c-btn--secondary___1hLVM:hover svg{color:var(--slateGrey)}.styles__c-btn--subtle___2rRQ0.styles__c-btn--secondary___1hLVM svg{color:var(--coolGrey)}.styles__c-actionbtn___294nr{position:relative;box-sizing:border-box;display:inline-flex;margin:0 .25rem;border-radius:.125rem;min-height:2.5rem;min-width:7rem;padding:.188rem 1rem;vertical-align:top;text-align:center;font-size:.875rem;font-weight:700;line-height:1;text-transform:uppercase;text-decoration:none;cursor:pointer;align-items:center;background-color:var(--primaryColor);color:var(--primaryContrastTextColor);border:.063rem solid var(--primaryColor)}.styles__c-actionbtn___294nr svg{fill:currentColor}.styles__c-actionbtn___294nr svg+span{margin-left:.375rem}.styles__c-actionbtn___294nr input{cursor:pointer}.styles__c-actionbtn___294nr>span{display:flex;align-items:center;justify-content:center;width:100%}.styles__c-actionbtn___294nr[aria-disabled=true],.styles__c-actionbtn___294nr[disabled]{opacity:.5;cursor:not-allowed}.styles__c-actionbtn___294nr[aria-disabled=true] input,.styles__c-actionbtn___294nr[disabled] input{cursor:not-allowed}.styles__c-actionbtn___294nr[aria-busy=true]{opacity:.5;pointer-events:none}.styles__c-actionbtn___294nr:visited{color:var(--primaryContrastTextColor)}.styles__c-actionbtn___294nr:active,.styles__c-actionbtn___294nr:focus,.styles__c-actionbtn___294nr:hover{border-color:var(--primaryColorDark);background-color:var(--primaryColorDark)}.styles__c-actionbtn___294nr[aria-disabled=true]:hover,.styles__c-actionbtn___294nr[disabled]:hover{border-color:var(--primaryColor);background-color:var(--primaryColor)}.styles__c-actionbtn___294nr.styles__c-actionbtn--compact___3CFm-{min-width:auto}.styles__c-actionbtn___294nr{border-color:var(--silver);text-transform:none;max-width:12.5rem;min-height:2rem;width:100%;padding-right:.5rem;text-align:left;line-height:1.3;outline:0}.styles__c-actionbtn___294nr>span{justify-content:flex-start;flex-wrap:nowrap}.styles__c-actionbtn___294nr [data-action=icon]{border-left:.063rem solid var(--dividerColor)}.styles__c-actionbtn___294nr:not([disabled]):focus [data-action=icon],.styles__c-actionbtn___294nr:not([disabled]):hover [data-action=icon]{border-color:currentColor}.styles__c-actionbtn___294nr.styles__c-actionbtn--compact___3CFm-{position:relative;border:0;background-color:initial;padding:0;margin:0;min-height:2rem;width:2.5rem}.styles__c-actionbtn___294nr.styles__c-actionbtn--compact___3CFm->span{justify-content:center}.styles__c-actionbtn___294nr.styles__c-actionbtn--compact___3CFm- [data-action=label]{display:none!important;visibility:hidden!important}.styles__c-actionbtn___294nr.styles__c-actionbtn--compact___3CFm- [data-action=icon]{border-left:none;margin-left:0;padding:0}.styles__c-actionbtn___294nr.styles__c-actionbtn--compact___3CFm-:focus,.styles__c-actionbtn___294nr.styles__c-actionbtn--compact___3CFm-:hover{background-color:var(--paleGrey);border:0}.styles__c-actionbtn--normal___5JbA8{background-color:var(--paleGrey);color:var(--charcoalGrey);border-color:var(--silver)}.styles__c-actionbtn--normal___5JbA8 [data-action=icon]{border-color:var(--silver)}.styles__c-actionbtn--normal___5JbA8:focus,.styles__c-actionbtn--normal___5JbA8:hover{background-color:var(--silver);border-color:var(--silver)}.styles__c-actionbtn--normal___5JbA8[aria-disabled=true]:hover,.styles__c-actionbtn--normal___5JbA8[disabled]:hover{background-color:var(--paleGrey)}.styles__c-actionbtn--error___3opWY{background-color:var(--chablis);color:#f52d2d;border-color:#fdcbcb}.styles__c-actionbtn--error___3opWY [data-action=icon]{border-color:#fdcbcb}.styles__c-actionbtn--error___3opWY:focus,.styles__c-actionbtn--error___3opWY:hover{background-color:#fdcbcb;border-color:#fdcbcb}.styles__c-actionbtn--error___3opWY[aria-disabled=true]:hover,.styles__c-actionbtn--error___3opWY[disabled]:hover{background-color:var(--chablis)}.styles__c-actionbtn--new___2cPsw{background-color:var(--zircon);color:var(--dodgerBlue);border:.063rem dashed #c2dcff}.styles__c-actionbtn--new___2cPsw [data-action=icon]{border-color:#c2dcff}.styles__c-actionbtn--new___2cPsw:focus,.styles__c-actionbtn--new___2cPsw:hover{background-color:#c2dcff;border-color:#c2dcff}.styles__c-actionbtn--new___2cPsw[aria-disabled=true]:hover,.styles__c-actionbtn--new___2cPsw[disabled]:hover{background-color:var(--zircon)}.styles__c-actionbtn--new___2cPsw:focus:not([disabled]),.styles__c-actionbtn--new___2cPsw:hover:not([disabled]){border-style:solid}.styles__c-actionbtn-label___1BCiN{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding-right:.5rem}.styles__c-actionbtn-icon___1rgZf{display:block;margin-left:auto;padding-left:.5rem}.styles__c-actionbtn-icon___1rgZf svg{display:block}.styles__c-chip___3sc2k{box-sizing:border-box;line-height:1;display:inline-flex;align-items:center;margin-right:.25rem;margin-bottom:.25rem;border:0}.styles__c-chip--round___2_oss{width:2.5rem;text-align:center;justify-content:center}.styles__c-chip--tinySize___3Dsfw{height:1.5rem;padding:0 .375rem;border-radius:.75rem;font-size:.75rem}.styles__c-chip--smallSize___lf4ip{height:2rem;padding:0 .5625rem;border-radius:1rem;font-size:.875rem}.styles__c-chip--normalSize___ZCdYE{height:2.5rem;padding:0 .75rem;border-radius:1.25rem}.styles__c-chip--outlinedVariant___1j_bo{border:1px solid}.styles__c-chip--dashedVariant___3pDfw{border:1px dashed}.styles__c-chip--normalTheme___gBU5V{border-color:var(--silver);background-color:var(--paleGrey);color:inherit}.styles__c-chip--primaryTheme___2ra2n{border-color:var(--primaryColorLightest);background-color:var(--primaryBackgroundLight);color:var(--primaryColor)}.styles__c-chip--errorTheme___1v_aF{border-color:var(--errorColorLight);background-color:var(--errorColorLightest);color:var(--errorColor)}.styles__c-chip--hoverableNormalTheme___3VGJe{color:var(--charcoalGrey)}.styles__c-chip--hoverableNormalTheme___3VGJe:focus,.styles__c-chip--hoverableNormalTheme___3VGJe:hover{background-color:var(--silver)}.styles__c-chip--hoverablePrimaryTheme___2EiKE:focus,.styles__c-chip--hoverablePrimaryTheme___2EiKE:hover{background-color:var(--primaryBackgroundLight)}.styles__c-chip--normalPrimaryTheme___BNWJ3{background-color:var(--primaryColor);color:var(--white)}.styles__c-chip--hoverableErrorTheme___1sVT6:focus,.styles__c-chip--hoverableErrorTheme___1sVT6:hover{background-color:var(--errorColorLight)}.styles__c-chip--outlinedNormalTheme___2H2PP{background-color:initial}.styles__c-chip--clickable___1Bews{cursor:pointer}.styles__c-chip-separator___2C0c5{width:.063rem;border-left:.063rem solid var(--dividerColor);display:inline-block;height:40%;margin-left:.5rem;margin-right:.5rem}.styles__c-chip-button___3ocF4{cursor:pointer;color:var(--slateGrey)}.styles__c-chip-button--disabled___3T0Bs{color:var(--coolGrey)}.styles__CompositeRow___1Dmi2{min-height:3rem;padding:1rem}.styles__CompositeRow__dense___3p1f3{padding-top:0;padding-bottom:0}.styles__CompositeRow__body___1Bjsp>*+*{margin-top:2px}.styles__gridItem-container___2Xeyk{text-align:center;box-sizing:border-box;border-radius:4px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.styles__Infos___tpCYh{position:relative;border-radius:8px;padding:1rem 1.5rem}@media (max-width:48rem){.styles__Infos___tpCYh{padding:.75rem 1rem}}.styles__Infos___tpCYh.styles__Infos--primary____iqfw{color:var(--primaryTextColor);background-color:var(--primaryBackground)}.styles__Infos___tpCYh.styles__Infos--secondary___2rlHM{color:var(--primaryTextColor);background-color:var(--secondaryBackground)}.styles__Infos___tpCYh.styles__Infos--danger___1HWww{color:var(--primaryTextColor);background-color:var(--errorBackground)}.styles__Infos-description___3q8sW{max-width:32rem}.styles__Info-close___EnUCb{position:absolute;top:0;right:0;padding:.75rem}.styles__InfosCarrousel___1-aJZ{position:relative}.styles__InfosCarrousel-navigation___2Cm0M{position:absolute;display:flex;align-items:center;height:2.5rem;bottom:1rem;right:1rem;box-sizing:border-box}@media (max-width:48rem){.styles__InfosCarrousel-navigation___2Cm0M{height:2.5rem;bottom:.75rem;right:.75rem}}.styles__InfosCarrousel-separator___3GYRV{border-left:1px solid var(--dividerColor);height:1rem;margin:0 .5rem}.styles__c-inline-card___1a8Og{display:inline-block;border:.063rem solid var(--silver);box-shadow:0 0 .625rem rgba(0,0,0,.1);padding:.375rem}.styles__media___1rIBu{display:flex;align-items:center}.styles__media--top___1t0j5{align-items:flex-start}.styles__media--bottom___XsQQe{align-items:flex-end}.styles__bd___3SAX2{flex:1 1 auto;overflow:hidden}.styles__img___3sztD{line-height:0;flex:0 0 auto}html{--primaryFont:Inter,Lato,sans-serif}body,body button,body input,body optgroup,body select,body textarea{font-family:var(--primaryFont)}:root{--safe-area-inset-top:env(safe-area-inset-top);--safe-area-inset-right:env(safe-area-inset-right);--safe-area-inset-bottom:env(safe-area-inset-bottom);--safe-area-inset-left:env(safe-area-inset-left)}html{font-size:100%}body,html{height:100%}body{font:100%/1.5;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:flex;flex-direction:column;align-items:stretch;width:100vw;margin:0}[role=application]{display:flex;height:inherit;flex:1 1 100%;overflow:hidden auto}[data-input=checkbox],[data-input=radio]{display:flex}[data-input=checkbox] input[type=checkbox],[data-input=checkbox] input[type=radio],[data-input=radio] input[type=checkbox],[data-input=radio] input[type=radio]{display:none!important;visibility:hidden!important}[data-input=checkbox] label,[data-input=radio] label{position:relative;display:inline-block;width:1rem;height:1rem;padding-left:1.4rem;cursor:pointer}[data-input=checkbox] label:after,[data-input=checkbox] label:before,[data-input=radio] label:after,[data-input=radio] label:before{content:"";position:absolute;left:0;top:0;box-sizing:border-box;width:1rem;height:1rem}[data-input=checkbox] label:before,[data-input=radio] label:before{transition:box-shadow .35s cubic-bezier(0,.89,.44,1)}[data-input=checkbox] label:after,[data-input=radio] label:after{transition-duration:.2s;transition-property:opacity,transform}[data-input=radio] label:before{border-radius:50%;border:.125rem solid var(--coolGrey);box-shadow:inset 0 0 0 1rem transparent}[data-input=radio] input[type=radio]:checked+label:before{box-shadow:inset 0 0 0 .188rem var(--paleGrey),inset 0 0 0 1rem var(--dodgerBlue)}[data-input=checkbox] label:after,[data-input=checkbox] label:before{border-radius:.125rem}[data-input=checkbox] label:before{background-color:var(--white);box-shadow:inset 0 0 0 .125rem var(--silver)}[data-input=checkbox] label:before:hover{box-shadow:inset 0 0 0 .125rem var(--dodgerBlue)}[data-input=checkbox] label:after{background-image:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTMiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTUuMDg1IDkuNjI0TDEuMjkyIDUuODMgMCA3LjExM2w1LjA4NSA1LjA4NUwxNiAxLjI4MyAxNC43MTcgMCA1LjA4NSA5LjYyNHoiIGZpbGw9IiNmZmYiLz48L3N2Zz4=");background-size:contain}[data-input=checkbox][aria-checked=mixed] label:after{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+PHBhdGggZD0iTTMuNDk3IDEwaDEzLjAwNiIgc3Ryb2tlPSIjRkZGIiBzdHJva2Utd2lkdGg9IjIiLz48L3N2Zz4=");background-size:contain}[data-input=checkbox] input[type=checkbox]:checked+label:before{box-shadow:inset 0 0 0 1rem var(--dodgerBlue)}[data-input=checkbox] input[type=checkbox]:checked+label:after{opacity:1;transform:scale(1)}[data-input=checkbox] input[type=checkbox]:not(:checked)+label:after{opacity:0;transform:scale(0)}.styles__c-modal___dljYk{display:flex;flex-flow:column nowrap;align-items:stretch}.styles__c-modal-content___22N4k{background-repeat:no-repeat;background-color:var(--paperBackgroundColor);background-size:100% 2rem,100% 2rem,100% .5rem,100% .5rem;background-attachment:local,local,scroll,scroll;background-clip:padding-box;overflow:auto;-webkit-overflow-scrolling:touch}.styles__c-modal-footer___3JCxm,.styles__c-modal-header--branded___17z1P,.styles__c-modal-header___38uqi{flex:0 0 auto}.styles__c-modal-container___1AAl5{position:relative;z-index:var(--zIndex-modal)}.styles__c-modal-wrapper___y79-C{position:fixed;top:0;left:0;display:flex;flex-direction:column;align-items:center;box-sizing:border-box;width:100vw;height:100%;overflow-y:auto;padding:3rem}@media (max-width:48rem){.styles__c-modal-wrapper___y79-C{justify-content:center;padding:1.5rem}}@media (max-width:30rem){.styles__c-modal-wrapper___y79-C{padding:.5rem}}.styles__c-modal___dljYk{position:relative;border-radius:.5rem;max-height:100%;max-width:100%;background-color:var(--paperBackgroundColor);color:var(--primaryTextColor)}.styles__c-modal--xsmall___VxVzh{width:24rem}@media (max-width:25rem){.styles__c-modal--xsmall___VxVzh{width:100%}}.styles__c-modal--small___3xSfG{width:34rem}@media (max-width:35rem){.styles__c-modal--small___3xSfG{width:100%}}.styles__c-modal--medium___2Pu0O{width:36rem}@media (max-width:39rem){.styles__c-modal--medium___2Pu0O{width:100%}}.styles__c-modal--large___2k5qx{width:40rem}@media (max-width:46rem){.styles__c-modal--large___2k5qx{width:100%}}.styles__c-modal--xlarge___ZLRMN{width:50rem}@media (max-width:56rem){.styles__c-modal--xlarge___ZLRMN{width:100%}}.styles__c-modal--xxlarge___18Had{width:60rem}@media (max-width:66rem){.styles__c-modal--xxlarge___18Had{width:100%}}@media (max-width:48rem){.styles__c-modal-wrapper___y79-C.styles__c-modal-wrapper--fullscreen___3oSPW{padding:0}}@media (max-width:48rem){.styles__c-modal___dljYk.styles__c-modal--fullscreen___4RcnS{height:100%;width:100%;border-radius:0;box-sizing:border-box}}.styles__c-modal-header--branded___17z1P,.styles__c-modal-header___38uqi{margin:0 0 1rem;padding:1.687rem 3rem 0 2rem;overflow:visible;min-height:2.5rem}.styles__c-modal-header--branded___17z1P h2,.styles__c-modal-header___38uqi h2{margin:0;font-weight:700}@media (max-width:30rem){.styles__c-modal-header--branded___17z1P,.styles__c-modal-header___38uqi{margin-bottom:.5rem;padding:1.187rem 2rem 0 1.5rem}.styles__c-modal-header--branded___17z1P h2,.styles__c-modal-header___38uqi h2{font-size:1.25rem}}.styles__c-modal-header--branded___17z1P{padding:1rem 3rem}.styles__c-modal-header--branded___17z1P img{display:block;max-height:3.5rem;margin:0 auto}.styles__c-modal-illu-header--ghost___1gH1t,.styles__c-modal-illu-header___2UbH8{display:flex;align-items:center;justify-content:center;margin:0 0 1rem;max-width:100%}.styles__c-modal-illu-header--ghost___1gH1t>*,.styles__c-modal-illu-header___2UbH8>*{max-width:inherit}.styles__c-modal-illu-header--ghost___1gH1t{position:absolute;left:0;right:0;top:1rem;margin:.5rem 0;opacity:0;max-height:2rem;transition:opacity .15s ease-in,top .15s ease-in 50ms}.styles__c-modal-illu-header--ghost___1gH1t>*{max-height:inherit}.styles__c-modal-illu-header--ghost___1gH1t.styles__is-active___JlHre{top:0;opacity:1;transition:opacity .15s ease-in 50ms,top .15s ease-in}.styles__c-modal--small-spacing___1Qal6 .styles__c-modal-header___38uqi{padding:1.187rem 3rem 0 1.5rem}@media (max-width:30rem){.styles__c-modal--small-spacing___1Qal6 .styles__c-modal-header___38uqi{padding:.687rem 2rem 0 1rem}}.styles__c-modal--large-spacing___2ktm1 .styles__c-modal-header___38uqi{padding:2.687rem 3rem 0}@media (max-width:48rem){.styles__c-modal--large-spacing___2ktm1 .styles__c-modal-header___38uqi{padding:1.687rem 2rem 0}}.styles__c-modal-app___2FX9h{display:flex;align-items:center;font-size:1.25rem;color:var(--primaryTextColor)}.styles__c-app-editor___3FI4Z{font-weight:400}.styles__c-modal-app-icon___3iNz6{height:1.125rem;margin-right:.5rem}.styles__c-modal-content-fixed___1F97i{border-bottom:.063rem solid var(--dividerColor);flex:0 0 auto;padding:0 2rem}.styles__c-modal--small-spacing___1Qal6 .styles__c-modal-content-fixed___1F97i{padding:0 1.5rem}@media (max-width:30rem){.styles__c-modal--small-spacing___1Qal6 .styles__c-modal-content-fixed___1F97i{padding:0 1rem}}.styles__c-modal--large-spacing___2ktm1 .styles__c-modal-content-fixed___1F97i{padding:0 3rem}@media (max-width:30rem){.styles__c-modal--large-spacing___2ktm1 .styles__c-modal-content-fixed___1F97i{padding:0 2rem}}.styles__c-modal-content___22N4k{padding:0 2rem}.styles__c-modal-content___22N4k:last-child{padding-bottom:2rem;border-bottom-right-radius:.5rem;border-bottom-left-radius:.5rem}@media (max-width:30rem){.styles__c-modal-content___22N4k{padding:0 1.5rem}.styles__c-modal-content___22N4k:last-child{padding-bottom:1.5rem}}.styles__c-modal--small-spacing___1Qal6 .styles__c-modal-content___22N4k{padding:0 1.5rem}.styles__c-modal--small-spacing___1Qal6 .styles__c-modal-content___22N4k:last-child{padding-bottom:1.5rem}@media (max-width:30rem){.styles__c-modal--small-spacing___1Qal6 .styles__c-modal-content___22N4k{padding:0 1rem}.styles__c-modal--small-spacing___1Qal6 .styles__c-modal-content___22N4k:last-child{padding-bottom:1rem}}.styles__c-modal--large-spacing___2ktm1 .styles__c-modal-content___22N4k{padding:0 3rem}.styles__c-modal--large-spacing___2ktm1 .styles__c-modal-content___22N4k:last-child{padding-bottom:3rem}@media (max-width:48rem){.styles__c-modal--large-spacing___2ktm1 .styles__c-modal-content___22N4k{padding:0 2rem}.styles__c-modal--large-spacing___2ktm1 .styles__c-modal-content___22N4k:last-child{padding-bottom:2rem}}.styles__c-modal-footer___3JCxm{padding:1rem 1.25rem 1.25rem}.styles__c-modal-footer--button___3AdGX button{margin-bottom:.25rem}@media (max-width:48rem){.styles__c-modal-footer--button___3AdGX button{min-width:calc(50% - .5rem)}}.styles__c-modal-section___2LJKl{border-top:.063rem solid var(--dividerColor)}.styles__c-modal-close___1M8Jn{box-sizing:border-box;position:absolute;top:1.5rem;right:1.5rem;margin:0;padding:.5rem;background-color:initial;border:0;cursor:pointer;display:block;width:2.5rem;height:2.5rem;z-index:1}@media (max-width:30rem){.styles__c-modal-close___1M8Jn{top:.813rem;right:1rem}}.styles__c-modal--small-spacing___1Qal6 .styles__c-modal-close___1M8Jn{top:1rem;right:1rem}@media (max-width:30rem){.styles__c-modal--small-spacing___1Qal6 .styles__c-modal-close___1M8Jn{top:.313rem;right:.5rem}}.styles__c-modal--closable___3Wo68 .styles__c-modal-header___38uqi{padding-right:4.5rem}.styles__c-modal--large-spacing___2ktm1 .styles__c-modal-close___1M8Jn{top:2.5rem;right:2.5rem}@media (max-width:48rem){.styles__c-modal--large-spacing___2ktm1 .styles__c-modal-close___1M8Jn{top:1.313rem;right:1.5rem}}.styles__c-modal-close--notitle___3dCIQ{top:.375rem;right:.375rem}.styles__c-modal--overflowHidden___1QDY9{overflow:hidden}.styles__c-modal-back-button___AjaZO{top:.375rem;left:.375rem;color:var(--actionColorActive)}@media (max-width:48rem){.styles__c-modal-back-button___AjaZO{top:0;left:0}}.styles__c-modal-close--notitle___3dCIQ+.styles__c-modal-content___22N4k{margin-top:3rem}.styles__NarrowContent___2rvIN{max-width:32rem}.styles__c-overlay___8W1LN{z-index:var(--zIndex-overlay);position:fixed;top:0;left:0;height:100%;width:100%;background:var(--overlay);visibility:visible;transition:opacity .3s,visibility 0s ease-out}.styles__PercentageBar___1cT4_{background-color:var(--defaultBackgroundColor);border:1px solid var(--borderMainColor);height:1.5rem;border-radius:4px}.styles__PercentageBar___1cT4_ .styles__PercentageBar__line___2AheW{height:100%;border-radius:4px}.PercentageLine__PercentageLine___VIEsK{transition:transform .3s ease;transform-origin:0 0;height:5px}.styles__c-btn-client___2ZSQt{position:relative;box-sizing:border-box;display:inline-flex;margin:0 .25rem;border-radius:.125rem;min-height:2.5rem;min-width:7rem;padding:.188rem 1rem;vertical-align:top;text-align:center;font-size:.875rem;line-height:1;text-transform:uppercase;text-decoration:none;cursor:pointer;background-color:var(--primaryColor);color:var(--primaryContrastTextColor);border:.063rem solid var(--primaryColor)}.styles__c-btn-client___2ZSQt svg{fill:currentColor}.styles__c-btn-client___2ZSQt svg+span{margin-left:.375rem}.styles__c-btn-client___2ZSQt input{cursor:pointer}.styles__c-btn-client___2ZSQt>span{display:flex;align-items:center;justify-content:center;width:100%}.styles__c-btn-client___2ZSQt[aria-disabled=true],.styles__c-btn-client___2ZSQt[disabled]{opacity:.5;cursor:not-allowed}.styles__c-btn-client___2ZSQt[aria-disabled=true] input,.styles__c-btn-client___2ZSQt[disabled] input{cursor:not-allowed}.styles__c-btn-client___2ZSQt[aria-busy=true]{opacity:.5;pointer-events:none}.styles__c-btn-client___2ZSQt:visited{color:var(--primaryContrastTextColor)}.styles__c-btn-client___2ZSQt:active,.styles__c-btn-client___2ZSQt:focus,.styles__c-btn-client___2ZSQt:hover{border-color:var(--primaryColorDark);background-color:var(--primaryColorDark)}.styles__c-btn-client___2ZSQt[aria-disabled=true]:hover,.styles__c-btn-client___2ZSQt[disabled]:hover{border-color:var(--primaryColor);background-color:var(--primaryColor)}.styles__c-btn-client___2ZSQt{background-color:var(--white);color:var(--black);border-color:var(--silver)}.styles__c-btn-client___2ZSQt:visited{color:var(--black)}.styles__c-btn-client___2ZSQt:active,.styles__c-btn-client___2ZSQt:focus,.styles__c-btn-client___2ZSQt:hover{border-color:var(--silver);background-color:var(--silver)}.styles__c-btn-client___2ZSQt[aria-disabled=true]:hover,.styles__c-btn-client___2ZSQt[disabled]:hover{border-color:var(--silver);background-color:var(--white)}.styles__c-btn-client___2ZSQt{display:flex;justify-content:center;align-items:center;height:auto;min-height:3.5rem;margin:0;padding-left:1rem;padding-right:1rem;background-color:initial;text-align:left;font-size:.813rem;font-weight:700;line-height:1.3;color:var(--slateGrey)}.styles__c-btn-client___2ZSQt:visited{color:var(--slateGrey)}.styles__c-btn-client___2ZSQt span{flex:0 1 auto}.styles__c-btn-client___2ZSQt figure{flex:0 0 2rem;margin:0 .75rem 0 0}.styles__c-input-radio___1f4CB{display:flex;align-items:center;min-width:1rem;min-height:1rem}.styles__c-input-radio___1f4CB span{position:relative;display:inline-block;padding-left:1.5rem;cursor:pointer;line-height:1.5}.styles__c-input-radio___1f4CB span:after,.styles__c-input-radio___1f4CB span:before{content:"";position:absolute;left:0;top:50%;box-sizing:border-box;width:1rem;height:1rem;border-radius:.125rem}.styles__c-input-radio___1f4CB span:before{transition:box-shadow .35s cubic-bezier(0,.89,.44,1);background-color:var(--paperBackgroundColor);box-shadow:inset 0 0 0 .125rem var(--dividerColor);transform:translateY(-50%)}.styles__c-input-radio___1f4CB span:hover:before{box-shadow:inset 0 0 0 .125rem var(--primaryColor)}.styles__c-input-radio___1f4CB span:after{background-image:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTMiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTUuMDg1IDkuNjI0TDEuMjkyIDUuODMgMCA3LjExM2w1LjA4NSA1LjA4NUwxNiAxLjI4MyAxNC43MTcgMCA1LjA4NSA5LjYyNHoiIGZpbGw9IiNmZmYiLz48L3N2Zz4=");background-size:contain;transition-duration:.2s;transition-property:opacity,transform}.styles__c-input-radio___1f4CB[aria-checked=mixed] span:after{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+PHBhdGggZD0iTTMuNDk3IDEwaDEzLjAwNiIgc3Ryb2tlPSIjRkZGIiBzdHJva2Utd2lkdGg9IjIiLz48L3N2Zz4=");background-size:contain}.styles__c-input-radio___1f4CB[aria-disabled=true] span{opacity:.5;cursor:not-allowed}.styles__c-input-radio___1f4CB[aria-disabled=true] :hover:before{box-shadow:inset 0 0 0 .125rem var(--dividerColor)}.styles__c-input-radio___1f4CB[aria-disabled=true] :before{background-color:var(--dividerColor)}.styles__c-input-radio___1f4CB input{border:0;clip:rect(0 0 0 0);clip-path:polygon(0 0,0 0,0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap}.styles__c-input-radio___1f4CB input:focus+span:before{box-shadow:inset 0 0 0 .125rem var(--primaryColor)}.styles__c-input-radio___1f4CB input:checked+span:before{box-shadow:inset 0 0 0 1rem var(--primaryColor)}.styles__c-input-radio___1f4CB input:checked+span:after{opacity:1;transform:translateY(-50%) scale(1)}.styles__c-input-radio___1f4CB input:not(:checked)+span:after{opacity:0;transform:translateY(-50%) scale(0)}.styles__c-input-radio___1f4CB.styles__is-error___5jyha span{color:var(--errorColor)}.styles__c-input-radio___1f4CB.styles__is-error___5jyha span:before{box-shadow:inset 0 0 0 .125rem var(--errorColor);background-color:var(--errorColorLight)}.styles__c-input-radio--noGutter___2gFTH span{padding-left:0}.styles__c-input-radio___1f4CB span:after,.styles__c-input-radio___1f4CB span:before{border-radius:50%}.styles__c-input-radio___1f4CB span:after{content:"";background:var(--paperBackgroundColor);border:.313rem solid var(--primaryColor);box-sizing:border-box;width:1rem;height:1rem}.styles__Table___39nEw{position:relative;display:flex;flex-direction:column;flex:1 1 100%;height:100%;text-align:left;color:var(--secondaryTextColor)}.styles__TableHead___3ZqIs{flex:0 0 2rem}@media (max-width:48rem){.styles__TableHead___3ZqIs{display:none}}.styles__TableBody___4ThMV{flex:1 1 auto;display:flex;flex-direction:column;overflow:auto}@media (max-width:48rem){.styles__TableBody___4ThMV{max-height:100%}}.styles__TableHead___3ZqIs .styles__TableRow___UyGEc,.styles__TableRow___UyGEc{box-sizing:border-box;display:flex;flex-direction:row;align-items:center;flex:0 0 auto;height:3rem;width:100%;border-top:.063rem solid var(--dividerColor)}.styles__TableHead___3ZqIs .styles__TableRow___UyGEc:hover,.styles__TableRow___UyGEc:hover{background-color:var(--actionColorHover)}@media (hover:none){.styles__TableHead___3ZqIs .styles__TableRow___UyGEc:hover,.styles__TableRow___UyGEc:hover{background-color:initial}}.styles__TableHead___3ZqIs .styles__TableRow___UyGEc:last-child,.styles__TableRow___UyGEc:last-child{border-bottom:.063rem solid var(--dividerColor)}@media (max-width:63.938rem){.styles__TableHead___3ZqIs .styles__TableRow___UyGEc,.styles__TableRow___UyGEc{max-width:100vw}}.styles__TableHead___3ZqIs .styles__TableRow___UyGEc{border:0}.styles__TableHead___3ZqIs .styles__TableRow___UyGEc:hover{background-color:initial}.styles__TableHead___3ZqIs .styles__TableRow___UyGEc:last-child{border-bottom:0}.styles__TableCell___3vgVE,.styles__TableHeader___ERsVK{box-sizing:border-box;padding:.875rem 1rem;font-size:.875rem;line-height:1.3}.styles__TableHeader___ERsVK{padding:.5rem 1rem;font-size:.75rem;font-weight:700;text-transform:uppercase}.styles__Breadcrumb___2p17B{display:flex;align-items:center;color:var(--primaryTextColor)}.styles__Breadcrumb__previousButton___1FEmP.styles__Breadcrumb__previousButton___1FEmP{margin-left:-.75rem;margin-right:.25rem}.styles__Breadcrumb__items___C99rj{flex-grow:1}.styles__Breadcrumb__previousItems___20hGg{display:flex}.styles__BreadcrumbSeparator___37ZIH{display:inline-block;margin-left:.125rem;margin-right:.125rem}.styles__c-input-text___1Tl4E[aria-disabled=true],.styles__c-input-text___1Tl4E[disabled]{cursor:not-allowed;background-color:var(--actionColorDisabledBackground);color:var(--actionColorDisabled)}.styles__c-input-text___1Tl4E[aria-disabled=true]:focus,.styles__c-input-text___1Tl4E[aria-disabled=true]:hover,.styles__c-input-text___1Tl4E[disabled]:focus,.styles__c-input-text___1Tl4E[disabled]:hover{border:.063rem solid var(--borderMainColor)}.styles__c-input-text___1Tl4E{display:inline-block;width:100%;max-width:32rem;padding:.813rem 1rem;box-sizing:border-box;border-radius:.188rem;background:var(--paperBackgroundColor);border:.063rem solid var(--borderMainColor);font-size:1rem;line-height:1.25;color:var(--primaryTextColor);outline:0}.styles__c-input-text___1Tl4E::placeholder{color:var(--secondaryTextColor);font-size:1rem}.styles__c-input-text___1Tl4E:hover{border:.063rem solid var(--hintTextColor)}.styles__c-input-text___1Tl4E:focus{border:.063rem solid var(--primaryColor);outline:0}.styles__c-input-text___1Tl4E.styles__is-error___wKsQv,.styles__c-input-text___1Tl4E:not(:focus):invalid{border:.063rem solid var(--errorColor)}.styles__c-input-text--tiny___wubKz{border-radius:.125rem;padding:.25rem .5rem .375rem}.styles__c-input-text--medium___1ISo1{border-radius:.125rem;padding:.5rem 1rem .625rem}.styles__c-input-text--large___2sSPx{border-radius:.188rem;padding:.813rem 1rem}.styles__c-input-text--fullwidth___cqKU6{max-width:100%}
|