@kaizen/components 0.0.0-canary-kaio-moduleres-bundler-20240308005620 → 0.0.0-canary-less-gung-ho-20240308011930

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.
Files changed (42) hide show
  1. package/dist/cjs/KaizenProvider/KaizenProvider.cjs +17 -26
  2. package/dist/cjs/KaizenProvider/KaizenProvider.cjs.map +1 -1
  3. package/dist/cjs/Notification/ToastNotification/context/ToastNotificationContext.cjs +2 -59
  4. package/dist/cjs/Notification/ToastNotification/context/ToastNotificationContext.cjs.map +1 -1
  5. package/dist/cjs/Tag/Tag.cjs +3 -123
  6. package/dist/cjs/Tag/Tag.cjs.map +1 -1
  7. package/dist/cjs/dts/Tag/Tag.d.ts +0 -4
  8. package/dist/cjs/index.css +3 -4
  9. package/dist/esm/KaizenProvider/KaizenProvider.mjs +19 -27
  10. package/dist/esm/KaizenProvider/KaizenProvider.mjs.map +1 -1
  11. package/dist/esm/Notification/ToastNotification/context/ToastNotificationContext.mjs +4 -60
  12. package/dist/esm/Notification/ToastNotification/context/ToastNotificationContext.mjs.map +1 -1
  13. package/dist/esm/Tag/Tag.mjs +3 -123
  14. package/dist/esm/Tag/Tag.mjs.map +1 -1
  15. package/dist/esm/dts/Tag/Tag.d.ts +0 -4
  16. package/dist/esm/index.css +5 -6
  17. package/dist/index.d.ts +0 -4
  18. package/dist/styles.css +1 -1
  19. package/package.json +1 -1
  20. package/src/BrandMoment/_docs/BrandMoment.stories.tsx +1 -1
  21. package/src/EmptyState/_docs/EmptyState.stickersheet.stories.tsx +1 -1
  22. package/src/Filter/Filter/_docs/Filter.stickersheet.stories.tsx +1 -1
  23. package/src/Filter/FilterDatePicker/_docs/FilterDatePicker.stickersheet.stories.tsx +1 -1
  24. package/src/Filter/FilterDateRangePicker/_docs/FilterDateRangePicker.stickersheet.stories.tsx +1 -1
  25. package/src/Filter/FilterMultiSelect/_docs/FilterMultiSelect.stories.tsx +1 -1
  26. package/src/Filter/FilterSelect/_docs/FilterSelect.stickersheet.stories.tsx +1 -1
  27. package/src/KaizenProvider/KaizenProvider.tsx +22 -22
  28. package/src/Modal/ConfirmationModal/_docs/ConfirmationModal.stories.tsx +1 -1
  29. package/src/Modal/ContextModal/_docs/ContextModal.stories.tsx +1 -1
  30. package/src/Modal/InputEditModal/_docs/InputEditModal.stories.tsx +1 -1
  31. package/src/Modal/_docs/controls.tsx +1 -1
  32. package/src/MultiSelect/_docs/MultiSelect.stickersheet.stories.tsx +1 -1
  33. package/src/Tag/Tag.tsx +3 -159
  34. package/src/__future__/Select/_docs/Select.stickersheet.stories.tsx +1 -1
  35. package/dist/cjs/KaizenProvider/subcomponents/OptionalIntlProvider/OptionalIntlProvider.cjs +0 -20
  36. package/dist/cjs/KaizenProvider/subcomponents/OptionalIntlProvider/OptionalIntlProvider.cjs.map +0 -1
  37. package/dist/cjs/Tag/Tag.module.scss.cjs +0 -38
  38. package/dist/cjs/Tag/Tag.module.scss.cjs.map +0 -1
  39. package/dist/esm/KaizenProvider/subcomponents/OptionalIntlProvider/OptionalIntlProvider.mjs +0 -18
  40. package/dist/esm/KaizenProvider/subcomponents/OptionalIntlProvider/OptionalIntlProvider.mjs.map +0 -1
  41. package/dist/esm/Tag/Tag.module.scss.mjs +0 -36
  42. package/dist/esm/Tag/Tag.module.scss.mjs.map +0 -1
@@ -1,35 +1,26 @@
1
1
  'use strict';
2
2
 
3
3
  var React = require('react');
4
- require('../Notification/InlineNotification/InlineNotification.cjs');
5
- require('../Notification/GlobalNotification/GlobalNotification.cjs');
6
- require('../Notification/ToastNotification/ToastNotification/ToastNotification.cjs');
7
- var ToastNotificationsList = require('../Notification/ToastNotification/ToastNotificationsList/ToastNotificationsList.cjs');
8
- var ToastNotificationContext = require('../Notification/ToastNotification/context/ToastNotificationContext.cjs');
9
4
  var FontDefinitions = require('./subcomponents/FontDefinitions/FontDefinitions.cjs');
