iguazio.dashboard-react-controls 3.2.3 → 3.2.4-navbar

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 (47) hide show
  1. package/dist/components/FormChipCell/NewChipForm/NewChipForm.mjs +36 -36
  2. package/dist/components/FormChipCell/NewChipForm/NewChipForm.mjs.map +1 -1
  3. package/dist/components/Navbar/Navbar.d.ts +30 -0
  4. package/dist/components/Navbar/Navbar.d.ts.map +1 -0
  5. package/dist/components/Navbar/Navbar.mjs +48 -0
  6. package/dist/components/Navbar/Navbar.mjs.map +1 -0
  7. package/dist/components/index.d.ts +2 -1
  8. package/dist/components/index.d.ts.map +1 -1
  9. package/dist/components/index.mjs +32 -30
  10. package/dist/components/index.mjs.map +1 -1
  11. package/dist/constants.d.ts +2 -0
  12. package/dist/constants.d.ts.map +1 -1
  13. package/dist/constants.mjs +11 -9
  14. package/dist/constants.mjs.map +1 -1
  15. package/dist/elements/NavbarLink/NavbarLink.d.ts +3 -0
  16. package/dist/elements/NavbarLink/NavbarLink.d.ts.map +1 -0
  17. package/dist/elements/NavbarLink/NavbarLink.mjs +62 -0
  18. package/dist/elements/NavbarLink/NavbarLink.mjs.map +1 -0
  19. package/dist/elements/index.d.ts +2 -1
  20. package/dist/elements/index.d.ts.map +1 -1
  21. package/dist/elements/index.mjs +16 -14
  22. package/dist/elements/index.mjs.map +1 -1
  23. package/dist/images/group-navbar-icon.svg +3 -0
  24. package/dist/images/ig4-header-projects-icon.svg +4 -0
  25. package/dist/images/navbar/group-navbar-icon.svg +3 -0
  26. package/dist/images/navbar/navbar-closed-icon.svg +10 -0
  27. package/dist/images/navbar/navbar-closed-icon.svg.mjs +6 -0
  28. package/dist/images/navbar/navbar-closed-icon.svg.mjs.map +1 -0
  29. package/dist/images/navbar/navbar-opened-icon.svg +10 -0
  30. package/dist/images/navbar/navbar-opened-icon.svg.mjs +6 -0
  31. package/dist/images/navbar/navbar-opened-icon.svg.mjs.map +1 -0
  32. package/dist/images/navbar/users-navbar-icon.svg +3 -0
  33. package/dist/images/navbar-closed-icon.svg +10 -0
  34. package/dist/images/navbar-opened-icon.svg +10 -0
  35. package/dist/images/users-delete.svg +3 -0
  36. package/dist/images/users-navbar-icon.svg +3 -0
  37. package/dist/images/users.svg +2 -2
  38. package/dist/index.css +1 -1
  39. package/dist/scss/colors.scss +2 -0
  40. package/dist/utils/index.d.ts +1 -0
  41. package/dist/utils/index.mjs +10 -8
  42. package/dist/utils/index.mjs.map +1 -1
  43. package/dist/utils/localStorageService.util.d.ts +3 -0
  44. package/dist/utils/localStorageService.util.d.ts.map +1 -0
  45. package/dist/utils/localStorageService.util.mjs +16 -0
  46. package/dist/utils/localStorageService.util.mjs.map +1 -0
  47. package/package.json +4 -2
@@ -0,0 +1,3 @@
1
+ declare const _default: any;
2
+ export default _default;
3
+ //# sourceMappingURL=NavbarLink.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"NavbarLink.d.ts","sourceRoot":"","sources":["../../../src/lib/elements/NavbarLink/NavbarLink.jsx"],"names":[],"mappings":""}
@@ -0,0 +1,62 @@
1
+ import { jsxs as t, jsx as a } from "react/jsx-runtime";
2
+ import u from "react";
3
+ import { useLocation as b, NavLink as f } from "react-router-dom";
4
+ import h from "classnames";
5
+ import n from "prop-types";
6
+ import N from "../../images/arrow.svg.mjs";
7
+ /* empty css */
8
+ const _ = ({
9
+ externalLink: p = !1,
10
+ icon: s = null,
11
+ index: e = null,
12
+ label: l,
13
+ link: c = "",
14
+ selectedIndex: o = null,
15
+ setSelectedIndex: i,
16
+ ...r
17
+ }) => {
18
+ const { pathname: d } = b(), [, , k] = d.split("/").slice(1, 4), v = h(
19
+ "nav-link__button btn nav-link__parent",
20
+ r.screens && r.screens.includes(k) && "active",
21
+ e === o && "expanded"
22
+ ), m = () => {
23
+ i && i(e !== o ? e : null);
24
+ };
25
+ return p ? /* @__PURE__ */ t("a", { href: c, target: "_top", className: "nav-link__button btn", children: [
26
+ /* @__PURE__ */ a("span", { className: "nav-link__icon", children: s }),
27
+ /* @__PURE__ */ a("span", { className: "nav-link__label", children: l })
28
+ ] }) : r.nestedLinks ? /* @__PURE__ */ t("div", { onClick: m, className: v, children: [
29
+ /* @__PURE__ */ a("span", { className: "nav-link__icon", children: s }),
30
+ /* @__PURE__ */ a("span", { className: "nav-link__label", children: l }),
31
+ /* @__PURE__ */ a("span", { className: "nav-link__arrow", children: /* @__PURE__ */ a(N, {}) })
32
+ ] }) : /* @__PURE__ */ t(
33
+ f,
34
+ {
35
+ to: c,
36
+ onClick: m,
37
+ className: "nav-link__button btn",
38
+ activeclassname: "active",
39
+ children: [
40
+ /* @__PURE__ */ a("span", { className: "nav-link__icon", children: s }),
41
+ /* @__PURE__ */ a("span", { className: "nav-link__label", children: l })
42
+ ]
43
+ }
44
+ );
45
+ };
46
+ _.propTypes = {
47
+ externalLink: n.bool,
48
+ icon: n.object,
49
+ id: n.string,
50
+ index: n.number,
51
+ label: n.string.isRequired,
52
+ link: n.string,
53
+ nestedLinks: n.array,
54
+ screens: n.array,
55
+ selectedIndex: n.number,
56
+ setSelectedIndex: n.func
57
+ };
58
+ const R = u.memo(_);
59
+ export {
60
+ R as default
61
+ };
62
+ //# sourceMappingURL=NavbarLink.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"NavbarLink.mjs","sources":["../../../src/lib/elements/NavbarLink/NavbarLink.jsx"],"sourcesContent":["/*\nCopyright 2019 Iguazio Systems Ltd.\n\nLicensed under the Apache License, Version 2.0 (the \"License\") with\nan addition restriction as set forth herein. You may not use this\nfile except in compliance with the License. You may obtain a copy of\nthe License at http://www.apache.org/licenses/LICENSE-2.0.\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\nimplied. See the License for the specific language governing\npermissions and limitations under the License.\n\nIn addition, you may not use the software for any purposes that are\nillegal under applicable law, and the grant of the foregoing license\nunder the Apache 2.0 license is conditioned upon your compliance with\nsuch restriction.\n*/\nimport React from 'react'\nimport { NavLink, useLocation } from 'react-router-dom'\nimport classNames from 'classnames'\nimport PropTypes from 'prop-types'\n\nimport ArrowIcon from '../../images/arrow.svg?react'\n\nimport './NavbarLink.scss'\n\nconst NavbarLink = ({\n externalLink = false,\n icon = null,\n index = null,\n label,\n link = '',\n selectedIndex = null,\n setSelectedIndex,\n ...props\n}) => {\n const { pathname } = useLocation()\n const [, , page] = pathname.split('/').slice(1, 4)\n\n const parentLinkClasses = classNames(\n 'nav-link__button btn nav-link__parent',\n props.screens && props.screens.includes(page) && 'active',\n index === selectedIndex && 'expanded'\n )\n\n const handleExpanded = () => {\n if (setSelectedIndex) {\n if (index !== selectedIndex) {\n setSelectedIndex(index)\n } else {\n setSelectedIndex(null)\n }\n }\n }\n\n return externalLink ? (\n <a href={link} target=\"_top\" className=\"nav-link__button btn\">\n <span className=\"nav-link__icon\">{icon}</span>\n <span className=\"nav-link__label\">{label}</span>\n </a>\n ) : props.nestedLinks ? (\n <div onClick={handleExpanded} className={parentLinkClasses}>\n <span className=\"nav-link__icon\">{icon}</span>\n <span className=\"nav-link__label\">{label}</span>\n\n <span className=\"nav-link__arrow\">\n <ArrowIcon />\n </span>\n </div>\n ) : (\n <NavLink\n to={link}\n onClick={handleExpanded}\n className=\"nav-link__button btn\"\n activeclassname=\"active\"\n >\n <span className=\"nav-link__icon\">{icon}</span>\n <span className=\"nav-link__label\">{label}</span>\n </NavLink>\n )\n}\n\nNavbarLink.propTypes = {\n externalLink: PropTypes.bool,\n icon: PropTypes.object,\n id: PropTypes.string,\n index: PropTypes.number,\n label: PropTypes.string.isRequired,\n link: PropTypes.string,\n nestedLinks: PropTypes.array,\n screens: PropTypes.array,\n selectedIndex: PropTypes.number,\n setSelectedIndex: PropTypes.func\n}\n\nexport default React.memo(NavbarLink)\n"],"names":["NavbarLink","externalLink","icon","index","label","link","selectedIndex","setSelectedIndex","props","pathname","useLocation","page","parentLinkClasses","classNames","handleExpanded","jsx","jsxs","ArrowIcon","NavLink","PropTypes","NavbarLink$1","React"],"mappings":";;;;;;;AA4BA,MAAMA,IAAa,CAAC;AAAA,EAClB,cAAAC,IAAe;AAAA,EACf,MAAAC,IAAO;AAAA,EACP,OAAAC,IAAQ;AAAA,EACR,OAAAC;AAAA,EACA,MAAAC,IAAO;AAAA,EACP,eAAAC,IAAgB;AAAA,EAChB,kBAAAC;AAAA,EACA,GAAGC;AACL,MAAM;AACE,QAAA,EAAE,UAAAC,EAAS,IAAIC,EAAY,GAC3B,CAAK,EAAA,EAAAC,CAAI,IAAIF,EAAS,MAAM,GAAG,EAAE,MAAM,GAAG,CAAC,GAE3CG,IAAoBC;AAAAA,IACxB;AAAA,IACAL,EAAM,WAAWA,EAAM,QAAQ,SAASG,CAAI,KAAK;AAAA,IACjDR,MAAUG,KAAiB;AAAA,EAC7B,GAEMQ,IAAiB,MAAM;AAC3B,IAAIP,KAEAA,EADEJ,MAAUG,IACKH,IAEA,IAFK;AAAA,EAK5B;AAEO,SAAAF,sBACJ,KAAE,EAAA,MAAMI,GAAM,QAAO,QAAO,WAAU,wBACrC,UAAA;AAAA,IAAC,gBAAAU,EAAA,QAAA,EAAK,WAAU,kBAAkB,UAAKb,GAAA;AAAA,IACtC,gBAAAa,EAAA,QAAA,EAAK,WAAU,mBAAmB,UAAMX,EAAA,CAAA;AAAA,EAC3C,EAAA,CAAA,IACEI,EAAM,cACR,gBAAAQ,EAAC,SAAI,SAASF,GAAgB,WAAWF,GACvC,UAAA;AAAA,IAAC,gBAAAG,EAAA,QAAA,EAAK,WAAU,kBAAkB,UAAKb,GAAA;AAAA,IACtC,gBAAAa,EAAA,QAAA,EAAK,WAAU,mBAAmB,UAAMX,GAAA;AAAA,sBAExC,QAAK,EAAA,WAAU,mBACd,UAAA,gBAAAW,EAACE,KAAU,EACb,CAAA;AAAA,EAAA,EAAA,CACF,IAEA,gBAAAD;AAAA,IAACE;AAAA,IAAA;AAAA,MACC,IAAIb;AAAA,MACJ,SAASS;AAAA,MACT,WAAU;AAAA,MACV,iBAAgB;AAAA,MAEhB,UAAA;AAAA,QAAC,gBAAAC,EAAA,QAAA,EAAK,WAAU,kBAAkB,UAAKb,GAAA;AAAA,QACtC,gBAAAa,EAAA,QAAA,EAAK,WAAU,mBAAmB,UAAMX,EAAA,CAAA;AAAA,MAAA;AAAA,IAAA;AAAA,EAC3C;AAEJ;AAEAJ,EAAW,YAAY;AAAA,EACrB,cAAcmB,EAAU;AAAA,EACxB,MAAMA,EAAU;AAAA,EAChB,IAAIA,EAAU;AAAA,EACd,OAAOA,EAAU;AAAA,EACjB,OAAOA,EAAU,OAAO;AAAA,EACxB,MAAMA,EAAU;AAAA,EAChB,aAAaA,EAAU;AAAA,EACvB,SAASA,EAAU;AAAA,EACnB,eAAeA,EAAU;AAAA,EACzB,kBAAkBA,EAAU;AAC9B;AAEA,MAAAC,IAAeC,EAAM,KAAKrB,CAAU;"}
@@ -1,11 +1,12 @@
1
1
  import ActionsMenuItem from './ActionsMenuItem/ActionsMenuItem';
2
2
  import FormActionButton from './FormActionButton/FormActionButton';
3
3
  import FormRowActions from './FormRowActions/FormRowActions';
4
+ import NavbarLink from './NavbarLink/NavbarLink';
4
5
  import OptionsMenu from './OptionsMenu/OptionsMenu';
5
6
  import SelectOption from './SelectOption/SelectOption';
6
7
  import TableHead from './TableHead/TableHead';
7
8
  import TableLinkCell from './TableLinkCell/TableLinkCell';
8
9
  import TableTypeCell from './TableTypeCell/TableTypeCell';
9
10
  import ValidationTemplate from './ValidationTemplate/ValidationTemplate';
10
- export { ActionsMenuItem, FormActionButton, FormRowActions, OptionsMenu, SelectOption, TableHead, TableLinkCell, TableTypeCell, ValidationTemplate };
11
+ export { ActionsMenuItem, FormActionButton, FormRowActions, NavbarLink, OptionsMenu, SelectOption, TableHead, TableLinkCell, TableTypeCell, ValidationTemplate };
11
12
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/lib/elements/index.js"],"names":[],"mappings":"4BAiB4B,mCAAmC;6BAClC,qCAAqC;2BACvC,iCAAiC;wBACpC,2BAA2B;yBAC1B,6BAA6B;sBAChC,uBAAuB;0BACnB,+BAA+B;0BAC/B,+BAA+B;+BAC1B,yCAAyC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/lib/elements/index.js"],"names":[],"mappings":"4BAiB4B,mCAAmC;6BAClC,qCAAqC;2BACvC,iCAAiC;uBACrC,yBAAyB;wBACxB,2BAA2B;yBAC1B,6BAA6B;sBAChC,uBAAuB;0BACnB,+BAA+B;0BAC/B,+BAA+B;+BAC1B,yCAAyC"}
@@ -1,21 +1,23 @@
1
1
  import { default as o } from "./ActionsMenuItem/ActionsMenuItem.mjs";
2
2
  import { default as r } from "./FormActionButton/FormActionButton.mjs";
3
- import { default as f } from "./FormRowActions/FormRowActions.mjs";
4
- import { default as p } from "./OptionsMenu/OptionsMenu.mjs";
5
- import { default as u } from "./SelectOption/SelectOption.mjs";
6
- import { default as n } from "./TableHead/TableHead.mjs";
7
- import { default as i } from "./TableLinkCell/TableLinkCell.mjs";
8
- import { default as c } from "./TableTypeCell/TableTypeCell.mjs";
9
- import { default as A } from "./ValidationTemplate/ValidationTemplate.mjs";
3
+ import { default as l } from "./FormRowActions/FormRowActions.mjs";
4
+ import { default as p } from "./NavbarLink/NavbarLink.mjs";
5
+ import { default as u } from "./OptionsMenu/OptionsMenu.mjs";
6
+ import { default as n } from "./SelectOption/SelectOption.mjs";
7
+ import { default as i } from "./TableHead/TableHead.mjs";
8
+ import { default as b } from "./TableLinkCell/TableLinkCell.mjs";
9
+ import { default as A } from "./TableTypeCell/TableTypeCell.mjs";
10
+ import { default as C } from "./ValidationTemplate/ValidationTemplate.mjs";
10
11
  export {
11
12
  o as ActionsMenuItem,
12
13
  r as FormActionButton,
13
- f as FormRowActions,
14
- p as OptionsMenu,
15
- u as SelectOption,
16
- n as TableHead,
17
- i as TableLinkCell,
18
- c as TableTypeCell,
19
- A as ValidationTemplate
14
+ l as FormRowActions,
15
+ p as NavbarLink,
16
+ u as OptionsMenu,
17
+ n as SelectOption,
18
+ i as TableHead,
19
+ b as TableLinkCell,
20
+ A as TableTypeCell,
21
+ C as ValidationTemplate
20
22
  };
