cozy-ui 140.3.0 → 140.5.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 CHANGED
@@ -1,3 +1,18 @@
1
+ # [140.5.0](https://github.com/cozy/cozy-ui/compare/v140.4.0...v140.5.0) (2026-07-16)
2
+
3
+
4
+ ### Features
5
+
6
+ * **ColorList:** Add customColorProps prop ([4c5a23d](https://github.com/cozy/cozy-ui/commit/4c5a23d))
7
+ * **ColorPickerCustom:** Change API and behavior ([99cf242](https://github.com/cozy/cozy-ui/commit/99cf242))
8
+
9
+ # [140.4.0](https://github.com/cozy/cozy-ui/compare/v140.3.0...v140.4.0) (2026-07-16)
10
+
11
+
12
+ ### Features
13
+
14
+ * **Avatar:** Add colorToGradient func ([1b1c442](https://github.com/cozy/cozy-ui/commit/1b1c442))
15
+
1
16
  # [140.3.0](https://github.com/cozy/cozy-ui/compare/v140.2.0...v140.3.0) (2026-07-16)
2
17
 
3
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cozy-ui",
3
- "version": "140.3.0",
3
+ "version": "140.5.0",
4
4
  "description": "Cozy apps UI SDK",
5
5
  "engines": {
6
6
  "node": "24.x"
@@ -1,3 +1,5 @@
1
+ import { darken, lighten, rgbToHex } from '@material-ui/core/styles'
2
+
1
3
  export const sizeToFontSize = {
2
4
  xs: 8,
3
5
  s: 11,
@@ -58,3 +60,18 @@ export const nameToColor = (name = '') => {
58
60
  const key = makeKey(colors, name)
59
61
  return colors[key]
60
62
  }
63
+
64
+ /**
65
+ * Transorms a color to a css gradient to be used as background color
66
+ * @param {string} color - Color to be transformed
67
+ * @returns {string} css linear-gradient
68
+ */
69
+ export const colorToGradient = color => {
70
+ if (!/^#[0-9A-Fa-f]{6}$/.test(color)) {
71
+ throw new Error('Color must be an 6-HEX color')
72
+ }
73
+
74
+ return `linear-gradient(136deg, ${rgbToHex(
75
+ lighten(color, 0.17)
76
+ )} 14.84%, ${rgbToHex(darken(color, 0.15))} 96.03%)`
77
+ }
@@ -3,7 +3,12 @@ import cx from 'classnames'
3
3
  import PropTypes from 'prop-types'
4
4
  import React from 'react'
5
5
 
6
- import { colorMapping, supportedColors, nameToColor } from './helpers'
6
+ import {
7
+ colorMapping,
8
+ supportedColors,
9
+ nameToColor,
10
+ colorToGradient
11
+ } from './helpers'
7
12
  import { makeStyles } from '../styles'
8
13
  import { capitalize } from '../utils/index'
9
14
 
@@ -77,4 +82,6 @@ Avatar.defaultProps = {
77
82
  size: 'm'
78
83
  }
79
84
 
85
+ export { colorToGradient }
86
+
80
87
  export default Avatar
@@ -12,9 +12,13 @@ const ColorPickerDemo = ({ variant }) => {
12
12
  const [selectedColor, setSelectedColor] = useState('')
13
13
 
14
14
  return (
15
- <div style={{ width: (variant.medium || isMobile) ? '100%' : 180 }}>
15
+ <div style={{ width: (variant.medium || isMobile) ? '100%' : 200 }}>
16
16
  <ColorList
17
17
  size={variant.medium ? 'medium' : undefined}
18
+ customColorProps={{
19
+ enabled: true,
20
+ onClick: () => {}
21
+ }}
18
22
  selectedColor={selectedColor}
19
23
  onClick={color => {
20
24
  console.info('color :', color)
@@ -1,10 +1,11 @@
1
- import { Icon, Check } from '@linagora/twake-icons'
1
+ import { Icon, Check, Palette } from '@linagora/twake-icons'
2
2
  import propTypes from 'prop-types'
3
3
  import React from 'react'
4
4
 
5
5
  import { COLORS } from './helpers'
6
6
  import Avatar from '../Avatar'
7
7
  import ButtonBase from '../ButtonBase'
8
+ import Button from '../Buttons'
8
9
  import ImageList from '../ImageList'
9
10
  import ImageListItem from '../ImageListItem'
10
11
  import { useBreakpoints } from '../providers/Breakpoints'
@@ -14,14 +15,17 @@ const sizeToPx = {
14
15
  medium: 41
15
16
  }
16
17
 
17
- const ColorList = ({ size, selectedColor, onClick }) => {
18
+ const ColorList = ({ size, selectedColor, customColorProps, onClick }) => {
18
19
  const { isMobile } = useBreakpoints()
20
+
19
21
  const _size = size || (isMobile ? 'medium' : 'small')
22
+ const avatarSize = sizeToPx[_size]
23
+ const iconSize = _size === 'medium' ? 16 : 10
20
24
 
21
25
  return (
22
26
  <ImageList
23
27
  cols={_size === 'medium' ? 5 : 7}
24
- rowHeight={sizeToPx[_size]}
28
+ rowHeight={avatarSize}
25
29
  gap={_size === 'medium' ? 16 : 5}
26
30
  >
27
31
  {COLORS.map(color => (
@@ -35,9 +39,9 @@ const ColorList = ({ size, selectedColor, onClick }) => {
35
39
  component="div"
36
40
  onClick={() => onClick?.(color)}
37
41
  >
38
- <Avatar color={color} size={sizeToPx[_size]}>
42
+ <Avatar color={color} size={avatarSize}>
39
43
  {selectedColor?.toUpperCase() === color ? (
40
- <Icon icon={Check} size={_size === 'medium' ? 19 : 10} />
44
+ <Icon icon={Check} size={iconSize} />
41
45
  ) : (
42
46
  ' '
43
47
  )}
@@ -45,6 +49,29 @@ const ColorList = ({ size, selectedColor, onClick }) => {
45
49
  </ButtonBase>
46
50
  </ImageListItem>
47
51
  ))}
52
+ {customColorProps?.enabled && (
53
+ <ImageListItem
54
+ className="u-ta-center"
55
+ classes={{ item: 'u-ov-visible' }}
56
+ >
57
+ <Button
58
+ className="u-miw-auto u-mih-auto u-p-0 u-bdrs-circle"
59
+ variant="ghost"
60
+ style={{
61
+ width: avatarSize,
62
+ height: avatarSize,
63
+ border: '1px solid transparent',
64
+ backgroundImage:
65
+ 'linear-gradient(#fff, #fff), conic-gradient(from 0deg, #FB2C36, #AD46FF, #2B7FFF, #FB2C36)',
66
+ backgroundOrigin: 'border-box',
67
+ backgroundClip: 'padding-box, border-box'
68
+ }}
69
+ classes={{ label: 'u-flex u-w-auto' }}
70
+ label={<Icon icon={Palette} size={iconSize} color="#000" />}
71
+ onClick={() => customColorProps?.onClick()}
72
+ />
73
+ </ImageListItem>
74
+ )}
48
75
  </ImageList>
49
76
  )
50
77
  }
@@ -5,18 +5,19 @@ With saturation, hue and hex input for manual input or copy/paste.
5
5
  ```jsx
6
6
  import { useState } from 'react'
7
7
 
8
- import { BreakpointsProvider } from 'cozy-ui/transpiled/react/providers/Breakpoints'
9
- import Paper from 'cozy-ui/transpiled/react/Paper';
8
+ import DemoProvider from 'cozy-ui/docs/components/DemoProvider'
9
+ import Paper from 'cozy-ui/transpiled/react/Paper'
10
10
  import ColorPickerCustom from 'cozy-ui/transpiled/react/ColorPickerCustom'
11
11
 
12
- const [color, setColor] = useState('#aabbcc')
13
12
  ;
14
13
 
15
-
16
- <BreakpointsProvider>
14
+ <DemoProvider>
17
15
  <Paper className="u-p-1">
18
- <ColorPickerCustom color={color} setColor={setColor}/>
16
+ <ColorPickerCustom
17
+ color={'#AABBCC'}
18
+ onCancel={color => console.info('old color was:', color)}
19
+ onSave={color => console.info('color:', color)}
20
+ />
19
21
  </Paper>
20
- </BreakpointsProvider>
21
-
22
+ </DemoProvider>
22
23
  ```
@@ -1,25 +1,65 @@
1
1
  import cx from 'classnames'
2
2
  import PropTypes from 'prop-types'
3
- import React from 'react'
3
+ import React, { forwardRef, useState } from 'react'
4
4
  import { HexColorPicker, HexColorInput } from 'react-colorful'
5
+ import { useI18n, useExtendI18n } from 'twake-i18n'
5
6
 
7
+ import { locales } from './locales'
6
8
  import styles from './styles.styl'
9
+ import Button from '../../react/Buttons'
7
10
  import TextField from '../../react/TextField'
8
11
  import Typography from '../../react/Typography'
9
12
 
10
- const ColorPickerCustom = ({ color, setColor, className }) => {
13
+ // Adapts HexColorInput (color/onChange(string)) to MUI's inputComponent contract (value/onChange(event)).
14
+ // inputRef is stripped because HexColorInput doesn't handle it and would forward it to the DOM.
15
+ const ColorInput = forwardRef(
16
+ // eslint-disable-next-line no-unused-vars
17
+ ({ value, onChange, inputRef, ...props }, ref) => (
18
+ <HexColorInput
19
+ {...props}
20
+ ref={ref}
21
+ color={value}
22
+ onChange={color => onChange?.({ target: { value: color } })}
23
+ />
24
+ )
25
+ )
26
+
27
+ ColorInput.displayName = 'ColorInput'
28
+
29
+ const ColorPickerCustom = ({ className, color, onCancel, onSave }) => {
30
+ useExtendI18n(locales)
31
+ const [newColor, setNewColor] = useState(color)
32
+
33
+ const { t } = useI18n()
34
+
11
35
  return (
12
36
  <div className={cx('u-flex u-flex-column', styles.root, className)}>
13
- <HexColorPicker color={color} onChange={setColor} />
37
+ <HexColorPicker
38
+ color={newColor}
39
+ onChange={c => setNewColor(c.toUpperCase())}
40
+ />
14
41
  <div className="u-flex u-flex-row u-flex-items-center u-mt-1">
15
42
  <Typography variant="h6" className="u-mr-half">
16
43
  Hex
17
44
  </Typography>
18
45
  <TextField
19
- value={color}
20
- onChange={e => setColor(e.target.value)}
21
- inputComponent={HexColorInput}
22
46
  className={styles.input}
47
+ InputProps={{ inputComponent: ColorInput }}
48
+ inputProps={{ prefixed: true }}
49
+ value={newColor}
50
+ onChange={e => setNewColor(e.target.value.toUpperCase())}
51
+ />
52
+ </div>
53
+ <div className="u-mt-1 u-ta-right">
54
+ <Button
55
+ variant="text"
56
+ label={t('ColorPickerCustom.cancel')}
57
+ onClick={() => onCancel?.(color)}
58
+ />
59
+ <Button
60
+ variant="ghost"
61
+ label={t('ColorPickerCustom.submit')}
62
+ onClick={() => onSave?.(newColor)}
23
63
  />
24
64
  </div>
25
65
  </div>
@@ -27,9 +67,10 @@ const ColorPickerCustom = ({ color, setColor, className }) => {
27
67
  }
28
68
 
29
69
  ColorPickerCustom.propTypes = {
70
+ className: PropTypes.string,
30
71
  color: PropTypes.string,
31
- setColor: PropTypes.func,
32
- className: PropTypes.string
72
+ onSave: PropTypes.func,
73
+ onCancel: PropTypes.func
33
74
  }
34
75
 
35
76
  export default ColorPickerCustom
@@ -0,0 +1,6 @@
1
+ {
2
+ "ColorPickerCustom": {
3
+ "cancel": "Cancel",
4
+ "submit": "Save"
5
+ }
6
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "ColorPickerCustom": {
3
+ "cancel": "Annuler",
4
+ "submit": "Valider"
5
+ }
6
+ }
@@ -0,0 +1,11 @@
1
+ import en from './en.json'
2
+ import fr from './fr.json'
3
+ import ru from './ru.json'
4
+ import vi from './vi.json'
5
+
6
+ export const locales = {
7
+ en,
8
+ fr,
9
+ ru,
10
+ vi
11
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "ColorPickerCustom": {
3
+ "cancel": "отменить",
4
+ "submit": "Сохранить"
5
+ }
6
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "ColorPickerCustom": {
3
+ "cancel": "hủy",
4
+ "submit": "lưu"
5
+ }
6
+ }
@@ -17,4 +17,4 @@
17
17
  height 20px
18
18
  border-width 1px
19
19
  .input
20
- width 72px
20
+ width 80px
@@ -32,3 +32,4 @@ export namespace colorMapping {
32
32
  const moonBlue: string;
33
33
  }
34
34
  export function nameToColor(name?: string): string;
35
+ export function colorToGradient(color: string): string;
@@ -1,3 +1,4 @@
1
+ import { darken, lighten, rgbToHex } from '@material-ui/core/styles';
1
2
  export var sizeToFontSize = {
2
3
  xs: 8,
3
4
  s: 11,
@@ -46,4 +47,17 @@ export var nameToColor = function nameToColor() {
46
47
  var name = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
47
48
  var key = makeKey(colors, name);
48
49
  return colors[key];
50
+ };
51
+ /**
52
+ * Transorms a color to a css gradient to be used as background color
53
+ * @param {string} color - Color to be transformed
54
+ * @returns {string} css linear-gradient
55
+ */
56
+
57
+ export var colorToGradient = function colorToGradient(color) {
58
+ if (!/^#[0-9A-Fa-f]{6}$/.test(color)) {
59
+ throw new Error('Color must be an 6-HEX color');
60
+ }
61
+
62
+ return "linear-gradient(136deg, ".concat(rgbToHex(lighten(color, 0.17)), " 14.84%, ").concat(rgbToHex(darken(color, 0.15)), " 96.03%)");
49
63
  };
@@ -1,4 +1,6 @@
1
+ export { colorToGradient };
1
2
  export default Avatar;
3
+ import { colorToGradient } from "./helpers";
2
4
  declare function Avatar({ className, color, size, border, innerBorder, disabled, display, textColor, ...props }: {
3
5
  [x: string]: any;
4
6
  className: any;
@@ -7,7 +7,7 @@ import AvatarMui from '@material-ui/core/Avatar';
7
7
  import cx from 'classnames';
8
8
  import PropTypes from 'prop-types';
9
9
  import React from 'react';
10
- import { colorMapping, supportedColors, nameToColor } from "cozy-ui/transpiled/react/Avatar/helpers";
10
+ import { colorMapping, supportedColors, nameToColor, colorToGradient } from "cozy-ui/transpiled/react/Avatar/helpers";
11
11
  import { makeStyles } from "cozy-ui/transpiled/react/styles";
12
12
  import { capitalize } from "cozy-ui/transpiled/react/utils/index";
13
13
  var useStyles = makeStyles(function (theme) {
@@ -80,4 +80,5 @@ Avatar.defaultProps = {
80
80
  display: 'initial',
81
81
  size: 'm'
82
82
  };
83
+ export { colorToGradient };
83
84
  export default Avatar;
@@ -1,9 +1,10 @@
1
1
  export { COLORS };
2
2
  export default ColorList;
3
3
  import { COLORS } from "./helpers";
4
- declare function ColorList({ size, selectedColor, onClick }: {
4
+ declare function ColorList({ size, selectedColor, customColorProps, onClick }: {
5
5
  size: any;
6
6
  selectedColor: any;
7
+ customColorProps: any;
7
8
  onClick: any;
8
9
  }): JSX.Element;
9
10
  declare namespace ColorList {
@@ -1,9 +1,10 @@
1
- import { Icon, Check } from '@linagora/twake-icons';
1
+ import { Icon, Check, Palette } from '@linagora/twake-icons';
2
2
  import propTypes from 'prop-types';
3
3
  import React from 'react';
4
4
  import { COLORS } from "cozy-ui/transpiled/react/ColorList/helpers";
5
5
  import Avatar from "cozy-ui/transpiled/react/Avatar";
6
6
  import ButtonBase from "cozy-ui/transpiled/react/ButtonBase";
7
+ import Button from "cozy-ui/transpiled/react/Buttons";
7
8
  import ImageList from "cozy-ui/transpiled/react/ImageList";
8
9
  import ImageListItem from "cozy-ui/transpiled/react/ImageListItem";
9
10
  import { useBreakpoints } from "cozy-ui/transpiled/react/providers/Breakpoints";
@@ -15,6 +16,7 @@ var sizeToPx = {
15
16
  var ColorList = function ColorList(_ref) {
16
17
  var size = _ref.size,
17
18
  selectedColor = _ref.selectedColor,
19
+ customColorProps = _ref.customColorProps,
18
20
  _onClick = _ref.onClick;
19
21
 
20
22
  var _useBreakpoints = useBreakpoints(),
@@ -22,9 +24,11 @@ var ColorList = function ColorList(_ref) {
22
24
 
23
25
  var _size = size || (isMobile ? 'medium' : 'small');
24
26
 
27
+ var avatarSize = sizeToPx[_size];
28
+ var iconSize = _size === 'medium' ? 16 : 10;
25
29
  return /*#__PURE__*/React.createElement(ImageList, {
26
30
  cols: _size === 'medium' ? 5 : 7,
27
- rowHeight: sizeToPx[_size],
31
+ rowHeight: avatarSize,
28
32
  gap: _size === 'medium' ? 16 : 5
29
33
  }, COLORS.map(function (color) {
30
34
  return /*#__PURE__*/React.createElement(ImageListItem, {
@@ -41,12 +45,39 @@ var ColorList = function ColorList(_ref) {
41
45
  }
42
46
  }, /*#__PURE__*/React.createElement(Avatar, {
43
47
  color: color,
44
- size: sizeToPx[_size]
48
+ size: avatarSize
45
49
  }, (selectedColor === null || selectedColor === void 0 ? void 0 : selectedColor.toUpperCase()) === color ? /*#__PURE__*/React.createElement(Icon, {
46
50
  icon: Check,
47
- size: _size === 'medium' ? 19 : 10
51
+ size: iconSize
48
52
  }) : ' ')));
49
- }));
53
+ }), (customColorProps === null || customColorProps === void 0 ? void 0 : customColorProps.enabled) && /*#__PURE__*/React.createElement(ImageListItem, {
54
+ className: "u-ta-center",
55
+ classes: {
56
+ item: 'u-ov-visible'
57
+ }
58
+ }, /*#__PURE__*/React.createElement(Button, {
59
+ className: "u-miw-auto u-mih-auto u-p-0 u-bdrs-circle",
60
+ variant: "ghost",
61
+ style: {
62
+ width: avatarSize,
63
+ height: avatarSize,
64
+ border: '1px solid transparent',
65
+ backgroundImage: 'linear-gradient(#fff, #fff), conic-gradient(from 0deg, #FB2C36, #AD46FF, #2B7FFF, #FB2C36)',
66
+ backgroundOrigin: 'border-box',
67
+ backgroundClip: 'padding-box, border-box'
68
+ },
69
+ classes: {
70
+ label: 'u-flex u-w-auto'
71
+ },
72
+ label: /*#__PURE__*/React.createElement(Icon, {
73
+ icon: Palette,
74
+ size: iconSize,
75
+ color: "#000"
76
+ }),
77
+ onClick: function onClick() {
78
+ return customColorProps === null || customColorProps === void 0 ? void 0 : customColorProps.onClick();
79
+ }
80
+ })));
50
81
  };
51
82
 
52
83
  ColorList.propTypes = {
@@ -1,14 +1,16 @@
1
1
  export default ColorPickerCustom;
2
- declare function ColorPickerCustom({ color, setColor, className }: {
3
- color: any;
4
- setColor: any;
2
+ declare function ColorPickerCustom({ className, color, onCancel, onSave }: {
5
3
  className: any;
4
+ color: any;
5
+ onCancel: any;
6
+ onSave: any;
6
7
  }): JSX.Element;
7
8
  declare namespace ColorPickerCustom {
8
9
  namespace propTypes {
9
- const color: PropTypes.Requireable<string>;
10
- const setColor: PropTypes.Requireable<(...args: any[]) => any>;
11
10
  const className: PropTypes.Requireable<string>;
11
+ const color: PropTypes.Requireable<string>;
12
+ const onSave: PropTypes.Requireable<(...args: any[]) => any>;
13
+ const onCancel: PropTypes.Requireable<(...args: any[]) => any>;
12
14
  }
13
15
  }
14
16
  import PropTypes from "prop-types";
@@ -1,41 +1,103 @@
1
+ import _slicedToArray from "@babel/runtime/helpers/slicedToArray";
2
+ import _extends from "@babel/runtime/helpers/extends";
3
+ import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
4
+ var _excluded = ["value", "onChange", "inputRef"];
1
5
  import cx from 'classnames';
2
6
  import PropTypes from 'prop-types';
3
- import React from 'react';
7
+ import React, { forwardRef, useState } from 'react';
4
8
  import { HexColorPicker, HexColorInput } from 'react-colorful';
9
+ import { useI18n, useExtendI18n } from 'twake-i18n';
10
+ import { locales } from "cozy-ui/transpiled/react/ColorPickerCustom/locales";
5
11
  var styles = {
6
12
  "root": "styles__root___1wSag",
7
13
  "input": "styles__input___QRNzz"
8
14
  };
15
+ import Button from "cozy-ui/transpiled/react/Buttons";
9
16
  import TextField from "cozy-ui/transpiled/react/TextField";
10
- import Typography from "cozy-ui/transpiled/react/Typography";
17
+ import Typography from "cozy-ui/transpiled/react/Typography"; // Adapts HexColorInput (color/onChange(string)) to MUI's inputComponent contract (value/onChange(event)).
18
+ // inputRef is stripped because HexColorInput doesn't handle it and would forward it to the DOM.
19
+
20
+ var ColorInput = /*#__PURE__*/forwardRef( // eslint-disable-next-line no-unused-vars
21
+ function (_ref, ref) {
22
+ var value = _ref.value,
23
+ _onChange = _ref.onChange,
24
+ inputRef = _ref.inputRef,
25
+ props = _objectWithoutProperties(_ref, _excluded);
26
+
27
+ return /*#__PURE__*/React.createElement(HexColorInput, _extends({}, props, {
28
+ ref: ref,
29
+ color: value,
30
+ onChange: function onChange(color) {
31
+ return _onChange === null || _onChange === void 0 ? void 0 : _onChange({
32
+ target: {
33
+ value: color
34
+ }
35
+ });
36
+ }
37
+ }));
38
+ });
39
+ ColorInput.displayName = 'ColorInput';
40
+
41
+ var ColorPickerCustom = function ColorPickerCustom(_ref2) {
42
+ var className = _ref2.className,
43
+ color = _ref2.color,
44
+ onCancel = _ref2.onCancel,
45
+ onSave = _ref2.onSave;
46
+ useExtendI18n(locales);
47
+
48
+ var _useState = useState(color),
49
+ _useState2 = _slicedToArray(_useState, 2),
50
+ newColor = _useState2[0],
51
+ setNewColor = _useState2[1];
52
+
53
+ var _useI18n = useI18n(),
54
+ t = _useI18n.t;
11
55
 
12
- var ColorPickerCustom = function ColorPickerCustom(_ref) {
13
- var color = _ref.color,
14
- setColor = _ref.setColor,
15
- className = _ref.className;
16
56
  return /*#__PURE__*/React.createElement("div", {
17
57
  className: cx('u-flex u-flex-column', styles.root, className)
18
58
  }, /*#__PURE__*/React.createElement(HexColorPicker, {
19
- color: color,
20
- onChange: setColor
59
+ color: newColor,
60
+ onChange: function onChange(c) {
61
+ return setNewColor(c.toUpperCase());
62
+ }
21
63
  }), /*#__PURE__*/React.createElement("div", {
22
64
  className: "u-flex u-flex-row u-flex-items-center u-mt-1"
23
65
  }, /*#__PURE__*/React.createElement(Typography, {
24
66
  variant: "h6",
25
67
  className: "u-mr-half"
26
68
  }, "Hex"), /*#__PURE__*/React.createElement(TextField, {
27
- value: color,
28
- onChange: function onChange(e) {
29
- return setColor(e.target.value);
69
+ className: styles.input,
70
+ InputProps: {
71
+ inputComponent: ColorInput
30
72
  },
31
- inputComponent: HexColorInput,
32
- className: styles.input
73
+ inputProps: {
74
+ prefixed: true
75
+ },
76
+ value: newColor,
77
+ onChange: function onChange(e) {
78
+ return setNewColor(e.target.value.toUpperCase());
79
+ }
80
+ })), /*#__PURE__*/React.createElement("div", {
81
+ className: "u-mt-1 u-ta-right"
82
+ }, /*#__PURE__*/React.createElement(Button, {
83
+ variant: "text",
84
+ label: t('ColorPickerCustom.cancel'),
85
+ onClick: function onClick() {
86
+ return onCancel === null || onCancel === void 0 ? void 0 : onCancel(color);
87
+ }
88
+ }), /*#__PURE__*/React.createElement(Button, {
89
+ variant: "ghost",
90
+ label: t('ColorPickerCustom.submit'),
91
+ onClick: function onClick() {
92
+ return onSave === null || onSave === void 0 ? void 0 : onSave(newColor);
93
+ }
33
94
  })));
34
95
  };
35
96
 
36
97
  ColorPickerCustom.propTypes = {
98
+ className: PropTypes.string,
37
99
  color: PropTypes.string,
38
- setColor: PropTypes.func,
39
- className: PropTypes.string
100
+ onSave: PropTypes.func,
101
+ onCancel: PropTypes.func
40
102
  };
41
103
  export default ColorPickerCustom;
@@ -0,0 +1,10 @@
1
+ export namespace locales {
2
+ export { en };
3
+ export { fr };
4
+ export { ru };
5
+ export { vi };
6
+ }
7
+ import en from "./en.json";
8
+ import fr from "./fr.json";
9
+ import ru from "./ru.json";
10
+ import vi from "./vi.json";
@@ -0,0 +1,30 @@
1
+ var en = {
2
+ ColorPickerCustom: {
3
+ cancel: "Cancel",
4
+ submit: "Save"
5
+ }
6
+ };
7
+ var fr = {
8
+ ColorPickerCustom: {
9
+ cancel: "Annuler",
10
+ submit: "Valider"
11
+ }
12
+ };
13
+ var ru = {
14
+ ColorPickerCustom: {
15
+ cancel: "\u043E\u0442\u043C\u0435\u043D\u0438\u0442\u044C",
16
+ submit: "\u0421\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u044C"
17
+ }
18
+ };
19
+ var vi = {
20
+ ColorPickerCustom: {
21
+ cancel: "h\u1EE7y",
22
+ submit: "l\u01B0u"
23
+ }
24
+ };
25
+ export var locales = {
26
+ en: en,
27
+ fr: fr,
28
+ ru: ru,
29
+ vi: vi
30
+ };
@@ -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__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%}
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:80px}.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%}