10
- var OptionalIntlProvider = require('./subcomponents/OptionalIntlProvider/OptionalIntlProvider.cjs');
11
5
  const KaizenProvider = /*#__PURE__*/function () {
12
6
  const KaizenProvider = function (_a) {
13
- var children = _a.children,
14
- _b = _a.locale,
15
- locale = _b === void 0 ? "en" : _b;
16
- var _c = React.useState(false),
17
- documentIsAvailable = _c[0],
18
- setDocumentIsAvailable = _c[1];
19
- var _d = React.useState(),
20
- notificationsList = _d[0],
21
- setNotificationsList = _d[1];
22
- React.useEffect(function () {
23
- // SSR does not have a document, which is required for ToastNotificationsList.
24
- // Await document render before rendering the component.
25
- if (document !== undefined) {
26
- setNotificationsList(React.createElement(ToastNotificationsList.ToastNotificationsList, null));
27
- setDocumentIsAvailable(true);
28
- }
29
- }, [documentIsAvailable]);
30
- return React.createElement(OptionalIntlProvider.OptionalIntlProvider, {
31
- locale: locale
32
- }, React.createElement(React.Fragment, null, React.createElement(ToastNotificationContext.ToastNotificationProvider, null, notificationsList, children), React.createElement(FontDefinitions.FontDefinitions, null)));
7
+ // const [documentIsAvailable, setDocumentIsAvailable] = useState<boolean>(false)
8
+ // const [notificationsList, setNotificationsList] = useState<JSX.Element>()
9
+ var children = _a.children;
10
+ _a.locale;
11
+ // useEffect(() => {
12
+ // // SSR does not have a document, which is required for ToastNotificationsList.
13
+ // // Await document render before rendering the component.
14
+ // if (document !== undefined) {
15
+ // setNotificationsList(<ToastNotificationsList />)
16
+ // setDocumentIsAvailable(true)
17
+ // }
18
+ // }, [documentIsAvailable])
19
+ return (
20
+ // <OptionalIntlProvider locale={locale}>
21
+ React.createElement(React.Fragment, null, children, React.createElement(FontDefinitions.FontDefinitions, null))
22
+ // </OptionalIntlProvider>
23
+ );
33
24
  };
34
25
  KaizenProvider.displayName = "KaizenProvider";
35
26
  return KaizenProvider;
@@ -1 +1 @@
1
- {"version":3,"file":"KaizenProvider.cjs","sources":["../../../src/KaizenProvider/KaizenProvider.tsx"],"sourcesContent":["import React, { useEffect, useState } from \"react\"\nimport { ToastNotificationsList } from \"~components/Notification\"\nimport { ToastNotificationProvider } from \"~components/Notification/ToastNotification/context/ToastNotificationContext\"\nimport { FontDefinitions } from \"./subcomponents/FontDefinitions\"\nimport { OptionalIntlProvider } from \"./subcomponents/OptionalIntlProvider\"\n\nexport type KaizenProviderProps = {\n children: React.ReactNode\n locale?: string\n}\n\nexport const KaizenProvider = ({\n children,\n locale = \"en\",\n}: KaizenProviderProps): JSX.Element => {\n const [documentIsAvailable, setDocumentIsAvailable] = useState<boolean>(false)\n const [notificationsList, setNotificationsList] = useState<JSX.Element>()\n\n useEffect(() => {\n // SSR does not have a document, which is required for ToastNotificationsList.\n // Await document render before rendering the component.\n if (document !== undefined) {\n setNotificationsList(<ToastNotificationsList />)\n setDocumentIsAvailable(true)\n }\n }, [documentIsAvailable])\n\n return (\n <OptionalIntlProvider locale={locale}>\n <>\n <ToastNotificationProvider>\n {notificationsList}\n {children}\n </ToastNotificationProvider>\n <FontDefinitions />\n </>\n </OptionalIntlProvider>\n )\n}\n\nKaizenProvider.displayName = \"KaizenProvider\"\n"],"names":["KaizenProvider","_a","children","_b","locale","_c","useState","documentIsAvailable","setDocumentIsAvailable","_d","notificationsList","setNotificationsList","useEffect","document","undefined","React","createElement","ToastNotificationsList","OptionalIntlProvider","Fragment","ToastNotificationProvider","FontDefinitions","displayName"],"mappings":";;;;;;;;;;MAWaA,cAAc;EAAA,MAAdA,cAAc,GAAG,SAAAA,CAACC,EAGT,EAAA;IAFpB,IAAAC,QAAQ,cAAA;MACRC,EAAA,GAAAF,EAAA,CAAAG,MAAa;MAAbA,MAAM,GAAAD,EAAA,KAAA,KAAA,CAAA,GAAG,IAAI,GAAAA,EAAA;IAEP,IAAAE,EAAA,GAAgDC,KAAAA,CAAAA,QAAQ,CAAU,KAAK,CAAC;MAAvEC,mBAAmB,GAAAF,EAAA,CAAA,CAAA,CAAA;MAAEG,sBAAsB,GAAAH,EAAA,CAAA,CAAA,CAA4B;IACxE,IAAAI,EAAA,GAA4CH,cAAQ,CAAe,CAAA;MAAlEI,iBAAiB,GAAAD,EAAA,CAAA,CAAA,CAAA;MAAEE,oBAAoB,GAAAF,EAAA,CAAA,CAAA,CAA2B;IAEzEG,KAAAA,CAAAA,SAAS,CAAC,YAAA;;;MAGR,IAAIC,QAAQ,KAAKC,SAAS,EAAE;QAC1BH,oBAAoB,CAACI,KAAA,CAAAC,aAAA,CAACC,sBAAAA,CAAAA,sBAAsB,EAAA,IAAA,CAAG,CAAC;QAChDT,sBAAsB,CAAC,IAAI,CAAC;MAC7B;IACH,CAAC,EAAE,CAACD,mBAAmB,CAAC,CAAC;IAEzB,OACEQ,KAAC,CAAAC,aAAA,CAAAE,oBAAoB,CAAAA,oBAAA,EAAC;MAAAd,MAAM,EAAEA;IAAM,CAAA,EAClCW,KAAA,CAAAC,aAAA,CAAAD,KAAA,CAAAI,QAAA,EAAA,IAAA,EACEJ,KAAA,CAAAC,aAAA,CAACI,wBAAAA,CAAAA,yBAAyB,EAAA,IAAA,EACvBV,iBAAiB,EACjBR,QAAQ,CACiB,EAC5Ba,KAAA,CAAAC,aAAA,CAACK,eAAAA,CAAAA,eAAe,EAAA,IAAA,CAAG,CAClB,CACkB;EAE3B,CAAC;EAEDrB,cAAc,CAACsB,WAAW,GAAG,gBAAgB;EAAA,OA7BhCtB,cAAc;AAAA;"}
1
+ {"version":3,"file":"KaizenProvider.cjs","sources":["../../../src/KaizenProvider/KaizenProvider.tsx"],"sourcesContent":["import React from \"react\"\n// import { ToastNotificationsList } from \"~components/Notification\"\n// import { ToastNotificationProvider } from \"~components/Notification/ToastNotification/context/ToastNotificationContext\"\nimport { FontDefinitions } from \"./subcomponents/FontDefinitions\"\n// import { OptionalIntlProvider } from \"./subcomponents/OptionalIntlProvider\"\n\nexport type KaizenProviderProps = {\n children: React.ReactNode\n locale?: string\n}\n\nexport const KaizenProvider = ({\n children,\n locale = \"en\",\n}: KaizenProviderProps): JSX.Element =>\n // const [documentIsAvailable, setDocumentIsAvailable] = useState<boolean>(false)\n // const [notificationsList, setNotificationsList] = useState<JSX.Element>()\n\n // useEffect(() => {\n // // SSR does not have a document, which is required for ToastNotificationsList.\n // // Await document render before rendering the component.\n // if (document !== undefined) {\n // setNotificationsList(<ToastNotificationsList />)\n // setDocumentIsAvailable(true)\n // }\n // }, [documentIsAvailable])\n\n (\n // <OptionalIntlProvider locale={locale}>\n <>\n {/* <ToastNotificationProvider> */}\n {/* {notificationsList} */}\n {children}\n {/* </ToastNotificationProvider> */}\n <FontDefinitions />\n </>\n // </OptionalIntlProvider>\n )\n\n\nKaizenProvider.displayName = \"KaizenProvider\"\n"],"names":["KaizenProvider","_a","children","locale","React","createElement","Fragment","FontDefinitions","displayName"],"mappings":";;;;MAWaA,cAAc;EAAA,MAAdA,cAAc,GAAG,SAAAA,CAACC,EAGT,EAAA;;;IAFpB,IAAAC,QAAQ,cAAA;IACRD,EAAA,CAAAE,MAAa;;;;;;;;;IAcZ;;MAEGC,KAAA,CAAAC,aAAA,CAAAD,KAAA,CAAAE,QAAA,EAAA,IAAA,EAGKJ,QAAQ,EAEXE,KAAC,CAAAC,aAAA,CAAAE,+BAAe,OAAG;;;EAPxB,CAUA;EAGHP,cAAc,CAACQ,WAAW,GAAG,gBAAgB;EAAA,OA7BhCR,cAAc;AAAA;"}
@@ -1,8 +1,8 @@
1
1
  'use strict';
2
2
 
3
- var tslib = require('tslib');
3
+ require('tslib');
4
4
  var React = require('react');
5
- var uuid = require('uuid');
5
+ require('uuid');
6
6
  var ToastNotificationContext = React.createContext(null);
7
7
  var useToastNotificationContext = function () {
8
8
  var context = React.useContext(ToastNotificationContext);
@@ -11,62 +11,5 @@ var useToastNotificationContext = function () {
11
11
  }
12
12
  return context;
13
13
  };
14
- const ToastNotificationProvider = /*#__PURE__*/function () {
15
- const ToastNotificationProvider = function (_a) {
16
- var children = _a.children;
17
- var _b = React.useState([]),
18
- notifications = _b[0],
19
- setNotifications = _b[1];
20
- var addToastNotification = function (notification) {
21
- var uuid$1 = uuid.v4();
22
- var notificationWithId = tslib.__assign({
23
- id: uuid$1
24
- }, notification);
25
- var notificationExists = notifications.find(function (_a) {
26
- var id = _a.id;
27
- return id === notification.id;
28
- });
29
- if (!notificationExists) {
30
- setNotifications(function (existing) {
31
- return tslib.__spreadArray(tslib.__spreadArray([], existing, true), [notificationWithId], false);
32
- });
33
- }
34
- };
35
- var updateToastNotification = function (notification) {
36
- var notificationIndex = notifications.findIndex(function (_a) {
37
- var id = _a.id;
38
- return id === notification.id;
39
- });
40
- var copy = notifications.slice();
41
- copy.splice(notificationIndex, 1, notification); // Mutation to insert notification over itself
42
- setNotifications(copy);
43
- };
44
- var removeToastNotification = function (notificationID) {
45
- var notificationIndex = notifications.findIndex(function (_a) {
46
- var id = _a.id;
47
- return id === notificationID;
48
- });
49
- var copy = notifications.slice();
50
- copy.splice(notificationIndex, 1); // Mutation
51
- setNotifications(copy);
52
- };
53
- var clearToastNotifications = function () {
54
- setNotifications([]);
55
- };
56
- var value = {
57
- notifications: notifications,
58
- addToastNotification: addToastNotification,
59
- updateToastNotification: updateToastNotification,
60
- removeToastNotification: removeToastNotification,
61
- clearToastNotifications: clearToastNotifications
62
- };
63
- return React.createElement(ToastNotificationContext.Provider, {
64
- value: value
65
- }, children);
66
- };
67
- ToastNotificationProvider.displayName = "ToastNotificationProvider";
68
- return ToastNotificationProvider;
69
- }();
70
- exports.ToastNotificationProvider = ToastNotificationProvider;
71
14
  exports.useToastNotificationContext = useToastNotificationContext;
72
15
  //# sourceMappingURL=ToastNotificationContext.cjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"ToastNotificationContext.cjs","sources":["../../../../../src/Notification/ToastNotification/context/ToastNotificationContext.tsx"],"sourcesContent":["import React, { useContext, useState } from \"react\"\nimport { v4 as uuidv4 } from \"uuid\"\nimport { ToastNotificationObj } from \"../types\"\n\ntype ToastNotificationObjOptionalId = Omit<ToastNotificationObj, \"id\"> & {\n id?: string\n}\n\nexport type ToastNotificationContextValue = {\n notifications: ToastNotificationObj[]\n addToastNotification: (notification: ToastNotificationObjOptionalId) => void\n updateToastNotification: (notification: ToastNotificationObj) => void\n removeToastNotification: (notificationId: string) => void\n clearToastNotifications: () => void\n}\n\nconst ToastNotificationContext =\n React.createContext<ToastNotificationContextValue | null>(null)\n\nexport const useToastNotificationContext =\n (): ToastNotificationContextValue => {\n const context = useContext(ToastNotificationContext)\n\n if (!context) {\n throw new Error(\n \"useToastNotificationContext must be used within the ToastNotificationContext.Provider\"\n )\n }\n\n return context\n }\n\ntype ToastNotificationProviderProps = {\n children: React.ReactNode\n}\n\nexport const ToastNotificationProvider = ({\n children,\n}: ToastNotificationProviderProps): JSX.Element | null => {\n const [notifications, setNotifications] = useState<ToastNotificationObj[]>([])\n\n const addToastNotification: ToastNotificationContextValue[\"addToastNotification\"] =\n notification => {\n const uuid = uuidv4()\n const notificationWithId = { id: uuid, ...notification }\n\n const notificationExists = notifications.find(\n ({ id }) => id === notification.id\n )\n\n if (!notificationExists) {\n setNotifications(existing => [...existing, notificationWithId])\n }\n }\n\n const updateToastNotification = (\n notification: ToastNotificationObj\n ): void => {\n const notificationIndex = notifications.findIndex(\n ({ id }) => id === notification.id\n )\n\n const copy = notifications.slice()\n copy.splice(notificationIndex, 1, notification) // Mutation to insert notification over itself\n setNotifications(copy)\n }\n\n const removeToastNotification = (notificationID: string): void => {\n const notificationIndex = notifications.findIndex(\n ({ id }) => id === notificationID\n )\n const copy = notifications.slice()\n copy.splice(notificationIndex, 1) // Mutation\n setNotifications(copy)\n }\n\n const clearToastNotifications = (): void => {\n setNotifications([])\n }\n\n const value = {\n notifications,\n addToastNotification,\n updateToastNotification,\n removeToastNotification,\n clearToastNotifications,\n } satisfies ToastNotificationContextValue\n\n return (\n <ToastNotificationContext.Provider value={value}>\n {children}\n </ToastNotificationContext.Provider>\n )\n}\n\nToastNotificationProvider.displayName = \"ToastNotificationProvider\"\n"],"names":["ToastNotificationContext","React","createContext","useToastNotificationContext","context","useContext","Error","ToastNotificationProvider","_a","children","_b","useState","notifications","setNotifications","addToastNotification","notification","uuid","uuidv4","notificationWithId","id","notificationExists","find","existing","__spreadArray","updateToastNotification","notificationIndex","findIndex","copy","slice","splice","removeToastNotification","notificationID","clearToastNotifications","value","createElement","Provider","displayName"],"mappings":"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"}
1
+ {"version":3,"file":"ToastNotificationContext.cjs","sources":["../../../../../src/Notification/ToastNotification/context/ToastNotificationContext.tsx"],"sourcesContent":["import React, { useContext, useState } from \"react\"\nimport { v4 as uuidv4 } from \"uuid\"\nimport { ToastNotificationObj } from \"../types\"\n\ntype ToastNotificationObjOptionalId = Omit<ToastNotificationObj, \"id\"> & {\n id?: string\n}\n\nexport type ToastNotificationContextValue = {\n notifications: ToastNotificationObj[]\n addToastNotification: (notification: ToastNotificationObjOptionalId) => void\n updateToastNotification: (notification: ToastNotificationObj) => void\n removeToastNotification: (notificationId: string) => void\n clearToastNotifications: () => void\n}\n\nconst ToastNotificationContext =\n React.createContext<ToastNotificationContextValue | null>(null)\n\nexport const useToastNotificationContext =\n (): ToastNotificationContextValue => {\n const context = useContext(ToastNotificationContext)\n\n if (!context) {\n throw new Error(\n \"useToastNotificationContext must be used within the ToastNotificationContext.Provider\"\n )\n }\n\n return context\n }\n\ntype ToastNotificationProviderProps = {\n children: React.ReactNode\n}\n\nexport const ToastNotificationProvider = ({\n children,\n}: ToastNotificationProviderProps): JSX.Element | null => {\n const [notifications, setNotifications] = useState<ToastNotificationObj[]>([])\n\n const addToastNotification: ToastNotificationContextValue[\"addToastNotification\"] =\n notification => {\n const uuid = uuidv4()\n const notificationWithId = { id: uuid, ...notification }\n\n const notificationExists = notifications.find(\n ({ id }) => id === notification.id\n )\n\n if (!notificationExists) {\n setNotifications(existing => [...existing, notificationWithId])\n }\n }\n\n const updateToastNotification = (\n notification: ToastNotificationObj\n ): void => {\n const notificationIndex = notifications.findIndex(\n ({ id }) => id === notification.id\n )\n\n const copy = notifications.slice()\n copy.splice(notificationIndex, 1, notification) // Mutation to insert notification over itself\n setNotifications(copy)\n }\n\n const removeToastNotification = (notificationID: string): void => {\n const notificationIndex = notifications.findIndex(\n ({ id }) => id === notificationID\n )\n const copy = notifications.slice()\n copy.splice(notificationIndex, 1) // Mutation\n setNotifications(copy)\n }\n\n const clearToastNotifications = (): void => {\n setNotifications([])\n }\n\n const value = {\n notifications,\n addToastNotification,\n updateToastNotification,\n removeToastNotification,\n clearToastNotifications,\n } satisfies ToastNotificationContextValue\n\n return (\n <ToastNotificationContext.Provider value={value}>\n {children}\n </ToastNotificationContext.Provider>\n )\n}\n\nToastNotificationProvider.displayName = \"ToastNotificationProvider\"\n"],"names":["ToastNotificationContext","React","createContext","useToastNotificationContext","context","useContext","Error"],"mappings":";;;;;AAgBA,IAAMA,wBAAwB,GAC5BC,KAAK,CAACC,aAAa,CAAuC,IAAI,CAAC;AAEpD,IAAAC,2BAA2B,GACtC,SAAAA,CAAA,EAAA;EACE,IAAMC,OAAO,GAAGC,gBAAU,CAACL,wBAAwB,CAAC;EAEpD,IAAI,CAACI,OAAO,EAAE;IACZ,MAAM,IAAIE,KAAK,CACb,uFAAuF,CACxF;EACF;EAED,OAAOF,OAAO;AAChB,CAAA;"}
@@ -1,131 +1,11 @@
1
1
  'use strict';
2
2
 
3
- var tslib = require('tslib');
4
3
  var React = require('react');
5
- var classnames = require('classnames');
6
- var Avatar = require('../Avatar/Avatar.cjs');
7
- require('../Icon/subcomponents/SVG/SVG.cjs');
8
- var CautionIcon = require('../Icon/CautionIcon.cjs');
9
- var ClearIcon = require('../Icon/ClearIcon.cjs');
10
- var ExclamationIcon = require('../Icon/ExclamationIcon.cjs');
11
- var InformationIcon = require('../Icon/InformationIcon.cjs');
12
- var LiveIcon = require('../Icon/LiveIcon.cjs');
13
- var SuccessIcon = require('../Icon/SuccessIcon.cjs');
14
- var Tag_module = require('./Tag.module.scss.cjs');
15
- var isJSXElement = function (imageElementOrAvatarProps) {
16
- return "props" in imageElementOrAvatarProps;
17
- };
18
- var renderAvatar = function (imageElementOrAvatarProps) {
19
- return isJSXElement(imageElementOrAvatarProps) ? React.createElement(React.Fragment, null, imageElementOrAvatarProps) : React.createElement(Avatar.Avatar, tslib.__assign({}, imageElementOrAvatarProps, {
20
- size: "small"
21
- }));
22
- };
23
- /**
24
- * {@link https://cultureamp.atlassian.net/wiki/spaces/DesignSystem/pages/3081928978/Tags Guidance} |
25
- * {@link https://cultureamp.design/?path=/docs/components-tag--docs Storybook}
26
- */
27
4
  const Tag = /*#__PURE__*/function () {
28
5
  const Tag = function (props) {
29
- var children = props.children,
30
- _a = props.variant,
31
- variant = _a === void 0 ? "default" : _a,
32
- _b = props.size,
33
- size = _b === void 0 ? "medium" : _b,
34
- _c = props.inline,
35
- inline = _c === void 0 ? false : _c,
36
- _d = props.dismissible,
37
- dismissible = _d === void 0 ? false : _d,
38
- onDismiss = props.onDismiss,
39
- onMouseDown = props.onMouseDown,
40
- onMouseLeave = props.onMouseLeave,
41
- truncateWidth = props.truncateWidth;
42
- var isTruncated = truncateWidth && truncateWidth > 0;
43
- var canShowIcon = size === "medium";
44
- return React.createElement("div", {
45
- className: classnames(Tag_module.root, Tag_module[variant], variant === "profile" && Tag_module.default, Tag_module[size], inline && Tag_module.inline, dismissible && Tag_module.dismissible)
46
- }, React.createElement("div", {
47
- className: Tag_module.layoutContainer
48
- }, React.createElement(React.Fragment, null, canShowIcon && function () {
49
- switch (props.variant) {
50
- case "validationPositive":
51
- return React.createElement("span", {
52
- className: Tag_module.validationIcon
53
- }, React.createElement(SuccessIcon.SuccessIcon, {
54
- role: "presentation"
55
- }));
56
- case "validationNegative":
57
- return React.createElement("span", {
58
- className: Tag_module.validationIcon
59
- }, React.createElement(ExclamationIcon.ExclamationIcon, {
60
- role: "presentation"
61
- }));
62
- case "validationCautionary":
63
- return React.createElement("span", {
64
- className: Tag_module.validationIcon
65
- }, React.createElement(CautionIcon.CautionIcon, {
66
- role: "presentation"
67
- }));
68
- case "validationInformative":
69
- return React.createElement("span", {
70
- className: Tag_module.validationIcon
71
- }, React.createElement(InformationIcon.InformationIcon, {
72
- role: "presentation"
73
- }));
74
- case "profile":
75
- return React.createElement("span", {
76
- className: Tag_module.profile
77
- }, props.avatar && renderAvatar(props.avatar));
78
- default:
79
- return;
80
- }
81
- }(), React.createElement("span", {
82
- className: classnames(Tag_module.textContent, isTruncated && Tag_module.truncate),
83
- style: {
84
- maxWidth: isTruncated ? truncateWidth : undefined
85
- }
86
- }, children), dismissible && React.createElement(React.Fragment, null, React.createElement("button", {
87
- type: "button",
88
- className: Tag_module.dismissButton,
89
- onClick: onDismiss,
90
- onMouseDown: onMouseDown,
91
- onMouseLeave: onMouseLeave
92
- }, React.createElement("div", {
93
- className: Tag_module.iconWrapper
94
- }, React.createElement(ClearIcon.ClearIcon, {
95
- inheritSize: true,
96
- role: "img",
97
- "aria-label": "Dismiss"
98
- })))), variant === "statusLive" && React.createElement("span", {
99
- className: Tag_module.liveIcon
100
- }, React.createElement(LiveIcon.LiveIcon, {
101
- role: "presentation",
102
- classNameOverride: Tag_module.liveIcon_base,
103
- width: "16",
104
- height: "16",
105
- viewBox: "0 0 16 16",
106
- fill: "none"
107
- }), React.createElement(LiveIcon.LiveIcon, {
108
- role: "presentation",
109
- classNameOverride: Tag_module.liveIcon_1,
110
- width: "16",
111
- height: "16",
112
- viewBox: "0 0 16 16",
113
- fill: "none"
114
- }), React.createElement(LiveIcon.LiveIcon, {
115
- role: "presentation",
116
- classNameOverride: Tag_module.liveIcon_2,
117
- width: "16",
118
- height: "16",
119
- viewBox: "0 0 16 16",
120
- fill: "none"
121
- }), React.createElement(LiveIcon.LiveIcon, {
122
- role: "presentation",
123
- classNameOverride: Tag_module.liveIcon_3,
124
- width: "16",
125
- height: "16",
126
- viewBox: "0 0 16 16",
127
- fill: "none"
128
- })))));
6
+ var _a = props.variant,
7
+ variant = _a === void 0 ? "default" : _a;
8
+ return React.createElement("div", null, "Testing Tag component ", variant);
129
9
  };
130
10
  Tag.displayName = "Tag";
131
11
  return Tag;
@@ -1 +1 @@
1
- {"version":3,"file":"Tag.cjs","sources":["../../../src/Tag/Tag.tsx"],"sourcesContent":["import React from \"react\"\nimport classnames from \"classnames\"\nimport { Avatar, AvatarProps } from \"~components/Avatar\"\nimport {\n CautionIcon,\n ClearIcon,\n ExclamationIcon,\n InformationIcon,\n LiveIcon,\n SuccessIcon,\n} from \"~components/Icon\"\nimport { TagVariants } from \"./types\"\nimport styles from \"./Tag.module.scss\"\n\nexport type TagWithAvatarProps = Omit<DefaultTagProps, \"variant\"> & {\n variant: \"profile\"\n avatar: JSX.Element | AvatarProps\n}\n\ntype Variant = (typeof TagVariants)[number]\n\nexport interface DefaultTagProps {\n variant?: Variant\n children: React.ReactNode\n size?: \"medium\" | \"small\"\n inline?: boolean\n dismissible?: boolean\n onDismiss?: React.MouseEventHandler<HTMLSpanElement>\n onMouseDown?: React.MouseEventHandler<HTMLSpanElement>\n onMouseLeave?: React.MouseEventHandler<HTMLSpanElement>\n truncateWidth?: number\n}\n\nexport type TagProps = DefaultTagProps | TagWithAvatarProps\n\nconst isJSXElement = (\n imageElementOrAvatarProps: JSX.Element | AvatarProps\n): imageElementOrAvatarProps is JSX.Element =>\n \"props\" in imageElementOrAvatarProps\n\nconst renderAvatar = (\n imageElementOrAvatarProps: JSX.Element | AvatarProps\n): JSX.Element =>\n isJSXElement(imageElementOrAvatarProps) ? (\n <>{imageElementOrAvatarProps}</>\n ) : (\n <Avatar {...imageElementOrAvatarProps} size=\"small\" />\n )\n\n/**\n * {@link https://cultureamp.atlassian.net/wiki/spaces/DesignSystem/pages/3081928978/Tags Guidance} |\n * {@link https://cultureamp.design/?path=/docs/components-tag--docs Storybook}\n */\nexport const Tag = (props: TagProps): JSX.Element => {\n const {\n children,\n variant = \"default\",\n size = \"medium\",\n inline = false,\n dismissible = false,\n onDismiss,\n onMouseDown,\n onMouseLeave,\n truncateWidth,\n } = props\n\n const isTruncated = truncateWidth && truncateWidth > 0\n const canShowIcon = size === \"medium\"\n return (\n <div\n className={classnames(\n styles.root,\n styles[variant],\n variant === \"profile\" && styles.default,\n styles[size],\n inline && styles.inline,\n dismissible && styles.dismissible\n )}\n >\n <div className={styles.layoutContainer}>\n <>\n {canShowIcon &&\n ((): JSX.Element | void => {\n switch (props.variant) {\n case \"validationPositive\":\n return (\n <span className={styles.validationIcon}>\n <SuccessIcon role=\"presentation\" />\n </span>\n )\n case \"validationNegative\":\n return (\n <span className={styles.validationIcon}>\n <ExclamationIcon role=\"presentation\" />\n </span>\n )\n case \"validationCautionary\":\n return (\n <span className={styles.validationIcon}>\n <CautionIcon role=\"presentation\" />\n </span>\n )\n case \"validationInformative\":\n return (\n <span className={styles.validationIcon}>\n <InformationIcon role=\"presentation\" />\n </span>\n )\n case \"profile\":\n return (\n <span className={styles.profile}>\n {props.avatar && renderAvatar(props.avatar)}\n </span>\n )\n default:\n return\n }\n })()}\n <span\n className={classnames(\n styles.textContent,\n isTruncated && styles.truncate\n )}\n style={{\n maxWidth: isTruncated ? truncateWidth : undefined,\n }}\n >\n {children}\n </span>\n {dismissible && (\n <>\n <button\n type=\"button\"\n className={styles.dismissButton}\n onClick={onDismiss}\n onMouseDown={onMouseDown}\n onMouseLeave={onMouseLeave}\n >\n <div className={styles.iconWrapper}>\n <ClearIcon inheritSize role=\"img\" aria-label=\"Dismiss\" />\n </div>\n </button>\n </>\n )}\n {variant === \"statusLive\" && (\n <span className={styles.liveIcon}>\n <LiveIcon\n role=\"presentation\"\n classNameOverride={styles.liveIcon_base}\n width=\"16\"\n height=\"16\"\n viewBox=\"0 0 16 16\"\n fill=\"none\"\n />\n <LiveIcon\n role=\"presentation\"\n classNameOverride={styles.liveIcon_1}\n width=\"16\"\n height=\"16\"\n viewBox=\"0 0 16 16\"\n fill=\"none\"\n />\n <LiveIcon\n role=\"presentation\"\n classNameOverride={styles.liveIcon_2}\n width=\"16\"\n height=\"16\"\n viewBox=\"0 0 16 16\"\n fill=\"none\"\n />\n <LiveIcon\n role=\"presentation\"\n classNameOverride={styles.liveIcon_3}\n width=\"16\"\n height=\"16\"\n viewBox=\"0 0 16 16\"\n fill=\"none\"\n />\n </span>\n )}\n </>\n </div>\n </div>\n )\n}\n\nTag.displayName = \"Tag\"\n"],"names":["isJSXElement","imageElementOrAvatarProps","renderAvatar","React","createElement","Fragment","Avatar","__assign","size","Tag","props","children","_a","variant","_b","_c","inline","_d","dismissible","onDismiss","onMouseDown","onMouseLeave","truncateWidth","isTruncated","canShowIcon","className","classnames","styles","root","default","layoutContainer","validationIcon","SuccessIcon","role","ExclamationIcon","CautionIcon","InformationIcon","profile","avatar","textContent","truncate","style","maxWidth","undefined","type","dismissButton","onClick","iconWrapper","ClearIcon","inheritSize","liveIcon","LiveIcon","classNameOverride","liveIcon_base","width","height","viewBox","fill","liveIcon_1","liveIcon_2","liveIcon_3","displayName"],"mappings":";;;;;;;;;;;;;;AAmCA,IAAMA,YAAY,GAAG,SAAAA,CACnBC,yBAAoD,EAAA;EAEpD,OAAA,OAAO,IAAIA,yBAAyB;AAApC,CAAoC;AAEtC,IAAMC,YAAY,GAAG,SAAAA,CACnBD,yBAAoD,EAAA;EAEpD,OAAAD,YAAY,CAACC,yBAAyB,CAAC,GACrCE,KAAG,CAAAC,aAAA,CAAAD,KAAA,CAAAE,QAAA,EAAA,IAAA,EAAAJ,yBAAyB,CAAI,GAEhCE,KAAA,CAAAC,aAAA,CAACE,MAAAA,CAAAA,MAAM,EAAAC,KAAA,CAAAA,QAAA,CAAA,EAAA,EAAKN,yBAAyB,EAAA;IAAEO,IAAI,EAAC;GAAO,CAAA,CACpD;AAJD,CAIC;AAEH;;;AAGG;AAHH,MAIaC,GAAG;EAAA,MAAHA,GAAG,GAAG,SAAAA,CAACC,KAAe,EAAA;IAE/B,IAAAC,QAAQ,GASND,KAAK,CAAAC,QATC;MACRC,EAAA,GAQEF,KAAK,CAAAG,OARY;MAAnBA,OAAO,GAAGD,EAAA,KAAA,KAAA,CAAA,GAAA,SAAS,GAAAA,EAAA;MACnBE,EAOE,GAAAJ,KAAK,CAPQF,IAAA;MAAfA,IAAI,GAAAM,EAAA,KAAA,KAAA,CAAA,GAAG,QAAQ,GAAAA,EAAA;MACfC,EAAA,GAMEL,KAAK,CAAAM,MANO;MAAdA,MAAM,GAAGD,EAAA,KAAA,KAAA,CAAA,GAAA,KAAK,GAAAA,EAAA;MACdE,EAKE,GAAAP,KAAK,CALYQ,WAAA;MAAnBA,WAAW,GAAAD,EAAA,KAAA,KAAA,CAAA,GAAG,KAAK,GAAAA,EAAA;MACnBE,SAAS,GAIPT,KAAK,CAJES,SAAA;MACTC,WAAW,GAGTV,KAAK,CAAAU,WAHI;MACXC,YAAY,GAEVX,KAAK,CAFKW,YAAA;MACZC,aAAa,GACXZ,KAAK,CAAAY,aADM;IAGf,IAAMC,WAAW,GAAGD,aAAa,IAAIA,aAAa,GAAG,CAAC;IACtD,IAAME,WAAW,GAAGhB,IAAI,KAAK,QAAQ;IACrC,OACEL,KACE,CAAAC,aAAA,CAAA,KAAA,EAAA;MAAAqB,SAAS,EAAEC,UAAU,CACnBC,UAAM,CAACC,IAAI,EACXD,UAAM,CAACd,OAAO,CAAC,EACfA,OAAO,KAAK,SAAS,IAAIc,UAAM,CAACE,OAAO,EACvCF,UAAM,CAACnB,IAAI,CAAC,EACZQ,MAAM,IAAIW,UAAM,CAACX,MAAM,EACvBE,WAAW,IAAIS,UAAM,CAACT,WAAW;IAClC,CAAA,EAEDf,KAAA,CAAAC,aAAA,CAAA,KAAA,EAAA;MAAKqB,SAAS,EAAEE,UAAM,CAACG;IAAe,CAAA,EACpC3B,KAAA,CAAAC,aAAA,CAAAD,KAAA,CAAAE,QAAA,EAAA,IAAA,EACGmB,WAAW,IACT,YAAA;MACC,QAAQd,KAAK,CAACG,OAAO;QACnB,KAAK,oBAAoB;UACvB,OACEV,KAAM,CAAAC,aAAA,CAAA,MAAA,EAAA;YAAAqB,SAAS,EAAEE,UAAM,CAACI;UAAc,CAAA,EACpC5B,KAAC,CAAAC,aAAA,CAAA4B,WAAW,CAAAA,WAAA;YAACC,IAAI,EAAC;UAAiB,CAAA,CAAA,CAC9B;QAEX,KAAK,oBAAoB;UACvB,OACE9B,KAAM,CAAAC,aAAA,CAAA,MAAA,EAAA;YAAAqB,SAAS,EAAEE,UAAM,CAACI;UAAc,CAAA,EACpC5B,KAAC,CAAAC,aAAA,CAAA8B,eAAe,CAAAA,eAAA;YAACD,IAAI,EAAC;UAAiB,CAAA,CAAA,CAClC;QAEX,KAAK,sBAAsB;UACzB,OACE9B,KAAM,CAAAC,aAAA,CAAA,MAAA,EAAA;YAAAqB,SAAS,EAAEE,UAAM,CAACI;UAAc,CAAA,EACpC5B,KAAC,CAAAC,aAAA,CAAA+B,WAAW,CAAAA,WAAA;YAACF,IAAI,EAAC;UAAiB,CAAA,CAAA,CAC9B;QAEX,KAAK,uBAAuB;UAC1B,OACE9B,KAAM,CAAAC,aAAA,CAAA,MAAA,EAAA;YAAAqB,SAAS,EAAEE,UAAM,CAACI;UAAc,CAAA,EACpC5B,KAAC,CAAAC,aAAA,CAAAgC,eAAe,CAAAA,eAAA;YAACH,IAAI,EAAC;UAAiB,CAAA,CAAA,CAClC;QAEX,KAAK,SAAS;UACZ,OACE9B;YAAMsB,SAAS,EAAEE,UAAM,CAACU;aACrB3B,KAAK,CAAC4B,MAAM,IAAIpC,YAAY,CAACQ,KAAK,CAAC4B,MAAM,CAAC,CACtC;QAEX;UACE;MACH;IACH,CAAC,CAAG,CAAA,EACNnC,KAAA,CAAAC,aAAA,CAAA,MAAA,EAAA;MACEqB,SAAS,EAAEC,UAAU,CACnBC,UAAM,CAACY,WAAW,EAClBhB,WAAW,IAAII,UAAM,CAACa,QAAQ,CAC/B;MACDC,KAAK,EAAE;QACLC,QAAQ,EAAEnB,WAAW,GAAGD,aAAa,GAAGqB;MACzC;IAAA,CAAA,EAEAhC,QAAQ,CACJ,EACNO,WAAW,IACVf,KAAA,CAAAC,aAAA,CAAAD,KAAA,CAAAE,QAAA,EAAA,IAAA,EACEF,KACE,CAAAC,aAAA,CAAA,QAAA,EAAA;MAAAwC,IAAI,EAAC,QAAQ;MACbnB,SAAS,EAAEE,UAAM,CAACkB,aAAa;MAC/BC,OAAO,EAAE3B,SAAS;MAClBC,WAAW,EAAEA,WAAW;MACxBC,YAAY,EAAEA;IAAY,CAAA,EAE1BlB,KAAA,CAAAC,aAAA,CAAA,KAAA,EAAA;MAAKqB,SAAS,EAAEE,UAAM,CAACoB;IAAW,CAAA,EAChC5C,KAAA,CAAAC,aAAA,CAAC4C,mBAAS,EAAA;MAACC,WAAW,EAAA,IAAA;MAAChB,IAAI,EAAC,KAAK;MAAA,YAAA,EAAY;KAAS,CAAG,CACrD,CACC,CAEZ,EACApB,OAAO,KAAK,YAAY,IACvBV;MAAMsB,SAAS,EAAEE,UAAM,CAACuB;IAAQ,CAAA,EAC9B/C,KAAC,CAAAC,aAAA,CAAA+C,iBAAQ,EACP;MAAAlB,IAAI,EAAC,cAAc;MACnBmB,iBAAiB,EAAEzB,UAAM,CAAC0B,aAAa;MACvCC,KAAK,EAAC,IAAI;MACVC,MAAM,EAAC,IAAI;MACXC,OAAO,EAAC,WAAW;MACnBC,IAAI,EAAC;KACL,CAAA,EACFtD,KAAC,CAAAC,aAAA,CAAA+C,iBAAQ,EACP;MAAAlB,IAAI,EAAC,cAAc;MACnBmB,iBAAiB,EAAEzB,UAAM,CAAC+B,UAAU;MACpCJ,KAAK,EAAC,IAAI;MACVC,MAAM,EAAC,IAAI;MACXC,OAAO,EAAC,WAAW;MACnBC,IAAI,EAAC;KACL,CAAA,EACFtD,KAAC,CAAAC,aAAA,CAAA+C,iBAAQ,EACP;MAAAlB,IAAI,EAAC,cAAc;MACnBmB,iBAAiB,EAAEzB,UAAM,CAACgC,UAAU;MACpCL,KAAK,EAAC,IAAI;MACVC,MAAM,EAAC,IAAI;MACXC,OAAO,EAAC,WAAW;MACnBC,IAAI,EAAC;KACL,CAAA,EACFtD,KAAA,CAAAC,aAAA,CAAC+C,QAAAA,CAAAA,QAAQ,EAAA;MACPlB,IAAI,EAAC,cAAc;MACnBmB,iBAAiB,EAAEzB,UAAM,CAACiC,UAAU;MACpCN,KAAK,EAAC,IAAI;MACVC,MAAM,EAAC,IAAI;MACXC,OAAO,EAAC,WAAW;MACnBC,IAAI,EAAC;KAAM,CACX,CAEL,CACA,CACC,CACF;EAEV,CAAC;EAEDhD,GAAG,CAACoD,WAAW,GAAG,KAAK;EAAA,OArIVpD,GAAG;AAAA;"}
1
+ {"version":3,"file":"Tag.cjs","sources":["../../../src/Tag/Tag.tsx"],"sourcesContent":["import React from \"react\"\nimport { AvatarProps } from \"~components/Avatar\"\nimport { TagVariants } from \"./types\"\n\nexport type TagWithAvatarProps = Omit<DefaultTagProps, \"variant\"> & {\n variant: \"profile\"\n avatar: JSX.Element | AvatarProps\n}\n\ntype Variant = (typeof TagVariants)[number]\n\nexport interface DefaultTagProps {\n variant?: Variant\n children: React.ReactNode\n size?: \"medium\" | \"small\"\n inline?: boolean\n dismissible?: boolean\n onDismiss?: React.MouseEventHandler<HTMLSpanElement>\n onMouseDown?: React.MouseEventHandler<HTMLSpanElement>\n onMouseLeave?: React.MouseEventHandler<HTMLSpanElement>\n truncateWidth?: number\n}\n\nexport type TagProps = DefaultTagProps | TagWithAvatarProps\n\nexport const Tag = (props: TagProps): JSX.Element => {\n const { variant = \"default\" } = props\n return <div>Testing Tag component {variant}</div>\n}\n\nTag.displayName = \"Tag\"\n"],"names":["Tag","props","_a","variant","React","createElement","displayName"],"mappings":";;;MAyBaA,GAAG;EAAA,MAAHA,GAAG,GAAG,SAAAA,CAACC,KAAe,EAAA;IACzB,IAAAC,EAAA,GAAwBD,KAAK,CAAVE,OAAA;MAAnBA,OAAO,GAAGD,EAAA,KAAA,KAAA,CAAA,GAAA,SAAS,KAAA;IAC3B,OAAOE,KAAA,CAAAC,aAAA,CAAA,KAAA,EAAA,IAAA,4BAA4BF,OAAO,CAAO;EACnD,CAAC;EAEDH,GAAG,CAACM,WAAW,GAAG,KAAK;EAAA,OALVN,GAAG;AAAA;"}
@@ -18,10 +18,6 @@ export interface DefaultTagProps {
18
18
  truncateWidth?: number;
19
19
  }
20
20
  export type TagProps = DefaultTagProps | TagWithAvatarProps;
21
- /**
22
- * {@link https://cultureamp.atlassian.net/wiki/spaces/DesignSystem/pages/3081928978/Tags Guidance} |
23
- * {@link https://cultureamp.design/?path=/docs/components-tag--docs Storybook}
24
- */
25
21
  export declare const Tag: {
26
22
  (props: TagProps): JSX.Element;
27
23
  displayName: string;
@@ -2,8 +2,8 @@
2
2
  .Main-module_main__hMyB1{z-index:0}
3
3
  .Wrapper-module_wrapper__89WmC{background:var(--color-gray-100,#f9f9f9);display:grid;grid-template-rows:min-content 1fr min-content;min-height:100vh;position:relative}
4
4
  .FooterActions-module_footerAction__v7eL-{display:flex;flex-basis:auto;flex-grow:1}.FooterActions-module_footerActionPrevious__2XByZ{grid-area:"prev";justify-content:start}.FooterActions-module_footerActionNext__IKRta{grid-area:"next";justify-content:end}
5
- .FooterRoot-module_footerRoot__N-6nQ{align-items:center;background:var(--color-blue-500,#0168b3);display:grid;flex-grow:1;gap:var(--spacing-16,1rem);grid-template-areas:"prev stepper next";grid-template-columns:1fr 2fr 1fr;justify-content:center;padding:var(--spacing-24,1.5rem) var(--spacing-12,.75rem)}@media (min-width:768px){.FooterRoot-module_footerRoot__N-6nQ{bottom:0;grid-template-columns:1fr 5fr 1fr;padding:var(--spacing-24,1.5rem) var(--spacing-32,2rem);position:sticky;z-index:1}}
6
5
  .Actions-module_actions__Prrp0{align-items:center;display:flex;flex-direction:column;flex-grow:1;grid-area:actions;justify-content:center}@media (min-width:768px){.Actions-module_actions__Prrp0{align-items:flex-start;flex-direction:row;justify-content:flex-end;margin-top:calc(var(--spacing-12, .75rem)*-1)}}
6
+ .FooterRoot-module_footerRoot__N-6nQ{align-items:center;background:var(--color-blue-500,#0168b3);display:grid;flex-grow:1;gap:var(--spacing-16,1rem);grid-template-areas:"prev stepper next";grid-template-columns:1fr 2fr 1fr;justify-content:center;padding:var(--spacing-24,1.5rem) var(--spacing-12,.75rem)}@media (min-width:768px){.FooterRoot-module_footerRoot__N-6nQ{bottom:0;grid-template-columns:1fr 5fr 1fr;padding:var(--spacing-24,1.5rem) var(--spacing-32,2rem);position:sticky;z-index:1}}
7
7
  .Titles-module_titles__JYwU0{align-items:center;flex-grow:1;grid-area:titles;justify-content:center}.Titles-module_pageTitle__YDp9S,.Titles-module_titles__JYwU0{display:flex;flex-direction:column}.Titles-module_prefix__40x8n{margin-bottom:var(--spacing-4,.25rem)}.Titles-module_status__huuP7{margin-top:var(--spacing-8,.5rem)}
8
8
  .ProgressStepper-module_stepsContainer__WMxXN{grid-area:stepper;width:100%}.ProgressStepper-module_stepList__b1wWX{align-items:flex-end;display:none;justify-content:center;list-style:none;margin:0;padding:0}@media (min-width:768px){.ProgressStepper-module_stepList__b1wWX{display:flex}}.ProgressStepper-module_step__-Ep19{container:step/inline-size;display:flex;flex-basis:100%;flex-grow:1;justify-content:center;max-width:var(--spacing-96,6rem);overflow-wrap:break-word;position:relative}.ProgressStepper-module_stepContent__B4uFS{align-items:center;display:flex;flex-direction:column}.ProgressStepper-module_stepIndicator__-qEWT{height:1.25rem;position:relative;width:1.25rem}.ProgressStepper-module_stepName__hS4lp{display:none;font-weight:var(--typography-paragraph-bold-font-weight,600);margin-bottom:var(--spacing-12,.75rem);text-align:center}.ProgressStepper-module_stepIcon__0Kh4y{color:var(--color-white,#fff);height:1.25rem;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:1.25rem}.ProgressStepper-module_stepDivider__KEZPU{border:var(--spacing-1,.0625rem) solid var(--color-white,#fff);border-radius:var(--border-solid-border-radius,7px);display:flex;flex-grow:1;height:0;left:100%;margin:0;min-width:calc(100% - var(--spacing-24, 1.5rem));position:absolute;top:calc(100% - .625rem);transform:translateX(-50%)}[dir=rtl] .ProgressStepper-module_stepDivider__KEZPU{left:unset;right:100%;transform:translateX(50%)}.ProgressStepper-module_stepperDescription__B00hX{display:flex;justify-content:center}@media (min-width:768px){.ProgressStepper-module_stepperDescription__B00hX{height:0;overflow:hidden;position:absolute;width:0}}@container step (min-width: 4.5rem){.ProgressStepper-module_stepName__hS4lp{display:inline}}
9
9
  .Branding-module_branding__4h-rD{display:flex;flex-grow:1;grid-area:branding;justify-content:center;padding-top:var(--spacing-4,.25rem)}@media (min-width:768px){.Branding-module_branding__4h-rD{justify-content:unset}}.Branding-module_logo__vqqec{flex-basis:7.5rem}
@@ -92,8 +92,6 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs{all:unset;-webkit-ap
92
92
  .ClearAllButton-module_clearAllButton__XNkm2{white-space:nowrap}
93
93
  .FilterBar-module_filterBar__ZhQLn{background-color:var(--color-white,#fff);border-radius:var(--border-solid-border-radius,7px);box-shadow:var(--shadow-small-box-shadow,0 3px 16px rgba(0,0,0,.06),0 1px 3px rgba(0,0,0,.1));display:flex;padding:var(--spacing-8,.5rem)}.FilterBar-module_filtersContainer__v6OJn{display:flex;flex-grow:1;flex-wrap:wrap;gap:var(--spacing-8,.5rem)}
94
94
  .GuidanceBlock-module_rightMargin__-iEFa{margin-right:var(--spacing-8,.5rem)}.GuidanceBlock-module_noRightMargin__4Uy9N{margin-right:0}.GuidanceBlock-module_banner__FxKcd.GuidanceBlock-module_noMaxWidth__UzHP1{max-width:inherit}.GuidanceBlock-module_banner__FxKcd{background:var(--color-white,#fff);border:var(--border-borderless-border-width,2px) var(--border-borderless-border-style,solid) var(--border-borderless-border-color,transparent);border-radius:var(--border-solid-border-radius,7px);box-shadow:var(--shadow-small-box-shadow,0 3px 16px rgba(0,0,0,.06),0 1px 3px rgba(0,0,0,.1));color:var(--color-purple-800,#2f2438);display:flex;flex-direction:column;gap:var(--spacing-sm,.75rem);max-width:1080px;min-width:320px;padding:var(--spacing-lg,2.25rem);position:relative;top:-1px;transition:opacity var(--animation-duration-slow,.4s) ease,margin-top var(--animation-duration-fast,.3s) var(--animation-duration-slow,.4s) ease}@media (min-width:1024px){.GuidanceBlock-module_banner__FxKcd{align-items:center;flex-direction:row;gap:var(--spacing-md,1.5rem);min-height:calc(12rem - var(--spacing-lg, 2.25rem)*2);width:auto}}@media (max-width:767px){.GuidanceBlock-module_banner__FxKcd{min-width:unset}}.GuidanceBlock-module_illustrationWrapper__AEljX{display:flex}@media (min-width:768px) and (max-width:1023px){.GuidanceBlock-module_illustrationWrapper__AEljX{align-self:center;justify-content:center;padding:var(--spacing-sm,.75rem);text-align:center}}@media (max-width:767px){.GuidanceBlock-module_illustrationWrapper__AEljX{display:none}}.GuidanceBlock-module_illustration__sU1Vu{height:155px;width:155px}.GuidanceBlock-module_hasSceneIllustration__tvFRD .GuidanceBlock-module_illustration__sU1Vu{display:flex;height:auto;justify-content:center;max-height:300px;max-width:300px;width:300px}.GuidanceBlock-module_hasSceneIllustration__tvFRD .GuidanceBlock-module_illustration__sU1Vu figure{aspect-ratio:4/3;max-height:100%;max-width:100%}.GuidanceBlock-module_hasSceneIllustration__tvFRD .GuidanceBlock-module_illustration__sU1Vu img{height:100%;-o-object-fit:contain;object-fit:contain;-o-object-position:center;object-position:center}.GuidanceBlock-module_descriptionContainer__aywtY{align-self:center;flex:1;max-width:780px;text-align:center}@media (min-width:1024px){.GuidanceBlock-module_descriptionContainer__aywtY{padding:0 var(--spacing-sm,.75rem);text-align:left}}@media (max-width:767px){.GuidanceBlock-module_descriptionContainer__aywtY{margin:var(--spacing-sm,.75rem);max-width:100%}}@media (min-width:1024px){[dir=rtl] .GuidanceBlock-module_descriptionContainer__aywtY{padding:0 var(--spacing-sm,.75rem);text-align:right}}.GuidanceBlock-module_descriptionAndActions__E5BcL{align-items:center;display:flex;flex:1;gap:var(--spacing-md,1.5rem);justify-content:space-between}@media (max-width:1023px){.GuidanceBlock-module_descriptionAndActions__E5BcL{align-items:unset;flex-direction:column;width:100%}}.GuidanceBlock-module_buttonContainer__U2Hxn{display:flex;flex:1 0 auto;flex-direction:row-reverse;gap:var(--spacing-sm,.75rem);justify-content:center;min-width:-moz-max-content;min-width:max-content}@media (min-width:768px){.GuidanceBlock-module_buttonContainer__U2Hxn{text-align:center}}@media (max-width:767px){.GuidanceBlock-module_buttonContainer__U2Hxn{flex-direction:column;margin-top:var(--spacing-xs,.375rem);width:100%}}[dir=rtl] .GuidanceBlock-module_buttonContainer__U2Hxn svg{transform:rotate(180deg)}.GuidanceBlock-module_hidden__CbgXn{margin-bottom:0;opacity:0}.GuidanceBlock-module_headingWrapper__zgVmA{margin-bottom:var(--spacing-md,1.5rem)}.GuidanceBlock-module_cancel__UaIA-{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;border:none;color:inherit;color:var(--color-purple-800,#2f2438);cursor:pointer;display:inline;font:inherit;margin:0;padding:0;position:absolute;right:var(--spacing-sm,.75rem);top:var(--spacing-sm,.75rem)}.GuidanceBlock-module_cancel__UaIA- .GuidanceBlock-module_icon__y2xz8{opacity:70%;transition:var(--animation-duration-fast,.3s) opacity}.GuidanceBlock-module_cancel__UaIA-.GuidanceBlock-module_disabled__Uhgsr .GuidanceBlock-module_icon__y2xz8,.GuidanceBlock-module_cancel__UaIA-:disabled .GuidanceBlock-module_icon__y2xz8{opacity:30%}.GuidanceBlock-module_cancel__UaIA-:not(:disabled,.GuidanceBlock-module_disabled__Uhgsr).GuidanceBlock-module_active__YJaZt .GuidanceBlock-module_icon__y2xz8,.GuidanceBlock-module_cancel__UaIA-:not(:disabled,.GuidanceBlock-module_disabled__Uhgsr).GuidanceBlock-module_hover__7V9x1 .GuidanceBlock-module_icon__y2xz8,.GuidanceBlock-module_cancel__UaIA-:not(:disabled,.GuidanceBlock-module_disabled__Uhgsr):active .GuidanceBlock-module_icon__y2xz8,.GuidanceBlock-module_cancel__UaIA-:not(:disabled,.GuidanceBlock-module_disabled__Uhgsr):focus .GuidanceBlock-module_icon__y2xz8,.GuidanceBlock-module_cancel__UaIA-:not(:disabled,.GuidanceBlock-module_disabled__Uhgsr):hover .GuidanceBlock-module_icon__y2xz8{opacity:100%}.GuidanceBlock-module_positive__yENlT{background:var(--color-green-100,#e8f8f4)}.GuidanceBlock-module_negative__E-Jvh{background:var(--color-red-100,#fdeaee)}.GuidanceBlock-module_informative__ZUH4j{background:var(--color-blue-100,#e6f6ff)}.GuidanceBlock-module_cautionary__sJ1CE{background:var(--color-yellow-100,#fff9e4)}.GuidanceBlock-module_assertive__6PZlM{background:var(--color-orange-100,#fff0e8)}.GuidanceBlock-module_prominent__nn-r4{background:var(--color-purple-100,#f4edf8)}.GuidanceBlock-module_inline__GwOWR,.GuidanceBlock-module_stacked__rDupX{align-items:unset;flex-flow:row wrap;gap:var(--spacing-md,1.5rem);min-width:unset}@media (max-width:1023px){.GuidanceBlock-module_inline__GwOWR,.GuidanceBlock-module_stacked__rDupX{flex-direction:unset}}.GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_illustrationWrapper__AEljX,.GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_illustrationWrapper__AEljX{margin-right:var(--spacing-sm,.75rem)}[dir=rtl] .GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_illustrationWrapper__AEljX,[dir=rtl] .GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_illustrationWrapper__AEljX{margin-left:var(--spacing-sm,.75rem);margin-right:inherit}@media (min-width:768px) and (max-width:1023px){.GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_illustrationWrapper__AEljX,.GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_illustrationWrapper__AEljX{padding:0}}@media (max-width:767px){.GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_illustrationWrapper__AEljX,.GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_illustrationWrapper__AEljX{display:flex}}.GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_descriptionAndActions__E5BcL,.GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_descriptionAndActions__E5BcL{margin:auto 0}.GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_descriptionContainer__aywtY,.GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_descriptionContainer__aywtY{max-width:unset;min-width:320px;text-align:left}@media (min-width:1024px){.GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_descriptionContainer__aywtY,.GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_descriptionContainer__aywtY{padding:0}}@media (max-width:767px){.GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_descriptionContainer__aywtY,.GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_descriptionContainer__aywtY{margin:0}}[dir=rtl] .GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_descriptionContainer__aywtY,[dir=rtl] .GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_descriptionContainer__aywtY{text-align:right}@media (min-width:1024px){[dir=rtl] .GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_descriptionContainer__aywtY,[dir=rtl] .GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_descriptionContainer__aywtY{padding:0}}.GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_buttonContainer__U2Hxn,.GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_buttonContainer__U2Hxn{justify-content:flex-start;min-width:unset;padding-left:var(--spacing-sm,.75rem);width:unset}@media (max-width:767px){.GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_buttonContainer__U2Hxn,.GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_buttonContainer__U2Hxn{flex-direction:row-reverse}}[dir=rtl] .GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_buttonContainer__U2Hxn,[dir=rtl] .GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_buttonContainer__U2Hxn{padding-left:0;padding-right:var(--spacing-sm,.75rem)}.GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_buttonContainer__U2Hxn>*,.GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_buttonContainer__U2Hxn>*{width:unset}.GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_hasSceneIllustration__tvFRD,.GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_hasSceneIllustration__tvFRD{justify-content:center}.GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_centerContent__m3IhB,.GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_centerContent__m3IhB{flex-direction:column}.GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_centerContent__m3IhB.GuidanceBlock-module_hasSceneIllustration__tvFRD .GuidanceBlock-module_illustration__sU1Vu,.GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_centerContent__m3IhB.GuidanceBlock-module_hasSceneIllustration__tvFRD .GuidanceBlock-module_illustration__sU1Vu{width:100%}.GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_centerContent__m3IhB .GuidanceBlock-module_illustrationWrapper__AEljX,.GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_centerContent__m3IhB .GuidanceBlock-module_illustrationWrapper__AEljX{align-self:center;margin:0 auto}.GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_centerContent__m3IhB .GuidanceBlock-module_descriptionContainer__aywtY,.GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_centerContent__m3IhB .GuidanceBlock-module_descriptionContainer__aywtY{min-width:unset;text-align:center}[dir=rtl] .GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_centerContent__m3IhB .GuidanceBlock-module_descriptionContainer__aywtY,[dir=rtl] .GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_centerContent__m3IhB .GuidanceBlock-module_descriptionContainer__aywtY{text-align:center}.GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_centerContent__m3IhB .GuidanceBlock-module_buttonContainer__U2Hxn,.GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_centerContent__m3IhB .GuidanceBlock-module_buttonContainer__U2Hxn{flex-direction:column;justify-content:center;min-width:unset;padding:0}.GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_centerContent__m3IhB.GuidanceBlock-module_smallScreenTextAlignment__oWufj .GuidanceBlock-module_descriptionContainer__aywtY,.GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_centerContent__m3IhB.GuidanceBlock-module_smallScreenTextAlignment__oWufj .GuidanceBlock-module_descriptionContainer__aywtY{text-align:left}[dir=rtl] .GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_centerContent__m3IhB.GuidanceBlock-module_smallScreenTextAlignment__oWufj .GuidanceBlock-module_descriptionContainer__aywtY,[dir=rtl] .GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_centerContent__m3IhB.GuidanceBlock-module_smallScreenTextAlignment__oWufj .GuidanceBlock-module_descriptionContainer__aywtY{text-align:right}.GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_descriptionAndActions__E5BcL{align-items:unset;flex-direction:column}.GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_descriptionContainer__aywtY{align-self:flex-start}
95
- .GenericNotification-module_notification__-JP1M{box-sizing:border-box;display:flex;pointer-events:all}.GenericNotification-module_notification__-JP1M.GenericNotification-module_inline__OciO5,.GenericNotification-module_notification__-JP1M.GenericNotification-module_toast__GOVfC{border:var(--border-solid-border-width,2px) var(--border-solid-border-style,solid);border-radius:var(--border-solid-border-radius,7px);margin-bottom:var(--spacing-24,1.5rem)}.GenericNotification-module_notification__-JP1M.GenericNotification-module_inline__OciO5{min-height:46px;padding:calc(var(--spacing-6, .375rem) - var(--border-solid-border-width, 2px)) var(--spacing-12,.75rem);transition:opacity .2s ease,transform .2s ease-out,margin-top .2s ease,margin-bottom .2s ease;width:auto}.GenericNotification-module_notification__-JP1M.GenericNotification-module_toast__GOVfC{box-shadow:var(--shadow-small-box-shadow,0 3px 16px rgba(0,0,0,.06),0 1px 3px rgba(0,0,0,.1));container-type:inline-size;max-width:100%;padding:calc(var(--spacing-6, .375rem) - var(--border-solid-border-width, 2px)) 10px;transition:opacity .2s ease,transform .3s ease-out,margin-top .2s ease .2s,margin-bottom .2s ease;width:25rem;will-change:transform}.GenericNotification-module_notification__-JP1M.GenericNotification-module_global__Weka-{align-items:center;border-radius:0;border-width:0;display:flex;margin-bottom:0;position:relative;transition:margin-top .2s ease,margin-bottom .2s ease;width:100%;z-index:1030}.GenericNotification-module_notification__-JP1M.GenericNotification-module_positive__U-3HK{background:var(--color-green-100,#e8f8f4);border-color:var(--color-green-300,#8fdbc7);color:var(--color-purple-800,#2f2438)}.GenericNotification-module_notification__-JP1M.GenericNotification-module_global__Weka-.GenericNotification-module_positive__U-3HK{background-color:var(--color-green-200,#c4ede2)}.GenericNotification-module_notification__-JP1M.GenericNotification-module_informative__WLimi{background:var(--color-blue-100,#e6f6ff);border-color:var(--color-blue-300,#73c0e8);color:var(--color-purple-800,#2f2438)}.GenericNotification-module_notification__-JP1M.GenericNotification-module_global__Weka-.GenericNotification-module_informative__WLimi{background-color:var(--color-blue-200,#bde2f5)}.GenericNotification-module_notification__-JP1M.GenericNotification-module_cautionary__lneFu,.GenericNotification-module_notification__-JP1M.GenericNotification-module_security__QTALa{background:var(--color-yellow-100,#fff9e4);border-color:var(--color-yellow-400,#ffca4d);color:var(--color-purple-800,#2f2438)}.GenericNotification-module_notification__-JP1M.GenericNotification-module_global__Weka-.GenericNotification-module_cautionary__lneFu,.GenericNotification-module_notification__-JP1M.GenericNotification-module_global__Weka-.GenericNotification-module_security__QTALa{background-color:var(--color-yellow-200,#ffeeb3)}.GenericNotification-module_notification__-JP1M.GenericNotification-module_negative__lUWhD{background:var(--color-red-100,#fdeaee);border-color:var(--color-red-300,#f597a8);color:var(--color-purple-800,#2f2438)}.GenericNotification-module_notification__-JP1M.GenericNotification-module_global__Weka-.GenericNotification-module_negative__lUWhD{background-color:var(--color-red-200,#f9c2cb)}.GenericNotification-module_notification__-JP1M.GenericNotification-module_hidden__WJjct{opacity:0}.GenericNotification-module_notification__-JP1M.GenericNotification-module_hidden__WJjct.GenericNotification-module_global__Weka-,.GenericNotification-module_notification__-JP1M.GenericNotification-module_hidden__WJjct.GenericNotification-module_inline__OciO5{margin-bottom:0}.GenericNotification-module_notification__-JP1M.GenericNotification-module_hidden__WJjct.GenericNotification-module_inline__OciO5{transform:translateY(-50%);transition-timing-function:ease-in}.GenericNotification-module_notification__-JP1M.GenericNotification-module_hidden__WJjct.GenericNotification-module_toast__GOVfC{transform:translateX(50%);transition-timing-function:ease-in}.GenericNotification-module_notification__-JP1M.GenericNotification-module_hidden__WJjct.GenericNotification-module_global__Weka-{opacity:100%;z-index:1029}.GenericNotification-module_notification__-JP1M.GenericNotification-module_noBottomMargin__28nF8{margin-bottom:0}.GenericNotification-module_notification__-JP1M.GenericNotification-module_persistent__O7bgI{transition:none}.GenericNotification-module_notification__-JP1M.GenericNotification-module_subtle__kPns9{background:none;border:none;padding:0}.GenericNotification-module_icon__SDb8v{align-items:flex-start;box-sizing:content-box}.GenericNotification-module_positive__U-3HK .GenericNotification-module_icon__SDb8v{color:var(--color-green-500,#44a289)}.GenericNotification-module_informative__WLimi .GenericNotification-module_icon__SDb8v{color:var(--color-blue-500,#0168b3)}.GenericNotification-module_cautionary__lneFu .GenericNotification-module_icon__SDb8v,.GenericNotification-module_security__QTALa .GenericNotification-module_icon__SDb8v{color:var(--color-yellow-500,#ffb600)}.GenericNotification-module_negative__lUWhD .GenericNotification-module_icon__SDb8v{color:var(--color-red-500,#c93b55)}.GenericNotification-module_inline__OciO5 .GenericNotification-module_icon__SDb8v,.GenericNotification-module_toast__GOVfC .GenericNotification-module_icon__SDb8v{height:22px;margin-top:var(--spacing-6,.375rem);width:22px}.GenericNotification-module_global__Weka- .GenericNotification-module_icon__SDb8v{border-radius:var(--border-solid-border-radius,7px);color:var(--color-white,#fff);height:calc(var(--spacing-24, 1.5rem)*1.25);margin:calc(var(--spacing-24, 1.5rem)/4);padding:calc(var(--spacing-24, 1.5rem)*2/2 - var(--spacing-24, 1.5rem)*1.25/2);width:calc(var(--spacing-24, 1.5rem)*1.25)}.GenericNotification-module_global__Weka-.GenericNotification-module_positive__U-3HK .GenericNotification-module_icon__SDb8v{background-color:var(--color-green-500,#44a289)}.GenericNotification-module_global__Weka-.GenericNotification-module_informative__WLimi .GenericNotification-module_icon__SDb8v{background-color:var(--color-blue-500,#0168b3)}.GenericNotification-module_global__Weka-.GenericNotification-module_cautionary__lneFu .GenericNotification-module_icon__SDb8v,.GenericNotification-module_global__Weka-.GenericNotification-module_security__QTALa .GenericNotification-module_icon__SDb8v{background-color:var(--color-yellow-500,#ffb600)}.GenericNotification-module_global__Weka-.GenericNotification-module_negative__lUWhD .GenericNotification-module_icon__SDb8v{background-color:var(--color-red-500,#c93b55)}.GenericNotification-module_textContainer__Avpbk{box-sizing:content-box;display:flex;flex:1 0 0;flex-flow:row wrap}.GenericNotification-module_inline__OciO5 .GenericNotification-module_textContainer__Avpbk,.GenericNotification-module_toast__GOVfC .GenericNotification-module_textContainer__Avpbk{margin-inline-start:var(--spacing-6,.375rem)}.GenericNotification-module_toast__GOVfC .GenericNotification-module_textContainer__Avpbk{-webkit-hyphens:auto;hyphens:auto;margin-inline-start:var(--spacing-6,.375rem);max-width:calc(100% - var(--spacing-48, 3rem));overflow-wrap:break-word}.GenericNotification-module_global__Weka- .GenericNotification-module_textContainer__Avpbk{margin-inline-start:var(--spacing-12,.75rem);padding:calc(var(--spacing-24, 1.5rem)*.25) 0}.GenericNotification-module_inline__OciO5 .GenericNotification-module_textContainer__Avpbk{transition:opacity .2s ease}.GenericNotification-module_textContainer__Avpbk.GenericNotification-module_forceMultiline__JcVA4{flex-direction:column}.GenericNotification-module_title__dvQOr{color:inherit;font-family:var(--typography-heading-6-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-heading-6-font-size,.875rem);font-weight:var(--typography-heading-6-font-weight,700);letter-spacing:var(--typography-heading-6-letter-spacing,normal);line-height:var(--typography-heading-6-line-height,1.5rem);margin:0;padding-right:6px;position:relative;text-transform:none;top:.37em}.GenericNotification-module_text__X-5ld{color:inherit;margin:0}.GenericNotification-module_inline__OciO5 .GenericNotification-module_text__X-5ld,.GenericNotification-module_text__X-5ld,.GenericNotification-module_toast__GOVfC .GenericNotification-module_text__X-5ld{font-family:var(--typography-paragraph-small-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-paragraph-small-font-size,.875rem);font-weight:var(--typography-paragraph-small-font-weight,400);letter-spacing:var(--typography-paragraph-small-letter-spacing,normal);line-height:var(--typography-paragraph-small-line-height,1.125rem);position:relative}.GenericNotification-module_inline__OciO5 .GenericNotification-module_text__X-5ld,.GenericNotification-module_toast__GOVfC .GenericNotification-module_text__X-5ld{flex:0 1 auto;margin-top:var(--spacing-6,.375rem);padding-bottom:var(--spacing-12,.75rem);top:.21em}.GenericNotification-module_toast__GOVfC .GenericNotification-module_text__X-5ld{width:100%}.GenericNotification-module_global__Weka- .GenericNotification-module_text__X-5ld{font-size:var(--typography-paragraph-body-font-size,1rem);font-weight:var(--typography-paragraph-body-font-weight,400);letter-spacing:var(--typography-paragraph-body-letter-spacing,normal);line-height:var(--typography-paragraph-body-line-height,1.5rem);position:static}.GenericNotification-module_text__X-5ld a[href]{color:var(--color-blue-500,#0168b3);text-decoration:underline}.GenericNotification-module_text__X-5ld a[href]:hover{color:var(--color-blue-500,#0168b3);text-decoration:none}.GenericNotification-module_global__Weka- .GenericNotification-module_text__X-5ld a[href]{color:var(--color-purple-800,#2f2438)}.GenericNotification-module_text__X-5ld strong{font-weight:var(--typography-button-secondary-font-weight,500)}.GenericNotification-module_text__X-5ld p{font-weight:inherit}.GenericNotification-module_cancel__c6wky{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;border:none;color:var(--color-purple-800,#2f2438);cursor:pointer;font:inherit;margin:0;padding:0;transform:none;transition:none}.GenericNotification-module_cancel__c6wky .GenericNotification-module_icon__SDb8v{opacity:70%;transition:var(--animation-duration-fast,.3s) opacity}.GenericNotification-module_cancel__c6wky:disabled .GenericNotification-module_icon__SDb8v,.GenericNotification-module_disabled__WGBhD.GenericNotification-module_cancel__c6wky .GenericNotification-module_icon__SDb8v{opacity:30%}.GenericNotification-module_cancel__c6wky:not(:disabled,.GenericNotification-module_disabled__WGBhD).GenericNotification-module_active__-6ahb .GenericNotification-module_icon__SDb8v,.GenericNotification-module_cancel__c6wky:not(:disabled,.GenericNotification-module_disabled__WGBhD).GenericNotification-module_hover__hUURd .GenericNotification-module_icon__SDb8v,.GenericNotification-module_cancel__c6wky:not(:disabled,.GenericNotification-module_disabled__WGBhD):active .GenericNotification-module_icon__SDb8v,.GenericNotification-module_cancel__c6wky:not(:disabled,.GenericNotification-module_disabled__WGBhD):focus .GenericNotification-module_icon__SDb8v,.GenericNotification-module_cancel__c6wky:not(:disabled,.GenericNotification-module_disabled__WGBhD):hover .GenericNotification-module_icon__SDb8v{opacity:100%}.GenericNotification-module_cancel__c6wky:active{transform:translateY(1px)}.GenericNotification-module_inline__OciO5 .GenericNotification-module_cancel__c6wky,.GenericNotification-module_toast__GOVfC .GenericNotification-module_cancel__c6wky{height:var(--spacing-48,3rem);margin-bottom:calc(var(--spacing-6, .375rem)*-1);margin-top:calc(var(--spacing-6, .375rem)*-1);width:var(--spacing-48,3rem)}.GenericNotification-module_inline__OciO5 .GenericNotification-module_cancel__c6wky{margin-right:calc(var(--spacing-12, .75rem)*-1)}.GenericNotification-module_toast__GOVfC .GenericNotification-module_cancel__c6wky{margin-right:-10px}.GenericNotification-module_global__Weka- .GenericNotification-module_cancel__c6wky{height:3.75rem;margin-bottom:calc(var(--spacing-12, .75rem)*-1);margin-right:-15px;margin-top:calc(var(--spacing-12, .75rem)*-1);padding-right:calc(var(--spacing-24, 1.5rem)*.625);width:3.75rem}.GenericNotification-module_cancelLabel__HJzsk{clip:rect(0,0,0,0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.GenericNotification-module_cancel__c6wky{align-items:center;display:flex;justify-content:center;position:relative}.GenericNotification-module_cancel__c6wky:focus{outline:none}.GenericNotification-module_cancel__c6wky:focus-visible:after{background:transparent;border-color:var(--color-blue-500,#0168b3);border-radius:var(--border-focus-ring-border-radius,10px);border-style:var(--border-focus-ring-border-style,solid);border-width:var(--border-focus-ring-border-width,2px);content:"";inset:6px;pointer-events:none;position:absolute}.GenericNotification-module_notificationTitle__Oaqb8{line-height:var(--typography-heading-6-line-height,1.5rem);margin-inline-end:var(--spacing-6,.375rem);position:relative;top:.42em}@container (max-width: 25rem){.GenericNotification-module_notificationTitle__Oaqb8{width:100%}}
96
- .ToastNotificationsList-module_toastNotificationsList__APiSP{align-items:flex-end;bottom:0;display:flex;flex-direction:column;max-width:100%;overflow:hidden;padding-bottom:0;padding-top:172px;pointer-events:none;position:fixed;right:var(--spacing-md,1.5rem);top:0;z-index:1030}@media (max-width:1079px){.ToastNotificationsList-module_toastNotificationsList__APiSP{padding-top:108px}}@media (max-width:767px){.ToastNotificationsList-module_toastNotificationsList__APiSP{left:var(--spacing-md,1.5rem)}}
97
95
  @keyframes LikertScaleLegacy-module_pop__hTH48{0%{opacity:50%;-webkit-transform:scale(1)}to{opacity:0;-webkit-transform:scale(1.78)}}.LikertScaleLegacy-module_container__5wjIJ{box-sizing:border-box;position:relative;width:220px}@media only screen and (max-width:767px){.LikertScaleLegacy-module_container__5wjIJ{position:static;width:258px}}.LikertScaleLegacy-module_container__5wjIJ.LikertScaleLegacy-module_rated__KXpzU .LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_unselected__nP5p9 .LikertScaleLegacy-module_likertItemFill__yj0tC{transition:background .1s}.LikertScaleLegacy-module_container__5wjIJ.LikertScaleLegacy-module_reversed__qrwrP.LikertScaleLegacy-module_rated__KXpzU .LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_unselected__nP5p9 .LikertScaleLegacy-module_likertItemFill__yj0tC{background-color:transparent;border-color:rgba(var(--color-white-rgb,255,255,255),.65)}.LikertScaleLegacy-module_container__5wjIJ :where(.LikertScaleLegacy-module_likertItem4__0SWtD,.LikertScaleLegacy-module_likertItem5__ZF0By) .LikertScaleLegacy-module_check__3wQsx{color:#fff}.LikertScaleLegacy-module_container__5wjIJ :is(.LikertScaleLegacy-module_likertItem4__0SWtD.LikertScaleLegacy-module_suggested__0xk0D,.LikertScaleLegacy-module_likertItem5__ZF0By.LikertScaleLegacy-module_suggested__0xk0D) .LikertScaleLegacy-module_check__3wQsx{color:#fff}.LikertScaleLegacy-module_likertItemFill__yj0tC:focus,.LikertScaleLegacy-module_likertItem__LwX2w:focus{outline:none}.LikertScaleLegacy-module_likertItem__LwX2w:focus-visible .LikertScaleLegacy-module_likertItemFill__yj0tC{outline:var(--color-blue-500,#0168b3) var(--border-focus-ring-border-style,solid) var(--border-focus-ring-border-width,2px);outline-offset:1px}.LikertScaleLegacy-module_reversed__qrwrP .LikertScaleLegacy-module_likertItem__LwX2w:focus-visible .LikertScaleLegacy-module_likertItemFill__yj0tC{outline-color:var(--color-blue-300,#73c0e8)}.LikertScaleLegacy-module_itemContainer__9Vfq0{display:inline-block;font-size:0;height:37px;white-space:nowrap;width:100%}.LikertScaleLegacy-module_legend__HYNg-{left:0;position:absolute;right:0;text-align:center;top:calc(var(--spacing-md, 1.5rem)*-1)}@media only screen and (max-width:767px){.LikertScaleLegacy-module_legend__HYNg-{position:static;top:0}}.LikertScaleLegacy-module_likertItem__LwX2w{display:inline-block;font-size:1px;line-height:1;margin-left:2px;margin-right:2px;overflow-x:visible;padding:0;position:relative;width:18.5%}.LikertScaleLegacy-module_likertItem__LwX2w[dir=rtl]:first-child,[dir=rtl] .LikertScaleLegacy-module_likertItem__LwX2w:first-child{margin-left:2px}.LikertScaleLegacy-module_likertItem__LwX2w[dir=rtl]:last-child,[dir=rtl] .LikertScaleLegacy-module_likertItem__LwX2w:last-child{margin-right:2px}.LikertScaleLegacy-module_likertItem__LwX2w:first-child .LikertScaleLegacy-module_likertItemFill__yj0tC{border-bottom-left-radius:35px;border-top-left-radius:35px}[dir=rtl] .LikertScaleLegacy-module_likertItem__LwX2w:first-child .LikertScaleLegacy-module_likertItemFill__yj0tC{border-radius:0;border-bottom-right-radius:35px;border-top-right-radius:35px}.LikertScaleLegacy-module_likertItem__LwX2w:first-child .LikertScaleLegacy-module_likertItemFill__yj0tC:after{border-bottom-left-radius:35px;border-top-left-radius:35px}[dir=rtl] .LikertScaleLegacy-module_likertItem__LwX2w:first-child .LikertScaleLegacy-module_likertItemFill__yj0tC:after{border-radius:0;border-bottom-right-radius:35px;border-top-right-radius:35px}.LikertScaleLegacy-module_likertItem__LwX2w:last-child .LikertScaleLegacy-module_likertItemFill__yj0tC{border-bottom-right-radius:35px;border-top-right-radius:35px}[dir=rtl] .LikertScaleLegacy-module_likertItem__LwX2w:last-child .LikertScaleLegacy-module_likertItemFill__yj0tC{border-radius:0;border-bottom-left-radius:35px;border-top-left-radius:35px}.LikertScaleLegacy-module_likertItem__LwX2w:last-child .LikertScaleLegacy-module_likertItemFill__yj0tC:after{border-bottom-right-radius:35px;border-top-right-radius:35px}[dir=rtl] .LikertScaleLegacy-module_likertItem__LwX2w:last-child .LikertScaleLegacy-module_likertItemFill__yj0tC:after{border-radius:0;border-bottom-left-radius:35px;border-top-left-radius:35px}.LikertScaleLegacy-module_likertItem__LwX2w:first-child{margin-left:0;margin-right:2px}.LikertScaleLegacy-module_likertItem__LwX2w:last-child{margin-left:2px;margin-right:0}.LikertScaleLegacy-module_likertItem__LwX2w:after,.LikertScaleLegacy-module_likertItem__LwX2w:before{content:"";height:100%;position:absolute;right:100%;top:0;width:2px}.LikertScaleLegacy-module_likertItem__LwX2w:after{left:100%;right:auto}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb .LikertScaleLegacy-module_field1__TDRE-,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb .LikertScaleLegacy-module_field1__TDRE-:after,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D .LikertScaleLegacy-module_field1__TDRE-,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D .LikertScaleLegacy-module_field1__TDRE-:after{background-color:var(--color-yellow-300,#ffe36e)}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb .LikertScaleLegacy-module_field2__s-CD7,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb .LikertScaleLegacy-module_field2__s-CD7:after,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D .LikertScaleLegacy-module_field2__s-CD7,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D .LikertScaleLegacy-module_field2__s-CD7:after{background-color:var(--color-yellow-400,#ffca4d)}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb .LikertScaleLegacy-module_field3__xp5eQ,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb .LikertScaleLegacy-module_field3__xp5eQ:after,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D .LikertScaleLegacy-module_field3__xp5eQ,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D .LikertScaleLegacy-module_field3__xp5eQ:after{background-color:var(--color-orange-400,#ff9461)}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb .LikertScaleLegacy-module_field4__IVK7E,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb .LikertScaleLegacy-module_field4__IVK7E:after,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D .LikertScaleLegacy-module_field4__IVK7E,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D .LikertScaleLegacy-module_field4__IVK7E:after{background-color:var(--color-orange-500,#e96c2f)}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb .LikertScaleLegacy-module_field5__9sETV,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb .LikertScaleLegacy-module_field5__9sETV:after,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D .LikertScaleLegacy-module_field5__9sETV,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D .LikertScaleLegacy-module_field5__9sETV:after{background-color:var(--color-red-500,#c93b55)}.LikertScaleLegacy-module_likertItemFill__yj0tC{border:var(--border-solid-border-width,2px) var(--border-solid-border-style,solid) var(--color-gray-500,#8c8c97);height:35px;transition:background .1s,border-color .1s}.LikertScaleLegacy-module_likertItemFill__yj0tC:hover{transition:background 0s,border-color 0s}.LikertScaleLegacy-module_likertItemFill__yj0tC:after{content:" ";display:block;height:100%;pointer-events:none;width:100%}.LikertScaleLegacy-module_likertItemFill__yj0tC.LikertScaleLegacy-module_pop__hTH48:after{-webkit-animation:LikertScaleLegacy-module_pop__hTH48 .7s cubic-bezier(0,.94,.32,1) 1}.LikertScaleLegacy-module_reversed__qrwrP .LikertScaleLegacy-module_likertItemFill__yj0tC{border-color:rgba(var(--color-white-rgb,255,255,255),.65)}.LikertScaleLegacy-module_check__3wQsx{color:#000;display:block;left:50%;margin:-10px 0 0 -10px;position:absolute;top:50%}.LikertScaleLegacy-module_likertItem1__cYmY6 .LikertScaleLegacy-module_check__3wQsx{margin-left:-9px}[dir=rtl] .LikertScaleLegacy-module_likertItem1__cYmY6 .LikertScaleLegacy-module_check__3wQsx{margin-left:-11px}.LikertScaleLegacy-module_likertItem5__ZF0By .LikertScaleLegacy-module_check__3wQsx{margin-left:-12px}[dir=rtl] .LikertScaleLegacy-module_likertItem5__ZF0By .LikertScaleLegacy-module_check__3wQsx{margin-left:-9px}.LikertScaleLegacy-module_hovered__vVUN6 :where(.LikertScaleLegacy-module_likertItem4__0SWtD,.LikertScaleLegacy-module_likertItem5__ZF0By) .LikertScaleLegacy-module_check__3wQsx{color:#000}.LikertScaleLegacy-module_hovered__vVUN6.LikertScaleLegacy-module_reversed__qrwrP .LikertScaleLegacy-module_itemContainer__9Vfq0>:not(.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_likertItem__LwX2w) .LikertScaleLegacy-module_check__3wQsx{color:#fff}@media only screen and (max-width:767px){.LikertScaleLegacy-module_container__5wjIJ{min-width:258px}.LikertScaleLegacy-module_itemContainer__9Vfq0{height:50px}.LikertScaleLegacy-module_likertItem__LwX2w:first-child .LikertScaleLegacy-module_likertItemFill__yj0tC{border-bottom-left-radius:48px;border-top-left-radius:48px}[dir=rtl] .LikertScaleLegacy-module_likertItem__LwX2w:first-child .LikertScaleLegacy-module_likertItemFill__yj0tC{border-radius:0;border-bottom-right-radius:48px;border-top-right-radius:48px}.LikertScaleLegacy-module_likertItem__LwX2w:first-child .LikertScaleLegacy-module_likertItemFill__yj0tC:after{border-bottom-left-radius:48px;border-top-left-radius:48px}[dir=rtl] .LikertScaleLegacy-module_likertItem__LwX2w:first-child .LikertScaleLegacy-module_likertItemFill__yj0tC:after{border-radius:0;border-bottom-right-radius:48px;border-top-right-radius:48px}.LikertScaleLegacy-module_likertItem__LwX2w:last-child .LikertScaleLegacy-module_likertItemFill__yj0tC{border-bottom-right-radius:48px;border-top-right-radius:48px}[dir=rtl] .LikertScaleLegacy-module_likertItem__LwX2w:last-child .LikertScaleLegacy-module_likertItemFill__yj0tC{border-radius:0;border-bottom-left-radius:48px;border-top-left-radius:48px}.LikertScaleLegacy-module_likertItem__LwX2w:last-child .LikertScaleLegacy-module_likertItemFill__yj0tC:after{border-bottom-right-radius:48px;border-top-right-radius:48px}[dir=rtl] .LikertScaleLegacy-module_likertItem__LwX2w:last-child .LikertScaleLegacy-module_likertItemFill__yj0tC:after{border-radius:0;border-bottom-left-radius:48px;border-top-left-radius:48px}.LikertScaleLegacy-module_likertItemFill__yj0tC{height:48px}}@media print{.LikertScaleLegacy-module_legend__HYNg-{display:none}.LikertScaleLegacy-module_container__5wjIJ{right:2em;top:1em;width:150px}.LikertScaleLegacy-module_container__5wjIJ .LikertScaleLegacy-module_likertItem__LwX2w .LikertScaleLegacy-module_likertItemFill__yj0tC{background:#fff;border:1px solid #d7d8d8;height:25px}.LikertScaleLegacy-module_container__5wjIJ .LikertScaleLegacy-module_likertItem__LwX2w:first-child .LikertScaleLegacy-module_likertItemFill__yj0tC,.LikertScaleLegacy-module_container__5wjIJ .LikertScaleLegacy-module_likertItem__LwX2w:last-child .LikertScaleLegacy-module_likertItemFill__yj0tC{background:#fff;border-width:2px}}
98
96
  .GenericModal-module_defaultModalWidth__kG7lU{max-width:600px;min-width:300px}.GenericModal-module_backdropLayer__RNQ-U{background-color:#000;bottom:0;left:0;opacity:50%;position:fixed;right:0;top:0;z-index:1040}.GenericModal-module_backdropLayer__RNQ-U[dir=rtl],[dir=rtl] .GenericModal-module_backdropLayer__RNQ-U{left:0;right:0}.GenericModal-module_scrollLayer__A5VdY{align-items:center;bottom:0;display:flex;left:0;overflow-y:auto;position:fixed;right:0;top:0;z-index:1050}.GenericModal-module_scrollLayer__A5VdY[dir=rtl],[dir=rtl] .GenericModal-module_scrollLayer__A5VdY{left:0;right:0}.GenericModal-module_modalLayer__WfD1U{margin:auto;padding:1.5rem 0;width:100%}.GenericModal-module_animatingEnter__P3wuk{transition-duration:var(--animation-duration-fast,.3s)}.GenericModal-module_animatingEnter__P3wuk .GenericModal-module_backdropLayer__RNQ-U{animation-duration:201ms;animation-fill-mode:forwards;animation-name:GenericModal-module_fade-0-to-0-5__-4t3h}@keyframes GenericModal-module_fade-0-to-0-5__-4t3h{0%{opacity:0}to{opacity:.5}}.GenericModal-module_animatingEnter__P3wuk [data-modal]{animation-duration:var(--animation-duration-fast,.3s);animation-fill-mode:forwards;animation-name:GenericModal-module_custom-1__G0JT4;animation-timing-function:var(--animation-easing-function-bounce-in,cubic-bezier(.485,.155,.24,1.245))}@keyframes GenericModal-module_custom-1__G0JT4{0%{opacity:0;transform:scale(.5)}to{opacity:1;transform:scale(1)}}.GenericModal-module_animatingLeave__rNkKX{transition-duration:var(--animation-duration-rapid,.2s)}.GenericModal-module_animatingLeave__rNkKX .GenericModal-module_backdropLayer__RNQ-U{animation-duration:var(--animation-duration-rapid,.2s);animation-fill-mode:forwards;animation-name:GenericModal-module_fade-0-5-to-0__JkaSn}@keyframes GenericModal-module_fade-0-5-to-0__JkaSn{0%{opacity:.5}to{opacity:0}}.GenericModal-module_animatingLeave__rNkKX [data-modal]{animation-duration:var(--animation-duration-rapid,.2s);animation-fill-mode:forwards;animation-name:GenericModal-module_custom-3__oWflS;animation-timing-function:var(--animation-easing-function-bounce-out,cubic-bezier(.485,.155,.515,.845))}@keyframes GenericModal-module_custom-3__oWflS{0%{opacity:1;transform:scale(1)}to{opacity:0;transform:scale(.5)}}.GenericModal-module_unscrollable__HjRaW{overflow:hidden!important}.GenericModal-module_pseudoScrollbar__BhRqh{padding-right:15px!important}.GenericModal-module_hide__SK9PI{opacity:0;pointer-events:none}
99
97
  .ModalAccessibleDescription-module_modalDescription__gq-Mn{grid-column-start:2}
@@ -113,6 +111,8 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs{all:unset;-webkit-ap
113
111
  .MultiSelectToggle-module_multiSelectToggle__CeR4G{border:var(--border-solid-border-style,solid) var(--border-solid-border-width,2px) var(--color-gray-500,#8c8c97);border-radius:var(--border-solid-border-radius,7px);box-sizing:border-box;display:inline-flex;flex-direction:row-reverse;padding:calc(var(--spacing-12, .75rem) - var(--border-solid-border-width, 2px));position:relative;width:100%}.MultiSelectToggle-module_multiSelectToggle__CeR4G:focus-within,.MultiSelectToggle-module_multiSelectToggle__CeR4G:hover{background-color:var(--color-gray-200,#f4f4f5);border-color:var(--color-gray-600,#524e56)}.MultiSelectToggle-module_multiSelectToggle__CeR4G.MultiSelectToggle-module_error__LJZKT{border:var(--border-solid-border-style,solid) var(--border-solid-border-width,2px) var(--color-red-500,#c93b55)}.MultiSelectToggle-module_multiSelectToggle__CeR4G.MultiSelectToggle-module_caution__hFOzy{border:var(--border-solid-border-style,solid) var(--border-solid-border-width,2px) var(--color-yellow-600,#c68600)}.MultiSelectToggle-module_toggleButton__38-Qi{align-items:flex-start;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;border:none;color:inherit;color:rgba(var(--color-purple-800-rgb,47,36,56),.7);display:inline;display:inline-flex;font:inherit;margin:3px 0;padding:0}.MultiSelectToggle-module_toggleButton__38-Qi:hover{color:var(--color-purple-800,#2f2438)}.MultiSelectToggle-module_toggleButton__38-Qi:focus{color:var(--color-purple-800,#2f2438);outline:none}.MultiSelectToggle-module_toggleButton__38-Qi:focus:after{border:var(--border-focus-ring-border-style,solid) var(--border-focus-ring-border-width,2px) var(--color-blue-500,#0168b3);border-radius:var(--border-focus-ring-border-radius,10px);content:"";inset:calc(var(--border-focus-ring-border-width, 2px)*-1 + var(--border-solid-border-width, 2px)*-1 + -1px);pointer-events:none;position:absolute}.MultiSelectToggle-module_selectedItemsContainer__OawF7{align-items:flex-start;border-inline-end:1px solid transparent;display:flex;gap:var(--spacing-12,.75rem);margin-inline-end:var(--spacing-12,.75rem);padding-inline-end:var(--spacing-12,.75rem);width:100%}.MultiSelectToggle-module_selectedItemsContainer__OawF7.MultiSelectToggle-module_hasSelectedItems__S7KXg{border-inline-end-color:rgba(var(--color-gray-600-rgb,82,78,86),.2)}.MultiSelectToggle-module_selectedItems__R-byj{display:flex;flex-grow:1;flex-wrap:wrap;gap:var(--spacing-6,.375rem);list-style:none;margin:0;padding:0}.MultiSelectToggle-module_clearAllButton__yWNQi{margin:3px 0}
114
112
  .Popover-module_popover__B7k5I{background:var(--color-white,#fff);border:var(--border-focus-ring-border-width,2px) var(--border-focus-ring-border-style,solid) transparent;border-radius:var(--border-solid-border-radius,7px);box-shadow:var(--shadow-large-box-shadow,0 8px 40px rgba(0,0,0,.08),0 3px 9px rgba(0,0,0,.1));box-sizing:border-box;overflow:auto}.Popover-module_popover__B7k5I:focus{outline:none}.Popover-module_popover__B7k5I:focus-visible{border-color:var(--color-blue-500,#0168b3)}
115
113
  .MultiSelect-module_toggleContainer__AxNnf{margin-top:var(--spacing-6,.375rem)}.MultiSelect-module_popover__jI13O{padding:var(--spacing-12,.75rem)}
114
+ .GenericNotification-module_notification__-JP1M{box-sizing:border-box;display:flex;pointer-events:all}.GenericNotification-module_notification__-JP1M.GenericNotification-module_inline__OciO5,.GenericNotification-module_notification__-JP1M.GenericNotification-module_toast__GOVfC{border:var(--border-solid-border-width,2px) var(--border-solid-border-style,solid);border-radius:var(--border-solid-border-radius,7px);margin-bottom:var(--spacing-24,1.5rem)}.GenericNotification-module_notification__-JP1M.GenericNotification-module_inline__OciO5{min-height:46px;padding:calc(var(--spacing-6, .375rem) - var(--border-solid-border-width, 2px)) var(--spacing-12,.75rem);transition:opacity .2s ease,transform .2s ease-out,margin-top .2s ease,margin-bottom .2s ease;width:auto}.GenericNotification-module_notification__-JP1M.GenericNotification-module_toast__GOVfC{box-shadow:var(--shadow-small-box-shadow,0 3px 16px rgba(0,0,0,.06),0 1px 3px rgba(0,0,0,.1));container-type:inline-size;max-width:100%;padding:calc(var(--spacing-6, .375rem) - var(--border-solid-border-width, 2px)) 10px;transition:opacity .2s ease,transform .3s ease-out,margin-top .2s ease .2s,margin-bottom .2s ease;width:25rem;will-change:transform}.GenericNotification-module_notification__-JP1M.GenericNotification-module_global__Weka-{align-items:center;border-radius:0;border-width:0;display:flex;margin-bottom:0;position:relative;transition:margin-top .2s ease,margin-bottom .2s ease;width:100%;z-index:1030}.GenericNotification-module_notification__-JP1M.GenericNotification-module_positive__U-3HK{background:var(--color-green-100,#e8f8f4);border-color:var(--color-green-300,#8fdbc7);color:var(--color-purple-800,#2f2438)}.GenericNotification-module_notification__-JP1M.GenericNotification-module_global__Weka-.GenericNotification-module_positive__U-3HK{background-color:var(--color-green-200,#c4ede2)}.GenericNotification-module_notification__-JP1M.GenericNotification-module_informative__WLimi{background:var(--color-blue-100,#e6f6ff);border-color:var(--color-blue-300,#73c0e8);color:var(--color-purple-800,#2f2438)}.GenericNotification-module_notification__-JP1M.GenericNotification-module_global__Weka-.GenericNotification-module_informative__WLimi{background-color:var(--color-blue-200,#bde2f5)}.GenericNotification-module_notification__-JP1M.GenericNotification-module_cautionary__lneFu,.GenericNotification-module_notification__-JP1M.GenericNotification-module_security__QTALa{background:var(--color-yellow-100,#fff9e4);border-color:var(--color-yellow-400,#ffca4d);color:var(--color-purple-800,#2f2438)}.GenericNotification-module_notification__-JP1M.GenericNotification-module_global__Weka-.GenericNotification-module_cautionary__lneFu,.GenericNotification-module_notification__-JP1M.GenericNotification-module_global__Weka-.GenericNotification-module_security__QTALa{background-color:var(--color-yellow-200,#ffeeb3)}.GenericNotification-module_notification__-JP1M.GenericNotification-module_negative__lUWhD{background:var(--color-red-100,#fdeaee);border-color:var(--color-red-300,#f597a8);color:var(--color-purple-800,#2f2438)}.GenericNotification-module_notification__-JP1M.GenericNotification-module_global__Weka-.GenericNotification-module_negative__lUWhD{background-color:var(--color-red-200,#f9c2cb)}.GenericNotification-module_notification__-JP1M.GenericNotification-module_hidden__WJjct{opacity:0}.GenericNotification-module_notification__-JP1M.GenericNotification-module_hidden__WJjct.GenericNotification-module_global__Weka-,.GenericNotification-module_notification__-JP1M.GenericNotification-module_hidden__WJjct.GenericNotification-module_inline__OciO5{margin-bottom:0}.GenericNotification-module_notification__-JP1M.GenericNotification-module_hidden__WJjct.GenericNotification-module_inline__OciO5{transform:translateY(-50%);transition-timing-function:ease-in}.GenericNotification-module_notification__-JP1M.GenericNotification-module_hidden__WJjct.GenericNotification-module_toast__GOVfC{transform:translateX(50%);transition-timing-function:ease-in}.GenericNotification-module_notification__-JP1M.GenericNotification-module_hidden__WJjct.GenericNotification-module_global__Weka-{opacity:100%;z-index:1029}.GenericNotification-module_notification__-JP1M.GenericNotification-module_noBottomMargin__28nF8{margin-bottom:0}.GenericNotification-module_notification__-JP1M.GenericNotification-module_persistent__O7bgI{transition:none}.GenericNotification-module_notification__-JP1M.GenericNotification-module_subtle__kPns9{background:none;border:none;padding:0}.GenericNotification-module_icon__SDb8v{align-items:flex-start;box-sizing:content-box}.GenericNotification-module_positive__U-3HK .GenericNotification-module_icon__SDb8v{color:var(--color-green-500,#44a289)}.GenericNotification-module_informative__WLimi .GenericNotification-module_icon__SDb8v{color:var(--color-blue-500,#0168b3)}.GenericNotification-module_cautionary__lneFu .GenericNotification-module_icon__SDb8v,.GenericNotification-module_security__QTALa .GenericNotification-module_icon__SDb8v{color:var(--color-yellow-500,#ffb600)}.GenericNotification-module_negative__lUWhD .GenericNotification-module_icon__SDb8v{color:var(--color-red-500,#c93b55)}.GenericNotification-module_inline__OciO5 .GenericNotification-module_icon__SDb8v,.GenericNotification-module_toast__GOVfC .GenericNotification-module_icon__SDb8v{height:22px;margin-top:var(--spacing-6,.375rem);width:22px}.GenericNotification-module_global__Weka- .GenericNotification-module_icon__SDb8v{border-radius:var(--border-solid-border-radius,7px);color:var(--color-white,#fff);height:calc(var(--spacing-24, 1.5rem)*1.25);margin:calc(var(--spacing-24, 1.5rem)/4);padding:calc(var(--spacing-24, 1.5rem)*2/2 - var(--spacing-24, 1.5rem)*1.25/2);width:calc(var(--spacing-24, 1.5rem)*1.25)}.GenericNotification-module_global__Weka-.GenericNotification-module_positive__U-3HK .GenericNotification-module_icon__SDb8v{background-color:var(--color-green-500,#44a289)}.GenericNotification-module_global__Weka-.GenericNotification-module_informative__WLimi .GenericNotification-module_icon__SDb8v{background-color:var(--color-blue-500,#0168b3)}.GenericNotification-module_global__Weka-.GenericNotification-module_cautionary__lneFu .GenericNotification-module_icon__SDb8v,.GenericNotification-module_global__Weka-.GenericNotification-module_security__QTALa .GenericNotification-module_icon__SDb8v{background-color:var(--color-yellow-500,#ffb600)}.GenericNotification-module_global__Weka-.GenericNotification-module_negative__lUWhD .GenericNotification-module_icon__SDb8v{background-color:var(--color-red-500,#c93b55)}.GenericNotification-module_textContainer__Avpbk{box-sizing:content-box;display:flex;flex:1 0 0;flex-flow:row wrap}.GenericNotification-module_inline__OciO5 .GenericNotification-module_textContainer__Avpbk,.GenericNotification-module_toast__GOVfC .GenericNotification-module_textContainer__Avpbk{margin-inline-start:var(--spacing-6,.375rem)}.GenericNotification-module_toast__GOVfC .GenericNotification-module_textContainer__Avpbk{-webkit-hyphens:auto;hyphens:auto;margin-inline-start:var(--spacing-6,.375rem);max-width:calc(100% - var(--spacing-48, 3rem));overflow-wrap:break-word}.GenericNotification-module_global__Weka- .GenericNotification-module_textContainer__Avpbk{margin-inline-start:var(--spacing-12,.75rem);padding:calc(var(--spacing-24, 1.5rem)*.25) 0}.GenericNotification-module_inline__OciO5 .GenericNotification-module_textContainer__Avpbk{transition:opacity .2s ease}.GenericNotification-module_textContainer__Avpbk.GenericNotification-module_forceMultiline__JcVA4{flex-direction:column}.GenericNotification-module_title__dvQOr{color:inherit;font-family:var(--typography-heading-6-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-heading-6-font-size,.875rem);font-weight:var(--typography-heading-6-font-weight,700);letter-spacing:var(--typography-heading-6-letter-spacing,normal);line-height:var(--typography-heading-6-line-height,1.5rem);margin:0;padding-right:6px;position:relative;text-transform:none;top:.37em}.GenericNotification-module_text__X-5ld{color:inherit;margin:0}.GenericNotification-module_inline__OciO5 .GenericNotification-module_text__X-5ld,.GenericNotification-module_text__X-5ld,.GenericNotification-module_toast__GOVfC .GenericNotification-module_text__X-5ld{font-family:var(--typography-paragraph-small-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-paragraph-small-font-size,.875rem);font-weight:var(--typography-paragraph-small-font-weight,400);letter-spacing:var(--typography-paragraph-small-letter-spacing,normal);line-height:var(--typography-paragraph-small-line-height,1.125rem);position:relative}.GenericNotification-module_inline__OciO5 .GenericNotification-module_text__X-5ld,.GenericNotification-module_toast__GOVfC .GenericNotification-module_text__X-5ld{flex:0 1 auto;margin-top:var(--spacing-6,.375rem);padding-bottom:var(--spacing-12,.75rem);top:.21em}.GenericNotification-module_toast__GOVfC .GenericNotification-module_text__X-5ld{width:100%}.GenericNotification-module_global__Weka- .GenericNotification-module_text__X-5ld{font-size:var(--typography-paragraph-body-font-size,1rem);font-weight:var(--typography-paragraph-body-font-weight,400);letter-spacing:var(--typography-paragraph-body-letter-spacing,normal);line-height:var(--typography-paragraph-body-line-height,1.5rem);position:static}.GenericNotification-module_text__X-5ld a[href]{color:var(--color-blue-500,#0168b3);text-decoration:underline}.GenericNotification-module_text__X-5ld a[href]:hover{color:var(--color-blue-500,#0168b3);text-decoration:none}.GenericNotification-module_global__Weka- .GenericNotification-module_text__X-5ld a[href]{color:var(--color-purple-800,#2f2438)}.GenericNotification-module_text__X-5ld strong{font-weight:var(--typography-button-secondary-font-weight,500)}.GenericNotification-module_text__X-5ld p{font-weight:inherit}.GenericNotification-module_cancel__c6wky{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;border:none;color:var(--color-purple-800,#2f2438);cursor:pointer;font:inherit;margin:0;padding:0;transform:none;transition:none}.GenericNotification-module_cancel__c6wky .GenericNotification-module_icon__SDb8v{opacity:70%;transition:var(--animation-duration-fast,.3s) opacity}.GenericNotification-module_cancel__c6wky:disabled .GenericNotification-module_icon__SDb8v,.GenericNotification-module_disabled__WGBhD.GenericNotification-module_cancel__c6wky .GenericNotification-module_icon__SDb8v{opacity:30%}.GenericNotification-module_cancel__c6wky:not(:disabled,.GenericNotification-module_disabled__WGBhD).GenericNotification-module_active__-6ahb .GenericNotification-module_icon__SDb8v,.GenericNotification-module_cancel__c6wky:not(:disabled,.GenericNotification-module_disabled__WGBhD).GenericNotification-module_hover__hUURd .GenericNotification-module_icon__SDb8v,.GenericNotification-module_cancel__c6wky:not(:disabled,.GenericNotification-module_disabled__WGBhD):active .GenericNotification-module_icon__SDb8v,.GenericNotification-module_cancel__c6wky:not(:disabled,.GenericNotification-module_disabled__WGBhD):focus .GenericNotification-module_icon__SDb8v,.GenericNotification-module_cancel__c6wky:not(:disabled,.GenericNotification-module_disabled__WGBhD):hover .GenericNotification-module_icon__SDb8v{opacity:100%}.GenericNotification-module_cancel__c6wky:active{transform:translateY(1px)}.GenericNotification-module_inline__OciO5 .GenericNotification-module_cancel__c6wky,.GenericNotification-module_toast__GOVfC .GenericNotification-module_cancel__c6wky{height:var(--spacing-48,3rem);margin-bottom:calc(var(--spacing-6, .375rem)*-1);margin-top:calc(var(--spacing-6, .375rem)*-1);width:var(--spacing-48,3rem)}.GenericNotification-module_inline__OciO5 .GenericNotification-module_cancel__c6wky{margin-right:calc(var(--spacing-12, .75rem)*-1)}.GenericNotification-module_toast__GOVfC .GenericNotification-module_cancel__c6wky{margin-right:-10px}.GenericNotification-module_global__Weka- .GenericNotification-module_cancel__c6wky{height:3.75rem;margin-bottom:calc(var(--spacing-12, .75rem)*-1);margin-right:-15px;margin-top:calc(var(--spacing-12, .75rem)*-1);padding-right:calc(var(--spacing-24, 1.5rem)*.625);width:3.75rem}.GenericNotification-module_cancelLabel__HJzsk{clip:rect(0,0,0,0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.GenericNotification-module_cancel__c6wky{align-items:center;display:flex;justify-content:center;position:relative}.GenericNotification-module_cancel__c6wky:focus{outline:none}.GenericNotification-module_cancel__c6wky:focus-visible:after{background:transparent;border-color:var(--color-blue-500,#0168b3);border-radius:var(--border-focus-ring-border-radius,10px);border-style:var(--border-focus-ring-border-style,solid);border-width:var(--border-focus-ring-border-width,2px);content:"";inset:6px;pointer-events:none;position:absolute}.GenericNotification-module_notificationTitle__Oaqb8{line-height:var(--typography-heading-6-line-height,1.5rem);margin-inline-end:var(--spacing-6,.375rem);position:relative;top:.42em}@container (max-width: 25rem){.GenericNotification-module_notificationTitle__Oaqb8{width:100%}}
115
+ .ToastNotificationsList-module_toastNotificationsList__APiSP{align-items:flex-end;bottom:0;display:flex;flex-direction:column;max-width:100%;overflow:hidden;padding-bottom:0;padding-top:172px;pointer-events:none;position:fixed;right:var(--spacing-md,1.5rem);top:0;z-index:1030}@media (max-width:1079px){.ToastNotificationsList-module_toastNotificationsList__APiSP{padding-top:108px}}@media (max-width:767px){.ToastNotificationsList-module_toastNotificationsList__APiSP{left:var(--spacing-md,1.5rem)}}
116
116
  .TruncateIndicator-module_truncateIndicatorWrapper__FgApk{align-items:center;background-color:transparent;color:rgba(var(--color-purple-800-rgb,47,36,56),.7);display:flex;height:36px;justify-content:center;margin:0 5px;width:36px}
117
117
  .Pagination-module_container__JHnDH{align-items:center;display:flex;justify-content:center}.Pagination-module_pagesIndicatorWrapper__taluU{display:flex;flex-direction:row;justify-content:space-around}.Pagination-module_arrowIconWrapper__RMTET{align-items:center;background-color:transparent;border:var(--border-focus-ring-border-width,2px) var(--border-focus-ring-border-style,solid) var(--color-blue-300,#73c0e8);border-radius:18px;box-sizing:border-box;color:var(--color-blue-500,#0168b3);display:flex;height:36px;justify-content:center;margin:0 5px;width:36px}.Pagination-module_arrowIconWrapper__RMTET:disabled{opacity:35%;pointer-events:none}.Pagination-module_arrowIconWrapper__RMTET:hover{background-color:var(--color-blue-100,#e6f6ff)}.Pagination-module_arrowIconWrapper__RMTET:focus{background-color:var(--color-blue-200,#bde2f5)}.Pagination-module_arrowIconWrapper__RMTET:focus:focus-visible{outline:none}.Pagination-module_arrowIconWrapper__RMTET:focus .Pagination-module_pageIndicatorFocusRing__57ku4{border:var(--border-focus-ring-border-width,2px) var(--border-focus-ring-border-style,solid) var(--color-blue-500,#0168b3)}.Pagination-module_truncateIndicatorWrapper__bwywo{align-items:center;background-color:transparent;color:rgba(var(--color-purple-800-rgb,47,36,56),.7);display:flex;height:36px;justify-content:center;margin:0 5px;width:36px}
118
118
  .Popover-module_root__OrmwT{left:50%;position:absolute;width:220px}.Popover-module_cautionaryBox__n7c9G,.Popover-module_defaultBox__X9FWm,.Popover-module_informativeBox__c0Pen,.Popover-module_negativeBox__dS4tj,.Popover-module_positiveBox__fUR-4{background:var(--color-white,#fff);border:var(--border-solid-border-width,2px) var(--border-solid-border-style,solid) var(--color-gray-300,#eaeaec);border-radius:var(--border-solid-border-radius,7px);color:var(--color-purple-800,#2f2438);filter:drop-shadow(0 0 7px rgba(0,0,0,.1));padding:var(--spacing-sm,.75rem) 1rem 1rem;text-align:left}.Popover-module_defaultArrow__6rN-3:after,.Popover-module_defaultArrow__6rN-3:before{border-left:7px solid transparent;border-right:7px solid transparent;content:"";left:0;position:absolute;top:0}.Popover-module_defaultArrow__6rN-3:before{border-top:7px solid var(--color-gray-300,#eaeaec)}.Popover-module_defaultArrow__6rN-3:after{border-top:7px solid #fff;margin-top:-2px;z-index:1}.Popover-module_informativeBox__c0Pen{background:var(--color-blue-100,#e6f6ff);border-color:var(--color-blue-300,#73c0e8)}.Popover-module_informativeArrow__ZWiUz:after,.Popover-module_informativeArrow__ZWiUz:before{border-left:7px solid transparent;border-right:7px solid transparent;content:"";left:0;position:absolute;top:0}.Popover-module_informativeArrow__ZWiUz:before{border-top:7px solid var(--color-blue-300,#73c0e8)}.Popover-module_informativeArrow__ZWiUz:after{border-top:7px solid var(--color-blue-100,#e6f6ff);margin-top:-2px;z-index:1}.Popover-module_positiveBox__fUR-4{background:var(--color-green-100,#e8f8f4);border-color:var(--color-green-300,#8fdbc7)}.Popover-module_positiveArrow__ApDyE:after,.Popover-module_positiveArrow__ApDyE:before{border-left:7px solid transparent;border-right:7px solid transparent;content:"";left:0;position:absolute;top:0}.Popover-module_positiveArrow__ApDyE:before{border-top:7px solid var(--color-green-300,#8fdbc7)}.Popover-module_positiveArrow__ApDyE:after{border-top:7px solid var(--color-green-100,#e8f8f4);margin-top:-2px;z-index:1}.Popover-module_negativeBox__dS4tj{background:var(--color-red-100,#fdeaee);border-color:var(--color-red-300,#f597a8)}.Popover-module_negativeArrow__BpNUL:after,.Popover-module_negativeArrow__BpNUL:before{border-left:7px solid transparent;border-right:7px solid transparent;content:"";left:0;position:absolute;top:0}.Popover-module_negativeArrow__BpNUL:before{border-top:7px solid var(--color-red-300,#f597a8)}.Popover-module_negativeArrow__BpNUL:after{border-top:7px solid var(--color-red-100,#fdeaee);margin-top:-2px;z-index:1}.Popover-module_cautionaryBox__n7c9G{background:var(--color-yellow-100,#fff9e4);border-color:var(--color-yellow-400,#ffca4d)}.Popover-module_cautionaryArrow__YRo-K:after,.Popover-module_cautionaryArrow__YRo-K:before{border-left:7px solid transparent;border-right:7px solid transparent;content:"";left:0;position:absolute;top:0}.Popover-module_cautionaryArrow__YRo-K:before{border-top:7px solid var(--color-yellow-400,#ffca4d)}.Popover-module_cautionaryArrow__YRo-K:after{border-top:7px solid var(--color-yellow-100,#fff9e4);margin-top:-2px;z-index:1}.Popover-module_header__b3DtD{align-items:center;display:flex;margin-bottom:var(--spacing-xs,.375rem);padding-right:var(--spacing-md,1.5rem);position:relative;white-space:nowrap}.Popover-module_container__JwR7Q{position:relative;white-space:pre-line}.Popover-module_icon__6S-3a{display:inherit;margin-right:var(--spacing-xs,.375rem)}.Popover-module_informativeIcon__WqmCv{color:var(--color-blue-500,#0168b3)}.Popover-module_positiveIcon__wyqmw{color:var(--color-green-400,#5dcbad)}.Popover-module_negativeIcon__Bb7-e{color:var(--color-red-500,#c93b55)}.Popover-module_cautionaryIcon__rptji{color:var(--color-yellow-500,#ffb600)}.Popover-module_close__8h4Rt{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;border:none;color:inherit;color:rgba(var(--color-purple-800-rgb,47,36,56),.7);display:inline;display:inherit;font:inherit;margin:0 0 0 auto;padding:0;position:absolute;right:0}.Popover-module_close__8h4Rt:hover{color:var(--color-purple-800,#2f2438)}.Popover-module_close__8h4Rt:focus{outline:none}.Popover-module_close__8h4Rt:focus-visible{border-radius:var(--border-borderless-border-radius,7px);color:var(--color-purple-800,#2f2438);outline:var(--color-blue-500,#0168b3) var(--border-focus-ring-border-style,solid) var(--border-focus-ring-border-width,2px);outline-offset:calc(var(--border-focus-ring-border-width, 2px)*-1)}.Popover-module_arrowWrapper__DiE3-{height:7px;position:absolute;width:14px}.Popover-module_arrow__PS4V6{height:7px;width:14px}.Popover-module_arrowSideTop__JoORK,[data-popper-placement^=bottom] .Popover-module_arrowWrapper__DiE3-{bottom:100%;left:50%;margin-top:-9px}.Popover-module_arrowSideTop__JoORK .Popover-module_arrow__PS4V6,[data-popper-placement^=bottom] .Popover-module_arrowWrapper__DiE3- .Popover-module_arrow__PS4V6{transform:rotate(180deg)}.Popover-module_arrowSideLeft__2Zhqb,[data-popper-placement^=left] .Popover-module_arrowWrapper__DiE3-{margin-right:-10px;right:0}.Popover-module_arrowSideLeft__2Zhqb .Popover-module_arrow__PS4V6,[data-popper-placement^=left] .Popover-module_arrowWrapper__DiE3- .Popover-module_arrow__PS4V6{transform:rotate(270deg)}.Popover-module_arrowSideRight__fHKWI,[data-popper-placement^=right] .Popover-module_arrowWrapper__DiE3-{left:0;margin-left:-10px}.Popover-module_arrowSideRight__fHKWI .Popover-module_arrow__PS4V6,[data-popper-placement^=right] .Popover-module_arrowWrapper__DiE3- .Popover-module_arrow__PS4V6{transform:rotate(90deg)}.Popover-module_arrowSideBottom__mBr5k,[data-popper-placement^=top] .Popover-module_arrowWrapper__DiE3-{left:50%;top:100%}.Popover-module_arrowPositionCenter__l8V0-{transform:translateX(-50%)}.Popover-module_arrowPositionStart__eXyu0{left:var(--spacing-md,1.5rem);right:auto}.Popover-module_arrowPositionEnd__UY4MU{left:auto;right:var(--spacing-md,1.5rem)}.Popover-module_large__-LH0l{max-width:450px;width:auto}.Popover-module_singleLine__7il24{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
@@ -130,7 +130,6 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs{all:unset;-webkit-ap
130
130
  .ToolbarSection-module_toolbarSection__nCI0O{align-items:center;display:inline-flex;flex-wrap:wrap;gap:var(--spacing-xs,.375rem);margin:var(--spacing-xs,.375rem) 0;padding:0 var(--spacing-xs,.375rem)}.ToolbarSection-module_toolbarSection__nCI0O+.ToolbarSection-module_toolbarSection__nCI0O{border-inline-start:1px solid rgba(var(--color-gray-600-rgb,82,78,86),.1)}
131
131
  .RichTextEditor-module_editor__pVKqW>.ProseMirror{border-radius:var(--border-solid-border-radius,7px);box-sizing:content-box;font-family:var(--typography-paragraph-body-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-paragraph-body-font-size,1rem);font-weight:var(--typography-paragraph-body-font-weight,400);letter-spacing:var(--typography-paragraph-body-letter-spacing,normal);line-height:var(--typography-paragraph-body-line-height,1.5rem);padding:var(--spacing-sm,.75rem) calc(var(--spacing-xs, .375rem)*3);position:relative;transition:background-color var(--animation-duration-immediate,.1s),border-color var(--animation-duration-immediate,.1s);white-space:pre-wrap}.RichTextEditor-module_editor__pVKqW>.ProseMirror>p{margin:0 0 var(--spacing-16,1rem)}.RichTextEditor-module_editor__pVKqW>.ProseMirror>:last-child,.RichTextEditor-module_editor__pVKqW>.ProseMirror>:last-child>li:last-of-type p{margin-bottom:0}.RichTextEditor-module_editor__pVKqW>.ProseMirror>:first-child,.RichTextEditor-module_editor__pVKqW>.ProseMirror>:first-child>li:first-of-type p{margin-top:0}.RichTextEditor-module_editor__pVKqW>.ProseMirror a{color:var(--color-blue-500,#0168b3)}.RichTextEditor-module_editor__pVKqW>.ProseMirror a:hover{text-decoration:none}.RichTextEditor-module_editor__pVKqW>.ProseMirror ol,.RichTextEditor-module_editor__pVKqW>.ProseMirror ul{padding-inline-start:var(--spacing-40,2.5rem)}.RichTextEditor-module_editor__pVKqW>.ProseMirror ol{list-style-type:decimal}.RichTextEditor-module_editor__pVKqW>.ProseMirror ol ol{list-style-type:lower-alpha}.RichTextEditor-module_editor__pVKqW>.ProseMirror ol ol ol{list-style-type:lower-roman}.RichTextEditor-module_editor__pVKqW>.ProseMirror ol ol ol ol,.RichTextEditor-module_editor__pVKqW>.ProseMirror ol ol ol ul{padding-inline-start:var(--spacing-40,2.5rem)}.RichTextEditor-module_editor__pVKqW>.ProseMirror ol ol ol ol{list-style-type:decimal}.RichTextEditor-module_editor__pVKqW>.ProseMirror ol ol ol ol ol{list-style-type:lower-alpha}.RichTextEditor-module_editor__pVKqW>.ProseMirror ol ol ol ol ol ol{list-style-type:lower-roman}.RichTextEditor-module_editor__pVKqW>.ProseMirror ol ol ol ul{list-style-type:disc}.RichTextEditor-module_editor__pVKqW>.ProseMirror ol ol ol ul ul{list-style-type:circle}.RichTextEditor-module_editor__pVKqW>.ProseMirror ol ol ol ul ul ul{list-style-type:square}.RichTextEditor-module_editor__pVKqW>.ProseMirror ul{list-style-type:disc}.RichTextEditor-module_editor__pVKqW>.ProseMirror ul ul{list-style-type:circle}.RichTextEditor-module_editor__pVKqW>.ProseMirror ul ul ul{list-style-type:square}.RichTextEditor-module_editor__pVKqW>.ProseMirror ul ul ul ol,.RichTextEditor-module_editor__pVKqW>.ProseMirror ul ul ul ul{padding-inline-start:var(--spacing-40,2.5rem)}.RichTextEditor-module_editor__pVKqW>.ProseMirror ul ul ul ol{list-style-type:decimal}.RichTextEditor-module_editor__pVKqW>.ProseMirror ul ul ul ol ol{list-style-type:lower-alpha}.RichTextEditor-module_editor__pVKqW>.ProseMirror ul ul ul ol ol ol{list-style-type:lower-roman}.RichTextEditor-module_editor__pVKqW>.ProseMirror ul ul ul ul{list-style-type:disc}.RichTextEditor-module_editor__pVKqW>.ProseMirror ul ul ul ul ul{list-style-type:circle}.RichTextEditor-module_editor__pVKqW>.ProseMirror ul ul ul ul ul ul{list-style-type:square}.RichTextEditor-module_editor__pVKqW>.ProseMirror:focus,.RichTextEditor-module_editor__pVKqW>.ProseMirror:hover{background:var(--color-gray-200,#f4f4f5);border-color:var(--color-gray-600,#524e56)}.RichTextEditor-module_editor__pVKqW>.ProseMirror:focus{outline:none}.RichTextEditor-module_editor__pVKqW>.ProseMirror:focus-visible:after{background:transparent;border-color:var(--color-blue-500,#0168b3);border-radius:2px 2px var(--border-focus-ring-border-radius,10px) var(--border-focus-ring-border-radius,10px);border-style:var(--border-focus-ring-border-style,solid);border-width:var(--border-focus-ring-border-width,2px);content:"";inset:-5px;pointer-events:none;position:absolute}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_hasToolbar__EBxnG>.ProseMirror{border-top-left-radius:0;border-top-right-radius:0}.RichTextEditor-module_editorWrapper__5q3mG{word-wrap:break-word;background:var(--color-white,#fff);border:var(--border-solid-border-width,2px) var(--border-solid-border-style,solid) var(--color-gray-500,#8c8c97);border-radius:var(--border-solid-border-radius,7px);position:relative}.RichTextEditor-module_editorWrapper__5q3mG:focus-within,.RichTextEditor-module_editorWrapper__5q3mG:hover{border-color:var(--color-gray-600,#524e56)}.RichTextEditor-module_editorWrapper__5q3mG:focus-within .RichTextEditor-module_toolbar__ceLvw,.RichTextEditor-module_editorWrapper__5q3mG:hover .RichTextEditor-module_toolbar__ceLvw{border-color:var(--color-gray-600,#524e56)}.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_error__Xugz8,.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_error__Xugz8 .RichTextEditor-module_toolbar__ceLvw{border-color:var(--color-red-500,#c93b55)}.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_error__Xugz8:hover,.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_error__Xugz8:hover .RichTextEditor-module_toolbar__ceLvw{border-color:var(--color-red-600,#a82433)}.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_caution__6q0z6,.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_caution__6q0z6 .RichTextEditor-module_toolbar__ceLvw{border-color:var(--color-yellow-600,#c68600)}.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_caution__6q0z6:hover,.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_caution__6q0z6:hover .RichTextEditor-module_toolbar__ceLvw{border-color:var(--color-yellow-700,#876400)}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows1__DDEf4>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*1 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows2__kzYgh>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*2 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows3__SA7Zu>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*3 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows4__gkZry>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*4 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows5__4Rq2z>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*5 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows6__SH-4R>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*6 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows7__z02vY>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*7 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows8__4j-9e>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*8 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows9__67hDj>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*9 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows10__qysh1>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*10 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows11__o5iYX>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*11 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows12__ug-Nv>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*12 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows13__tFBG7>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*13 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows14__xqS6h>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*14 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows15__dzeUM>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*15 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows16__GyRco>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*16 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows17__GyNby>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*17 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows18__fe-Rb>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*18 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows19__fc0-T>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*19 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows20__p9rwF>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*20 - var(--spacing-16, 1rem))}
132
132
  .SearchField-module_label__NxYfn{display:block;margin-bottom:var(--spacing-xs,.375rem)}
133
- .Tag-module_root__uRhoc{border:var(--border-borderless-border-width,2px) var(--border-borderless-border-style,solid) var(--border-borderless-border-color,transparent);border-radius:calc(var(--spacing-md, 1.5rem)*.75);box-sizing:border-box;color:var(--color-purple-800,#2f2438);display:inline-block;font-size:var(--typography-paragraph-small-font-size,.875rem);font-weight:var(--typography-paragraph-small-font-weight,400);letter-spacing:var(--typography-paragraph-small-letter-spacing,normal);margin-inline-end:calc(var(--spacing-md, 1.5rem)*.5);padding:0 calc(var(--spacing-md, 1.5rem)*.4)}.Tag-module_root__uRhoc.Tag-module_profile__OoGsS{padding-left:calc(var(--spacing-md, 1.5rem)*.2)}.Tag-module_layoutContainer__pBLSz{align-items:center;display:flex;height:100%}.Tag-module_validationIcon__B-YLv{color:var(--color-white,#fff);display:flex}.Tag-module_profile__OoGsS,.Tag-module_validationIcon__B-YLv{align-items:center;margin-inline:calc(var(--spacing-md, 1.5rem)*-.15) var(--spacing-xs,.375rem)}.Tag-module_profile__OoGsS{display:inline-flex}.Tag-module_textContent__q76X-{font-family:var(--typography-paragraph-small-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-paragraph-small-font-size,.875rem);font-weight:var(--typography-paragraph-small-font-weight,400);letter-spacing:var(--typography-paragraph-small-letter-spacing,normal);line-height:var(--typography-paragraph-small-line-height,1.125rem);margin-top:-1px;white-space:nowrap}.Tag-module_iconWrapper__aPrKH{height:16px;position:relative;width:16px}.Tag-module_dismissButton__rHv7r{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;border:none;color:inherit;color:rgba(var(--color-purple-800-rgb,47,36,56),.7);cursor:pointer;display:inline;display:flex;font:inherit;height:100%;margin:0;margin-inline:-.225rem -.6625rem;padding:0;padding:0 var(--spacing-xs,.375rem);position:relative}.Tag-module_dismissButton__rHv7r:active,.Tag-module_dismissButton__rHv7r:hover{color:var(--color-purple-800,#2f2438)}.Tag-module_dismissButton__rHv7r svg{position:relative}.Tag-module_dismissButton__rHv7r:focus{outline:none}.Tag-module_dismissButton__rHv7r:focus-visible .Tag-module_iconWrapper__aPrKH{color:var(--color-purple-800,#2f2438)}.Tag-module_dismissButton__rHv7r:focus-visible .Tag-module_iconWrapper__aPrKH:after{background:transparent;border-color:var(--color-blue-500,#0168b3);border-radius:50%;border-style:var(--border-focus-ring-border-style,solid);border-width:var(--border-focus-ring-border-width,2px);content:"";inset:calc((var(--border-focus-ring-border-width, 2px))*-1);position:absolute}.Tag-module_background__LkzGB{background-color:#fff;display:inline-block;height:calc(var(--spacing-xs, .375rem) + .125rem);left:10px;position:absolute;top:10px;width:calc(var(--spacing-xs, .375rem) + .125rem)}.Tag-module_truncate__5w7HW{overflow-x:hidden;text-overflow:ellipsis;white-space:nowrap}.Tag-module_inline__pPM-d{margin:0}.Tag-module_medium__NkOrv{height:calc(var(--spacing-md, 1.5rem)*1.25)}.Tag-module_small__-xyNk{height:var(--spacing-md,1.5rem)}.Tag-module_default__6PVke{background-color:var(--color-gray-300,#eaeaec)}.Tag-module_sentimentPositive__nbqE1{background-color:var(--color-green-100,#e8f8f4)}.Tag-module_sentimentNeutral__8BtD8{background-color:var(--color-gray-300,#eaeaec)}.Tag-module_sentimentNegative__1J85t{background-color:var(--color-red-100,#fdeaee)}.Tag-module_sentimentNone__8BWjU{background-color:var(--color-white,#fff);border-color:var(--color-gray-300,#eaeaec)}.Tag-module_validationPositive__vgFUE{background-color:var(--color-green-100,#e8f8f4)}.Tag-module_validationPositive__vgFUE .Tag-module_validationIcon__B-YLv{color:var(--color-green-500,#44a289)}.Tag-module_validationInformative__bnJ4A{background-color:var(--color-blue-100,#e6f6ff)}.Tag-module_validationInformative__bnJ4A .Tag-module_validationIcon__B-YLv{color:var(--color-blue-500,#0168b3)}.Tag-module_validationNegative__lZgIY{background-color:var(--color-red-100,#fdeaee)}.Tag-module_validationNegative__lZgIY .Tag-module_validationIcon__B-YLv{color:var(--color-red-500,#c93b55)}.Tag-module_validationCautionary__ERS2t{background-color:var(--color-yellow-100,#fff9e4)}.Tag-module_validationCautionary__ERS2t .Tag-module_validationIcon__B-YLv{color:var(--color-yellow-500,#ffb600)}.Tag-module_statusLive__xG48w{background-color:var(--color-green-100,#e8f8f4);color:var(--color-purple-800,#2f2438)}.Tag-module_statusAction__woL-O{background-color:var(--color-orange-100,#fff0e8);color:var(--color-purple-800,#2f2438)}.Tag-module_statusClosed__VhZP-{background-color:var(--color-red-100,#fdeaee)}.Tag-module_statusDraft__9QZDv{background-color:var(--color-blue-100,#e6f6ff);color:var(--color-purple-800,#2f2438)}.Tag-module_liveIcon__URtak{color:var(--color-green-500,#44a289);display:inline-block;height:20px;margin-inline-start:.25rem;position:relative;width:20px}.Tag-module_liveIcon_base__Nk5um{display:block;opacity:30%}.Tag-module_liveIcon_1__STFJY,.Tag-module_liveIcon_2__rko-D,.Tag-module_liveIcon_3__fL71y{aspect-ratio:1;display:block;height:100%;left:0;overflow:hidden;position:absolute;top:0;width:100%}.Tag-module_liveIcon_1__STFJY{-webkit-clip-path:circle(16%);clip-path:circle(16%)}.Tag-module_liveIcon_2__rko-D,.Tag-module_liveIcon_3__fL71y{animation-delay:1s;animation-duration:3s;animation-iteration-count:3}.Tag-module_liveIcon_2__rko-D{animation-name:Tag-module_pulse-inner__0-JFL;-webkit-clip-path:circle(32%);clip-path:circle(32%)}.Tag-module_liveIcon_3__fL71y{animation-name:Tag-module_pulse-outer__f9Oox;-webkit-clip-path:circle(50%);clip-path:circle(50%)}@keyframes Tag-module_pulse-inner__0-JFL{0%{opacity:0}25%{opacity:0}50%{opacity:100%}75%{opacity:100%}to{opacity:100%}}@keyframes Tag-module_pulse-outer__f9Oox{0%{opacity:0}25%{opacity:0}50%{opacity:0}75%{opacity:100%}to{opacity:100%}}
134
133
  .Select-module_specificityIncreaser__cZtQV .Select-module_control__ehUuP:focus-within:after,.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_default__hKuCo .Select-module_control__ehUuP.Select-module_focusedControl__3AwhP:after,.Select-module_specificityIncreaser__cZtQV.Select-module_secondary__0RpOQ.Select-module_default__hKuCo .Select-module_control__ehUuP.Select-module_focusedControl__3AwhP:after{background:transparent;border-color:var(--color-blue-500,#0168b3);border-radius:var(--border-focus-ring-border-radius,10px);border-style:var(--border-focus-ring-border-style,solid);border-width:var(--border-focus-ring-border-width,2px);content:"";inset:calc(var(--border-focus-ring-border-width, 2px)*-2 - 1px);position:absolute}.Select-module_specificityIncreaser__cZtQV .Select-module_multiValue__9XkYX{margin:.2375rem;z-index:1}.Select-module_specificityIncreaser__cZtQV .Select-module_dropdownIndicator__NUopQ,.Select-module_specificityIncreaser__cZtQV .Select-module_dropdownIndicator__NUopQ:hover{color:rgba(var(--color-purple-800-rgb,47,36,56),.7)}.Select-module_specificityIncreaser__cZtQV .Select-module_control__ehUuP{border:var(--border-solid-border-width,2px) var(--border-solid-border-style,solid) var(--color-gray-500,#8c8c97);border-radius:var(--border-solid-border-radius,7px);min-height:48px}.Select-module_specificityIncreaser__cZtQV .Select-module_control__ehUuP.Select-module_disabled__-iG97{opacity:30%}.Select-module_specificityIncreaser__cZtQV .Select-module_control__ehUuP:hover{background-color:var(--color-gray-100,#f9f9f9);border-color:var(--color-gray-600,#524e56);cursor:pointer}.Select-module_specificityIncreaser__cZtQV .Select-module_valueContainer__MGkpr{font-family:var(--typography-paragraph-body-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-paragraph-body-font-size,1rem)}.Select-module_specificityIncreaser__cZtQV .Select-module_indicatorsContainer__2xCsm{z-index:1}.Select-module_specificityIncreaser__cZtQV .Select-module_loadingMessage__4Ej9T{color:var(--color-purple-800,#2f2438);font-family:var(--typography-paragraph-body-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-paragraph-body-font-size,1rem);font-weight:var(--typography-paragraph-body-font-weight,400);letter-spacing:var(--typography-paragraph-body-letter-spacing,normal);line-height:var(--typography-paragraph-body-line-height,1.5rem)}.Select-module_specificityIncreaser__cZtQV .Select-module_focusedControl__3AwhP,.Select-module_specificityIncreaser__cZtQV .Select-module_focusedControl__3AwhP:hover{box-shadow:none}.Select-module_specificityIncreaser__cZtQV .Select-module_placeholder__OAeGA{color:var(--color-purple-800,#2f2438);font-family:var(--typography-paragraph-body-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-paragraph-body-font-size,1rem);font-weight:var(--typography-paragraph-body-font-weight,400);letter-spacing:var(--typography-paragraph-body-letter-spacing,normal);line-height:var(--typography-paragraph-body-line-height,1.5rem);opacity:.7}.Select-module_specificityIncreaser__cZtQV .Select-module_menu__axmUL{border:6px var(--border-solid-border-style,solid) transparent;border-radius:var(--border-solid-border-radius,7px);box-shadow:var(--shadow-large-box-shadow,0 8px 40px rgba(0,0,0,.08),0 3px 9px rgba(0,0,0,.1));z-index:3}.Select-module_specificityIncreaser__cZtQV .Select-module_menu__axmUL>div{padding-bottom:0;padding-top:0}.Select-module_specificityIncreaser__cZtQV .Select-module_groupHeading__eNw6U{color:rgba(var(--color-purple-800-rgb,47,36,56),.7);font-family:var(--typography-heading-6-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-heading-6-font-size,.875rem);font-weight:var(--typography-heading-6-font-weight,700);letter-spacing:var(--typography-heading-6-letter-spacing,normal);line-height:var(--typography-heading-6-line-height,1.5rem);text-transform:capitalize}.Select-module_specificityIncreaser__cZtQV .Select-module_option__EdP-F{border-color:transparent;border-radius:var(--border-focus-ring-border-radius,10px);border-style:var(--border-focus-ring-border-style,solid);border-width:var(--border-focus-ring-border-width,2px);color:var(--color-purple-800,#2f2438);cursor:pointer;font-family:var(--typography-paragraph-body-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-paragraph-body-font-size,1rem);font-weight:var(--typography-paragraph-body-font-weight,400);letter-spacing:var(--typography-paragraph-body-letter-spacing,normal);line-height:var(--typography-paragraph-body-line-height,1.5rem)}.Select-module_specificityIncreaser__cZtQV .Select-module_focusedOption__uwQwp{background-color:var(--color-blue-100,#e6f6ff);border-color:var(--color-blue-500,#0168b3);color:var(--color-blue-500,#0168b3)}.Select-module_specificityIncreaser__cZtQV .Select-module_focusedOption__uwQwp.Select-module_disabledOption__TWVun{background:transparent;border-color:var(--color-gray-500,#8c8c97);border-style:var(--border-dashed-border-style,dashed);border-width:var(--border-focus-ring-border-width,2px);color:var(--color-purple-800,#2f2438)}.Select-module_specificityIncreaser__cZtQV .Select-module_focusedOption__uwQwp:active{background-color:var(--color-blue-100,#e6f6ff)}.Select-module_specificityIncreaser__cZtQV .Select-module_selectedOption__xhYOz{color:var(--color-blue-500,#0168b3);font-weight:var(--typography-paragraph-bold-font-weight,600)}.Select-module_specificityIncreaser__cZtQV .Select-module_selectedOption__xhYOz:not(.Select-module_focusedOption__uwQwp){background-color:transparent}.Select-module_specificityIncreaser__cZtQV .Select-module_disabledOption__TWVun{cursor:not-allowed;opacity:30%}.Select-module_specificityIncreaser__cZtQV .Select-module_noOptionsMessage__DG5zw,.Select-module_specificityIncreaser__cZtQV .Select-module_singleValue__-cc8w{color:var(--color-purple-800,#2f2438);font-family:var(--typography-paragraph-body-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-paragraph-body-font-size,1rem);font-weight:var(--typography-paragraph-body-font-weight,400);letter-spacing:var(--typography-paragraph-body-letter-spacing,normal);line-height:var(--typography-paragraph-body-line-height,1.5rem)}.Select-module_specificityIncreaser__cZtQV.Select-module_reversed__-jCGs .Select-module_input__HAhy-,.Select-module_specificityIncreaser__cZtQV.Select-module_reversed__-jCGs .Select-module_singleValueOverrides__44Gby,.Select-module_specificityIncreaser__cZtQV.Select-module_reversed__-jCGs .Select-module_singleValue__-cc8w{color:var(--color-white,#fff)}.Select-module_specificityIncreaser__cZtQV.Select-module_error__GpAw6 .Select-module_control__ehUuP{border:var(--border-solid-border-width,2px) var(--border-solid-border-style,solid) var(--color-red-500,#c93b55)}.Select-module_specificityIncreaser__cZtQV.Select-module_default__hKuCo.Select-module_reversed__-jCGs .Select-module_control__ehUuP{background:transparent;border-color:var(--color-white,#fff);border-radius:var(--border-borderless-border-radius,7px);color:var(--color-white,#fff)}.Select-module_specificityIncreaser__cZtQV.Select-module_default__hKuCo.Select-module_reversed__-jCGs .Select-module_control__ehUuP:hover{background:rgba(var(--color-white-rgb,255,255,255),.2)}.Select-module_specificityIncreaser__cZtQV.Select-module_default__hKuCo.Select-module_reversed__-jCGs .Select-module_control__ehUuP.Select-module_disabled__-iG97{opacity:30%}.Select-module_specificityIncreaser__cZtQV.Select-module_default__hKuCo.Select-module_reversed__-jCGs .Select-module_clearIndicator__O6EuX,.Select-module_specificityIncreaser__cZtQV.Select-module_default__hKuCo.Select-module_reversed__-jCGs .Select-module_dropdownIndicator__NUopQ,.Select-module_specificityIncreaser__cZtQV.Select-module_default__hKuCo.Select-module_reversed__-jCGs .Select-module_placeholder__OAeGA{color:var(--color-white,#fff)}.Select-module_specificityIncreaser__cZtQV.Select-module_default__hKuCo.Select-module_reversed__-jCGs.Select-module_error__GpAw6 .Select-module_control__ehUuP{border:var(--border-solid-border-width,2px) var(--border-solid-border-style,solid) var(--color-red-300,#f597a8)}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_default__hKuCo .Select-module_control__ehUuP,.Select-module_specificityIncreaser__cZtQV.Select-module_secondary__0RpOQ.Select-module_default__hKuCo .Select-module_control__ehUuP{background:transparent;border:var(--border-borderless-border-width,2px) var(--border-borderless-border-style,solid) var(--border-borderless-border-color,transparent);border-radius:var(--border-borderless-border-radius,7px)}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_default__hKuCo .Select-module_control__ehUuP .Select-module_singleValue__-cc8w,.Select-module_specificityIncreaser__cZtQV.Select-module_secondary__0RpOQ.Select-module_default__hKuCo .Select-module_control__ehUuP .Select-module_singleValue__-cc8w{color:var(--color-blue-500,#0168b3)}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_default__hKuCo .Select-module_control__ehUuP:hover,.Select-module_specificityIncreaser__cZtQV.Select-module_secondary__0RpOQ.Select-module_default__hKuCo .Select-module_control__ehUuP:hover{background:var(--color-blue-100,#e6f6ff)}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_default__hKuCo .Select-module_control__ehUuP.Select-module_disabled__-iG97,.Select-module_specificityIncreaser__cZtQV.Select-module_secondary__0RpOQ.Select-module_default__hKuCo .Select-module_control__ehUuP.Select-module_disabled__-iG97{opacity:30%}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_default__hKuCo .Select-module_control__ehUuP.Select-module_focusedControl__3AwhP,.Select-module_specificityIncreaser__cZtQV.Select-module_secondary__0RpOQ.Select-module_default__hKuCo .Select-module_control__ehUuP.Select-module_focusedControl__3AwhP{background:var(--color-blue-100,#e6f6ff)}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_default__hKuCo .Select-module_dropdownIndicator__NUopQ,.Select-module_specificityIncreaser__cZtQV.Select-module_secondary__0RpOQ.Select-module_default__hKuCo .Select-module_dropdownIndicator__NUopQ{color:var(--color-blue-500,#0168b3)}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_reversed__-jCGs .Select-module_control__ehUuP,.Select-module_specificityIncreaser__cZtQV.Select-module_secondary__0RpOQ.Select-module_reversed__-jCGs .Select-module_control__ehUuP{background:rgba(var(--color-white-rgb,255,255,255),.1);border:var(--border-borderless-border-width,2px) var(--border-borderless-border-style,solid) var(--border-borderless-border-color,transparent);border-radius:var(--border-borderless-border-radius,7px);color:var(--color-white,#fff)}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_reversed__-jCGs .Select-module_control__ehUuP:hover,.Select-module_specificityIncreaser__cZtQV.Select-module_secondary__0RpOQ.Select-module_reversed__-jCGs .Select-module_control__ehUuP:hover{background:rgba(var(--color-white-rgb,255,255,255),.2)}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_reversed__-jCGs .Select-module_control__ehUuP.Select-module_disabled__-iG97,.Select-module_specificityIncreaser__cZtQV.Select-module_secondary__0RpOQ.Select-module_reversed__-jCGs .Select-module_control__ehUuP.Select-module_disabled__-iG97{opacity:30%}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_reversed__-jCGs .Select-module_dropdownIndicator__NUopQ,.Select-module_specificityIncreaser__cZtQV.Select-module_secondary__0RpOQ.Select-module_reversed__-jCGs .Select-module_dropdownIndicator__NUopQ{color:var(--color-white,#fff)}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_reversed__-jCGs .Select-module_focusedControl__3AwhP,.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_reversed__-jCGs .Select-module_focusedControl__3AwhP:hover,.Select-module_specificityIncreaser__cZtQV.Select-module_secondary__0RpOQ.Select-module_reversed__-jCGs .Select-module_focusedControl__3AwhP,.Select-module_specificityIncreaser__cZtQV.Select-module_secondary__0RpOQ.Select-module_reversed__-jCGs .Select-module_focusedControl__3AwhP:hover{border-color:var(--color-blue-300,#73c0e8)}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_reversed__-jCGs .Select-module_placeholder__OAeGA,.Select-module_specificityIncreaser__cZtQV.Select-module_secondary__0RpOQ.Select-module_reversed__-jCGs .Select-module_placeholder__OAeGA{color:var(--color-white,#fff)}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_secondarySmall__6yNEL.Select-module_reversed__-jCGs .Select-module_control__ehUuP{background:transparent;border:0}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_secondarySmall__6yNEL.Select-module_reversed__-jCGs .Select-module_control__ehUuP:hover{background:transparent}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_secondarySmall__6yNEL .Select-module_control__ehUuP{height:auto;min-height:0}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_secondarySmall__6yNEL .Select-module_control__ehUuP>div{height:24px;padding-left:0;padding-right:0}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_secondarySmall__6yNEL .Select-module_control__ehUuP .Select-module_valueContainer__MGkpr{height:24px}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_secondarySmall__6yNEL .Select-module_control__ehUuP .Select-module_singleValue__-cc8w{font-family:var(--typography-paragraph-extra-small-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-paragraph-extra-small-font-size,.75rem);font-weight:var(--typography-paragraph-extra-small-font-weight,400);letter-spacing:var(--typography-paragraph-extra-small-letter-spacing,normal);line-height:var(--typography-paragraph-extra-small-line-height,1.125rem)}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_secondarySmall__6yNEL .Select-module_control__ehUuP .Select-module_singleValueOverrides__44Gby{margin-left:0;margin-right:0}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_secondarySmall__6yNEL .Select-module_indicatorsContainer__2xCsm{z-index:1}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_secondarySmall__6yNEL .Select-module_dropdownIndicator__NUopQ{padding-bottom:0;padding-top:0;transform:translateY(1px)}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_secondarySmall__6yNEL .Select-module_dropdownIndicator__NUopQ>svg{height:14px;width:14px}.Select-module_specificityIncreaser__cZtQV.Select-module_notFullWidth__LO-xV .Select-module_control__ehUuP{display:inline-flex;max-width:100%}.Select-module_specificityIncreaser__cZtQV.Select-module_notFullWidth__LO-xV .Select-module_control__ehUuP>div{display:flex;flex-wrap:nowrap;height:44px}.Select-module_specificityIncreaser__cZtQV.Select-module_notFullWidth__LO-xV .Select-module_singleValueOverrides__44Gby{max-width:100%;overflow:hidden;position:static;top:0;transform:none;white-space:nowrap}.Select-module_specificityIncreaser__cZtQV.Select-module_notFullWidth__LO-xV .Select-module_singleValue__-cc8w{max-width:100%}
135
134
  .Skirt-module_container__h4J-J{position:relative}.Skirt-module_underlay__isMuP{box-sizing:content-box;height:100%;left:0;position:absolute;right:0;top:0;z-index:1}.Skirt-module_defaultVariant__VLaHK{background-color:var(--color-purple-600,#5f3361)}.Skirt-module_educationVariant__12yxk{background-color:var(--color-blue-100,#e6f6ff)}.Skirt-module_content__218H1{position:relative;z-index:2}
136
135
  @media (max-width:1080px){.SkirtCard-module_wrapper__05vkl{border-bottom-left-radius:0;border-bottom-right-radius:0;margin-left:-12px;margin-right:-12px}}@media (max-width:768px){.SkirtCard-module_wrapper__05vkl{border-radius:0;margin-left:-12px;margin-right:-12px}}