21
23
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;"}
1
+ {"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;"}
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M2 17.5V16.1875C2 15.5903 2.30556 14.1042 2.91667 13.7292C3.52778 13.3542 4.33333 13.1667 5.33333 13.1667C5.51389 13.1667 5.6875 13.1701 5.85417 13.1771C6.02083 13.184 6.18056 13.2014 6.33333 13.2292C6.13889 13.5208 5.99306 13.8264 5.89583 14.1458C5.79861 14.4653 5.75 15.7986 5.75 16.1458V17.5H2ZM7 17.5V16.1458C7 15.7014 7.12153 14.2951 7.36458 13.9271C7.60764 13.559 7.95139 13.2361 8.39583 12.9583C8.84028 12.6806 9.37153 12.4722 9.98958 12.3333C10.6076 12.1944 11.2778 12.125 12 12.125C12.7361 12.125 13.4132 12.1944 14.0312 12.3333C14.6493 12.4722 15.1806 12.6806 15.625 12.9583C16.0694 13.2361 16.4097 13.559 16.6458 13.9271C16.8819 14.2951 17 15.7014 17 16.1458V17.5H7ZM18.25 17.5V16.1458C18.25 15.7847 18.2049 14.4444 18.1146 14.125C18.0243 13.8056 17.8889 13.5069 17.7083 13.2292C17.8611 13.2014 18.0174 13.184 18.1771 13.1771C18.3368 13.1701 18.5 13.1667 18.6667 13.1667C19.6667 13.1667 20.4722 13.3507 21.0833 13.7188C21.6944 14.0868 22 15.5764 22 16.1875V17.5H18.25ZM8.77083 15.8333H15.25C15.1111 15.5556 14.7257 14.3125 14.0938 14.1042C13.4618 13.8958 12.7639 13.7917 12 13.7917C11.2361 13.7917 10.5382 13.8958 9.90625 14.1042C9.27431 14.3125 8.89583 15.5556 8.77083 15.8333ZM5.33333 12.3333C4.875 12.3333 4.48264 12.1701 4.15625 11.8438C3.82986 11.5174 3.66667 11.125 3.66667 10.6667C3.66667 10.1944 3.82986 9.79861 4.15625 9.47917C4.48264 9.15972 4.875 9 5.33333 9C5.80556 9 6.20139 9.15972 6.52083 9.47917C6.84028 9.79861 7 10.1944 7 10.6667C7 11.125 6.84028 11.5174 6.52083 11.8438C6.20139 12.1701 5.80556 12.3333 5.33333 12.3333ZM18.6667 12.3333C18.2083 12.3333 17.816 12.1701 17.4896 11.8438C17.1632 11.5174 17 11.125 17 10.6667C17 10.1944 17.1632 9.79861 17.4896 9.47917C17.816 9.15972 18.2083 9 18.6667 9C19.1389 9 19.5347 9.15972 19.8542 9.47917C20.1736 9.79861 20.3333 10.1944 20.3333 10.6667C20.3333 11.125 20.1736 11.5174 19.8542 11.8438C19.5347 12.1701 19.1389 12.3333 18.6667 12.3333ZM12 11.5C11.3056 11.5 10.7153 11.2569 10.2292 10.7708C9.74305 10.2847 9.5 9.69444 9.5 9C9.5 8.29167 9.74305 7.69792 10.2292 7.21875C10.7153 6.73958 11.3056 6.5 12 6.5C12.7083 6.5 13.3021 6.73958 13.7812 7.21875C14.2604 7.69792 14.5 8.29167 14.5 9C14.5 9.69444 14.2604 10.2847 13.7812 10.7708C13.3021 11.2569 12.7083 11.5 12 11.5ZM12 9.83333C12.2361 9.83333 12.434 9.75347 12.5938 9.59375C12.7535 9.43403 12.8333 9.23611 12.8333 9C12.8333 8.76389 12.7535 8.56597 12.5938 8.40625C12.434 8.24653 12.2361 8.16667 12 8.16667C11.7639 8.16667 11.566 8.24653 11.4062 8.40625C11.2465 8.56597 11.1667 8.76389 11.1667 9C11.1667 9.23611 11.2465 9.43403 11.4062 9.59375C11.566 9.75347 11.7639 9.83333 12 9.83333Z" fill="#4B4760"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M10.001 1.66669C10.1029 1.66669 10.2048 1.69316 10.2948 1.74318L17.195 5.57453C17.384 5.67769 17.501 5.87583 17.501 6.08804V14.0453C17.501 14.2575 17.3839 14.4548 17.195 14.558L10.2948 18.3902C10.2078 18.4402 10.1059 18.4667 10.001 18.4667C9.89598 18.4667 9.79068 18.44 9.70068 18.3869L2.80127 14.4815C2.61534 14.3784 2.50106 14.1813 2.50098 13.9721V6.08804C2.50098 5.87583 2.61797 5.67769 2.80697 5.57453L9.70719 1.74318C9.79714 1.69316 9.89906 1.66669 10.001 1.66669ZM13.1447 12.4804C12.5087 13.2614 11.6027 13.7746 10.6007 13.9249V16.866L15.7163 14.025L13.1447 12.4804ZM4.28564 13.9631L9.4012 16.857V13.9306C8.3842 13.7862 7.46564 13.27 6.82064 12.4772L4.28564 13.9631ZM13.7599 8.5457C13.9429 9.00539 14.0358 9.49169 14.0358 9.99263C14.0358 10.5025 13.94 10.9953 13.751 11.464L16.3006 12.9931V7.10773L13.7599 8.5457ZM3.70133 12.9345L6.21761 11.4575C6.02872 10.9919 5.93604 10.4994 5.93604 9.99263C5.93607 9.48594 6.03175 8.99683 6.21761 8.53431L3.70133 7.10773V12.9345ZM9.55664 7.13051C8.80755 7.23906 8.13615 7.61957 7.66292 8.19903L7.38216 8.54245L7.22347 8.93795C7.08884 9.27289 7.01924 9.62504 7.01921 9.99263C7.01921 10.365 7.08726 10.719 7.22184 11.0506L7.38623 11.455L7.6613 11.7936C8.13234 12.3726 8.80375 12.7516 9.55339 12.858L9.99202 12.9199L10.4404 12.8531C11.1788 12.7423 11.8413 12.3659 12.3049 11.7968L12.5889 11.4477L12.7459 11.0587C12.883 10.7188 12.9526 10.3636 12.9526 9.99263C12.9526 9.62769 12.885 9.27721 12.7533 8.94609L12.5913 8.53919L12.3195 8.19903C11.8563 7.61967 11.1917 7.23867 10.4453 7.13051L10.001 7.06541L9.55664 7.13051ZM10.6007 6.05793C11.6176 6.20528 12.5299 6.72712 13.1659 7.52276L15.6919 6.09374L10.6007 3.26742V6.05793ZM4.31331 6.09374L6.82389 7.51462C7.46889 6.72474 8.3842 6.2053 9.4012 6.05793V3.26742L4.31331 6.09374Z" fill="#7F7989"/>
3
+ <path d="M17.418 6.08807C17.418 5.90647 17.3174 5.73641 17.1551 5.64781L17.1543 5.64699L10.2541 1.81643C10.196 1.78419 10.132 1.76303 10.0669 1.75458L10.001 1.74969C9.91344 1.74969 9.82545 1.77255 9.74788 1.81561L2.84766 5.64699L2.84684 5.64781C2.68458 5.73641 2.58398 5.90647 2.58398 6.08807V13.9722C2.58411 14.1513 2.68275 14.3201 2.84196 14.4084L9.74137 18.3146L9.743 18.3155L9.80241 18.3447C9.86435 18.3703 9.93247 18.383 10.001 18.383L10.0685 18.3789C10.135 18.3705 10.198 18.3497 10.2533 18.3179L10.2541 18.3171L17.1543 14.4849C17.3166 14.3962 17.4179 14.2268 17.418 14.0454V6.08807ZM13.1878 12.4089L15.7594 13.9535L15.8831 14.0275L10.6414 16.9385L10.5177 17.0077V13.8534L10.5885 13.8428C11.5702 13.6955 12.4577 13.1923 13.0804 12.4276L13.126 12.3714L13.1878 12.4089ZM6.88493 12.4243C7.51649 13.2007 8.41627 13.7069 9.4126 13.8485L9.48421 13.8583V16.9995L4.24495 14.0357L4.11882 13.9641L4.24333 13.8916L6.77832 12.4056L6.84017 12.369L6.88493 12.4243ZM13.1618 12.5879C12.5306 13.3356 11.6539 13.8325 10.6838 13.995V16.7237L15.5487 14.0218L13.1618 12.5879ZM4.45166 13.9616L9.3182 16.7147V14.0007C8.33257 13.8434 7.44219 13.3438 6.80192 12.5838L4.45166 13.9616ZM16.3836 13.1405L13.6468 11.499L13.6737 11.4331C13.8587 10.9745 13.9528 10.4919 13.9528 9.9927C13.9528 9.50226 13.8616 9.02642 13.6826 8.57668L13.6558 8.50914L13.7192 8.47333L16.2599 7.03534L16.3836 6.96454V13.1405ZM5.85303 9.9927C5.85307 9.5002 5.942 9.02394 6.11426 8.5718L3.78434 7.25018V12.7889L6.11426 11.4209C5.93916 10.9651 5.85303 10.4853 5.85303 9.9927ZM12.8696 9.9927C12.8696 9.6383 12.8038 9.29826 12.6759 8.97707L12.5181 8.58156L12.2544 8.25116C11.8045 7.68845 11.1588 7.3179 10.4331 7.21275L10.001 7.14927L9.56885 7.21275C8.84031 7.31832 8.18719 7.68874 7.72721 8.25197L7.45459 8.58482L7.30078 8.96893C7.17007 9.29412 7.10225 9.63587 7.10221 9.9927C7.10222 10.3546 7.16882 10.6977 7.29915 11.0189L7.45866 11.4128L7.72559 11.7407C8.18301 12.303 8.83538 12.6713 9.56397 12.7751L9.99365 12.8353L10.4282 12.771C11.1463 12.6632 11.7903 12.2968 12.2406 11.744L12.5156 11.4046L12.6686 11.0279C12.8017 10.6978 12.8696 10.3529 12.8696 9.9927ZM10.6414 3.19419L15.7326 6.02053L15.862 6.09296L13.1447 7.63023L13.1007 7.57489C12.478 6.79587 11.5846 6.28449 10.5885 6.14016L10.5177 6.13039V3.12583L10.6414 3.19419ZM9.48421 6.13039L9.41341 6.14016C8.41704 6.28453 7.51999 6.79384 6.88818 7.56757L6.84424 7.62209L6.7832 7.5871L4.14323 6.09296L4.27262 6.02053L9.36051 3.19419L9.48421 3.12583V6.13039ZM10.6838 5.98716C11.6691 6.1473 12.5528 6.6535 13.1846 7.4162L15.5218 6.09377L10.6838 3.40904V5.98716ZM4.48258 6.09377L6.80436 7.40806C7.44443 6.65053 8.33232 6.14725 9.3182 5.98716V3.40904L4.48258 6.09377ZM6.01904 9.9927C6.01905 10.4891 6.1103 10.9707 6.29492 11.4258L6.32178 11.4925L6.25993 11.5292L3.74365 13.0062L3.61833 13.0803V6.96454L3.74284 7.03534L6.25911 8.46193L6.32178 8.49774L6.29492 8.56529C6.11302 9.01796 6.01908 9.49668 6.01904 9.9927ZM13.0356 9.9927C13.0356 10.3743 12.9643 10.74 12.8232 11.0897L12.6662 11.4787L12.6613 11.4909L12.6532 11.5007L12.3691 11.8498C11.8924 12.435 11.2111 12.8216 10.4526 12.9354L10.0042 13.0021L9.99202 13.0038L9.98063 13.0021L9.54199 12.9403C8.77194 12.8309 8.0814 12.4417 7.59701 11.8465L7.32194 11.5072L7.3138 11.4982L7.30892 11.486L7.14453 11.0816C7.00586 10.7398 6.93621 10.3753 6.9362 9.9927C6.93624 9.6144 7.00765 9.25173 7.14616 8.90708L7.30485 8.51158L7.30973 8.49937L7.31787 8.4896L7.59863 8.14618C8.08503 7.5507 8.775 7.15993 9.54443 7.04836L9.98877 6.98326L10.001 6.98081L10.0132 6.98326L10.4575 7.04836C11.2246 7.15959 11.9082 7.55106 12.3846 8.14699L12.6564 8.48716L12.6646 8.49693L12.6686 8.50832L12.8306 8.91522C12.9663 9.25621 13.0356 9.61728 13.0356 9.9927ZM14.1188 9.9927C14.1188 10.489 14.0283 10.969 13.8527 11.4274L16.2176 12.8459V7.25018L13.8625 8.58238C14.0321 9.03208 14.1188 9.50562 14.1188 9.9927ZM17.584 14.0454C17.584 14.2883 17.4503 14.5137 17.2349 14.6314L17.234 14.6306L10.3354 18.4619L10.3363 18.4627C10.2361 18.5203 10.1196 18.5498 10.001 18.5498C9.88222 18.5498 9.76213 18.5198 9.65837 18.4587L2.76058 14.5541C2.5482 14.4361 2.41809 14.2112 2.41797 13.9722V6.08807C2.41797 5.8455 2.55092 5.61913 2.76628 5.50132L9.6665 1.66994C9.76875 1.61308 9.88481 1.58368 10.001 1.58368C10.1169 1.58368 10.2325 1.61331 10.3346 1.66994L17.2357 5.50132C17.4514 5.61904 17.584 5.84529 17.584 6.08807V14.0454Z" fill="#7F7989"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M2 17.5V16.1875C2 15.5903 2.30556 14.1042 2.91667 13.7292C3.52778 13.3542 4.33333 13.1667 5.33333 13.1667C5.51389 13.1667 5.6875 13.1701 5.85417 13.1771C6.02083 13.184 6.18056 13.2014 6.33333 13.2292C6.13889 13.5208 5.99306 13.8264 5.89583 14.1458C5.79861 14.4653 5.75 15.7986 5.75 16.1458V17.5H2ZM7 17.5V16.1458C7 15.7014 7.12153 14.2951 7.36458 13.9271C7.60764 13.559 7.95139 13.2361 8.39583 12.9583C8.84028 12.6806 9.37153 12.4722 9.98958 12.3333C10.6076 12.1944 11.2778 12.125 12 12.125C12.7361 12.125 13.4132 12.1944 14.0312 12.3333C14.6493 12.4722 15.1806 12.6806 15.625 12.9583C16.0694 13.2361 16.4097 13.559 16.6458 13.9271C16.8819 14.2951 17 15.7014 17 16.1458V17.5H7ZM18.25 17.5V16.1458C18.25 15.7847 18.2049 14.4444 18.1146 14.125C18.0243 13.8056 17.8889 13.5069 17.7083 13.2292C17.8611 13.2014 18.0174 13.184 18.1771 13.1771C18.3368 13.1701 18.5 13.1667 18.6667 13.1667C19.6667 13.1667 20.4722 13.3507 21.0833 13.7188C21.6944 14.0868 22 15.5764 22 16.1875V17.5H18.25ZM8.77083 15.8333H15.25C15.1111 15.5556 14.7257 14.3125 14.0938 14.1042C13.4618 13.8958 12.7639 13.7917 12 13.7917C11.2361 13.7917 10.5382 13.8958 9.90625 14.1042C9.27431 14.3125 8.89583 15.5556 8.77083 15.8333ZM5.33333 12.3333C4.875 12.3333 4.48264 12.1701 4.15625 11.8438C3.82986 11.5174 3.66667 11.125 3.66667 10.6667C3.66667 10.1944 3.82986 9.79861 4.15625 9.47917C4.48264 9.15972 4.875 9 5.33333 9C5.80556 9 6.20139 9.15972 6.52083 9.47917C6.84028 9.79861 7 10.1944 7 10.6667C7 11.125 6.84028 11.5174 6.52083 11.8438C6.20139 12.1701 5.80556 12.3333 5.33333 12.3333ZM18.6667 12.3333C18.2083 12.3333 17.816 12.1701 17.4896 11.8438C17.1632 11.5174 17 11.125 17 10.6667C17 10.1944 17.1632 9.79861 17.4896 9.47917C17.816 9.15972 18.2083 9 18.6667 9C19.1389 9 19.5347 9.15972 19.8542 9.47917C20.1736 9.79861 20.3333 10.1944 20.3333 10.6667C20.3333 11.125 20.1736 11.5174 19.8542 11.8438C19.5347 12.1701 19.1389 12.3333 18.6667 12.3333ZM12 11.5C11.3056 11.5 10.7153 11.2569 10.2292 10.7708C9.74305 10.2847 9.5 9.69444 9.5 9C9.5 8.29167 9.74305 7.69792 10.2292 7.21875C10.7153 6.73958 11.3056 6.5 12 6.5C12.7083 6.5 13.3021 6.73958 13.7812 7.21875C14.2604 7.69792 14.5 8.29167 14.5 9C14.5 9.69444 14.2604 10.2847 13.7812 10.7708C13.3021 11.2569 12.7083 11.5 12 11.5ZM12 9.83333C12.2361 9.83333 12.434 9.75347 12.5938 9.59375C12.7535 9.43403 12.8333 9.23611 12.8333 9C12.8333 8.76389 12.7535 8.56597 12.5938 8.40625C12.434 8.24653 12.2361 8.16667 12 8.16667C11.7639 8.16667 11.566 8.24653 11.4062 8.40625C11.2465 8.56597 11.1667 8.76389 11.1667 9C11.1667 9.23611 11.2465 9.43403 11.4062 9.59375C11.566 9.75347 11.7639 9.83333 12 9.83333Z" fill="#4B4760"/>
3
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_19326_8303)">
3
+ <path d="M18 3C18.7652 2.99996 19.5015 3.29233 20.0583 3.81728C20.615 4.34224 20.9501 5.06011 20.995 5.824L21 6V18C21 18.7652 20.7077 19.5015 20.1827 20.0583C19.6578 20.615 18.9399 20.9501 18.176 20.995L18 21H6C5.23479 21 4.49849 20.7077 3.94174 20.1827C3.38499 19.6578 3.04989 18.9399 3.005 18.176L3 18V6C2.99996 5.23479 3.29233 4.49849 3.81728 3.94174C4.34224 3.38499 5.06011 3.04989 5.824 3.005L6 3H18ZM18 5H9V19H18C18.2449 19 18.4813 18.91 18.6644 18.7473C18.8474 18.5845 18.9643 18.3603 18.993 18.117L19 18V6C19 5.75507 18.91 5.51866 18.7473 5.33563C18.5845 5.15259 18.3603 5.03566 18.117 5.007L18 5ZM13.613 9.21L13.707 9.293L15.707 11.293C15.8792 11.4652 15.9826 11.6943 15.9979 11.9373C16.0132 12.1803 15.9393 12.4206 15.79 12.613L15.707 12.707L13.707 14.707C13.527 14.8863 13.2856 14.9905 13.0316 14.9982C12.7777 15.006 12.5303 14.9168 12.3397 14.7488C12.1492 14.5807 12.0297 14.3464 12.0056 14.0935C11.9815 13.8406 12.0546 13.588 12.21 13.387L12.293 13.293L13.585 12L12.293 10.707C12.1208 10.5348 12.0174 10.3057 12.0021 10.0627C11.9868 9.81966 12.0607 9.5794 12.21 9.387L12.293 9.293C12.4652 9.12082 12.6943 9.01739 12.9373 9.00211C13.1803 8.98683 13.4206 9.06075 13.613 9.21Z" fill="#7F7989"/>
4
+ </g>
5
+ <defs>
6
+ <clipPath id="clip0_19326_8303">
7
+ <rect width="24" height="24" fill="white"/>
8
+ </clipPath>
9
+ </defs>
10
+ </svg>
@@ -0,0 +1,6 @@
1
+ import * as e from "react";
2
+ const C = (t) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("g", { clipPath: "url(#clip0_19326_8303)" }, /* @__PURE__ */ e.createElement("path", { d: "M18 3C18.7652 2.99996 19.5015 3.29233 20.0583 3.81728C20.615 4.34224 20.9501 5.06011 20.995 5.824L21 6V18C21 18.7652 20.7077 19.5015 20.1827 20.0583C19.6578 20.615 18.9399 20.9501 18.176 20.995L18 21H6C5.23479 21 4.49849 20.7077 3.94174 20.1827C3.38499 19.6578 3.04989 18.9399 3.005 18.176L3 18V6C2.99996 5.23479 3.29233 4.49849 3.81728 3.94174C4.34224 3.38499 5.06011 3.04989 5.824 3.005L6 3H18ZM18 5H9V19H18C18.2449 19 18.4813 18.91 18.6644 18.7473C18.8474 18.5845 18.9643 18.3603 18.993 18.117L19 18V6C19 5.75507 18.91 5.51866 18.7473 5.33563C18.5845 5.15259 18.3603 5.03566 18.117 5.007L18 5ZM13.613 9.21L13.707 9.293L15.707 11.293C15.8792 11.4652 15.9826 11.6943 15.9979 11.9373C16.0132 12.1803 15.9393 12.4206 15.79 12.613L15.707 12.707L13.707 14.707C13.527 14.8863 13.2856 14.9905 13.0316 14.9982C12.7777 15.006 12.5303 14.9168 12.3397 14.7488C12.1492 14.5807 12.0297 14.3464 12.0056 14.0935C11.9815 13.8406 12.0546 13.588 12.21 13.387L12.293 13.293L13.585 12L12.293 10.707C12.1208 10.5348 12.0174 10.3057 12.0021 10.0627C11.9868 9.81966 12.0607 9.5794 12.21 9.387L12.293 9.293C12.4652 9.12082 12.6943 9.01739 12.9373 9.00211C13.1803 8.98683 13.4206 9.06075 13.613 9.21Z", fill: "#7F7989" })), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("clipPath", { id: "clip0_19326_8303" }, /* @__PURE__ */ e.createElement("rect", { width: 24, height: 24, fill: "white" }))));
3
+ export {
4
+ C as default
5
+ };
6
+ //# sourceMappingURL=navbar-closed-icon.svg.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"navbar-closed-icon.svg.mjs","sources":["../../../src/lib/images/navbar/navbar-closed-icon.svg?react"],"sourcesContent":["import * as React from \"react\";\nconst SvgNavbarClosedIcon = (props) => /* @__PURE__ */ React.createElement(\"svg\", { width: 24, height: 24, viewBox: \"0 0 24 24\", fill: \"none\", xmlns: \"http://www.w3.org/2000/svg\", ...props }, /* @__PURE__ */ React.createElement(\"g\", { clipPath: \"url(#clip0_19326_8303)\" }, /* @__PURE__ */ React.createElement(\"path\", { d: \"M18 3C18.7652 2.99996 19.5015 3.29233 20.0583 3.81728C20.615 4.34224 20.9501 5.06011 20.995 5.824L21 6V18C21 18.7652 20.7077 19.5015 20.1827 20.0583C19.6578 20.615 18.9399 20.9501 18.176 20.995L18 21H6C5.23479 21 4.49849 20.7077 3.94174 20.1827C3.38499 19.6578 3.04989 18.9399 3.005 18.176L3 18V6C2.99996 5.23479 3.29233 4.49849 3.81728 3.94174C4.34224 3.38499 5.06011 3.04989 5.824 3.005L6 3H18ZM18 5H9V19H18C18.2449 19 18.4813 18.91 18.6644 18.7473C18.8474 18.5845 18.9643 18.3603 18.993 18.117L19 18V6C19 5.75507 18.91 5.51866 18.7473 5.33563C18.5845 5.15259 18.3603 5.03566 18.117 5.007L18 5ZM13.613 9.21L13.707 9.293L15.707 11.293C15.8792 11.4652 15.9826 11.6943 15.9979 11.9373C16.0132 12.1803 15.9393 12.4206 15.79 12.613L15.707 12.707L13.707 14.707C13.527 14.8863 13.2856 14.9905 13.0316 14.9982C12.7777 15.006 12.5303 14.9168 12.3397 14.7488C12.1492 14.5807 12.0297 14.3464 12.0056 14.0935C11.9815 13.8406 12.0546 13.588 12.21 13.387L12.293 13.293L13.585 12L12.293 10.707C12.1208 10.5348 12.0174 10.3057 12.0021 10.0627C11.9868 9.81966 12.0607 9.5794 12.21 9.387L12.293 9.293C12.4652 9.12082 12.6943 9.01739 12.9373 9.00211C13.1803 8.98683 13.4206 9.06075 13.613 9.21Z\", fill: \"#7F7989\" })), /* @__PURE__ */ React.createElement(\"defs\", null, /* @__PURE__ */ React.createElement(\"clipPath\", { id: \"clip0_19326_8303\" }, /* @__PURE__ */ React.createElement(\"rect\", { width: 24, height: 24, fill: \"white\" }))));\nexport default SvgNavbarClosedIcon;\n"],"names":["SvgNavbarClosedIcon","props","React"],"mappings":";AACK,MAACA,IAAsB,CAACC,MAA0B,gBAAAC,EAAM,cAAc,OAAO,EAAE,OAAO,IAAI,QAAQ,IAAI,SAAS,aAAa,MAAM,QAAQ,OAAO,8BAA8B,GAAGD,EAAK,GAAoB,gBAAAC,EAAM,cAAc,KAAK,EAAE,UAAU,4BAA4C,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,6pCAA6pC,MAAM,UAAS,CAAE,CAAC,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,MAAsB,gBAAAA,EAAM,cAAc,YAAY,EAAE,IAAI,mBAAoB,GAAkB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,OAAO,IAAI,QAAQ,IAAI,MAAM,QAAO,CAAE,CAAC,CAAC,CAAC;"}
@@ -0,0 +1,10 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_19326_8314)">
3
+ <path d="M18 3C18.7652 2.99996 19.5015 3.29233 20.0583 3.81728C20.615 4.34224 20.9501 5.06011 20.995 5.824L21 6V18C21 18.7652 20.7077 19.5015 20.1827 20.0583C19.6578 20.615 18.9399 20.9501 18.176 20.995L18 21H6C5.23479 21 4.49849 20.7077 3.94174 20.1827C3.38499 19.6578 3.04989 18.9399 3.005 18.176L3 18V6C2.99996 5.23479 3.29233 4.49849 3.81728 3.94174C4.34224 3.38499 5.06011 3.04989 5.824 3.005L6 3H18ZM18 5H9V19H18C18.2449 19 18.4813 18.91 18.6644 18.7473C18.8474 18.5845 18.9643 18.3603 18.993 18.117L19 18V6C19 5.75507 18.91 5.51866 18.7473 5.33563C18.5845 5.15259 18.3603 5.03566 18.117 5.007L18 5ZM15.707 9.293C15.8792 9.46519 15.9826 9.69429 15.9979 9.93732C16.0132 10.1803 15.9393 10.4206 15.79 10.613L15.707 10.707L14.415 12L15.707 13.293C15.8792 13.4652 15.9826 13.6943 15.9979 13.9373C16.0132 14.1803 15.9393 14.4206 15.79 14.613L15.707 14.707C15.5348 14.8792 15.3057 14.9826 15.0627 14.9979C14.8197 15.0132 14.5794 14.9393 14.387 14.79L14.293 14.707L12.293 12.707C12.1208 12.5348 12.0174 12.3057 12.0021 12.0627C11.9868 11.8197 12.0607 11.5794 12.21 11.387L12.293 11.293L14.293 9.293C14.4805 9.10553 14.7348 9.00021 15 9.00021C15.2652 9.00021 15.5195 9.10553 15.707 9.293Z" fill="#7F7989"/>
4
+ </g>
5
+ <defs>
6
+ <clipPath id="clip0_19326_8314">
7
+ <rect width="24" height="24" fill="white"/>
8
+ </clipPath>
9
+ </defs>
10
+ </svg>
@@ -0,0 +1,6 @@
1
+ import * as e from "react";
2
+ const C = (t) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("g", { clipPath: "url(#clip0_19326_8314)" }, /* @__PURE__ */ e.createElement("path", { d: "M18 3C18.7652 2.99996 19.5015 3.29233 20.0583 3.81728C20.615 4.34224 20.9501 5.06011 20.995 5.824L21 6V18C21 18.7652 20.7077 19.5015 20.1827 20.0583C19.6578 20.615 18.9399 20.9501 18.176 20.995L18 21H6C5.23479 21 4.49849 20.7077 3.94174 20.1827C3.38499 19.6578 3.04989 18.9399 3.005 18.176L3 18V6C2.99996 5.23479 3.29233 4.49849 3.81728 3.94174C4.34224 3.38499 5.06011 3.04989 5.824 3.005L6 3H18ZM18 5H9V19H18C18.2449 19 18.4813 18.91 18.6644 18.7473C18.8474 18.5845 18.9643 18.3603 18.993 18.117L19 18V6C19 5.75507 18.91 5.51866 18.7473 5.33563C18.5845 5.15259 18.3603 5.03566 18.117 5.007L18 5ZM15.707 9.293C15.8792 9.46519 15.9826 9.69429 15.9979 9.93732C16.0132 10.1803 15.9393 10.4206 15.79 10.613L15.707 10.707L14.415 12L15.707 13.293C15.8792 13.4652 15.9826 13.6943 15.9979 13.9373C16.0132 14.1803 15.9393 14.4206 15.79 14.613L15.707 14.707C15.5348 14.8792 15.3057 14.9826 15.0627 14.9979C14.8197 15.0132 14.5794 14.9393 14.387 14.79L14.293 14.707L12.293 12.707C12.1208 12.5348 12.0174 12.3057 12.0021 12.0627C11.9868 11.8197 12.0607 11.5794 12.21 11.387L12.293 11.293L14.293 9.293C14.4805 9.10553 14.7348 9.00021 15 9.00021C15.2652 9.00021 15.5195 9.10553 15.707 9.293Z", fill: "#7F7989" })), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("clipPath", { id: "clip0_19326_8314" }, /* @__PURE__ */ e.createElement("rect", { width: 24, height: 24, fill: "white" }))));
3
+ export {
4
+ C as default
5
+ };
6
+ //# sourceMappingURL=navbar-opened-icon.svg.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"navbar-opened-icon.svg.mjs","sources":["../../../src/lib/images/navbar/navbar-opened-icon.svg?react"],"sourcesContent":["import * as React from \"react\";\nconst SvgNavbarOpenedIcon = (props) => /* @__PURE__ */ React.createElement(\"svg\", { width: 24, height: 24, viewBox: \"0 0 24 24\", fill: \"none\", xmlns: \"http://www.w3.org/2000/svg\", ...props }, /* @__PURE__ */ React.createElement(\"g\", { clipPath: \"url(#clip0_19326_8314)\" }, /* @__PURE__ */ React.createElement(\"path\", { d: \"M18 3C18.7652 2.99996 19.5015 3.29233 20.0583 3.81728C20.615 4.34224 20.9501 5.06011 20.995 5.824L21 6V18C21 18.7652 20.7077 19.5015 20.1827 20.0583C19.6578 20.615 18.9399 20.9501 18.176 20.995L18 21H6C5.23479 21 4.49849 20.7077 3.94174 20.1827C3.38499 19.6578 3.04989 18.9399 3.005 18.176L3 18V6C2.99996 5.23479 3.29233 4.49849 3.81728 3.94174C4.34224 3.38499 5.06011 3.04989 5.824 3.005L6 3H18ZM18 5H9V19H18C18.2449 19 18.4813 18.91 18.6644 18.7473C18.8474 18.5845 18.9643 18.3603 18.993 18.117L19 18V6C19 5.75507 18.91 5.51866 18.7473 5.33563C18.5845 5.15259 18.3603 5.03566 18.117 5.007L18 5ZM15.707 9.293C15.8792 9.46519 15.9826 9.69429 15.9979 9.93732C16.0132 10.1803 15.9393 10.4206 15.79 10.613L15.707 10.707L14.415 12L15.707 13.293C15.8792 13.4652 15.9826 13.6943 15.9979 13.9373C16.0132 14.1803 15.9393 14.4206 15.79 14.613L15.707 14.707C15.5348 14.8792 15.3057 14.9826 15.0627 14.9979C14.8197 15.0132 14.5794 14.9393 14.387 14.79L14.293 14.707L12.293 12.707C12.1208 12.5348 12.0174 12.3057 12.0021 12.0627C11.9868 11.8197 12.0607 11.5794 12.21 11.387L12.293 11.293L14.293 9.293C14.4805 9.10553 14.7348 9.00021 15 9.00021C15.2652 9.00021 15.5195 9.10553 15.707 9.293Z\", fill: \"#7F7989\" })), /* @__PURE__ */ React.createElement(\"defs\", null, /* @__PURE__ */ React.createElement(\"clipPath\", { id: \"clip0_19326_8314\" }, /* @__PURE__ */ React.createElement(\"rect\", { width: 24, height: 24, fill: \"white\" }))));\nexport default SvgNavbarOpenedIcon;\n"],"names":["SvgNavbarOpenedIcon","props","React"],"mappings":";AACK,MAACA,IAAsB,CAACC,MAA0B,gBAAAC,EAAM,cAAc,OAAO,EAAE,OAAO,IAAI,QAAQ,IAAI,SAAS,aAAa,MAAM,QAAQ,OAAO,8BAA8B,GAAGD,EAAK,GAAoB,gBAAAC,EAAM,cAAc,KAAK,EAAE,UAAU,4BAA4C,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,6pCAA6pC,MAAM,UAAS,CAAE,CAAC,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,MAAsB,gBAAAA,EAAM,cAAc,YAAY,EAAE,IAAI,mBAAoB,GAAkB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,OAAO,IAAI,QAAQ,IAAI,MAAM,QAAO,CAAE,CAAC,CAAC,CAAC;"}
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M2 19.5455V17C2 16.4848 2.13258 16.0114 2.39773 15.5795C2.66288 15.1477 3.01515 14.8182 3.45455 14.5909C4.39394 14.1212 5.34848 13.7689 6.31818 13.5341C7.28788 13.2992 8.27273 13.1818 9.27273 13.1818C10.2727 13.1818 11.2576 13.2992 12.2273 13.5341C13.197 13.7689 14.1515 14.1212 15.0909 14.5909C15.5303 14.8182 15.8826 15.1477 16.1477 15.5795C16.4129 16.0114 16.5455 16.4848 16.5455 17V19.5455H2ZM18.3636 19.5455V16.8182C18.3636 16.1515 18.178 15.5114 17.8068 14.8977C17.4356 14.2841 16.9091 13.7576 16.2273 13.3182C17 13.4091 17.7273 13.5644 18.4091 13.7841C19.0909 14.0038 19.7273 14.2727 20.3182 14.5909C20.8636 14.8939 21.2803 15.2311 21.5682 15.6023C21.8561 15.9735 22 16.3788 22 16.8182V19.5455H18.3636ZM9.27273 12.2727C8.27273 12.2727 7.41667 11.9167 6.70455 11.2045C5.99242 10.4924 5.63636 9.63636 5.63636 8.63636C5.63636 7.63636 5.99242 6.7803 6.70455 6.06818C7.41667 5.35606 8.27273 5 9.27273 5C10.2727 5 11.1288 5.35606 11.8409 6.06818C12.553 6.7803 12.9091 7.63636 12.9091 8.63636C12.9091 9.63636 12.553 10.4924 11.8409 11.2045C11.1288 11.9167 10.2727 12.2727 9.27273 12.2727ZM18.3636 8.63636C18.3636 9.63636 18.0076 10.4924 17.2955 11.2045C16.5833 11.9167 15.7273 12.2727 14.7273 12.2727C14.5606 12.2727 14.3485 12.2538 14.0909 12.2159C13.8333 12.178 13.6212 12.1364 13.4545 12.0909C13.8636 11.6061 14.178 11.0682 14.3977 10.4773C14.6174 9.88636 14.7273 9.27273 14.7273 8.63636C14.7273 8 14.6174 7.38636 14.3977 6.79545C14.178 6.20455 13.8636 5.66667 13.4545 5.18182C13.6667 5.10606 13.8788 5.05682 14.0909 5.03409C14.303 5.01136 14.5152 5 14.7273 5C15.7273 5 16.5833 5.35606 17.2955 6.06818C18.0076 6.7803 18.3636 7.63636 18.3636 8.63636ZM3.81818 17.7273H14.7273V17C14.7273 16.8333 14.6856 16.6818 14.6023 16.5455C14.5189 16.4091 14.4091 16.303 14.2727 16.2273C13.4545 15.8182 12.6288 15.5114 11.7955 15.3068C10.9621 15.1023 10.1212 15 9.27273 15C8.42424 15 7.58333 15.1023 6.75 15.3068C5.91667 15.5114 5.09091 15.8182 4.27273 16.2273C4.13636 16.303 4.02652 16.4091 3.94318 16.5455C3.85985 16.6818 3.81818 16.8333 3.81818 17V17.7273ZM9.27273 10.4545C9.77273 10.4545 10.2008 10.2765 10.5568 9.92045C10.9129 9.56439 11.0909 9.13636 11.0909 8.63636C11.0909 8.13636 10.9129 7.70833 10.5568 7.35227C10.2008 6.99621 9.77273 6.81818 9.27273 6.81818C8.77273 6.81818 8.3447 6.99621 7.98864 7.35227C7.63258 7.70833 7.45455 8.13636 7.45455 8.63636C7.45455 9.13636 7.63258 9.56439 7.98864 9.92045C8.3447 10.2765 8.77273 10.4545 9.27273 10.4545Z" fill="#7F7989"/>
3
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_19326_8303)">
3
+ <path d="M18 3C18.7652 2.99996 19.5015 3.29233 20.0583 3.81728C20.615 4.34224 20.9501 5.06011 20.995 5.824L21 6V18C21 18.7652 20.7077 19.5015 20.1827 20.0583C19.6578 20.615 18.9399 20.9501 18.176 20.995L18 21H6C5.23479 21 4.49849 20.7077 3.94174 20.1827C3.38499 19.6578 3.04989 18.9399 3.005 18.176L3 18V6C2.99996 5.23479 3.29233 4.49849 3.81728 3.94174C4.34224 3.38499 5.06011 3.04989 5.824 3.005L6 3H18ZM18 5H9V19H18C18.2449 19 18.4813 18.91 18.6644 18.7473C18.8474 18.5845 18.9643 18.3603 18.993 18.117L19 18V6C19 5.75507 18.91 5.51866 18.7473 5.33563C18.5845 5.15259 18.3603 5.03566 18.117 5.007L18 5ZM13.613 9.21L13.707 9.293L15.707 11.293C15.8792 11.4652 15.9826 11.6943 15.9979 11.9373C16.0132 12.1803 15.9393 12.4206 15.79 12.613L15.707 12.707L13.707 14.707C13.527 14.8863 13.2856 14.9905 13.0316 14.9982C12.7777 15.006 12.5303 14.9168 12.3397 14.7488C12.1492 14.5807 12.0297 14.3464 12.0056 14.0935C11.9815 13.8406 12.0546 13.588 12.21 13.387L12.293 13.293L13.585 12L12.293 10.707C12.1208 10.5348 12.0174 10.3057 12.0021 10.0627C11.9868 9.81966 12.0607 9.5794 12.21 9.387L12.293 9.293C12.4652 9.12082 12.6943 9.01739 12.9373 9.00211C13.1803 8.98683 13.4206 9.06075 13.613 9.21Z" fill="#7F7989"/>
4
+ </g>
5
+ <defs>
6
+ <clipPath id="clip0_19326_8303">
7
+ <rect width="24" height="24" fill="white"/>
8
+ </clipPath>
9
+ </defs>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_19326_8314)">
3
+ <path d="M18 3C18.7652 2.99996 19.5015 3.29233 20.0583 3.81728C20.615 4.34224 20.9501 5.06011 20.995 5.824L21 6V18C21 18.7652 20.7077 19.5015 20.1827 20.0583C19.6578 20.615 18.9399 20.9501 18.176 20.995L18 21H6C5.23479 21 4.49849 20.7077 3.94174 20.1827C3.38499 19.6578 3.04989 18.9399 3.005 18.176L3 18V6C2.99996 5.23479 3.29233 4.49849 3.81728 3.94174C4.34224 3.38499 5.06011 3.04989 5.824 3.005L6 3H18ZM18 5H9V19H18C18.2449 19 18.4813 18.91 18.6644 18.7473C18.8474 18.5845 18.9643 18.3603 18.993 18.117L19 18V6C19 5.75507 18.91 5.51866 18.7473 5.33563C18.5845 5.15259 18.3603 5.03566 18.117 5.007L18 5ZM15.707 9.293C15.8792 9.46519 15.9826 9.69429 15.9979 9.93732C16.0132 10.1803 15.9393 10.4206 15.79 10.613L15.707 10.707L14.415 12L15.707 13.293C15.8792 13.4652 15.9826 13.6943 15.9979 13.9373C16.0132 14.1803 15.9393 14.4206 15.79 14.613L15.707 14.707C15.5348 14.8792 15.3057 14.9826 15.0627 14.9979C14.8197 15.0132 14.5794 14.9393 14.387 14.79L14.293 14.707L12.293 12.707C12.1208 12.5348 12.0174 12.3057 12.0021 12.0627C11.9868 11.8197 12.0607 11.5794 12.21 11.387L12.293 11.293L14.293 9.293C14.4805 9.10553 14.7348 9.00021 15 9.00021C15.2652 9.00021 15.5195 9.10553 15.707 9.293Z" fill="#7F7989"/>
4
+ </g>
5
+ <defs>
6
+ <clipPath id="clip0_19326_8314">
7
+ <rect width="24" height="24" fill="white"/>
8
+ </clipPath>
9
+ </defs>
10
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="22" height="14" viewBox="0 0 22 14" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M15 6C16.66 6 17.99 4.66 17.99 3C17.99 1.34 16.66 0 15 0C13.34 0 12 1.34 12 3C12 4.66 13.34 6 15 6ZM7 6C8.66 6 9.99 4.66 9.99 3C9.99 1.34 8.66 0 7 0C5.34 0 4 1.34 4 3C4 4.66 5.34 6 7 6ZM7 8C4.67 8 0 9.17 0 11.5V14H14V11.5C14 9.17 9.33 8 7 8ZM15 8C14.71 8 14.38 8.02 14.03 8.05C15.19 8.89 16 10.02 16 11.5V14H22V11.5C22 9.17 17.33 8 15 8Z" fill="#7F7989"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M2 19.5455V17C2 16.4848 2.13258 16.0114 2.39773 15.5795C2.66288 15.1477 3.01515 14.8182 3.45455 14.5909C4.39394 14.1212 5.34848 13.7689 6.31818 13.5341C7.28788 13.2992 8.27273 13.1818 9.27273 13.1818C10.2727 13.1818 11.2576 13.2992 12.2273 13.5341C13.197 13.7689 14.1515 14.1212 15.0909 14.5909C15.5303 14.8182 15.8826 15.1477 16.1477 15.5795C16.4129 16.0114 16.5455 16.4848 16.5455 17V19.5455H2ZM18.3636 19.5455V16.8182C18.3636 16.1515 18.178 15.5114 17.8068 14.8977C17.4356 14.2841 16.9091 13.7576 16.2273 13.3182C17 13.4091 17.7273 13.5644 18.4091 13.7841C19.0909 14.0038 19.7273 14.2727 20.3182 14.5909C20.8636 14.8939 21.2803 15.2311 21.5682 15.6023C21.8561 15.9735 22 16.3788 22 16.8182V19.5455H18.3636ZM9.27273 12.2727C8.27273 12.2727 7.41667 11.9167 6.70455 11.2045C5.99242 10.4924 5.63636 9.63636 5.63636 8.63636C5.63636 7.63636 5.99242 6.7803 6.70455 6.06818C7.41667 5.35606 8.27273 5 9.27273 5C10.2727 5 11.1288 5.35606 11.8409 6.06818C12.553 6.7803 12.9091 7.63636 12.9091 8.63636C12.9091 9.63636 12.553 10.4924 11.8409 11.2045C11.1288 11.9167 10.2727 12.2727 9.27273 12.2727ZM18.3636 8.63636C18.3636 9.63636 18.0076 10.4924 17.2955 11.2045C16.5833 11.9167 15.7273 12.2727 14.7273 12.2727C14.5606 12.2727 14.3485 12.2538 14.0909 12.2159C13.8333 12.178 13.6212 12.1364 13.4545 12.0909C13.8636 11.6061 14.178 11.0682 14.3977 10.4773C14.6174 9.88636 14.7273 9.27273 14.7273 8.63636C14.7273 8 14.6174 7.38636 14.3977 6.79545C14.178 6.20455 13.8636 5.66667 13.4545 5.18182C13.6667 5.10606 13.8788 5.05682 14.0909 5.03409C14.303 5.01136 14.5152 5 14.7273 5C15.7273 5 16.5833 5.35606 17.2955 6.06818C18.0076 6.7803 18.3636 7.63636 18.3636 8.63636ZM3.81818 17.7273H14.7273V17C14.7273 16.8333 14.6856 16.6818 14.6023 16.5455C14.5189 16.4091 14.4091 16.303 14.2727 16.2273C13.4545 15.8182 12.6288 15.5114 11.7955 15.3068C10.9621 15.1023 10.1212 15 9.27273 15C8.42424 15 7.58333 15.1023 6.75 15.3068C5.91667 15.5114 5.09091 15.8182 4.27273 16.2273C4.13636 16.303 4.02652 16.4091 3.94318 16.5455C3.85985 16.6818 3.81818 16.8333 3.81818 17V17.7273ZM9.27273 10.4545C9.77273 10.4545 10.2008 10.2765 10.5568 9.92045C10.9129 9.56439 11.0909 9.13636 11.0909 8.63636C11.0909 8.13636 10.9129 7.70833 10.5568 7.35227C10.2008 6.99621 9.77273 6.81818 9.27273 6.81818C8.77273 6.81818 8.3447 6.99621 7.98864 7.35227C7.63258 7.70833 7.45455 8.13636 7.45455 8.63636C7.45455 9.13636 7.63258 9.56439 7.98864 9.92045C8.3447 10.2765 8.77273 10.4545 9.27273 10.4545Z" fill="#7F7989"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="22" height="14" viewBox="0 0 22 14" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M15 6C16.66 6 17.99 4.66 17.99 3C17.99 1.34 16.66 0 15 0C13.34 0 12 1.34 12 3C12 4.66 13.34 6 15 6ZM7 6C8.66 6 9.99 4.66 9.99 3C9.99 1.34 8.66 0 7 0C5.34 0 4 1.34 4 3C4 4.66 5.34 6 7 6ZM7 8C4.67 8 0 9.17 0 11.5V14H14V11.5C14 9.17 9.33 8 7 8ZM15 8C14.71 8 14.38 8.02 14.03 8.05C15.19 8.89 16 10.02 16 11.5V14H22V11.5C22 9.17 17.33 8 15 8Z" fill="#7F7989"/>
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M2.5 20C2.22386 20 2 19.7761 2 19.5V16.375C2 15.8438 2.13258 15.3555 2.39773 14.9102C2.66288 14.4648 3.01515 14.125 3.45455 13.8906C4.39394 13.4062 5.34848 13.043 6.31818 12.8008C7.28788 12.5586 8.27273 12.4375 9.27273 12.4375C10.2727 12.4375 11.2576 12.5586 12.2273 12.8008C13.197 13.043 14.1515 13.4062 15.0909 13.8906C15.5303 14.125 15.8826 14.4648 16.1477 14.9102C16.4129 15.3555 16.5455 15.8438 16.5455 16.375V20H2.5ZM18.3636 20V16.1875C18.3636 15.5 18.178 14.8398 17.8068 14.207C17.4356 13.5742 16.9091 13.0313 16.2273 12.5781C17 12.6719 17.7273 12.832 18.4091 13.0586C19.0909 13.2852 19.7273 13.5625 20.3182 13.8906C20.8636 14.2031 21.2803 14.5508 21.5682 14.9336C21.8561 15.3164 22 15.7344 22 16.1875V19.5C22 19.7761 21.7761 20 21.5 20H18.3636ZM9.27273 11.5C8.27273 11.5 7.41667 11.1328 6.70455 10.3984C5.99242 9.66406 5.63636 8.78125 5.63636 7.75C5.63636 6.71875 5.99242 5.83594 6.70455 5.10156C7.41667 4.36719 8.27273 4 9.27273 4C10.2727 4 11.1288 4.36719 11.8409 5.10156C12.553 5.83594 12.9091 6.71875 12.9091 7.75C12.9091 8.78125 12.553 9.66406 11.8409 10.3984C11.1288 11.1328 10.2727 11.5 9.27273 11.5ZM18.3636 7.75C18.3636 8.78125 18.0076 9.66406 17.2955 10.3984C16.5833 11.1328 15.7273 11.5 14.7273 11.5C14.5606 11.5 14.3485 11.4805 14.0909 11.4414C13.8333 11.4023 13.6212 11.3594 13.4545 11.3125C13.8636 10.8125 14.178 10.2578 14.3977 9.64844C14.6174 9.03906 14.7273 8.40625 14.7273 7.75C14.7273 7.09375 14.6174 6.46094 14.3977 5.85156C14.178 5.24219 13.8636 4.6875 13.4545 4.1875C13.6667 4.10938 13.8788 4.05859 14.0909 4.03516C14.303 4.01172 14.5152 4 14.7273 4C15.7273 4 16.5833 4.36719 17.2955 5.10156C18.0076 5.83594 18.3636 6.71875 18.3636 7.75Z" fill="#7F7989"/>
3
3
  </svg>
package/dist/index.css CHANGED
@@ -1 +1 @@
1
- .tooltip-template{padding:6px 8px;word-break:break-word}.tooltip__text{color:#fff;background-color:#4b4760;border-radius:4px}.tooltip__warning{color:#ea336a;background-color:#fff;box-shadow:0 5px 11px #0000002e}.btn{display:flex;align-items:center;justify-content:center;min-width:90px;height:40px;padding:0 16px;color:#fff;font-weight:500;font-size:.875rem;font-style:normal;border:1px solid transparent;border-radius:4px}.btn-dense{height:36px}.btn-normal{height:40px}.btn-medium{height:44px}.btn-chunky{height:48px}.btn svg>*{fill:currentColor}.btn:focus{border-color:#0006}.btn:active{border-color:#0006}.btn:disabled{color:#adabb0;background:#fff;cursor:not-allowed}.btn:disabled svg>*{fill:#dadada}.btn :not(:last-child){margin-right:10px}.btn :last-child{margin:0}.btn-secondary{background:#0fddaf}.btn-secondary:hover:not(:disabled){background:#1fcc9e}.btn-secondary:active:not(:disabled){background:#1db284}.btn-secondary:disabled{border:1px solid #0fddaf}.btn-tertiary{color:#4b4760;background:#fff;border:1px solid rgba(0,0,0,.2)}.btn-tertiary svg>*{fill:#4b4760}.btn-tertiary:hover:not(:disabled){background:#f8f7f8}.btn-tertiary:active:not(:disabled){background:#e7e7e7}.btn-tertiary:disabled{border:1px solid rgba(0,0,0,.2)}.btn-primary{color:#fff;background:#869cff}.btn-primary:hover:not(:disabled){background:#6279e7}.btn-primary:active:not(:disabled){background:#5468c7}.btn-primary:disabled{border:1px solid #869cff}.btn-danger{color:#fff;background:#ea336a}.btn-danger:hover:not(:disabled){background:#d22a5d}.btn-danger:active:not(:disabled){background:#bc2553}.btn-danger:disabled{border:1px solid #ea336a}.btn-label{color:#4b4760;background:transparent;border:0}.btn-label svg>*{fill:#4b4760}.btn-label:focus:not(:disabled){border-color:transparent}.btn-label:hover:not(:disabled){color:#7f7989}.btn-label:active:not(:disabled){color:#000;border-color:transparent}.btn-label:disabled{border-color:transparent}.round-icon-cp{position:relative;display:flex;align-items:center;margin:0 .2rem}.round-icon-cp__circle{display:flex;align-items:center;justify-content:center;width:36px;height:36px;padding:4px}.round-icon-cp__circle>*{position:relative;z-index:2;display:inline-flex;margin:0!important}.round-icon-cp__circle:before{position:absolute;right:0;left:0;z-index:1;width:inherit;height:inherit;background-color:#483f561f;border-radius:50%;opacity:0;transition:opacity .3s ease-in-out;content:""}.round-icon-cp__circle:hover:before,.round-icon-cp__circle-active:before{opacity:1}.round-icon-cp__circle-disabled path{fill:#adabb0}.round-icon-cp__circle-disabled:hover:before{opacity:0}.pop-up-dialog{position:relative;width:477px;max-height:90vh;padding:20px;overflow-y:auto;background-color:#fff;border-radius:8px;box-shadow:0 2px 10px #0003}.pop-up-dialog__buttons_wrapper{display:flex}.pop-up-dialog__overlay{position:fixed;top:0;left:0;display:flex;align-items:center;justify-content:center;width:100%;height:100%;background:#333333bf;z-index:9}.pop-up-dialog__overlay.custom-position{width:auto;height:auto;background:unset}.pop-up-dialog__header{display:flex;align-items:baseline;justify-content:space-between;min-height:30px;margin-bottom:15px}.pop-up-dialog__header-text{width:100%;color:#4b4760;font-size:24px;line-height:28px;word-break:break-word}.pop-up-dialog__header-close{width:14px;height:14px;margin:5px 0 5px auto;cursor:pointer}.pop-up-dialog__footer-container{display:flex;justify-content:flex-end;margin-top:20px}.pop-up-dialog__btn_cancel{margin:0 10px}.pop-up-dialog__btn_close{position:absolute;top:10px;right:10px}.pop-up-dialog__form-input{width:100%}.confirm-dialog{color:#4b4760}.confirm-dialog__message{font-size:15px;line-height:24px}.confirm-dialog__message-only{font-size:22px}.confirm-dialog__btn-container{display:flex;justify-content:flex-end;margin-top:20px}.confirm-dialog__body{margin:20px 0}.tooltip{position:fixed;font-weight:400;font-size:15px;line-height:1.4;display:flex;max-width:400px;z-index:9}.actions-menu__icon{display:none;align-items:center;justify-content:center;width:25px;height:25px;margin-right:5px}.actions-menu__icon svg path:first-child{fill:#7f7989}.actions-menu__icon_visible{display:flex}.actions-menu__option{padding:10px;color:#4b4760;cursor:pointer}.actions-menu__option:hover{background-color:#f8f7f8}.actions-menu__option_danger{color:#ea336a}.actions-menu__option_danger svg path:first-child{fill:#ea336a}.actions-menu__option_disabled{color:#adabb0;cursor:not-allowed}.actions-menu__option_disabled .actions-menu__icon svg path:first-child{fill:#0003}.actions-menu__option>*{display:flex;flex:1;align-items:center;justify-content:flex-start;width:100%}.actions-menu{position:relative}.actions-menu__container{position:relative;display:none}.actions-menu__container_extended{position:absolute;right:0;display:none;align-items:center;justify-content:center;background-color:#f5f7ff;height:100%}.actions-menu__container_extended:before{content:"";width:30px;height:100%;position:absolute;display:block;left:-30px;background:linear-gradient(90deg,#fff0,#f5f7ff)}.actions-menu__container_extended .actions-menu{padding:0 5px 0 0}.actions-menu__container-active{display:flex}.actions-menu__main-actions-wrapper{display:flex;align-items:center;justify-content:center}.actions-menu__body{min-width:150px;max-width:250px}.actions-menu__body .pop-up-dialog{width:100%;padding:0}.actions-menu__list{list-style-type:none;margin:0;padding:0}.error{display:flex;justify-content:space-between;padding:10px 14px;color:#ea336a;background-color:#ea336a1a;border:1px solid #ea336a}.error__data{display:flex;align-items:center}.error__message{margin-right:10px;word-break:break-word}.error__icon{width:22px;height:22px;margin-right:10px;padding:5px;background-color:#eb5757;border-radius:50%}.form-field-checkbox{display:inline-flex;align-items:center;justify-content:flex-start;color:#4b4760}.form-field-checkbox_readonly input{pointer-events:none;opacity:.5}.form-field-checkbox_readonly input~label,.form-field-checkbox_readonly input~.label{pointer-events:none;opacity:.5}.form-field-checkbox input[type=checkbox]{flex:0 0 18px;width:18px;height:18px;border-radius:4px;transition:background .2s ease-in-out;position:relative;background:#fff;border:1px solid #869cff;color:#869cff;-webkit-appearance:none;-moz-appearance:none;appearance:none;margin:0;outline:0;cursor:pointer}.form-field-checkbox input[type=checkbox]:checked:hover{color:#6279e7}.form-field-checkbox input[type=checkbox]:checked:hover:disabled{color:#adabb0;border-color:currentColor}.form-field-checkbox input[type=checkbox]:disabled{color:#adabb0;border-color:currentColor;cursor:not-allowed;pointer-events:none}.form-field-checkbox input[type=checkbox]:disabled:hover{color:#adabb0;border-color:currentColor}.form-field-checkbox input[type=checkbox]:disabled~label,.form-field-checkbox input[type=checkbox]:disabled~.label{color:#adabb0;cursor:not-allowed}.form-field-checkbox input[type=checkbox]:not(:disabled):focus,.form-field-checkbox input[type=checkbox]:not(:disabled):active{animation:pulse-animation .5s ease-out}.form-field-checkbox input[type=checkbox]:not(:disabled):hover{color:#6279e7;border-color:currentColor}.form-field-checkbox input[type=checkbox]~label,.form-field-checkbox input[type=checkbox]~.label{display:flex;flex:1;align-items:center;position:relative;cursor:pointer;font-size:1em;padding:0 0 0 .45em;height:inherit;-webkit-user-select:none;user-select:none;white-space:nowrap}.form-field-checkbox input[type=checkbox]:before{content:"";display:block;position:absolute;top:1px;left:5px;width:6px;height:11px;border-style:solid;border-color:#fff;border-width:0 2px 2px 0;transform:rotate(45deg)}.form-field-checkbox input[type=checkbox]:checked{background:currentColor}.form-field-checkbox input[type=checkbox]:checked:hover{background:currentColor}.form-field-checkbox input[type=checkbox]:checked:hover:disabled{background:currentColor}.form-field-checkbox input[type=checkbox]:disabled:hover{background:#fff}.form-field-checkbox input[type=checkbox]:not(:disabled):checked~label.highlighted{color:#fff;background-color:#869cff}.form-field-checkbox input[type=checkbox]:not(:disabled):checked:hover~label.highlighted{background-color:#6279e7}.form-field-checkbox input[type=checkbox]~label.highlighted{background-color:#e9e8eb;font-size:12px;font-weight:700;margin-left:10px;padding:4px 8px;border-radius:4px}.form-field-checkbox input[type=checkbox]:not(:disabled):hover~label.highlighted{background-color:#dfe2e5}.options-menu__body{width:100%;max-height:250px;margin:0;padding:0;overflow-y:auto;color:#483f56de;font-size:1rem;list-style-type:none;background-color:#fff;border:1px solid rgba(0,0,0,.2);border-radius:4px;box-shadow:0 2px 10px #0003}.options-menu .pop-up-dialog{width:100%;padding:0}.options-menu-transition-enter{opacity:0}.options-menu-transition-enter-active{opacity:1;transition:opacity .3s ease-in-out}.options-menu-transition-exit{opacity:1}.options-menu-transition-exit-active{opacity:0;transition:opacity .3s ease-in-out}.validation-option{display:flex;align-items:flex-start;margin:.6rem 0;padding:0 1rem;font-size:.875rem}.validation-option__icon{display:flex;align-items:center;justify-content:center;width:20px;height:20px;margin-right:.5rem}.validation-option__icon_valid{width:14px;height:15px}.validation-option__icon_valid path{fill:#0fddaf}.validation-option__icon_invalid{width:12px;height:12px}.validation-option__icon_invalid path{fill:#ea336a}.edit-chip-container{display:inline-flex;max-width:100%;margin:2px 0;padding:0 8px;font-size:14px;line-height:22px}.edit-chip-container input{display:flex;padding:0;font-size:14px;background-color:transparent;border:none}.edit-chip-container input[disabled]{pointer-events:none}.edit-chip-container input.item_edited_invalid{color:#ea336a}.edit-chip-container input.input-label-key::placeholder,.edit-chip-container input.input-label-value::placeholder{color:#7f7989}.edit-chip-container-background_none{background-color:transparent}.edit-chip-container-background_green{background-color:#13bbb13d}.edit-chip-container-background_grey{background-color:#483f561f}.edit-chip-container-background_orange{background-color:#ffd0775c}.edit-chip-container-background_purple{background-color:#a44cc529}.edit-chip-container-background_amethyst{background-color:#a44cc5}.edit-chip-container-background_sorbus{background-color:#f98b0a}.edit-chip-container-background_java{background-color:#13bbb1}.edit-chip-container-border_transparent{border:1px solid transparent}.edit-chip-container-border_green{border:1px solid #49af53}.edit-chip-container-border_grey{border:1px solid rgba(0,0,0,.2)}.edit-chip-container-border_orange{border:1px solid #ea7f54}.edit-chip-container-border_purple{border:1px solid #a44cc5}.edit-chip-container-border_primary{border-radius:4px}.edit-chip-container-border_secondary{border-radius:20px}.edit-chip-container-density_dense{height:26px}.edit-chip-container-density_normal{height:32px;padding:8px 15px}.edit-chip-container-density_medium{height:34px;padding:8px 15px;font-size:15px}.edit-chip-container-font_primary,.edit-chip-container-font_primary .input-label-key,.edit-chip-container-font_primary .input-label-value,.edit-chip-container-font_primary .edit-label-separator{color:#4b4760}.edit-chip-container-font_primary .item-icon-close svg path{fill:#4b4760}.edit-chip-container-font_green,.edit-chip-container-font_green .input-label-key,.edit-chip-container-font_green .input-label-value,.edit-chip-container-font_green .edit-label-separator{color:#49af53}.edit-chip-container-font_green .item-icon-close svg path{fill:#49af53}.edit-chip-container-font_white,.edit-chip-container-font_white .input-label-key,.edit-chip-container-font_white .input-label-value,.edit-chip-container-font_white .edit-label-separator{color:#fff}.edit-chip-container-font_white .item-icon-close svg path{fill:#fff}.edit-chip-container-font_orange,.edit-chip-container-font_orange .input-label-key,.edit-chip-container-font_orange .input-label-value,.edit-chip-container-font_orange .edit-label-separator{color:#f98b0a}.edit-chip-container-font_orange .item-icon-close svg path{fill:#f98b0a}.edit-chip-container-font_purple,.edit-chip-container-font_purple .input-label-key,.edit-chip-container-font_purple .input-label-value,.edit-chip-container-font_purple .edit-label-separator{color:#a44cc5}.edit-chip-container-font_purple .item-icon-close svg path{fill:#a44cc5}.edit-chip-container-font_disabled,.edit-chip-container-font_disabled .input-label-key,.edit-chip-container-font_disabled .input-label-value,.edit-chip-container-font_disabled .edit-label-separator{color:#adabb0}.edit-chip-container-font_disabled .item-icon-close svg path{fill:#adabb0}.edit-chip-container button.item-icon-close{display:flex;align-items:center;justify-content:center}.edit-chip-container button.item-icon-close.hidden{display:none}.edit-chip-container button.item-icon-close.invisible{visibility:hidden}.edit-chip-container button.item-icon-close svg{transform:scale(.7)}.edit-chip-container_disabled{cursor:not-allowed}.edit-chip-separator{margin-right:5px}.chip{position:relative;margin:2px 8px 2px 0;padding:4px 8px;font-size:14px;line-height:16px;visibility:hidden;cursor:default}.chip_visible{visibility:visible}.chip_invisible{visibility:hidden;height:30px}.chip__content{display:flex;align-items:center}.chip__content-item{flex:1 1 50%;max-width:fit-content;align-self:flex-start}.chip__delimiter{display:flex;align-items:center;margin:0 4px}.chip__value{min-width:10px}.chip.editable{cursor:pointer}.chip.chips_button{padding:8px 7px;width:max-content}.chip-background_none{background-color:transparent}.chip-background_green{background-color:#13bbb13d}.chip-background_grey{background-color:#483f561f}.chip-background_orange{background-color:#ffd0775c}.chip-background_purple{background-color:#a44cc529}.chip-background_amethyst{background-color:#a44cc5}.chip-background_sorbus{background-color:#f98b0a}.chip-background_java{background-color:#13bbb1}.chip-border_transparent{border:1px solid transparent}.chip-border_green{border:1px solid #49af53}.chip-border_grey{border:1px solid rgba(0,0,0,.2)}.chip-border_orange{border:1px solid #ea7f54}.chip-border_purple{border:1px solid #a44cc5}.chip-border_primary{border-radius:4px}.chip-border_secondary{border-radius:20px}.chip-density_dense{height:26px}.chip-density_normal{height:32px;padding:8px 15px}.chip-density_medium{height:34px;padding:8px 15px;font-size:15px}.chip-density_medium .item-icon-close{transform:scale(1.2)}.chip-font_white{color:#fff}.chip-font_white .item-icon-close svg path{fill:#fff}.chip-font_green{color:#49af53}.chip-font_green .item-icon-close svg path{fill:#49af53}.chip-font_purple{color:#a44cc5}.chip-font_purple .item-icon-close svg path{fill:#a44cc5}.chip-font_primary{color:#4b4760}.chip-font_primary .item-icon-close svg path{fill:#4b4760}.chip-font_orange{color:#f98b0a}.chip-font_orange .item-icon-close svg path{fill:#f98b0a}.chip-value_bold{font-weight:700;font-size:15px}.loader-wrapper{position:fixed;top:0;left:0;z-index:10;display:flex;align-items:center;justify-content:center;width:100%;height:100%;background-color:#00000029}.loader-wrapper .loader{display:flex}.loader-wrapper .loader:after{display:block;width:64px;height:64px;border:6px solid #6279e7;border-color:#6279e7 transparent #6279e7 transparent;border-radius:50%;animation:rotate 1.5s linear infinite;content:" "}.loader-wrapper.section-loader{position:relative;z-index:2;background-color:transparent}.loader-wrapper.small-loader .loader:after{width:20px;height:20px;border-width:2px}.loader-wrapper.secondary-loader .loader:after{border-color:#adabb0 transparent #adabb0 transparent}@keyframes rotate{to{transform:rotate(360deg)}}.tip-container{position:relative;display:inline-flex;align-items:center;justify-content:center;width:var(--arrow-length)}.tip{position:fixed;display:block;padding:10px;color:#fff;white-space:pre-line;background:#4b4760;border-radius:4px;z-index:9}.tip-wrapper{display:inline-flex;align-items:center}.tip_top:after{bottom:calc(var(--tipArrowLength) * -.5)}.tip_bottom:after{top:calc(var(--tipArrowLength) * -.5)}.tip_left:after{right:calc(var(--tipArrowOffset))}.tip_right:after{left:calc(var(--tipArrowOffset))}.tip_small{min-width:100px;max-width:250px}.tip_big{min-width:250px;max-width:400px}.tip:after{position:absolute;width:var(--tipArrowLength);height:var(--tipArrowLength);background:#4b4760;transform:rotate(45deg);content:""}.fade-enter{opacity:0}.fade-enter-active{opacity:1;transition:opacity .2s}.fade-exit{opacity:1}.fade-exit-active{opacity:0;transition:opacity .2s}.btn-load{display:flex;align-items:center;justify-content:center;min-width:90px;height:40px;padding:0 16px;color:#4b4760;font-weight:500;font-size:14px;font-style:normal;line-height:16px;background:#fff;border:1px solid rgba(0,0,0,.2);border-radius:4px}.btn-load svg path{fill:#fff}.btn-load:active{background:#eee}.btn-load:hover{background:#f8f7f8}.btn-load:disabled{color:#adabb0;background:#fff;cursor:not-allowed}.btn-load:disabled svg path{fill:#dadada}.btn-load :first-child{margin-right:5px}.btn-load-primary{border-bottom:4px solid #0fddaf}.btn-load-primary:disabled{border-bottom:4px solid #c5f7ec}.btn-load-secondary{border-bottom:4px solid #869cff}.btn-load-secondary:disabled{border-bottom:4px solid #e2e7ff}.btn-load-tertiary{border-bottom:4px solid #adabb0}.btn-load-tertiary svg path{fill:#4b4760}.btn-load-tertiary:disabled{border-bottom:4px solid #ebebec}.chips{position:relative;display:flex;flex-flow:column nowrap;height:100%;width:100%}.chips__label{display:flex;align-items:center;margin-bottom:5px;color:#7f7989;font-size:12px;text-align:left;background-color:transparent}.chips__label:first-letter{text-transform:uppercase}.chips__label-mandatory{color:#ea336a}.chips__label-disabled,.chips__label-disabled .form-field__label-mandatory{color:#adabb0}.chips__wrapper{display:flex;flex:1;flex-flow:row nowrap;position:relative;width:100%;color:#4b4760;background-color:transparent;border:1px solid rgba(0,0,0,.2);border-radius:4px}.chips__wrapper-disabled{border:1px solid rgba(173,171,176,.3);color:#adabb0;cursor:not-allowed}.chips__wrapper-invalid{border:1px solid #ea336a}.chips__wrapper.without-border{border-color:transparent}.chips__wrapper-dense{height:36px}.chips__wrapper-normal{height:40px}.chips__wrapper-medium{height:44px}.chips__wrapper-chunky{height:48px}.chips__control{position:relative;display:flex;flex:1;align-items:center;overflow:hidden}.chips__icons{display:flex;flex-shrink:0;align-items:center;min-height:25px}.chips__icons>*{display:flex;align-items:center;padding:0 4px}.chips__icons>*:last-child{margin-right:4px}.chips{height:auto;min-width:0}.chips__wrapper{padding:12px 16px}.chips-wrapper{display:flex;flex-flow:row;align-items:center;overflow:hidden}.chips-wrapper.chips-wrapper_all-visible{flex-wrap:wrap;overflow:auto}.chips-cell{display:flex;flex:1;align-items:center;max-width:100%}.chips-cell .fixed-max-width{max-width:100%}.chips-cell .chip-block{position:relative;max-width:100%;margin-right:calc(var(--chipBlockMarginRight))}.chips-cell .button-add{display:flex;align-items:center;justify-content:center;margin:2px 0;border-radius:32px}.chips-cell .button-add-background_orange{background-color:#ffd0775c}.chips-cell .button-add-background_orange:hover{background-color:#f98b0a}.chips-cell .button-add-background_purple{background-color:#a44cc529}.chips-cell .button-add-background_purple:hover{background-color:#a44cc5}.chips-cell .button-add-background_green{background-color:#13bbb13d}.chips-cell .button-add-background_green:hover{background-color:#13bbb1}.chips-cell .button-add-background_grey{background-color:#483f561f}.chips-cell .button-add-background_grey:hover{background-color:#7f7989}.chips-cell .button-add_border_transparent{border:1px solid transparent}.chips-cell .button-add_border_green{border:1px solid #49af53}.chips-cell .button-add_border_grey{border:1px solid rgba(0,0,0,.2)}.chips-cell .button-add_border_orange{border:1px solid #ea7f54}.chips-cell .button-add_border_purple{border:1px solid #a44cc5}.chips-cell .button-add_border_primary{border-radius:4px}.chips-cell .button-add_border_secondary{border-radius:20px}.chips-cell .button-add-density_dense{width:26px;height:26px}.chips-cell .button-add-density_normal{width:32px;height:32px}.chips-cell .button-add-density_medium{width:34px;height:34px}.chips-cell .button-add-font_primary svg rect,.chips-cell .button-add-font_primary svg path{fill:#7f7989}.chips-cell .button-add-font_primary:hover svg rect,.chips-cell .button-add-font_primary:hover svg path{fill:#fff}.chips-cell .button-add-font_green svg rect,.chips-cell .button-add-font_green svg path{fill:#49af53}.chips-cell .button-add-font_green:hover svg rect,.chips-cell .button-add-font_green:hover svg path{fill:#fff}.chips-cell .button-add-font_orange svg rect,.chips-cell .button-add-font_orange svg path{fill:#f98b0a}.chips-cell .button-add-font_orange:hover svg rect,.chips-cell .button-add-font_orange:hover svg path{fill:#fff}.chips-cell .button-add-font_purple svg rect,.chips-cell .button-add-font_purple svg path{fill:#a44cc5}.chips-cell .button-add-font_purple:hover svg rect,.chips-cell .button-add-font_purple:hover svg path{fill:#fff}.chips input:disabled{cursor:default}.form-field.form-field-combobox{width:100%}.form-field.form-field-combobox .form-field{position:relative;display:flex;flex-flow:column nowrap;height:100%;width:100%}.form-field.form-field-combobox .form-field__label{display:flex;align-items:center;margin-bottom:5px;color:#7f7989;font-size:12px;text-align:left;background-color:transparent}.form-field.form-field-combobox .form-field__label:first-letter{text-transform:uppercase}.form-field.form-field-combobox .form-field__label-mandatory{color:#ea336a}.form-field.form-field-combobox .form-field__label-disabled,.form-field.form-field-combobox .form-field__label-disabled .form-field__label-mandatory{color:#adabb0}.form-field.form-field-combobox .form-field__wrapper{display:flex;flex:1;flex-flow:row nowrap;position:relative;width:100%;color:#4b4760;background-color:transparent;border:1px solid rgba(0,0,0,.2);border-radius:4px}.form-field.form-field-combobox .form-field__wrapper-disabled{border:1px solid rgba(173,171,176,.3);color:#adabb0;cursor:not-allowed}.form-field.form-field-combobox .form-field__wrapper-invalid{border:1px solid #ea336a}.form-field.form-field-combobox .form-field__wrapper.without-border{border-color:transparent}.form-field.form-field-combobox .form-field__wrapper-dense{height:36px}.form-field.form-field-combobox .form-field__wrapper-normal{height:40px}.form-field.form-field-combobox .form-field__wrapper-medium{height:44px}.form-field.form-field-combobox .form-field__wrapper-chunky{height:48px}.form-field.form-field-combobox .form-field__control{position:relative;display:flex;flex:1;align-items:center;overflow:hidden}.form-field.form-field-combobox .form-field__icons{display:flex;flex-shrink:0;align-items:center;min-height:25px}.form-field.form-field-combobox .form-field__icons>*{display:flex;align-items:center;padding:0 4px}.form-field.form-field-combobox .form-field__icons>*:last-child{margin-right:4px}.form-field.form-field-combobox .form-field__icons .form-field-combobox__icon{cursor:pointer;padding:0;transition:transform .2s linear}.form-field.form-field-combobox .form-field__icons .form-field-combobox__icon_open{transform:rotate(90deg);transform-origin:center center}.form-field.form-field-combobox .form-field-combobox__placeholder{color:#7f7989;font-size:15px;text-align:left;text-transform:capitalize;background-color:transparent}.form-field.form-field-combobox .form-field-combobox__placeholder label{cursor:inherit}.form-field.form-field-combobox .form-field-combobox__select{padding:0;overflow:visible}.form-field.form-field-combobox .form-field-combobox__select-header{display:flex;flex:1;align-items:center;cursor:pointer;height:100%}.form-field.form-field-combobox .form-field-combobox__input{width:100%;padding:0 8px 0 0}.form-field.form-field-combobox .form-field-combobox__input_hidden{flex:0}.form-field-combobox__search{width:100%;padding:12px 0}.form-field-combobox__search-wrapper{position:sticky;top:0;display:flex;align-items:center;margin:0 9px;border-bottom:1px solid rgba(72,63,86,.12);background-color:#fff}.form-field-combobox__dropdown-select{max-width:220px}.form-field-combobox__dropdown-suggestions{max-width:350px}.form-field-combobox__dropdown-list{margin:0;padding:0;min-width:140px;list-style-type:none}.form-field-combobox__dropdown-list-option{padding:8px 15px;word-break:break-all;cursor:pointer}.form-field-combobox__dropdown-list-option:hover{background-color:#f8f7f8}.form-field-combobox__dropdown .pop-up-dialog{width:100%;max-height:250px;padding:0}.form-field-combobox .path-type-store,.form-field-combobox__dropdown .path-type-store{color:#a44cc5}.form-field-combobox .path-type-v3io,.form-field-combobox__dropdown .path-type-v3io{color:#5871f4}.form-field-combobox .path-type-az,.form-field-combobox .path-type-gs,.form-field-combobox .path-type-http,.form-field-combobox .path-type-https,.form-field-combobox .path-type-s3,.form-field-combobox__dropdown .path-type-az,.form-field-combobox__dropdown .path-type-gs,.form-field-combobox__dropdown .path-type-http,.form-field-combobox__dropdown .path-type-https,.form-field-combobox__dropdown .path-type-s3{color:#f98b0a}.form-field-combobox .path-type-dbfs,.form-field-combobox__dropdown .path-type-dbfs{color:#49af53}.form-field-range{align-self:stretch}.form-field-range .range__buttons{display:flex;flex-direction:column;justify-content:center;width:28px;height:100%}.form-field-range .range__button{display:flex;width:100%;height:calc(50% + 1px);align-items:center;justify-content:center;padding:0;background-color:#f5f5f5;cursor:pointer}.form-field-range .range__button svg path{fill:#7f7989}.form-field-range .range__button:hover{background-color:#e7e7e7}.form-field-range .range__button:hover svg path{fill:#4b4760}.form-field-range .range__button:focus{border:1px solid #7f7989}.form-field-range .range__button:active{background-color:#0003;border:1px solid #7f7989}.form-field-range .range__button:active svg path{fill:#4b4760}.form-field-range .range__button:disabled{cursor:not-allowed}.form-field-range .range__button:disabled svg path{fill:#adabb0}.form-field-range .range__button:disabled:focus{border:none}.form-field-range .range__button:disabled:hover{background-color:#f5f5f5}.form-field-range .range__button-increase{border-bottom:1px solid transparent;border-left:1px solid transparent;border-top-right-radius:4px}.form-field-range .range__button-decrease{border-top:1px solid transparent;border-left:1px solid transparent;border-bottom-right-radius:4px}.form-field-range .range__button .decrease{transform:rotate(180deg)}.form-field-range .range-warning{border:1px solid #ea336a}.form-field-range .range-warning_asterisk{position:absolute;top:50%;right:35px;color:#ea336a;transform:translateY(-50%)}.form-field-range .range-warning .range__button-increase{border-top:1px solid #ea336a;border-right:1px solid #ea336a}.form-field-range .range-warning .range__button-decrease{border-right:1px solid #ea336a;border-bottom:1px solid #ea336a}.form-field-range .range__warning-icon{position:absolute;top:50%;right:30px;transform:translateY(-50%)}.form-field-input{width:100%}.form-field-input input{height:inherit;width:100%;padding:12px 16px}.form-field-input .form-field{position:relative;display:flex;flex-flow:column nowrap;height:100%;width:100%}.form-field-input .form-field__label{display:flex;align-items:center;margin-bottom:5px;color:#7f7989;font-size:12px;text-align:left;background-color:transparent}.form-field-input .form-field__label:first-letter{text-transform:uppercase}.form-field-input .form-field__label-mandatory{color:#ea336a}.form-field-input .form-field__label-disabled,.form-field-input .form-field__label-disabled .form-field__label-mandatory{color:#adabb0}.form-field-input .form-field__wrapper{display:flex;flex:1;flex-flow:row nowrap;position:relative;width:100%;color:#4b4760;background-color:transparent;border:1px solid rgba(0,0,0,.2);border-radius:4px}.form-field-input .form-field__wrapper-disabled{border:1px solid rgba(173,171,176,.3);color:#adabb0;cursor:not-allowed}.form-field-input .form-field__wrapper-invalid{border:1px solid #ea336a}.form-field-input .form-field__wrapper.without-border{border-color:transparent}.form-field-input .form-field__wrapper-dense{height:36px}.form-field-input .form-field__wrapper-normal{height:40px}.form-field-input .form-field__wrapper-medium{height:44px}.form-field-input .form-field__wrapper-chunky{height:48px}.form-field-input .form-field__control{position:relative;display:flex;flex:1;align-items:center;overflow:hidden}.form-field-input .form-field__icons{display:flex;flex-shrink:0;align-items:center;min-height:25px}.form-field-input .form-field__icons>*{display:flex;align-items:center;padding:0 4px}.form-field-input .form-field__icons>*:last-child{margin-right:4px}.form-field-input .form-field__label-icon{display:inline-flex;margin-left:3px}.form-field-input .form-field__label-icon>*,.form-field-input .form-field__label-icon a{display:inline-flex}.form-field-input .form-field__label-icon a{transform:translateY(-1px)}.form-field-input .form-field__label-icon svg{width:12px;height:12px}.form-field-input .form-field__label-icon svg path{fill:#6279e7}.form-field-input .form-field__suggestion-list{position:absolute;top:100%;left:0;z-index:5;margin:0;padding:7px 0;background-color:#fff;border-radius:4px;box-shadow:0 2px 10px #0003}.form-field-input .form-field__suggestion-list .suggestion-item{padding:7px 15px;color:#483f56;list-style-type:none}.form-field-input .form-field__suggestion-list .suggestion-item:hover{background-color:#f8f7f8;cursor:pointer}.form-field-input input[type=number]{border:none;-moz-appearance:textfield}.form-field-input input[type=number]::-webkit-outer-spin-button,.form-field-input input[type=number]::-webkit-inner-spin-button{-webkit-appearance:none}.select__item{display:flex;align-items:center;flex-flow:row wrap;width:100%;min-height:45px;padding:10px 15px}.select__item.multiple{padding:0 15px;min-height:0}.select__item.multiple input[type=checkbox]~label{padding-top:16px;padding-bottom:16px}.select__item.hidden{display:none}.select__item .form-field-checkbox{flex:1;height:100%;width:100%}.select__item:hover{background-color:#f8f7f8;cursor:pointer}.select__item.disabled{color:#adabb0;background:#fff;cursor:not-allowed}.select__item .status{margin:0 10px}.select__item .all{margin:0;display:inline-block;width:8px;height:8px;min-width:8px;border-radius:50%;background-color:none}.select__item .label-row{display:flex;flex-flow:row nowrap;align-items:center;justify-content:space-between;width:100%}.select__item-label{display:flex;flex-flow:row wrap;align-items:center;justify-content:flex-start;flex:1}.select__item-main-label{width:100%;display:flex;flex-flow:row nowrap;align-items:center;justify-content:flex-start}.select__item-sub-label{margin-top:5px;font-size:13px;width:100%}.select__item-icon{display:flex;margin-right:10px}.select__item .checkmark{align-self:flex-start;margin:0 0 0 10px}.select__item .checkmark path{fill:#49af53}.select-tooltip,.form-field-select{width:100%}.form-field-select .form-field{position:relative;display:flex;flex-flow:column nowrap;height:100%;width:100%}.form-field-select .form-field__label{display:flex;align-items:center;margin-bottom:5px;color:#7f7989;font-size:12px;text-align:left;background-color:transparent}.form-field-select .form-field__label:first-letter{text-transform:uppercase}.form-field-select .form-field__label-mandatory{color:#ea336a}.form-field-select .form-field__label-disabled,.form-field-select .form-field__label-disabled .form-field__label-mandatory{color:#adabb0}.form-field-select .form-field__wrapper{display:flex;flex:1;flex-flow:row nowrap;position:relative;width:100%;color:#4b4760;background-color:transparent;border:1px solid rgba(0,0,0,.2);border-radius:4px}.form-field-select .form-field__wrapper-disabled{border:1px solid rgba(173,171,176,.3);color:#adabb0;cursor:not-allowed}.form-field-select .form-field__wrapper-invalid{border:1px solid #ea336a}.form-field-select .form-field__wrapper.without-border{border-color:transparent}.form-field-select .form-field__wrapper-dense{height:36px}.form-field-select .form-field__wrapper-normal{height:40px}.form-field-select .form-field__wrapper-medium{height:44px}.form-field-select .form-field__wrapper-chunky{height:48px}.form-field-select .form-field__control{position:relative;display:flex;flex:1;align-items:center;overflow:hidden}.form-field-select .form-field__icons{display:flex;flex-shrink:0;align-items:center;min-height:25px}.form-field-select .form-field__icons>*{display:flex;align-items:center;padding:0 4px}.form-field-select .form-field__icons>*:last-child{margin-right:4px}.form-field-select .form-field__wrapper{cursor:pointer}.form-field-select .form-field__wrapper-active{background:#f8f7f8}.form-field-select .form-field__wrapper-disabled{cursor:not-allowed}.form-field-select .form-field__wrapper-disabled .form-field__caret path{fill:#adabb0}.form-field-select .form-field__select{display:flex;align-items:center;width:100%;padding:0 20px 0 16px}.form-field-select .form-field__select-value{display:block;font-size:15px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.form-field-select .form-field__select-placeholder{color:#adabb0}.form-field-select .form-field__select-sub_label{display:block;margin-left:10px;overflow:hidden;color:#7f7989;white-space:nowrap;text-overflow:ellipsis}.form-field-select__options-list .pop-up-dialog{width:100%;padding:0;border-radius:0}.form-field-select__options-list .options-list{margin:0;padding:0;list-style-type:none;max-height:250px;overflow-y:auto}.form-field-select__options-list .options-list__body{width:100%;color:#483f56de;background-color:#fff;border:1px solid rgba(0,0,0,.2);border-radius:4px;box-shadow:0 4px 8px #0000003b}.form-field-select__options-list .options-list__search{width:100%}.form-field-select__options-list .options-list__search input{width:100%;padding:10px;border:none;border-bottom:1px solid rgba(0,0,0,.2)}.form-field-radio{display:inline-flex;align-items:center;justify-content:flex-start;color:#4b4760;margin-right:15px}.form-field-radio_readonly input{pointer-events:none;opacity:.5}.form-field-radio_readonly input~label,.form-field-radio_readonly input~.label{pointer-events:none;opacity:.5}.form-field-radio input[type=radio]{width:16px;height:16px;border-radius:50%;position:relative;background:#fff;border:1px solid #869cff;color:#869cff;-webkit-appearance:none;-moz-appearance:none;appearance:none;margin:0;outline:0;cursor:pointer}.form-field-radio input[type=radio]:checked:hover{color:#6279e7}.form-field-radio input[type=radio]:checked:hover:disabled{color:#adabb0;border-color:currentColor}.form-field-radio input[type=radio]:disabled{color:#adabb0;border-color:currentColor;cursor:not-allowed;pointer-events:none}.form-field-radio input[type=radio]:disabled:hover{color:#adabb0;border-color:currentColor}.form-field-radio input[type=radio]:disabled~label,.form-field-radio input[type=radio]:disabled~.label{color:#adabb0;cursor:not-allowed}@keyframes pulse-animation{20%{box-shadow:0 0 #6279e780}to{box-shadow:0 0 0 6px #6279e700}}.form-field-radio input[type=radio]:not(:disabled):focus,.form-field-radio input[type=radio]:not(:disabled):active{animation:pulse-animation .5s ease-out}.form-field-radio input[type=radio]:not(:disabled):hover{color:#6279e7;border-color:currentColor}.form-field-radio input[type=radio]~label,.form-field-radio input[type=radio]~.label{display:flex;flex:1;align-items:center;position:relative;cursor:pointer;font-size:1em;padding:0 0 0 .45em;height:inherit;-webkit-user-select:none;user-select:none;white-space:nowrap}.form-field-radio input[type=radio]:before{content:"";position:absolute;top:2px;left:2px;width:10px;height:10px;border-radius:50%;transform:scale(0);transition:transform .2s ease-in-out;box-shadow:inset 1em 1em currentColor}.form-field-radio input[type=radio]:checked:before{transform:scale(1)}.form-field-textarea{width:100%}.form-field-textarea textarea{height:inherit;width:100%;padding:12px 16px;white-space:normal}.form-field-textarea .form-field{position:relative;display:flex;flex-flow:column nowrap;height:100%;width:100%}.form-field-textarea .form-field__label{display:flex;align-items:center;margin-bottom:5px;color:#7f7989;font-size:12px;text-align:left;background-color:transparent}.form-field-textarea .form-field__label:first-letter{text-transform:uppercase}.form-field-textarea .form-field__label-mandatory{color:#ea336a}.form-field-textarea .form-field__label-disabled,.form-field-textarea .form-field__label-disabled .form-field__label-mandatory{color:#adabb0}.form-field-textarea .form-field__wrapper{display:flex;flex:1;flex-flow:row nowrap;position:relative;width:100%;color:#4b4760;background-color:transparent;border:1px solid rgba(0,0,0,.2);border-radius:4px}.form-field-textarea .form-field__wrapper-disabled{border:1px solid rgba(173,171,176,.3);color:#adabb0;cursor:not-allowed}.form-field-textarea .form-field__wrapper-invalid{border:1px solid #ea336a}.form-field-textarea .form-field__wrapper.without-border{border-color:transparent}.form-field-textarea .form-field__wrapper-dense{height:36px}.form-field-textarea .form-field__wrapper-normal{height:40px}.form-field-textarea .form-field__wrapper-medium{height:44px}.form-field-textarea .form-field__wrapper-chunky{height:48px}.form-field-textarea .form-field__control{position:relative;display:flex;flex:1;align-items:center;overflow:hidden}.form-field-textarea .form-field__icons{display:flex;flex-shrink:0;align-items:center;min-height:25px}.form-field-textarea .form-field__icons>*{display:flex;align-items:center;padding:0 4px}.form-field-textarea .form-field__icons>*:last-child{margin-right:4px}.form-field-textarea .form-field__wrapper .form-field__control{padding:0}.form-field-textarea .form-field__counter{color:#7f7989;font-size:12px;margin-top:5px;text-align:right}.form-field-toggle{position:relative}.form-field-toggle__switch{height:24px;width:48px;display:flex;cursor:pointer;align-items:center;background-color:#dadada;border-radius:20px;transition:all .2s ease}.form-field-toggle__switch:before{content:"";width:20px;height:20px;background-color:#fff;border-radius:50%;transform:translate(2px);transition:all .2s ease}.form-field-toggle .form-field{position:relative;display:flex;flex-flow:column nowrap;height:100%;width:100%}.form-field-toggle .form-field__label{display:flex;align-items:center;margin-bottom:5px;color:#7f7989;font-size:12px;text-align:left;background-color:transparent}.form-field-toggle .form-field__label:first-letter{text-transform:uppercase}.form-field-toggle .form-field__label-mandatory{color:#ea336a}.form-field-toggle .form-field__label-disabled,.form-field-toggle .form-field__label-disabled .form-field__label-mandatory{color:#adabb0}.form-field-toggle .form-field__wrapper{display:flex;flex:1;flex-flow:row nowrap;position:relative;width:100%;color:#4b4760;background-color:transparent;border:1px solid rgba(0,0,0,.2);border-radius:4px}.form-field-toggle .form-field__wrapper-disabled{border:1px solid rgba(173,171,176,.3);color:#adabb0;cursor:not-allowed}.form-field-toggle .form-field__wrapper-invalid{border:1px solid #ea336a}.form-field-toggle .form-field__wrapper.without-border{border-color:transparent}.form-field-toggle .form-field__wrapper-dense{height:36px}.form-field-toggle .form-field__wrapper-normal{height:40px}.form-field-toggle .form-field__wrapper-medium{height:44px}.form-field-toggle .form-field__wrapper-chunky{height:48px}.form-field-toggle .form-field__control{position:relative;display:flex;flex:1;align-items:center;overflow:hidden}.form-field-toggle .form-field__icons{display:flex;flex-shrink:0;align-items:center;min-height:25px}.form-field-toggle .form-field__icons>*{display:flex;align-items:center;padding:0 4px}.form-field-toggle .form-field__icons>*:last-child{margin-right:4px}.form-field-toggle .form-field__wrapper{border:none}.form-field-toggle input[type=checkbox]{display:none;width:0;height:0}.form-field-toggle input[type=checkbox]:disabled+* .form-field-toggle__switch{opacity:.5;pointer-events:none;cursor:default}.form-field-toggle input[type=checkbox]:checked+* .form-field-toggle__switch{background-color:#869cff}.form-field-toggle input[type=checkbox]:checked+* .form-field-toggle__switch:before{transform:translate(26px)}.backdrop{position:fixed;top:0;left:0;width:100vw;height:100vh;background-color:#000;z-index:9}.backdrop-transition-enter{opacity:0}.backdrop-transition-enter-active,.backdrop-transition-enter-done{opacity:.5;transition:opacity .3s ease-in-out}.backdrop-transition-exit{opacity:.5}.backdrop-transition-exit-active{opacity:0;transition:opacity .3s ease-in-out}.modal{position:fixed;top:50%;left:50%;width:100%;height:660px;max-width:96%;min-width:300px;max-height:96%;outline:0;transform:translate(-50%,-50%);z-index:9}@media screen and (min-width: 1200px){.modal{width:1000px}.modal.modal-sm{width:700px}.modal.modal-lg{width:1400px}.modal.modal-max{width:95vw;height:95vh}}.modal.modal-min{width:500px;height:auto}.modal.modal-max{width:96vw;height:94vw}.modal__content{display:flex;flex-flow:column nowrap;position:relative;min-height:inherit;height:100%;width:100%;max-height:100%;background-color:#fff;border-radius:8px;box-shadow:0 6px 26px #0003;text-align:left}.modal__header{position:relative;border-bottom:1px solid rgba(0,0,0,.2);min-height:92px;padding:1rem 3rem;display:flex;align-items:center;justify-content:center;flex-direction:column}.modal__header-title{color:#4b4760;font-size:2em;text-transform:capitalize;margin:0}.modal__header-sub-title{color:#7f7989;font-size:1.5em;font-weight:500;margin:10px 0 0}.modal__header-preview-text{position:absolute;top:1rem;left:1rem;font-size:1rem}.modal__header-button{position:absolute;top:10px;right:10px}.modal__body{overflow-y:auto;overflow-x:hidden;flex:1 0;padding:1.5rem 2rem 0;margin-bottom:1rem}.modal__footer{display:flex;flex-flow:row nowrap;flex-shrink:0;justify-content:space-between;padding:1rem 2rem;min-height:50px}.modal__footer-actions{display:flex;flex:1 0 auto;justify-content:flex-end;align-items:center}.modal__footer-actions>*:not(:last-child){margin-right:10px}.modal-transition-enter{opacity:0;transform:translate(-50%,100vh)}.modal-transition-enter-active,.modal-transition-enter-done{opacity:1;transform:translate(-50%,-50%);transition:all .3s ease-in-out}.modal-transition-exit{opacity:1;transform:translate(-50%,-50%)}.modal-transition-exit-active{opacity:0;transform:translate(-50%,-70%);transition:all .3s ease-in-out}.table .table-body__cell{line-height:20px}.table .table-body__cell .name-wrapper{display:flex;flex:1;flex-wrap:wrap;align-items:center}.table .table-body__cell .name-wrapper .item-name{color:#4b4760;font-weight:700}.table .table-body__cell .name-wrapper .item-name.function-name{max-width:120px}.table .table-body__cell .name-wrapper .item-tag{max-width:150px}.table .table-body__cell .name-wrapper .item-tag span{display:inline}.table .table-body__cell .name-wrapper .link{display:flex;width:100%;color:#4b4760}.table .table-body__cell .link-subtext{color:#7f7989}.table .table-body__cell .date-uid-row{display:flex;align-items:center;justify-content:space-between;font-weight:400;font-size:12px;font-family:Roboto,sans-serif;font-style:normal;margin-top:5px;width:max-content;min-width:100%}.table .table-body__cell .date-uid-row>span:not(:last-child){margin-right:10px}.table .table-body__cell .date-uid-row span{width:auto}.wizard-steps{display:flex;flex-flow:row nowrap;background-color:#fff;min-width:260px;margin:1.5rem 0;padding:0 2rem}@media screen and (min-width: 1200px){.wizard-steps{flex-flow:column nowrap;overflow-y:auto;padding:0 1rem}.wizard-steps>*:not(:last-child){margin-bottom:10px}}.wizard-steps .wizard-steps__item{display:block;background-color:inherit;color:#4b4760;border:0;border-radius:8px;font-size:1em;padding:8px;min-height:52px;height:auto;width:100%}@media screen and (min-width: 1200px){.wizard-steps .wizard-steps__item{display:flex;align-items:center;justify-content:flex-start}.wizard-steps .wizard-steps__item>*{text-align:left;white-space:normal}}.wizard-steps .wizard-steps__item .wizard-steps__indicator{border-color:#869cff;color:#869cff;background-color:inherit}.wizard-steps .wizard-steps__item.wizard-steps__item_active{background-color:#869cff1f;color:#6279e7}.wizard-steps .wizard-steps__item.wizard-steps__item_active .wizard-steps__indicator{border-color:transparent;color:#fff;background-color:#869cff}.wizard-steps .wizard-steps__item.wizard-steps__item_invalid{color:#ea336a}.wizard-steps .wizard-steps__item.wizard-steps__item_invalid.wizard-steps__item_active{background-color:#ea336a26}.wizard-steps .wizard-steps__item.wizard-steps__item_invalid .wizard-steps__indicator{border-color:#ea336a;color:#ea336a;background-color:inherit}.wizard-steps .wizard-steps__item:disabled{border:0;color:#adabb0}.wizard-steps .wizard-steps__item:disabled .wizard-steps__indicator{border-color:#adabb0;color:#adabb0;background-color:inherit}.wizard-steps .wizard-steps__indicator{display:inline-flex;align-items:center;justify-content:center;border:2px solid transparent;border-radius:50%;padding:10px;margin:0 0 10px;width:36px;height:36px}@media screen and (min-width: 1200px){.wizard-steps .wizard-steps__indicator{flex-flow:row nowrap;text-align:left;margin:0 10px 0 0}}.wizard-form .modal__body{display:flex;flex-flow:column nowrap;overflow:hidden;padding:0}@media screen and (min-width: 1200px){.wizard-form .modal__body{flex-flow:row nowrap}}.wizard-form .wizard-form__content-container{overflow-y:auto;height:100%;width:100%;padding:0 2rem 1.5rem}@media screen and (min-width: 1200px){.wizard-form .wizard-form__content-container{padding:1.5rem 2rem 1.5rem 1rem}}.wizard-form .wizard-form__content{min-width:350px;height:100%}.wizard-form .wizard-form__content .wizard-form__hidden-content-item{position:absolute;visibility:hidden;height:0;opacity:0;pointer-events:none}.wizard-form .wizard-form__content .wizard-form__visible-content-item{height:100%}.wizard-form__back-button svg,.wizard-form__next-button svg{width:14px}.wizard-form__next-button svg{rotate:180deg}
1
+ .tooltip-template{padding:6px 8px;word-break:break-word}.tooltip__text{color:#fff;background-color:#4b4760;border-radius:4px}.tooltip__warning{color:#ea336a;background-color:#fff;box-shadow:0 5px 11px #0000002e}.btn{display:flex;align-items:center;justify-content:center;min-width:90px;height:40px;padding:0 16px;color:#fff;font-weight:500;font-size:.875rem;font-style:normal;border:1px solid transparent;border-radius:4px}.btn-dense{height:36px}.btn-normal{height:40px}.btn-medium{height:44px}.btn-chunky{height:48px}.btn svg>*{fill:currentColor}.btn:focus{border-color:#0006}.btn:active{border-color:#0006}.btn:disabled{color:#adabb0;background:#fff;cursor:not-allowed}.btn:disabled svg>*{fill:#dadada}.btn :not(:last-child){margin-right:10px}.btn :last-child{margin:0}.btn-secondary{background:#0fddaf}.btn-secondary:hover:not(:disabled){background:#1fcc9e}.btn-secondary:active:not(:disabled){background:#1db284}.btn-secondary:disabled{border:1px solid #0fddaf}.btn-tertiary{color:#4b4760;background:#fff;border:1px solid rgba(0,0,0,.2)}.btn-tertiary svg>*{fill:#4b4760}.btn-tertiary:hover:not(:disabled){background:#f8f7f8}.btn-tertiary:active:not(:disabled){background:#e7e7e7}.btn-tertiary:disabled{border:1px solid rgba(0,0,0,.2)}.btn-primary{color:#fff;background:#869cff}.btn-primary:hover:not(:disabled){background:#6279e7}.btn-primary:active:not(:disabled){background:#5468c7}.btn-primary:disabled{border:1px solid #869cff}.btn-danger{color:#fff;background:#ea336a}.btn-danger:hover:not(:disabled){background:#d22a5d}.btn-danger:active:not(:disabled){background:#bc2553}.btn-danger:disabled{border:1px solid #ea336a}.btn-label{color:#4b4760;background:transparent;border:0}.btn-label svg>*{fill:#4b4760}.btn-label:focus:not(:disabled){border-color:transparent}.btn-label:hover:not(:disabled){color:#7f7989}.btn-label:active:not(:disabled){color:#000;border-color:transparent}.btn-label:disabled{border-color:transparent}.round-icon-cp{position:relative;display:flex;align-items:center;margin:0 .2rem}.round-icon-cp__circle{display:flex;align-items:center;justify-content:center;width:36px;height:36px;padding:4px}.round-icon-cp__circle>*{position:relative;z-index:2;display:inline-flex;margin:0!important}.round-icon-cp__circle:before{position:absolute;right:0;left:0;z-index:1;width:inherit;height:inherit;background-color:#483f561f;border-radius:50%;opacity:0;transition:opacity .3s ease-in-out;content:""}.round-icon-cp__circle:hover:before,.round-icon-cp__circle-active:before{opacity:1}.round-icon-cp__circle-disabled path{fill:#adabb0}.round-icon-cp__circle-disabled:hover:before{opacity:0}.pop-up-dialog{position:relative;width:477px;max-height:90vh;padding:20px;overflow-y:auto;background-color:#fff;border-radius:8px;box-shadow:0 2px 10px #0003}.pop-up-dialog__buttons_wrapper{display:flex}.pop-up-dialog__overlay{position:fixed;top:0;left:0;display:flex;align-items:center;justify-content:center;width:100%;height:100%;background:#333333bf;z-index:9}.pop-up-dialog__overlay.custom-position{width:auto;height:auto;background:unset}.pop-up-dialog__header{display:flex;align-items:baseline;justify-content:space-between;min-height:30px;margin-bottom:15px}.pop-up-dialog__header-text{width:100%;color:#4b4760;font-size:24px;line-height:28px;word-break:break-word}.pop-up-dialog__header-close{width:14px;height:14px;margin:5px 0 5px auto;cursor:pointer}.pop-up-dialog__footer-container{display:flex;justify-content:flex-end;margin-top:20px}.pop-up-dialog__btn_cancel{margin:0 10px}.pop-up-dialog__btn_close{position:absolute;top:10px;right:10px}.pop-up-dialog__form-input{width:100%}.confirm-dialog{color:#4b4760}.confirm-dialog__message{font-size:15px;line-height:24px}.confirm-dialog__message-only{font-size:22px}.confirm-dialog__btn-container{display:flex;justify-content:flex-end;margin-top:20px}.confirm-dialog__body{margin:20px 0}.tooltip{position:fixed;font-weight:400;font-size:15px;line-height:1.4;display:flex;max-width:400px;z-index:9}.actions-menu__icon{display:none;align-items:center;justify-content:center;width:25px;height:25px;margin-right:5px}.actions-menu__icon svg path:first-child{fill:#7f7989}.actions-menu__icon_visible{display:flex}.actions-menu__option{padding:10px;color:#4b4760;cursor:pointer}.actions-menu__option:hover{background-color:#f8f7f8}.actions-menu__option_danger{color:#ea336a}.actions-menu__option_danger svg path:first-child{fill:#ea336a}.actions-menu__option_disabled{color:#adabb0;cursor:not-allowed}.actions-menu__option_disabled .actions-menu__icon svg path:first-child{fill:#0003}.actions-menu__option>*{display:flex;flex:1;align-items:center;justify-content:flex-start;width:100%}.actions-menu{position:relative}.actions-menu__container{position:relative;display:none}.actions-menu__container_extended{position:absolute;right:0;display:none;align-items:center;justify-content:center;background-color:#f5f7ff;height:100%}.actions-menu__container_extended:before{content:"";width:30px;height:100%;position:absolute;display:block;left:-30px;background:linear-gradient(90deg,#fff0,#f5f7ff)}.actions-menu__container_extended .actions-menu{padding:0 5px 0 0}.actions-menu__container-active{display:flex}.actions-menu__main-actions-wrapper{display:flex;align-items:center;justify-content:center}.actions-menu__body{min-width:150px;max-width:250px}.actions-menu__body .pop-up-dialog{width:100%;padding:0}.actions-menu__list{list-style-type:none;margin:0;padding:0}.error{display:flex;justify-content:space-between;padding:10px 14px;color:#ea336a;background-color:#ea336a1a;border:1px solid #ea336a}.error__data{display:flex;align-items:center}.error__message{margin-right:10px;word-break:break-word}.error__icon{width:22px;height:22px;margin-right:10px;padding:5px;background-color:#eb5757;border-radius:50%}.form-field-checkbox{display:inline-flex;align-items:center;justify-content:flex-start;color:#4b4760}.form-field-checkbox_readonly input{pointer-events:none;opacity:.5}.form-field-checkbox_readonly input~label,.form-field-checkbox_readonly input~.label{pointer-events:none;opacity:.5}.form-field-checkbox input[type=checkbox]{flex:0 0 18px;width:18px;height:18px;border-radius:4px;transition:background .2s ease-in-out;position:relative;background:#fff;border:1px solid #869cff;color:#869cff;-webkit-appearance:none;-moz-appearance:none;appearance:none;margin:0;outline:0;cursor:pointer}.form-field-checkbox input[type=checkbox]:checked:hover{color:#6279e7}.form-field-checkbox input[type=checkbox]:checked:hover:disabled{color:#adabb0;border-color:currentColor}.form-field-checkbox input[type=checkbox]:disabled{color:#adabb0;border-color:currentColor;cursor:not-allowed;pointer-events:none}.form-field-checkbox input[type=checkbox]:disabled:hover{color:#adabb0;border-color:currentColor}.form-field-checkbox input[type=checkbox]:disabled~label,.form-field-checkbox input[type=checkbox]:disabled~.label{color:#adabb0;cursor:not-allowed}.form-field-checkbox input[type=checkbox]:not(:disabled):focus,.form-field-checkbox input[type=checkbox]:not(:disabled):active{animation:pulse-animation .5s ease-out}.form-field-checkbox input[type=checkbox]:not(:disabled):hover{color:#6279e7;border-color:currentColor}.form-field-checkbox input[type=checkbox]~label,.form-field-checkbox input[type=checkbox]~.label{display:flex;flex:1;align-items:center;position:relative;cursor:pointer;font-size:1em;padding:0 0 0 .45em;height:inherit;-webkit-user-select:none;user-select:none;white-space:nowrap}.form-field-checkbox input[type=checkbox]:before{content:"";display:block;position:absolute;top:1px;left:5px;width:6px;height:11px;border-style:solid;border-color:#fff;border-width:0 2px 2px 0;transform:rotate(45deg)}.form-field-checkbox input[type=checkbox]:checked{background:currentColor}.form-field-checkbox input[type=checkbox]:checked:hover{background:currentColor}.form-field-checkbox input[type=checkbox]:checked:hover:disabled{background:currentColor}.form-field-checkbox input[type=checkbox]:disabled:hover{background:#fff}.form-field-checkbox input[type=checkbox]:not(:disabled):checked~label.highlighted{color:#fff;background-color:#869cff}.form-field-checkbox input[type=checkbox]:not(:disabled):checked:hover~label.highlighted{background-color:#6279e7}.form-field-checkbox input[type=checkbox]~label.highlighted{background-color:#e9e8eb;font-size:12px;font-weight:700;margin-left:10px;padding:4px 8px;border-radius:4px}.form-field-checkbox input[type=checkbox]:not(:disabled):hover~label.highlighted{background-color:#dfe2e5}.options-menu__body{width:100%;max-height:250px;margin:0;padding:0;overflow-y:auto;color:#483f56de;font-size:1rem;list-style-type:none;background-color:#fff;border:1px solid rgba(0,0,0,.2);border-radius:4px;box-shadow:0 2px 10px #0003}.options-menu .pop-up-dialog{width:100%;padding:0}.options-menu-transition-enter{opacity:0}.options-menu-transition-enter-active{opacity:1;transition:opacity .3s ease-in-out}.options-menu-transition-exit{opacity:1}.options-menu-transition-exit-active{opacity:0;transition:opacity .3s ease-in-out}.validation-option{display:flex;align-items:flex-start;margin:.6rem 0;padding:0 1rem;font-size:.875rem}.validation-option__icon{display:flex;align-items:center;justify-content:center;width:20px;height:20px;margin-right:.5rem}.validation-option__icon_valid{width:14px;height:15px}.validation-option__icon_valid path{fill:#0fddaf}.validation-option__icon_invalid{width:12px;height:12px}.validation-option__icon_invalid path{fill:#ea336a}.edit-chip-container{display:inline-flex;max-width:100%;margin:2px 0;padding:0 8px;font-size:14px;line-height:22px}.edit-chip-container input{display:flex;padding:0;font-size:14px;background-color:transparent;border:none}.edit-chip-container input[disabled]{pointer-events:none}.edit-chip-container input.item_edited_invalid{color:#ea336a}.edit-chip-container input.input-label-key::placeholder,.edit-chip-container input.input-label-value::placeholder{color:#7f7989}.edit-chip-container-background_none{background-color:transparent}.edit-chip-container-background_green{background-color:#13bbb13d}.edit-chip-container-background_grey{background-color:#483f561f}.edit-chip-container-background_orange{background-color:#ffd0775c}.edit-chip-container-background_purple{background-color:#a44cc529}.edit-chip-container-background_amethyst{background-color:#a44cc5}.edit-chip-container-background_sorbus{background-color:#f98b0a}.edit-chip-container-background_java{background-color:#13bbb1}.edit-chip-container-border_transparent{border:1px solid transparent}.edit-chip-container-border_green{border:1px solid #49af53}.edit-chip-container-border_grey{border:1px solid rgba(0,0,0,.2)}.edit-chip-container-border_orange{border:1px solid #ea7f54}.edit-chip-container-border_purple{border:1px solid #a44cc5}.edit-chip-container-border_primary{border-radius:4px}.edit-chip-container-border_secondary{border-radius:20px}.edit-chip-container-density_dense{height:26px}.edit-chip-container-density_normal{height:32px;padding:8px 15px}.edit-chip-container-density_medium{height:34px;padding:8px 15px;font-size:15px}.edit-chip-container-font_primary,.edit-chip-container-font_primary .input-label-key,.edit-chip-container-font_primary .input-label-value,.edit-chip-container-font_primary .edit-label-separator{color:#4b4760}.edit-chip-container-font_primary .item-icon-close svg path{fill:#4b4760}.edit-chip-container-font_green,.edit-chip-container-font_green .input-label-key,.edit-chip-container-font_green .input-label-value,.edit-chip-container-font_green .edit-label-separator{color:#49af53}.edit-chip-container-font_green .item-icon-close svg path{fill:#49af53}.edit-chip-container-font_white,.edit-chip-container-font_white .input-label-key,.edit-chip-container-font_white .input-label-value,.edit-chip-container-font_white .edit-label-separator{color:#fff}.edit-chip-container-font_white .item-icon-close svg path{fill:#fff}.edit-chip-container-font_orange,.edit-chip-container-font_orange .input-label-key,.edit-chip-container-font_orange .input-label-value,.edit-chip-container-font_orange .edit-label-separator{color:#f98b0a}.edit-chip-container-font_orange .item-icon-close svg path{fill:#f98b0a}.edit-chip-container-font_purple,.edit-chip-container-font_purple .input-label-key,.edit-chip-container-font_purple .input-label-value,.edit-chip-container-font_purple .edit-label-separator{color:#a44cc5}.edit-chip-container-font_purple .item-icon-close svg path{fill:#a44cc5}.edit-chip-container-font_disabled,.edit-chip-container-font_disabled .input-label-key,.edit-chip-container-font_disabled .input-label-value,.edit-chip-container-font_disabled .edit-label-separator{color:#adabb0}.edit-chip-container-font_disabled .item-icon-close svg path{fill:#adabb0}.edit-chip-container button.item-icon-close{display:flex;align-items:center;justify-content:center}.edit-chip-container button.item-icon-close.hidden{display:none}.edit-chip-container button.item-icon-close.invisible{visibility:hidden}.edit-chip-container button.item-icon-close svg{transform:scale(.7)}.edit-chip-container_disabled{cursor:not-allowed}.edit-chip-separator{margin-right:5px}.chip{position:relative;margin:2px 8px 2px 0;padding:4px 8px;font-size:14px;line-height:16px;visibility:hidden;cursor:default}.chip_visible{visibility:visible}.chip_invisible{visibility:hidden;height:30px}.chip__content{display:flex;align-items:center}.chip__content-item{flex:1 1 50%;max-width:fit-content;align-self:flex-start}.chip__delimiter{display:flex;align-items:center;margin:0 4px}.chip__value{min-width:10px}.chip.editable{cursor:pointer}.chip.chips_button{padding:8px 7px;width:max-content}.chip-background_none{background-color:transparent}.chip-background_green{background-color:#13bbb13d}.chip-background_grey{background-color:#483f561f}.chip-background_orange{background-color:#ffd0775c}.chip-background_purple{background-color:#a44cc529}.chip-background_amethyst{background-color:#a44cc5}.chip-background_sorbus{background-color:#f98b0a}.chip-background_java{background-color:#13bbb1}.chip-border_transparent{border:1px solid transparent}.chip-border_green{border:1px solid #49af53}.chip-border_grey{border:1px solid rgba(0,0,0,.2)}.chip-border_orange{border:1px solid #ea7f54}.chip-border_purple{border:1px solid #a44cc5}.chip-border_primary{border-radius:4px}.chip-border_secondary{border-radius:20px}.chip-density_dense{height:26px}.chip-density_normal{height:32px;padding:8px 15px}.chip-density_medium{height:34px;padding:8px 15px;font-size:15px}.chip-density_medium .item-icon-close{transform:scale(1.2)}.chip-font_white{color:#fff}.chip-font_white .item-icon-close svg path{fill:#fff}.chip-font_green{color:#49af53}.chip-font_green .item-icon-close svg path{fill:#49af53}.chip-font_purple{color:#a44cc5}.chip-font_purple .item-icon-close svg path{fill:#a44cc5}.chip-font_primary{color:#4b4760}.chip-font_primary .item-icon-close svg path{fill:#4b4760}.chip-font_orange{color:#f98b0a}.chip-font_orange .item-icon-close svg path{fill:#f98b0a}.chip-value_bold{font-weight:700;font-size:15px}.loader-wrapper{position:fixed;top:0;left:0;z-index:10;display:flex;align-items:center;justify-content:center;width:100%;height:100%;background-color:#00000029}.loader-wrapper .loader{display:flex}.loader-wrapper .loader:after{display:block;width:64px;height:64px;border:6px solid #6279e7;border-color:#6279e7 transparent #6279e7 transparent;border-radius:50%;animation:rotate 1.5s linear infinite;content:" "}.loader-wrapper.section-loader{position:relative;z-index:2;background-color:transparent}.loader-wrapper.small-loader .loader:after{width:20px;height:20px;border-width:2px}.loader-wrapper.secondary-loader .loader:after{border-color:#adabb0 transparent #adabb0 transparent}@keyframes rotate{to{transform:rotate(360deg)}}.tip-container{position:relative;display:inline-flex;align-items:center;justify-content:center;width:var(--arrow-length)}.tip{position:fixed;display:block;padding:10px;color:#fff;white-space:pre-line;background:#4b4760;border-radius:4px;z-index:9}.tip-wrapper{display:inline-flex;align-items:center}.tip_top:after{bottom:calc(var(--tipArrowLength) * -.5)}.tip_bottom:after{top:calc(var(--tipArrowLength) * -.5)}.tip_left:after{right:calc(var(--tipArrowOffset))}.tip_right:after{left:calc(var(--tipArrowOffset))}.tip_small{min-width:100px;max-width:250px}.tip_big{min-width:250px;max-width:400px}.tip:after{position:absolute;width:var(--tipArrowLength);height:var(--tipArrowLength);background:#4b4760;transform:rotate(45deg);content:""}.fade-enter{opacity:0}.fade-enter-active{opacity:1;transition:opacity .2s}.fade-exit{opacity:1}.fade-exit-active{opacity:0;transition:opacity .2s}.btn-load{display:flex;align-items:center;justify-content:center;min-width:90px;height:40px;padding:0 16px;color:#4b4760;font-weight:500;font-size:14px;font-style:normal;line-height:16px;background:#fff;border:1px solid rgba(0,0,0,.2);border-radius:4px}.btn-load svg path{fill:#fff}.btn-load:active{background:#eee}.btn-load:hover{background:#f8f7f8}.btn-load:disabled{color:#adabb0;background:#fff;cursor:not-allowed}.btn-load:disabled svg path{fill:#dadada}.btn-load :first-child{margin-right:5px}.btn-load-primary{border-bottom:4px solid #0fddaf}.btn-load-primary:disabled{border-bottom:4px solid #c5f7ec}.btn-load-secondary{border-bottom:4px solid #869cff}.btn-load-secondary:disabled{border-bottom:4px solid #e2e7ff}.btn-load-tertiary{border-bottom:4px solid #adabb0}.btn-load-tertiary svg path{fill:#4b4760}.btn-load-tertiary:disabled{border-bottom:4px solid #ebebec}.chips{position:relative;display:flex;flex-flow:column nowrap;height:100%;width:100%}.chips__label{display:flex;align-items:center;margin-bottom:5px;color:#7f7989;font-size:12px;text-align:left;background-color:transparent}.chips__label:first-letter{text-transform:uppercase}.chips__label-mandatory{color:#ea336a}.chips__label-disabled,.chips__label-disabled .form-field__label-mandatory{color:#adabb0}.chips__wrapper{display:flex;flex:1;flex-flow:row nowrap;position:relative;width:100%;color:#4b4760;background-color:transparent;border:1px solid rgba(0,0,0,.2);border-radius:4px}.chips__wrapper-disabled{border:1px solid rgba(173,171,176,.3);color:#adabb0;cursor:not-allowed}.chips__wrapper-invalid{border:1px solid #ea336a}.chips__wrapper.without-border{border-color:transparent}.chips__wrapper-dense{height:36px}.chips__wrapper-normal{height:40px}.chips__wrapper-medium{height:44px}.chips__wrapper-chunky{height:48px}.chips__control{position:relative;display:flex;flex:1;align-items:center;overflow:hidden}.chips__icons{display:flex;flex-shrink:0;align-items:center;min-height:25px}.chips__icons>*{display:flex;align-items:center;padding:0 4px}.chips__icons>*:last-child{margin-right:4px}.chips{height:auto;min-width:0}.chips__wrapper{padding:12px 16px}.chips-wrapper{display:flex;flex-flow:row;align-items:center;overflow:hidden}.chips-wrapper.chips-wrapper_all-visible{flex-wrap:wrap;overflow:auto}.chips-cell{display:flex;flex:1;align-items:center;max-width:100%}.chips-cell .fixed-max-width{max-width:100%}.chips-cell .chip-block{position:relative;max-width:100%;margin-right:calc(var(--chipBlockMarginRight))}.chips-cell .button-add{display:flex;align-items:center;justify-content:center;margin:2px 0;border-radius:32px}.chips-cell .button-add-background_orange{background-color:#ffd0775c}.chips-cell .button-add-background_orange:hover{background-color:#f98b0a}.chips-cell .button-add-background_purple{background-color:#a44cc529}.chips-cell .button-add-background_purple:hover{background-color:#a44cc5}.chips-cell .button-add-background_green{background-color:#13bbb13d}.chips-cell .button-add-background_green:hover{background-color:#13bbb1}.chips-cell .button-add-background_grey{background-color:#483f561f}.chips-cell .button-add-background_grey:hover{background-color:#7f7989}.chips-cell .button-add_border_transparent{border:1px solid transparent}.chips-cell .button-add_border_green{border:1px solid #49af53}.chips-cell .button-add_border_grey{border:1px solid rgba(0,0,0,.2)}.chips-cell .button-add_border_orange{border:1px solid #ea7f54}.chips-cell .button-add_border_purple{border:1px solid #a44cc5}.chips-cell .button-add_border_primary{border-radius:4px}.chips-cell .button-add_border_secondary{border-radius:20px}.chips-cell .button-add-density_dense{width:26px;height:26px}.chips-cell .button-add-density_normal{width:32px;height:32px}.chips-cell .button-add-density_medium{width:34px;height:34px}.chips-cell .button-add-font_primary svg rect,.chips-cell .button-add-font_primary svg path{fill:#7f7989}.chips-cell .button-add-font_primary:hover svg rect,.chips-cell .button-add-font_primary:hover svg path{fill:#fff}.chips-cell .button-add-font_green svg rect,.chips-cell .button-add-font_green svg path{fill:#49af53}.chips-cell .button-add-font_green:hover svg rect,.chips-cell .button-add-font_green:hover svg path{fill:#fff}.chips-cell .button-add-font_orange svg rect,.chips-cell .button-add-font_orange svg path{fill:#f98b0a}.chips-cell .button-add-font_orange:hover svg rect,.chips-cell .button-add-font_orange:hover svg path{fill:#fff}.chips-cell .button-add-font_purple svg rect,.chips-cell .button-add-font_purple svg path{fill:#a44cc5}.chips-cell .button-add-font_purple:hover svg rect,.chips-cell .button-add-font_purple:hover svg path{fill:#fff}.chips input:disabled{cursor:default}.form-field.form-field-combobox{width:100%}.form-field.form-field-combobox .form-field{position:relative;display:flex;flex-flow:column nowrap;height:100%;width:100%}.form-field.form-field-combobox .form-field__label{display:flex;align-items:center;margin-bottom:5px;color:#7f7989;font-size:12px;text-align:left;background-color:transparent}.form-field.form-field-combobox .form-field__label:first-letter{text-transform:uppercase}.form-field.form-field-combobox .form-field__label-mandatory{color:#ea336a}.form-field.form-field-combobox .form-field__label-disabled,.form-field.form-field-combobox .form-field__label-disabled .form-field__label-mandatory{color:#adabb0}.form-field.form-field-combobox .form-field__wrapper{display:flex;flex:1;flex-flow:row nowrap;position:relative;width:100%;color:#4b4760;background-color:transparent;border:1px solid rgba(0,0,0,.2);border-radius:4px}.form-field.form-field-combobox .form-field__wrapper-disabled{border:1px solid rgba(173,171,176,.3);color:#adabb0;cursor:not-allowed}.form-field.form-field-combobox .form-field__wrapper-invalid{border:1px solid #ea336a}.form-field.form-field-combobox .form-field__wrapper.without-border{border-color:transparent}.form-field.form-field-combobox .form-field__wrapper-dense{height:36px}.form-field.form-field-combobox .form-field__wrapper-normal{height:40px}.form-field.form-field-combobox .form-field__wrapper-medium{height:44px}.form-field.form-field-combobox .form-field__wrapper-chunky{height:48px}.form-field.form-field-combobox .form-field__control{position:relative;display:flex;flex:1;align-items:center;overflow:hidden}.form-field.form-field-combobox .form-field__icons{display:flex;flex-shrink:0;align-items:center;min-height:25px}.form-field.form-field-combobox .form-field__icons>*{display:flex;align-items:center;padding:0 4px}.form-field.form-field-combobox .form-field__icons>*:last-child{margin-right:4px}.form-field.form-field-combobox .form-field__icons .form-field-combobox__icon{cursor:pointer;padding:0;transition:transform .2s linear}.form-field.form-field-combobox .form-field__icons .form-field-combobox__icon_open{transform:rotate(90deg);transform-origin:center center}.form-field.form-field-combobox .form-field-combobox__placeholder{color:#7f7989;font-size:15px;text-align:left;text-transform:capitalize;background-color:transparent}.form-field.form-field-combobox .form-field-combobox__placeholder label{cursor:inherit}.form-field.form-field-combobox .form-field-combobox__select{padding:0;overflow:visible}.form-field.form-field-combobox .form-field-combobox__select-header{display:flex;flex:1;align-items:center;cursor:pointer;height:100%}.form-field.form-field-combobox .form-field-combobox__input{width:100%;padding:0 8px 0 0}.form-field.form-field-combobox .form-field-combobox__input_hidden{flex:0}.form-field-combobox__search{width:100%;padding:12px 0}.form-field-combobox__search-wrapper{position:sticky;top:0;display:flex;align-items:center;margin:0 9px;border-bottom:1px solid rgba(72,63,86,.12);background-color:#fff}.form-field-combobox__dropdown-select{max-width:220px}.form-field-combobox__dropdown-suggestions{max-width:350px}.form-field-combobox__dropdown-list{margin:0;padding:0;min-width:140px;list-style-type:none}.form-field-combobox__dropdown-list-option{padding:8px 15px;word-break:break-all;cursor:pointer}.form-field-combobox__dropdown-list-option:hover{background-color:#f8f7f8}.form-field-combobox__dropdown .pop-up-dialog{width:100%;max-height:250px;padding:0}.form-field-combobox .path-type-store,.form-field-combobox__dropdown .path-type-store{color:#a44cc5}.form-field-combobox .path-type-v3io,.form-field-combobox__dropdown .path-type-v3io{color:#5871f4}.form-field-combobox .path-type-az,.form-field-combobox .path-type-gs,.form-field-combobox .path-type-http,.form-field-combobox .path-type-https,.form-field-combobox .path-type-s3,.form-field-combobox__dropdown .path-type-az,.form-field-combobox__dropdown .path-type-gs,.form-field-combobox__dropdown .path-type-http,.form-field-combobox__dropdown .path-type-https,.form-field-combobox__dropdown .path-type-s3{color:#f98b0a}.form-field-combobox .path-type-dbfs,.form-field-combobox__dropdown .path-type-dbfs{color:#49af53}.form-field-range{align-self:stretch}.form-field-range .range__buttons{display:flex;flex-direction:column;justify-content:center;width:28px;height:100%}.form-field-range .range__button{display:flex;width:100%;height:calc(50% + 1px);align-items:center;justify-content:center;padding:0;background-color:#f5f5f5;cursor:pointer}.form-field-range .range__button svg path{fill:#7f7989}.form-field-range .range__button:hover{background-color:#e7e7e7}.form-field-range .range__button:hover svg path{fill:#4b4760}.form-field-range .range__button:focus{border:1px solid #7f7989}.form-field-range .range__button:active{background-color:#0003;border:1px solid #7f7989}.form-field-range .range__button:active svg path{fill:#4b4760}.form-field-range .range__button:disabled{cursor:not-allowed}.form-field-range .range__button:disabled svg path{fill:#adabb0}.form-field-range .range__button:disabled:focus{border:none}.form-field-range .range__button:disabled:hover{background-color:#f5f5f5}.form-field-range .range__button-increase{border-bottom:1px solid transparent;border-left:1px solid transparent;border-top-right-radius:4px}.form-field-range .range__button-decrease{border-top:1px solid transparent;border-left:1px solid transparent;border-bottom-right-radius:4px}.form-field-range .range__button .decrease{transform:rotate(180deg)}.form-field-range .range-warning{border:1px solid #ea336a}.form-field-range .range-warning_asterisk{position:absolute;top:50%;right:35px;color:#ea336a;transform:translateY(-50%)}.form-field-range .range-warning .range__button-increase{border-top:1px solid #ea336a;border-right:1px solid #ea336a}.form-field-range .range-warning .range__button-decrease{border-right:1px solid #ea336a;border-bottom:1px solid #ea336a}.form-field-range .range__warning-icon{position:absolute;top:50%;right:30px;transform:translateY(-50%)}.form-field-input{width:100%}.form-field-input input{height:inherit;width:100%;padding:12px 16px}.form-field-input .form-field{position:relative;display:flex;flex-flow:column nowrap;height:100%;width:100%}.form-field-input .form-field__label{display:flex;align-items:center;margin-bottom:5px;color:#7f7989;font-size:12px;text-align:left;background-color:transparent}.form-field-input .form-field__label:first-letter{text-transform:uppercase}.form-field-input .form-field__label-mandatory{color:#ea336a}.form-field-input .form-field__label-disabled,.form-field-input .form-field__label-disabled .form-field__label-mandatory{color:#adabb0}.form-field-input .form-field__wrapper{display:flex;flex:1;flex-flow:row nowrap;position:relative;width:100%;color:#4b4760;background-color:transparent;border:1px solid rgba(0,0,0,.2);border-radius:4px}.form-field-input .form-field__wrapper-disabled{border:1px solid rgba(173,171,176,.3);color:#adabb0;cursor:not-allowed}.form-field-input .form-field__wrapper-invalid{border:1px solid #ea336a}.form-field-input .form-field__wrapper.without-border{border-color:transparent}.form-field-input .form-field__wrapper-dense{height:36px}.form-field-input .form-field__wrapper-normal{height:40px}.form-field-input .form-field__wrapper-medium{height:44px}.form-field-input .form-field__wrapper-chunky{height:48px}.form-field-input .form-field__control{position:relative;display:flex;flex:1;align-items:center;overflow:hidden}.form-field-input .form-field__icons{display:flex;flex-shrink:0;align-items:center;min-height:25px}.form-field-input .form-field__icons>*{display:flex;align-items:center;padding:0 4px}.form-field-input .form-field__icons>*:last-child{margin-right:4px}.form-field-input .form-field__label-icon{display:inline-flex;margin-left:3px}.form-field-input .form-field__label-icon>*,.form-field-input .form-field__label-icon a{display:inline-flex}.form-field-input .form-field__label-icon a{transform:translateY(-1px)}.form-field-input .form-field__label-icon svg{width:12px;height:12px}.form-field-input .form-field__label-icon svg path{fill:#6279e7}.form-field-input .form-field__suggestion-list{position:absolute;top:100%;left:0;z-index:5;margin:0;padding:7px 0;background-color:#fff;border-radius:4px;box-shadow:0 2px 10px #0003}.form-field-input .form-field__suggestion-list .suggestion-item{padding:7px 15px;color:#483f56;list-style-type:none}.form-field-input .form-field__suggestion-list .suggestion-item:hover{background-color:#f8f7f8;cursor:pointer}.form-field-input input[type=number]{border:none;-moz-appearance:textfield}.form-field-input input[type=number]::-webkit-outer-spin-button,.form-field-input input[type=number]::-webkit-inner-spin-button{-webkit-appearance:none}.select__item{display:flex;align-items:center;flex-flow:row wrap;width:100%;min-height:45px;padding:10px 15px}.select__item.multiple{padding:0 15px;min-height:0}.select__item.multiple input[type=checkbox]~label{padding-top:16px;padding-bottom:16px}.select__item.hidden{display:none}.select__item .form-field-checkbox{flex:1;height:100%;width:100%}.select__item:hover{background-color:#f8f7f8;cursor:pointer}.select__item.disabled{color:#adabb0;background:#fff;cursor:not-allowed}.select__item .status{margin:0 10px}.select__item .all{margin:0;display:inline-block;width:8px;height:8px;min-width:8px;border-radius:50%;background-color:none}.select__item .label-row{display:flex;flex-flow:row nowrap;align-items:center;justify-content:space-between;width:100%}.select__item-label{display:flex;flex-flow:row wrap;align-items:center;justify-content:flex-start;flex:1}.select__item-main-label{width:100%;display:flex;flex-flow:row nowrap;align-items:center;justify-content:flex-start}.select__item-sub-label{margin-top:5px;font-size:13px;width:100%}.select__item-icon{display:flex;margin-right:10px}.select__item .checkmark{align-self:flex-start;margin:0 0 0 10px}.select__item .checkmark path{fill:#49af53}.select-tooltip,.form-field-select{width:100%}.form-field-select .form-field{position:relative;display:flex;flex-flow:column nowrap;height:100%;width:100%}.form-field-select .form-field__label{display:flex;align-items:center;margin-bottom:5px;color:#7f7989;font-size:12px;text-align:left;background-color:transparent}.form-field-select .form-field__label:first-letter{text-transform:uppercase}.form-field-select .form-field__label-mandatory{color:#ea336a}.form-field-select .form-field__label-disabled,.form-field-select .form-field__label-disabled .form-field__label-mandatory{color:#adabb0}.form-field-select .form-field__wrapper{display:flex;flex:1;flex-flow:row nowrap;position:relative;width:100%;color:#4b4760;background-color:transparent;border:1px solid rgba(0,0,0,.2);border-radius:4px}.form-field-select .form-field__wrapper-disabled{border:1px solid rgba(173,171,176,.3);color:#adabb0;cursor:not-allowed}.form-field-select .form-field__wrapper-invalid{border:1px solid #ea336a}.form-field-select .form-field__wrapper.without-border{border-color:transparent}.form-field-select .form-field__wrapper-dense{height:36px}.form-field-select .form-field__wrapper-normal{height:40px}.form-field-select .form-field__wrapper-medium{height:44px}.form-field-select .form-field__wrapper-chunky{height:48px}.form-field-select .form-field__control{position:relative;display:flex;flex:1;align-items:center;overflow:hidden}.form-field-select .form-field__icons{display:flex;flex-shrink:0;align-items:center;min-height:25px}.form-field-select .form-field__icons>*{display:flex;align-items:center;padding:0 4px}.form-field-select .form-field__icons>*:last-child{margin-right:4px}.form-field-select .form-field__wrapper{cursor:pointer}.form-field-select .form-field__wrapper-active{background:#f8f7f8}.form-field-select .form-field__wrapper-disabled{cursor:not-allowed}.form-field-select .form-field__wrapper-disabled .form-field__caret path{fill:#adabb0}.form-field-select .form-field__select{display:flex;align-items:center;width:100%;padding:0 20px 0 16px}.form-field-select .form-field__select-value{display:block;font-size:15px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.form-field-select .form-field__select-placeholder{color:#adabb0}.form-field-select .form-field__select-sub_label{display:block;margin-left:10px;overflow:hidden;color:#7f7989;white-space:nowrap;text-overflow:ellipsis}.form-field-select__options-list .pop-up-dialog{width:100%;padding:0;border-radius:0}.form-field-select__options-list .options-list{margin:0;padding:0;list-style-type:none;max-height:250px;overflow-y:auto}.form-field-select__options-list .options-list__body{width:100%;color:#483f56de;background-color:#fff;border:1px solid rgba(0,0,0,.2);border-radius:4px;box-shadow:0 4px 8px #0000003b}.form-field-select__options-list .options-list__search{width:100%}.form-field-select__options-list .options-list__search input{width:100%;padding:10px;border:none;border-bottom:1px solid rgba(0,0,0,.2)}.form-field-radio{display:inline-flex;align-items:center;justify-content:flex-start;color:#4b4760;margin-right:15px}.form-field-radio_readonly input{pointer-events:none;opacity:.5}.form-field-radio_readonly input~label,.form-field-radio_readonly input~.label{pointer-events:none;opacity:.5}.form-field-radio input[type=radio]{width:16px;height:16px;border-radius:50%;position:relative;background:#fff;border:1px solid #869cff;color:#869cff;-webkit-appearance:none;-moz-appearance:none;appearance:none;margin:0;outline:0;cursor:pointer}.form-field-radio input[type=radio]:checked:hover{color:#6279e7}.form-field-radio input[type=radio]:checked:hover:disabled{color:#adabb0;border-color:currentColor}.form-field-radio input[type=radio]:disabled{color:#adabb0;border-color:currentColor;cursor:not-allowed;pointer-events:none}.form-field-radio input[type=radio]:disabled:hover{color:#adabb0;border-color:currentColor}.form-field-radio input[type=radio]:disabled~label,.form-field-radio input[type=radio]:disabled~.label{color:#adabb0;cursor:not-allowed}@keyframes pulse-animation{20%{box-shadow:0 0 #6279e780}to{box-shadow:0 0 0 6px #6279e700}}.form-field-radio input[type=radio]:not(:disabled):focus,.form-field-radio input[type=radio]:not(:disabled):active{animation:pulse-animation .5s ease-out}.form-field-radio input[type=radio]:not(:disabled):hover{color:#6279e7;border-color:currentColor}.form-field-radio input[type=radio]~label,.form-field-radio input[type=radio]~.label{display:flex;flex:1;align-items:center;position:relative;cursor:pointer;font-size:1em;padding:0 0 0 .45em;height:inherit;-webkit-user-select:none;user-select:none;white-space:nowrap}.form-field-radio input[type=radio]:before{content:"";position:absolute;top:2px;left:2px;width:10px;height:10px;border-radius:50%;transform:scale(0);transition:transform .2s ease-in-out;box-shadow:inset 1em 1em currentColor}.form-field-radio input[type=radio]:checked:before{transform:scale(1)}.form-field-textarea{width:100%}.form-field-textarea textarea{height:inherit;width:100%;padding:12px 16px;white-space:normal}.form-field-textarea .form-field{position:relative;display:flex;flex-flow:column nowrap;height:100%;width:100%}.form-field-textarea .form-field__label{display:flex;align-items:center;margin-bottom:5px;color:#7f7989;font-size:12px;text-align:left;background-color:transparent}.form-field-textarea .form-field__label:first-letter{text-transform:uppercase}.form-field-textarea .form-field__label-mandatory{color:#ea336a}.form-field-textarea .form-field__label-disabled,.form-field-textarea .form-field__label-disabled .form-field__label-mandatory{color:#adabb0}.form-field-textarea .form-field__wrapper{display:flex;flex:1;flex-flow:row nowrap;position:relative;width:100%;color:#4b4760;background-color:transparent;border:1px solid rgba(0,0,0,.2);border-radius:4px}.form-field-textarea .form-field__wrapper-disabled{border:1px solid rgba(173,171,176,.3);color:#adabb0;cursor:not-allowed}.form-field-textarea .form-field__wrapper-invalid{border:1px solid #ea336a}.form-field-textarea .form-field__wrapper.without-border{border-color:transparent}.form-field-textarea .form-field__wrapper-dense{height:36px}.form-field-textarea .form-field__wrapper-normal{height:40px}.form-field-textarea .form-field__wrapper-medium{height:44px}.form-field-textarea .form-field__wrapper-chunky{height:48px}.form-field-textarea .form-field__control{position:relative;display:flex;flex:1;align-items:center;overflow:hidden}.form-field-textarea .form-field__icons{display:flex;flex-shrink:0;align-items:center;min-height:25px}.form-field-textarea .form-field__icons>*{display:flex;align-items:center;padding:0 4px}.form-field-textarea .form-field__icons>*:last-child{margin-right:4px}.form-field-textarea .form-field__wrapper .form-field__control{padding:0}.form-field-textarea .form-field__counter{color:#7f7989;font-size:12px;margin-top:5px;text-align:right}.form-field-toggle{position:relative}.form-field-toggle__switch{height:24px;width:48px;display:flex;cursor:pointer;align-items:center;background-color:#dadada;border-radius:20px;transition:all .2s ease}.form-field-toggle__switch:before{content:"";width:20px;height:20px;background-color:#fff;border-radius:50%;transform:translate(2px);transition:all .2s ease}.form-field-toggle .form-field{position:relative;display:flex;flex-flow:column nowrap;height:100%;width:100%}.form-field-toggle .form-field__label{display:flex;align-items:center;margin-bottom:5px;color:#7f7989;font-size:12px;text-align:left;background-color:transparent}.form-field-toggle .form-field__label:first-letter{text-transform:uppercase}.form-field-toggle .form-field__label-mandatory{color:#ea336a}.form-field-toggle .form-field__label-disabled,.form-field-toggle .form-field__label-disabled .form-field__label-mandatory{color:#adabb0}.form-field-toggle .form-field__wrapper{display:flex;flex:1;flex-flow:row nowrap;position:relative;width:100%;color:#4b4760;background-color:transparent;border:1px solid rgba(0,0,0,.2);border-radius:4px}.form-field-toggle .form-field__wrapper-disabled{border:1px solid rgba(173,171,176,.3);color:#adabb0;cursor:not-allowed}.form-field-toggle .form-field__wrapper-invalid{border:1px solid #ea336a}.form-field-toggle .form-field__wrapper.without-border{border-color:transparent}.form-field-toggle .form-field__wrapper-dense{height:36px}.form-field-toggle .form-field__wrapper-normal{height:40px}.form-field-toggle .form-field__wrapper-medium{height:44px}.form-field-toggle .form-field__wrapper-chunky{height:48px}.form-field-toggle .form-field__control{position:relative;display:flex;flex:1;align-items:center;overflow:hidden}.form-field-toggle .form-field__icons{display:flex;flex-shrink:0;align-items:center;min-height:25px}.form-field-toggle .form-field__icons>*{display:flex;align-items:center;padding:0 4px}.form-field-toggle .form-field__icons>*:last-child{margin-right:4px}.form-field-toggle .form-field__wrapper{border:none}.form-field-toggle input[type=checkbox]{display:none;width:0;height:0}.form-field-toggle input[type=checkbox]:disabled+* .form-field-toggle__switch{opacity:.5;pointer-events:none;cursor:default}.form-field-toggle input[type=checkbox]:checked+* .form-field-toggle__switch{background-color:#869cff}.form-field-toggle input[type=checkbox]:checked+* .form-field-toggle__switch:before{transform:translate(26px)}.backdrop{position:fixed;top:0;left:0;width:100vw;height:100vh;background-color:#000;z-index:9}.backdrop-transition-enter{opacity:0}.backdrop-transition-enter-active,.backdrop-transition-enter-done{opacity:.5;transition:opacity .3s ease-in-out}.backdrop-transition-exit{opacity:.5}.backdrop-transition-exit-active{opacity:0;transition:opacity .3s ease-in-out}.modal{position:fixed;top:50%;left:50%;width:100%;height:660px;max-width:96%;min-width:300px;max-height:96%;outline:0;transform:translate(-50%,-50%);z-index:9}@media screen and (min-width: 1200px){.modal{width:1000px}.modal.modal-sm{width:700px}.modal.modal-lg{width:1400px}.modal.modal-max{width:95vw;height:95vh}}.modal.modal-min{width:500px;height:auto}.modal.modal-max{width:96vw;height:94vw}.modal__content{display:flex;flex-flow:column nowrap;position:relative;min-height:inherit;height:100%;width:100%;max-height:100%;background-color:#fff;border-radius:8px;box-shadow:0 6px 26px #0003;text-align:left}.modal__header{position:relative;border-bottom:1px solid rgba(0,0,0,.2);min-height:92px;padding:1rem 3rem;display:flex;align-items:center;justify-content:center;flex-direction:column}.modal__header-title{color:#4b4760;font-size:2em;text-transform:capitalize;margin:0}.modal__header-sub-title{color:#7f7989;font-size:1.5em;font-weight:500;margin:10px 0 0}.modal__header-preview-text{position:absolute;top:1rem;left:1rem;font-size:1rem}.modal__header-button{position:absolute;top:10px;right:10px}.modal__body{overflow-y:auto;overflow-x:hidden;flex:1 0;padding:1.5rem 2rem 0;margin-bottom:1rem}.modal__footer{display:flex;flex-flow:row nowrap;flex-shrink:0;justify-content:space-between;padding:1rem 2rem;min-height:50px}.modal__footer-actions{display:flex;flex:1 0 auto;justify-content:flex-end;align-items:center}.modal__footer-actions>*:not(:last-child){margin-right:10px}.modal-transition-enter{opacity:0;transform:translate(-50%,100vh)}.modal-transition-enter-active,.modal-transition-enter-done{opacity:1;transform:translate(-50%,-50%);transition:all .3s ease-in-out}.modal-transition-exit{opacity:1;transform:translate(-50%,-50%)}.modal-transition-exit-active{opacity:0;transform:translate(-50%,-70%);transition:all .3s ease-in-out}.navbar{display:flex;flex-flow:column nowrap;flex-grow:1;flex-shrink:0;flex-basis:245px;position:absolute;top:0;left:0;z-index:11;height:100%;width:245px;max-width:57px;border-right:1px solid #e9e8eb;background-color:#f9f8f8;transition:max-width .3s ease-in-out}.navbar:hover{max-width:245px}.navbar:hover .navbar__pin-icon{opacity:1;visibility:visible}.navbar:hover .navbar__body,.navbar.navbar_pinned .navbar__body{overflow-y:auto}.navbar:hover .nav-link__button,.navbar.navbar_pinned .nav-link__button{padding:0 8px 0 24px}.navbar:hover .nav-link__button.expanded+.navbar-links_nested,.navbar.navbar_pinned .nav-link__button.expanded+.navbar-links_nested{max-height:30rem;transition:max-height .3s ease-in-out}.navbar .nav-link__icon{display:flex;opacity:1;flex:0 0 auto;transition:opacity .3s ease-in-out}.navbar .nav-link__icon svg{flex:0 0 20px;width:20px;height:20px}.navbar .nav-link__icon svg *{fill:#7f7989}.navbar__divider{border-top:1px solid #e9e8eb;margin:0 1rem}.navbar__body{position:relative;z-index:2;display:flex;flex-flow:column nowrap;justify-content:flex-start;width:100%;height:100%;overflow:hidden;transition:padding .3s ease-in-out}.navbar-links{display:flex;flex:0 0 auto;flex-flow:column nowrap;max-width:238px;margin:.5rem 0;padding:0 10px 0 0;width:100%;list-style-type:none}.navbar-links.navbar-links_nested{max-height:0;padding:0;margin:0;overflow:hidden;transition:max-height .3s ease-in-out}.navbar-links.navbar-links_nested .nav-link__button{padding-left:44px}.navbar-links.navbar-links_nested>*:first-child{margin-top:5px}.navbar__pin-icon{position:absolute;display:flex;justify-content:flex-end;padding:5px 10px;opacity:0;top:10px;right:-45px;background-color:#f9f8f8;border-radius:0 8px 8px 0;border-width:1px 1px 1px 0;border-color:#e9e8eb;border-style:solid;visibility:hidden;transition:all .3s ease-in-out}.navbar__pin-icon:hover{cursor:pointer;background-color:#efefef}.table .table-body__cell{line-height:20px}.table .table-body__cell .name-wrapper{display:flex;flex:1;flex-wrap:wrap;align-items:center}.table .table-body__cell .name-wrapper .item-name{color:#4b4760;font-weight:700}.table .table-body__cell .name-wrapper .item-name.function-name{max-width:120px}.table .table-body__cell .name-wrapper .item-tag{max-width:150px}.table .table-body__cell .name-wrapper .item-tag span{display:inline}.table .table-body__cell .name-wrapper .link{display:flex;width:100%;color:#4b4760}.table .table-body__cell .link-subtext{color:#7f7989}.table .table-body__cell .date-uid-row{display:flex;align-items:center;justify-content:space-between;font-weight:400;font-size:12px;font-family:Roboto,sans-serif;font-style:normal;margin-top:5px;width:max-content;min-width:100%}.table .table-body__cell .date-uid-row>span:not(:last-child){margin-right:10px}.table .table-body__cell .date-uid-row span{width:auto}.wizard-steps{display:flex;flex-flow:row nowrap;background-color:#fff;min-width:260px;margin:1.5rem 0;padding:0 2rem}@media screen and (min-width: 1200px){.wizard-steps{flex-flow:column nowrap;overflow-y:auto;padding:0 1rem}.wizard-steps>*:not(:last-child){margin-bottom:10px}}.wizard-steps .wizard-steps__item{display:block;background-color:inherit;color:#4b4760;border:0;border-radius:8px;font-size:1em;padding:8px;min-height:52px;height:auto;width:100%}@media screen and (min-width: 1200px){.wizard-steps .wizard-steps__item{display:flex;align-items:center;justify-content:flex-start}.wizard-steps .wizard-steps__item>*{text-align:left;white-space:normal}}.wizard-steps .wizard-steps__item .wizard-steps__indicator{border-color:#869cff;color:#869cff;background-color:inherit}.wizard-steps .wizard-steps__item.wizard-steps__item_active{background-color:#869cff1f;color:#6279e7}.wizard-steps .wizard-steps__item.wizard-steps__item_active .wizard-steps__indicator{border-color:transparent;color:#fff;background-color:#869cff}.wizard-steps .wizard-steps__item.wizard-steps__item_invalid{color:#ea336a}.wizard-steps .wizard-steps__item.wizard-steps__item_invalid.wizard-steps__item_active{background-color:#ea336a26}.wizard-steps .wizard-steps__item.wizard-steps__item_invalid .wizard-steps__indicator{border-color:#ea336a;color:#ea336a;background-color:inherit}.wizard-steps .wizard-steps__item:disabled{border:0;color:#adabb0}.wizard-steps .wizard-steps__item:disabled .wizard-steps__indicator{border-color:#adabb0;color:#adabb0;background-color:inherit}.wizard-steps .wizard-steps__indicator{display:inline-flex;align-items:center;justify-content:center;border:2px solid transparent;border-radius:50%;padding:10px;margin:0 0 10px;width:36px;height:36px}@media screen and (min-width: 1200px){.wizard-steps .wizard-steps__indicator{flex-flow:row nowrap;text-align:left;margin:0 10px 0 0}}.wizard-form .modal__body{display:flex;flex-flow:column nowrap;overflow:hidden;padding:0}@media screen and (min-width: 1200px){.wizard-form .modal__body{flex-flow:row nowrap}}.wizard-form .wizard-form__content-container{overflow-y:auto;height:100%;width:100%;padding:0 2rem 1.5rem}@media screen and (min-width: 1200px){.wizard-form .wizard-form__content-container{padding:1.5rem 2rem 1.5rem 1rem}}.wizard-form .wizard-form__content{min-width:350px;height:100%}.wizard-form .wizard-form__content .wizard-form__hidden-content-item{position:absolute;visibility:hidden;height:0;opacity:0;pointer-events:none}.wizard-form .wizard-form__content .wizard-form__visible-content-item{height:100%}.wizard-form__back-button svg,.wizard-form__next-button svg{width:14px}.wizard-form__next-button svg{rotate:180deg}.nav-link{margin-bottom:5px}.nav-link:last-child{margin:0}.nav-link__arrow{flex:1;display:flex;justify-content:end}.nav-link__arrow svg{transition:transform .2s ease-in-out}.nav-link__button{position:relative;flex-flow:row nowrap;justify-content:flex-start;width:100%;min-height:48px;min-width:48px;padding:0 8px 0 18px;color:#4b4760;font-weight:400;background-color:transparent;border:none;border-radius:0 8px 8px 0;white-space:nowrap;cursor:pointer;transition:all .3s ease-in-out}.nav-link__button.active:not(:disabled):not(.nav-link__parent),.nav-link__button.active:hover:not(:disabled):not(.nav-link__parent){background-color:#efefef;cursor:default}.nav-link__button.active:not(:disabled):not(.nav-link__parent):before,.nav-link__button.active:hover:not(:disabled):not(.nav-link__parent):before{content:"";border:2px solid #869cff;height:100%;position:absolute;left:0}.nav-link__button.active.nav-link__parent,.nav-link__button.active:hover.nav-link__parent{background-color:#efefef;font-weight:700;cursor:pointer}.nav-link__button.active.nav-link__parent:before,.nav-link__button.active:hover.nav-link__parent:before{content:"";border:2px solid #869cff;height:100%;position:absolute;left:0;transition:border-color .3s ease-in-out}.navbar:hover .nav-link__button.active.nav-link__parent:before,.navbar.navbar_hovered .nav-link__button.active.nav-link__parent:before,.navbar.navbar_pinned .nav-link__button.active.nav-link__parent:before,.navbar:hover .nav-link__button.active:hover.nav-link__parent:before,.navbar.navbar_hovered .nav-link__button.active:hover.nav-link__parent:before,.navbar.navbar_pinned .nav-link__button.active:hover.nav-link__parent:before{border-color:transparent}.nav-link__button.expanded:not(:disabled):not(.active){background-color:inherit}.nav-link__button.expanded .nav-link__arrow svg{transform:rotate(90deg)}.nav-link__button.expanded.nav-link__parent{font-weight:700;cursor:pointer}.nav-link__button:hover,.nav-link__button:focus-visible,.nav-link__button.expanded{background-color:#efefef;outline:none;transition:all .3s ease-in-out}.nav-link__button:hover svg *,.nav-link__button:focus-visible svg *,.nav-link__button.expanded svg *{fill:#7f7989}.nav-link__button:focus,.nav-link__button:active{border-color:transparent}.nav-link__label{opacity:0;transition:opacity .3s ease-in-out}.navbar:hover .nav-link__label,.navbar.navbar_hovered .nav-link__label,.navbar.navbar_pinned .nav-link__label{opacity:1}
@@ -17,6 +17,8 @@ $cerulean: #00b6ed;
17
17
  $chateauGreen: #49af53;
18
18
  $cornflowerBlue: #6279e7;
19
19
  $cornflowerBlueTwo: #5871f4;
20
+ $cultured: #f9f8f8;
21
+ $crystalBell: #efefef;
20
22
  $darkPurple: #2f2b46;
21
23
  $doveGray: #666;
22
24
  $doveGrayTwo: #6e6e6e;
@@ -6,6 +6,7 @@ export * as filter from "./filter.util";
6
6
  export * as form from "./form.util";
7
7
  export * as generateChipsList from "./generateChipsList.util";
8
8
  export * as getFirstScrollableParent from "./getFirstScrollableParent.util";
9
+ export * as localStorageService from "./localStorageService.util";
9
10
  export * as math from "./math.util";
10
11
  export * as notification from "./notification.util";
11
12
  export * as string from "./string.util";