@reportportal/ui-kit 0.0.1-alpha.26 → 0.0.1-alpha.27

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.
@@ -1,11 +1,13 @@
1
- import { FC, ChangeEventHandler, ReactNode, ComponentPropsWithRef } from 'react';
2
- interface FieldTextProps extends ComponentPropsWithRef<'input'> {
1
+ import { ChangeEventHandler, ReactNode, InputHTMLAttributes } from 'react';
2
+ interface FieldTextProps extends InputHTMLAttributes<HTMLInputElement> {
3
3
  value?: string;
4
4
  className?: string;
5
5
  error?: string;
6
6
  placeholder?: string;
7
7
  disabled?: boolean;
8
8
  onChange?: ChangeEventHandler<HTMLInputElement>;
9
+ onFocus?: ChangeEventHandler<HTMLInputElement>;
10
+ onBlur?: ChangeEventHandler<HTMLInputElement>;
9
11
  touched?: boolean;
10
12
  title?: string;
11
13
  label?: string;
@@ -19,6 +21,8 @@ interface FieldTextProps extends ComponentPropsWithRef<'input'> {
19
21
  hasDoubleMessage?: boolean;
20
22
  type?: string;
21
23
  displayError?: boolean;
24
+ collapsible?: boolean;
25
+ loading?: boolean;
22
26
  }
23
- export declare const FieldText: FC<FieldTextProps>;
27
+ export declare const FieldText: import("react").ForwardRefExoticComponent<FieldTextProps & import("react").RefAttributes<HTMLInputElement>>;
24
28
  export {};
@@ -8,6 +8,7 @@ export { Dropdown } from './dropdown';
8
8
  export { Toggle } from './toggle';
9
9
  export { FieldNumber } from './fieldNumber';
10
10
  export { BubblesLoader } from './bubblesLoader';
11
+ export { SpinLoader } from './spinLoader';
11
12
  export { FieldTextFlex } from './fieldTextFlex';
12
13
  export { Radio } from './radio';
13
14
  export { Tooltip } from './tooltip';
@@ -0,0 +1,3 @@
1
+ import { SpinLoader } from './spinLoader';
2
+ export { SpinLoader };
3
+ export default SpinLoader;
@@ -0,0 +1,7 @@
1
+ import { FC } from 'react';
2
+ interface SpinLoaderProps {
3
+ color?: string;
4
+ className?: string;
5
+ }
6
+ export declare const SpinLoader: FC<SpinLoaderProps>;
7
+ export {};
@@ -0,0 +1,133 @@
1
+ import { jsx as e, jsxs as c, Fragment as C } from "react/jsx-runtime";
2
+ import * as p from "react";
3
+ import { forwardRef as K, useRef as O, useState as P } from "react";
4
+ import { c as v } from "./bind-06a7ff84.js";
5
+ import "./baseIconButton-b6adc843.js";
6
+ const Q = (t) => /* @__PURE__ */ p.createElement("svg", { width: 17, height: 17, viewBox: "0 0 17 17", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ p.createElement("rect", { width: 16.2089, height: 16.1568, rx: 8.07842, fill: "#A2AAB5" }), /* @__PURE__ */ p.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M5.14768 5.14645C4.95077 5.34171 4.95077 5.65829 5.14768 5.85355L7.49578 8.18198L5.35655 10.3033C5.15963 10.4986 5.15963 10.8151 5.35655 11.0104C5.55346 11.2057 5.87271 11.2057 6.06962 11.0104L8.20886 8.88909L10.1392 10.8033C10.3361 10.9986 10.6554 10.9986 10.8523 10.8033C11.0492 10.608 11.0492 10.2915 10.8523 10.0962L8.92193 8.18198L11.0612 6.06065C11.2581 5.86539 11.2581 5.54881 11.0612 5.35355C10.8643 5.15828 10.545 5.15828 10.3481 5.35355L8.20886 7.47487L5.86076 5.14645C5.66385 4.95118 5.34459 4.95118 5.14768 5.14645Z", fill: "white" })), T = "_collapsed_kgu2d_13", U = "_label_kgu2d_21", V = "_asterisk_kgu2d_30", W = "_disabled_kgu2d_36", X = "_field_kgu2d_41", Y = "_placeholder_kgu2d_62", I = "_error_kgu2d_69", nn = "_touched_kgu2d_69", en = "_input_kgu2d_84", tn = "_icon_kgu2d_1", sn = "_text_kgu2d_177", cn = {
7
+ "icon-container": "_icon-container_kgu2d_1",
8
+ "icon-container-end": "_icon-container-end_kgu2d_1",
9
+ "icon-container-start": "_icon-container-start_kgu2d_1",
10
+ collapsed: T,
11
+ label: U,
12
+ asterisk: V,
13
+ disabled: W,
14
+ field: X,
15
+ "default-width": "_default-width_kgu2d_53",
16
+ placeholder: Y,
17
+ error: I,
18
+ touched: nn,
19
+ "input-container": "_input-container_kgu2d_84",
20
+ input: en,
21
+ icon: tn,
22
+ "clear-icon": "_clear-icon_kgu2d_131",
23
+ "additional-content": "_additional-content_kgu2d_170",
24
+ text: sn,
25
+ "error-text": "_error-text_kgu2d_185",
26
+ "help-text": "_help-text_kgu2d_189"
27
+ }, an = "_spinner_qn4ih_8", on = "_spin_qn4ih_1", ln = {
28
+ "spin-loader": "_spin-loader_qn4ih_1",
29
+ spinner: an,
30
+ spin: on,
31
+ "color-topaz": "_color-topaz_qn4ih_20"
32
+ }, L = v.bind(ln), rn = ({ color: t = "topaz", className: o }) => /* @__PURE__ */ e("div", { className: L("spin-loader", o), children: /* @__PURE__ */ e("div", { className: L("spinner", { [`color-${t}`]: t }) }) }), n = v.bind(cn), hn = K(
33
+ ({
34
+ value: t = "",
35
+ className: o,
36
+ error: i,
37
+ placeholder: u,
38
+ disabled: a = !1,
39
+ onChange: F,
40
+ touched: h = !1,
41
+ title: R,
42
+ label: l,
43
+ helpText: r,
44
+ defaultWidth: b = !0,
45
+ startIcon: f,
46
+ endIcon: m,
47
+ clearable: E = !1,
48
+ onClear: g,
49
+ isRequired: k = !1,
50
+ hasDoubleMessage: B = !1,
51
+ type: S = "text",
52
+ displayError: q = !0,
53
+ collapsible: y = !1,
54
+ loading: z = !1,
55
+ onFocus: A = () => {
56
+ },
57
+ onBlur: $ = () => {
58
+ },
59
+ ...j
60
+ }, H) => {
61
+ const M = O(null), d = H || M, [Z, x] = P(!1), D = (s) => {
62
+ x(!0), A(s);
63
+ }, G = (s) => {
64
+ x(!1), $(s);
65
+ }, J = () => {
66
+ var s;
67
+ g && (g(t), (s = d.current) == null || s.focus());
68
+ }, N = q && i && h, w = /* @__PURE__ */ e("span", { className: n("text", "help-text"), children: r });
69
+ return /* @__PURE__ */ c(C, { children: [
70
+ l && /* @__PURE__ */ c("span", { className: n("label", { disabled: a }), children: [
71
+ l,
72
+ k && /* @__PURE__ */ e("span", { className: n("asterisk"), children: "*" })
73
+ ] }),
74
+ /* @__PURE__ */ c(
75
+ "div",
76
+ {
77
+ className: n("field", o, {
78
+ error: i,
79
+ touched: h,
80
+ disabled: a,
81
+ "default-width": b,
82
+ collapsed: y && !Z && !t
83
+ }),
84
+ title: R,
85
+ children: [
86
+ z ? /* @__PURE__ */ e(rn, {}) : f && /* @__PURE__ */ e(
87
+ "span",
88
+ {
89
+ className: n("icon-container-start"),
90
+ onClick: () => {
91
+ var _;
92
+ (_ = d.current) == null || _.focus();
93
+ },
94
+ children: /* @__PURE__ */ e("span", { className: n("icon"), children: f })
95
+ }
96
+ ),
97
+ /* @__PURE__ */ c("span", { className: n("input-container"), children: [
98
+ /* @__PURE__ */ e(
99
+ "input",
100
+ {
101
+ ref: d,
102
+ type: S,
103
+ className: n("input"),
104
+ value: t,
105
+ disabled: a,
106
+ onChange: F,
107
+ onFocus: D,
108
+ onBlur: G,
109
+ ...j
110
+ }
111
+ ),
112
+ u && !t && /* @__PURE__ */ c("span", { className: n("placeholder"), children: [
113
+ u,
114
+ k && !l && /* @__PURE__ */ e("span", { className: n("asterisk") })
115
+ ] })
116
+ ] }),
117
+ m && /* @__PURE__ */ e("span", { className: n("icon-container-end"), children: /* @__PURE__ */ e("span", { className: n("icon"), children: m }) }),
118
+ E && t.length > 0 && /* @__PURE__ */ e("span", { className: n("icon-container-end"), children: /* @__PURE__ */ e("button", { type: "button", className: n("clear-icon", { disabled: a }), onClick: J, children: /* @__PURE__ */ e(Q, {}) }) })
119
+ ]
120
+ }
121
+ ),
122
+ (N || r) && /* @__PURE__ */ e("div", { className: n("additional-content", { disabled: a }), children: N ? /* @__PURE__ */ c(C, { children: [
123
+ /* @__PURE__ */ e("span", { className: n("text", "error-text"), children: i }),
124
+ B && w
125
+ ] }) : r && w })
126
+ ] });
127
+ }
128
+ );
129
+ export {
130
+ hn as F,
131
+ rn as S,
132
+ Q as a
133
+ };
package/dist/fieldText.js CHANGED
@@ -1,4 +1,4 @@
1
- import { F as o } from "./fieldText-6eff8292.js";
1
+ import { F as o } from "./fieldText-421722af.js";
2
2
  import "react/jsx-runtime";
3
3
  import "react";
4
4
  import "./bind-06a7ff84.js";
package/dist/index.js CHANGED
@@ -1,27 +1,27 @@
1
1
  import { B as v1 } from "./button-087f2ed4.js";
2
2
  import { C as L1 } from "./checkbox-6777be17.js";
3
3
  import { S as M1 } from "./systemMessage-1ced6079.js";
4
- import { F as Z } from "./fieldText-6eff8292.js";
5
- import { S as S1 } from "./fieldText-6eff8292.js";
6
- import { T as I1 } from "./themeProvider-46c2be7b.js";
7
- import { S as j1, M as F1 } from "./index-700bc62a.js";
4
+ import { F as Z } from "./fieldText-421722af.js";
5
+ import { a as S1, S as y1 } from "./fieldText-421722af.js";
6
+ import { T as N1 } from "./themeProvider-46c2be7b.js";
7
+ import { S as F1, M as R1 } from "./index-700bc62a.js";
8
8
  import { D as j } from "./dropdown-c21b0d67.js";
9
- import { S as T1 } from "./dropdown-c21b0d67.js";
10
- import { T as H1 } from "./toggle-9284387b.js";
11
- import { F as Z1, a as D1, S as V1 } from "./fieldNumber-d20f48d6.js";
12
- import { B as Y1 } from "./bubblesLoader-a7e709d4.js";
13
- import { F as G1 } from "./fieldTextFlex-5bddf46a.js";
14
- import { R as W1 } from "./radio-c5fae439.js";
15
- import { Tooltip as z1 } from "./tooltip.js";
16
- import { Popover as K1 } from "./popover.js";
17
- import { P as X1, a as ee, S as te } from "./pagination-e30cfd70.js";
18
- import { S as re, a as ne, T as ae } from "./table-7fdc18e0.js";
9
+ import { S as P1 } from "./dropdown-c21b0d67.js";
10
+ import { T as k1 } from "./toggle-9284387b.js";
11
+ import { F as D1, a as V1, S as U1 } from "./fieldNumber-d20f48d6.js";
12
+ import { B as $1 } from "./bubblesLoader-a7e709d4.js";
13
+ import { F as O1 } from "./fieldTextFlex-5bddf46a.js";
14
+ import { R as q1 } from "./radio-c5fae439.js";
15
+ import { Tooltip as J1 } from "./tooltip.js";
16
+ import { Popover as Q1 } from "./popover.js";
17
+ import { P as ee, a as te, S as oe } from "./pagination-5b3846ba.js";
18
+ import { S as ne, a as ae, T as le } from "./table-7fdc18e0.js";
19
19
  import { jsxs as S, Fragment as D, jsx as n } from "react/jsx-runtime";
20
20
  import V from "react-datepicker";
21
21
  import { c as P } from "./bind-06a7ff84.js";
22
22
  import * as e from "react";
23
23
  import { useMemo as F, useRef as U } from "react";
24
- import { B as se } from "./baseIconButton-b6adc843.js";
24
+ import { B as ce } from "./baseIconButton-b6adc843.js";
25
25
  import "./keyCodes-f63c0e11.js";
26
26
  import "rc-scrollbars";
27
27
  import "framer-motion";
@@ -213,36 +213,37 @@ const u1 = (t) => /* @__PURE__ */ e.createElement("svg", { width: 16, height: 16
213
213
  );
214
214
  };
215
215
  export {
216
- re as ArrowDownIcon,
217
- ne as ArrowUpIcon,
218
- se as BaseIconButton,
219
- Y1 as BubblesLoader,
216
+ ne as ArrowDownIcon,
217
+ ae as ArrowUpIcon,
218
+ ce as BaseIconButton,
219
+ $1 as BubblesLoader,
220
220
  v1 as Button,
221
221
  R as CalendarArrowIcon,
222
222
  Y as CalendarIcon,
223
223
  L1 as Checkbox,
224
224
  S1 as ClearIcon,
225
- j1 as CloseIcon,
225
+ F1 as CloseIcon,
226
226
  x1 as DatePicker,
227
227
  u1 as DeleteIcon,
228
228
  j as Dropdown,
229
- T1 as DropdownIcon,
230
- Z1 as FieldNumber,
229
+ P1 as DropdownIcon,
230
+ D1 as FieldNumber,
231
231
  Z as FieldText,
232
- G1 as FieldTextFlex,
232
+ O1 as FieldTextFlex,
233
233
  w1 as MeatballMenuIcon,
234
- D1 as MinusIcon,
235
- F1 as Modal,
236
- X1 as Pagination,
237
- V1 as PlusIcon,
238
- K1 as Popover,
239
- ee as PrevChapterIcon,
240
- te as PrevPageIcon,
241
- W1 as Radio,
234
+ V1 as MinusIcon,
235
+ R1 as Modal,
236
+ ee as Pagination,
237
+ U1 as PlusIcon,
238
+ Q1 as Popover,
239
+ te as PrevChapterIcon,
240
+ oe as PrevPageIcon,
241
+ q1 as Radio,
242
242
  f1 as SearchIcon,
243
+ y1 as SpinLoader,
243
244
  M1 as SystemMessage,
244
- ae as Table,
245
- I1 as ThemeProvider,
246
- H1 as Toggle,
247
- z1 as Tooltip
245
+ le as Table,
246
+ N1 as ThemeProvider,
247
+ k1 as Toggle,
248
+ J1 as Tooltip
248
249
  };
@@ -4,7 +4,7 @@ import * as b from "react";
4
4
  import { useState as x } from "react";
5
5
  import { Popover as B } from "./popover.js";
6
6
  import { B as $ } from "./button-087f2ed4.js";
7
- import { F as I } from "./fieldText-6eff8292.js";
7
+ import { F as I } from "./fieldText-421722af.js";
8
8
  import { B as f } from "./baseIconButton-b6adc843.js";
9
9
  import { Tooltip as k } from "./tooltip.js";
10
10
  const y = (e) => /* @__PURE__ */ b.createElement("svg", { width: 16, height: 16, viewBox: "0 0 16 16", fill: "#A2AAB5", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ b.createElement("path", { d: "M12 13L4 8L12 3L12 13Z" })), T = (e) => /* @__PURE__ */ b.createElement("svg", { width: 13, height: 12, viewBox: "0 0 13 12", fill: "#A2AAB5", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ b.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M0 12L2 12L2 2.38498e-08L1.90798e-07 0L0 12ZM13 1L5 6L13 11L13 1Z" })), E = {
@@ -1,11 +1,11 @@
1
- import { P as t } from "./pagination-e30cfd70.js";
1
+ import { P as t } from "./pagination-5b3846ba.js";
2
2
  import "react/jsx-runtime";
3
3
  import "./bind-06a7ff84.js";
4
4
  import "react";
5
5
  import "./popover.js";
6
6
  import "@floating-ui/react";
7
7
  import "./button-087f2ed4.js";
8
- import "./fieldText-6eff8292.js";
8
+ import "./fieldText-421722af.js";
9
9
  import "./baseIconButton-b6adc843.js";
10
10
  import "./tooltip.js";
11
11
  import "@floating-ui/react-dom";
package/dist/style.css CHANGED
@@ -1 +1 @@
1
- ._system-message_fp9ws_1{min-height:85px;height:auto;width:100%;background:var(--rp-ui-base-bg-000);border-radius:8px;box-shadow:var(--rp-ui-base-shadow);display:flex;flex-direction:column;font-family:var(--rp-ui-base-font-family)}._system-message_fp9ws_1 ._stripes-info_fp9ws_12{height:8px;border-radius:8px 8px 0 0;background-image:repeating-linear-gradient(45deg,var(--rp-ui-base-sm-info-line-100),var(--rp-ui-base-sm-info-line-100) 24px,var(--rp-ui-base-e-200) 24px,var(--rp-ui-base-e-200) 48px)}._system-message_fp9ws_1 ._stripes-warning_fp9ws_17{height:8px;border-radius:8px 8px 0 0;background-image:repeating-linear-gradient(45deg,var(--rp-ui-base-sm-warning-line-100),var(--rp-ui-base-sm-warning-line-100) 24px,var(--rp-ui-base-sm-warning-line-200) 24px,var(--rp-ui-base-sm-warning-line-200) 48px)}._system-message_fp9ws_1 ._stripes-error_fp9ws_22{height:8px;border-radius:8px 8px 0 0;background-image:repeating-linear-gradient(45deg,var(--rp-ui-base-sm-error-line-100),var(--rp-ui-base-sm-error-line-100) 24px,var(--rp-ui-base-sm-error-line-200) 24px,var(--rp-ui-base-sm-error-line-200) 48px)}._system-message_fp9ws_1 ._text-container_fp9ws_27{padding:12px 16px 16px}._system-message_fp9ws_1 ._text-container_fp9ws_27 ._message-header-info_fp9ws_30{font-size:15px;line-height:24px;font-weight:500;color:var(--rp-ui-base-e-400);text-transform:capitalize;margin-bottom:8px}._system-message_fp9ws_1 ._text-container_fp9ws_27 ._message-header-warning_fp9ws_38{font-size:15px;line-height:24px;font-weight:500;color:var(--rp-ui-base-sm-warning);text-transform:capitalize;margin-bottom:8px}._system-message_fp9ws_1 ._text-container_fp9ws_27 ._message-header-error_fp9ws_46{font-size:15px;line-height:24px;font-weight:500;color:var(--rp-ui-base-sm-error);text-transform:capitalize;margin-bottom:8px}._system-message_fp9ws_1 ._text-container_fp9ws_27 ._children_fp9ws_54{text-indent:1px;color:var(--rp-ui-color-text);font-weight:700;font-size:13px;line-height:20px}._system-message_fp9ws_1 ._text-container_fp9ws_27 p{margin-top:4px;max-width:780px;color:var(--rp-ui-base-e-400);font-weight:400;font-size:12px;line-height:18px}._content-width_fp9ws_70{max-width:max-content}._toggle_9h25s_1{position:relative;display:inline-flex;align-items:center;font-family:var(--rp-ui-base-font-family);font-weight:400;font-size:13px;line-height:20px;color:var(--rp-ui-base-almost-black);cursor:pointer;width:32px}._children-container_9h25s_14{margin-left:40px}._children-container_9h25s_14 a{text-decoration:none;color:var(--rp-ui-base-topaz)}._children-container_9h25s_14 a:focus,._children-container_9h25s_14 a:focus-visible{outline:none;color:var(--rp-ui-base-topaz-focused);text-decoration:underline}._slider_9h25s_27{background-color:var(--rp-ui-base-e-300);cursor:pointer;position:absolute;transition:.4s;border-radius:10px;width:32px;height:20px}._slider_9h25s_27:before{position:absolute;top:2px;left:2px;content:"";width:16px;height:16px;background-color:var(--rp-ui-base-bg-000);transition:.4s}._round_9h25s_47:before{border-radius:50%}._input_9h25s_51{position:absolute;opacity:0;top:0;left:0}._input_9h25s_51:disabled+._slider_9h25s_27{background-color:var(--rp-ui-base-e-200);cursor:default}._input_9h25s_51:focus-visible{outline:none}._input_9h25s_51:focus:not(._disabled_9h25s_64):after,._input_9h25s_51:focus-visible:not(._disabled_9h25s_64)+._slider_9h25s_27:after{top:50%;left:50%;content:"";position:absolute;width:100%;height:100%;border:2px solid var(--rp-ui-base-topaz-focused);border-radius:12px;transform:translate(-50%,-50%)}._input_9h25s_51:checked+._slider_9h25s_27{background-color:var(--rp-ui-base-topaz)}._input_9h25s_51:checked+._slider_9h25s_27:before{transform:translate(12px)}._input_9h25s_51:hover+._slider_9h25s_27{background-color:var(--rp-ui-base-e-400)}._input_9h25s_51:checked:hover+._slider_9h25s_27{background-color:var(--rp-ui-base-topaz-hover)}._input_9h25s_51:checked:disabled+._slider_9h25s_27{background-color:var(--rp-ui-base-topaz);cursor:default}._disabled_9h25s_64{opacity:.3;cursor:default}._bubbles-loader_kn4ln_1{position:relative}._bubbles-loader_kn4ln_1._color-topaz_kn4ln_4 ._bubble_kn4ln_1{background-color:var(--rp-ui-base-dark-topaz-main)}._bubble_kn4ln_1{position:absolute;width:6px;height:6px;border-radius:50%;background:var(--rp-ui-base-bg-000);transform:scale(.3);animation:_bubbles_kn4ln_1 2.5s infinite linear}._bubble_kn4ln_1:nth-child(1){left:0;animation-delay:.1s}._bubble_kn4ln_1:nth-child(2){left:7px;animation-delay:.3s}._bubble_kn4ln_1:nth-child(3){left:14px;animation-delay:.5s}._bubble_kn4ln_1:nth-child(4){left:21px;animation-delay:.7s}._bubble_kn4ln_1:nth-child(5){left:28px;animation-delay:.9s}._bubble_kn4ln_1:nth-child(6){left:35px;animation-delay:1.1s}._bubble_kn4ln_1:nth-child(7){left:42px;animation-delay:1.3s}@keyframes _bubbles_kn4ln_1{20%,60%{transform:scale(.5)}40%{transform:scale(1)}}._radio-button_9d3ij_1{display:flex;align-items:center;height:100%;outline:none;cursor:pointer;padding-bottom:4px}._radio-button_9d3ij_1._disabled_9d3ij_9{cursor:default}._radio-button_9d3ij_1._disabled_9d3ij_9 ._children-container_9d3ij_12{color:var(--rp-ui-base-e-300)}._radio-button_9d3ij_1._disabled_9d3ij_9 ._toggler_9d3ij_15{opacity:.3}._radio-button_9d3ij_1._disabled_9d3ij_9 ._toggler_9d3ij_15:after{background-color:transparent}._radio-button_9d3ij_1._disabled_9d3ij_9 ._toggler_9d3ij_15._checked_9d3ij_21:after{background-color:var(--rp-ui-base-topaz-pressed)}._radio-button_9d3ij_1:focus-visible:not(._disabled_9d3ij_9) ._toggler_9d3ij_15{border:2px solid var(--rp-ui-color-primary-focused)}._input_9d3ij_28{display:none}._toggler_9d3ij_15{display:flex;width:16px;height:16px;min-width:16px;box-sizing:border-box;margin:auto 10px auto 0;border-radius:100%;border-width:1px;border-style:solid;line-height:18;border-color:var(--rp-ui-color-field-border-2)}._toggler_9d3ij_15:after{width:8px;height:8px;content:"";display:block;border-radius:100%;margin:auto;background-color:var(--rp-ui-color-radio-checked);opacity:0;transform:scale(.5);transition:transform .2s,opacity .2s}._toggler_9d3ij_15:hover:not(._disabled_9d3ij_9){border-color:var(--rp-ui-color-field-border-2-hover)}._toggler_9d3ij_15:hover:not(._disabled_9d3ij_9):after{background-color:var(--rp-ui-color-primary-hover)}._toggler_9d3ij_15._checked_9d3ij_21:after,._toggler_9d3ij_15._disabled_9d3ij_9:after{transform:scale(1);opacity:1}._children-container_9d3ij_12{display:inline-block;overflow:hidden;max-width:100%;font-family:var(--rp-ui-base-font-family);font-weight:500;font-size:13px;line-height:20px;word-break:break-all;text-overflow:ellipsis;color:var(--rp-ui-color-text)}._children-container_9d3ij_12 a{text-decoration:none;color:var(--rp-ui-base-topaz)}._children-container_9d3ij_12 a:focus,._children-container_9d3ij_12 a:focus-visible{outline:none;color:var(--rp-ui-base-topaz-focused);text-decoration:underline}._text-area_cxv68_1{font-size:13px;line-height:20px;width:100%;min-height:72px;padding:9px 12px 7px;outline:none;border:1px solid var(--rp-ui-base-e-200);border-radius:3px;box-sizing:border-box;font-family:var(--rp-ui-base-font-family);font-weight:400;color:var(--rp-ui-base-almost-black);resize:vertical}._text-area_cxv68_1:hover{border-color:var(--rp-ui-base-e-300)}._text-area_cxv68_1:focus:not(._error_cxv68_19._touched_cxv68_19){border:1px solid var(--rp-ui-base-topaz-hover);box-shadow:0 0 0 1px var(--rp-ui-base-topaz-hover)}._text-area_cxv68_1._error_cxv68_19._touched_cxv68_19{border:1px solid var(--rp-ui-base-error)}._text-area_cxv68_1::placeholder{color:var(--rp-ui-base-e-300)}._label_cxv68_30{font-size:13px;line-height:20px;font-family:var(--rp-ui-base-font-family);font-weight:500;color:var(--rp-ui-base-almost-black);margin-bottom:4px}._additional-content_cxv68_39 ._error-text_cxv68_39{font-size:11px;line-height:16px;display:block;font-family:var(--rp-ui-base-font-family);font-weight:400;color:var(--rp-ui-base-error)}._additional-content_cxv68_39 ._help-text_cxv68_47{font-size:11px;line-height:16px;display:block;font-family:var(--rp-ui-base-font-family);font-weight:400;color:var(--rp-ui-base-e-300)}._disabled_cxv68_56{opacity:.3;pointer-events:none}._button_15twe_1{display:inline-flex;justify-content:center;align-items:center;height:36px;min-width:120px;padding:7px 16px;margin:0;outline:none;border-radius:3px;font-family:var(--rp-ui-base-font-family);font-weight:500;font-size:13px;line-height:20px;cursor:pointer;box-sizing:border-box}._primary_15twe_19{border:1px solid var(--rp-ui-color-primary);background-color:var(--rp-ui-color-primary);color:var(--rp-ui-base-bg-000)}._primary_15twe_19:hover:not(._disabled_15twe_24){border:1px solid var(--rp-ui-color-primary-hover);background-color:var(--rp-ui-color-primary-hover)}._primary_15twe_19:active:not(._disabled_15twe_24){border:1px solid var(--rp-ui-color-primary-pressed);background-color:var(--rp-ui-color-primary-pressed)}._primary_15twe_19:focus:not(._disabled_15twe_24,:active){border:2px solid var(--rp-ui-color-primary-focused)}._primary_15twe_19 svg *{fill:var(--rp-ui-base-bg-000)}._ghost_15twe_39{border:1px solid var(--rp-ui-color-primary);background-color:transparent;color:var(--rp-ui-color-primary-text)}._ghost_15twe_39:hover:not(._disabled_15twe_24){border:1px solid var(--rp-ui-base-dark-topaz-hover);color:var(--rp-ui-base-dark-topaz-hover)}._ghost_15twe_39:active:not(._disabled_15twe_24){border:1px solid var(--rp-ui-color-primary-pressed);color:var(--rp-ui-color-primary-pressed)}._ghost_15twe_39:focus:not(._disabled_15twe_24,:active){border:2px solid var(--rp-ui-color-primary-focused);color:var(--rp-ui-color-primary-focused)}._ghost_15twe_39 svg *{fill:var(--rp-ui-color-primary-text)}._danger_15twe_60{border:1px solid var(--rp-ui-color-error);background-color:var(--rp-ui-color-error);color:var(--rp-ui-base-bg-000)}._danger_15twe_60:hover:not(._disabled_15twe_24){opacity:.9}._danger_15twe_60:active:not(._disabled_15twe_24){border:1px solid var(--rp-ui-color-error-pressed);background-color:var(--rp-ui-color-error-pressed)}._danger_15twe_60:focus:not(._disabled_15twe_24,:active){border:2px solid var(--rp-ui-color-error-focused)}._danger_15twe_60 svg *{fill:var(--rp-ui-base-bg-000)}._text_15twe_79{min-width:auto;height:auto;border:0;padding:0;background:none;line-height:22px;color:var(--rp-ui-color-primary-text)}._text_15twe_79:hover:not(._disabled_15twe_24){color:var(--rp-ui-color-primary-hover)}._text_15twe_79:hover:not(._disabled_15twe_24) svg *{fill:var(--rp-ui-color-primary-hover)}._text_15twe_79:active:not(._disabled_15twe_24){color:var(--rp-ui-color-primary-pressed)}._text_15twe_79:active:not(._disabled_15twe_24) svg *{fill:var(--rp-ui-color-primary-pressed)}._text_15twe_79:focus:not(._disabled_15twe_24,:active){color:var(--rp-ui-color-primary-focused)}._text_15twe_79:focus:not(._disabled_15twe_24,:active) svg *{fill:var(--rp-ui-color-primary-focused)}._text_15twe_79 svg *{fill:var(--rp-ui-color-primary-text)}._disabled_15twe_24{opacity:var(--rp-ui-opacity-default);cursor:default}._width-wide-content_15twe_115{padding:9px 47px 7px;margin:0}._width-parent_15twe_120{display:flex;width:100%}._icon_15twe_125{display:inline-block;width:16px;height:16px}._icon-start_15twe_131{margin:auto 8px auto 0}._icon-end_15twe_135{margin:auto 0 auto 8px;order:1}._checkbox_189ko_1{display:inline-flex;align-items:center;padding-left:24px;color:var(--rp-ui-color-text-2);font-family:var(--rp-ui-base-font-family);font-weight:500;font-size:13px;line-height:20px}._checkbox_189ko_1 ._disabled_189ko_11{opacity:var(--rp-ui-opacity-default);pointer-events:none}._input_189ko_16{position:absolute;opacity:0;top:0;left:0}._control_189ko_23{position:absolute;width:16px;height:16px;border:1px solid var(--rp-ui-color-field-border-2);border-radius:3px;margin-left:-24px;box-sizing:border-box;cursor:pointer}._input_189ko_16:checked+._control_189ko_23{border-color:var(--rp-ui-color-primary);background-color:var(--rp-ui-color-primary);background-repeat:no-repeat;background-position:center;background-image:url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 4.25L4.5 7.25L10.5 0.75' stroke='white' stroke-width='2'/%3E%3C/svg%3E")}._input_189ko_16:hover+._control_189ko_23{border-color:var(--rp-ui-color-field-hover-2)}._input_189ko_16:active:not(:disabled)+._control_189ko_23{border:2px solid var(--rp-ui-color-primary-focused)}._input_189ko_16:checked:hover+._control_189ko_23{border-color:var(--rp-ui-color-primary-hover);background-color:var(--rp-ui-color-primary-hover);background-repeat:no-repeat;background-position:center;background-image:url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 4.25L4.5 7.25L10.5 0.75' stroke='white' stroke-width='2'/%3E%3C/svg%3E")}._input_189ko_16:checked:active:not(:disabled)+._control_189ko_23{border-color:var(--rp-ui-color-primary-focused);background-color:var(--rp-ui-color-primary-focused);background-repeat:no-repeat;background-position:center;background-image:url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 4.25L4.5 7.25L10.5 0.75' stroke='white' stroke-width='2'/%3E%3C/svg%3E")}._input_189ko_16:disabled+._control_189ko_23{border-color:var(--rp-ui-color-disabled)}._input_189ko_16:checked:disabled+._control_189ko_23{border-color:var(--rp-ui-color-primary);background-color:var(--rp-ui-color-primary);background-repeat:no-repeat;background-position:center;background-image:url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 4.25L4.5 7.25L10.5 0.75' stroke='white' stroke-width='2'/%3E%3C/svg%3E");opacity:var(--rp-ui-opacity-default);pointer-events:none}._input_189ko_16:focus+._control_189ko_23{border:2px solid var(--rp-ui-color-primary-focused)}._input_189ko_16._partially-checked_189ko_76:not(:checked)+._control_189ko_23{border-color:var(--rp-ui-color-field-border);background-repeat:no-repeat;background-position:center;position:relative}._input_189ko_16._partially-checked_189ko_76:not(:checked)+._control_189ko_23:after{content:"";display:block;width:8px;height:2px;border-radius:1px;background-color:var(--rp-ui-color-field-border-2);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}._input_189ko_16._partially-checked_189ko_76:not(:checked):hover+._control_189ko_23{border-color:var(--rp-ui-color-field-border-2-hover);background-repeat:no-repeat;background-position:center;position:relative}._input_189ko_16._partially-checked_189ko_76:not(:checked):hover+._control_189ko_23:after{content:"";display:block;width:8px;height:2px;border-radius:1px;background-color:var(--rp-ui-color-primary-hover);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}._input_189ko_16._partially-checked_189ko_76:not(:checked):active:not(:disabled)+._control_189ko_23{border-color:var(--rp-ui-color-primary-focused);background-repeat:no-repeat;background-position:center;position:relative}._input_189ko_16._partially-checked_189ko_76:not(:checked):active:not(:disabled)+._control_189ko_23:after{content:"";display:block;width:8px;height:2px;border-radius:1px;background-color:var(--rp-ui-color-field-border-2);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}._input_189ko_16._partially-checked_189ko_76:not(:checked):disabled+._control_189ko_23{border-color:var(--rp-ui-color-field-borderd);background-repeat:no-repeat;background-position:center;position:relative}._input_189ko_16._partially-checked_189ko_76:not(:checked):disabled+._control_189ko_23:after{content:"";display:block;width:8px;height:2px;border-radius:1px;background-color:var(--rp-ui-color-field-border);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}._children_189ko_149{cursor:pointer}._children_189ko_149 a{text-decoration:none;color:var(--rp-ui-color-primary)}._children_189ko_149 a:focus,._children_189ko_149 a:focus-visible{outline:none;color:var(--rp-ui-color-primary-focused);text-decoration:underline}._base-icon-button_1q88n_1{margin:0;padding:0;outline:none;background:transparent;border:none;cursor:pointer}._base-icon-button_1q88n_1 svg path{fill:var(--rp-ui-base-e-300)}._base-icon-button_1q88n_1._disabled_1q88n_12{opacity:40%;cursor:default}._base-icon-button_1q88n_1:hover:not(._disabled_1q88n_12) svg path{fill:var(--rp-ui-base-e-400)}._base-icon-button_1q88n_1:active:not(._disabled_1q88n_12) svg path{fill:var(--rp-ui-base-topaz-pressed)}._base-icon-button_1q88n_1:focus-visible:not(._disabled_1q88n_12,:active) svg path{fill:var(--rp-ui-base-topaz-focused)}@font-face{font-family:Roboto;font-weight:400;font-display:swap;font-style:normal;src:local("Roboto Regular"),local("Roboto-Regular"),url(./fonts/Roboto/Roboto-Regular.ttf) format("truetype")}@font-face{font-family:Roboto;font-weight:500;font-display:swap;font-style:normal;src:local("Roboto Medium"),local("Roboto-Medium"),url(./fonts/Roboto/Roboto-Medium.ttf) format("truetype")}@font-face{font-family:Roboto;font-weight:700;font-display:swap;font-style:normal;src:local("Roboto-Bold"),local("Roboto-Bold"),url(./fonts/Roboto/Roboto-Bold.ttf) format("truetype")}@font-face{font-family:OpenSans;font-weight:300;font-display:swap;font-style:normal;src:local("Open Sans Light"),local("OpenSans-Light"),url(./fonts/OpenSans/OpenSans-Light.ttf) format("truetype")}@font-face{font-family:OpenSans;font-weight:400;font-display:swap;font-style:normal;src:local("Open Sans Regular"),local("OpenSans-Regular"),url(./fonts/OpenSans/OpenSans-Regular.ttf) format("truetype")}@font-face{font-family:OpenSans;font-weight:600;font-display:swap;font-style:normal;src:local("Open Sans Semibold"),local("OpenSans-Semibold"),url(./fonts/OpenSans/OpenSans-Semibold.ttf) format("truetype")}:root{--rp-ui-base-bg-000: #ffffff;--rp-ui-base-bg-100: #f7f7f8;--rp-ui-base-bg-200: #eceff4;--rp-ui-base-error: #dc5959;--rp-ui-base-error-hover: #f24a4a;--rp-ui-base-error-pressed: #c54141;--rp-ui-base-error-focused: #ffb1b1;--rp-ui-base-topaz: #00829b;--rp-ui-base-topaz-hover: #009dbb;--rp-ui-base-topaz-focused: #00b0d1;--rp-ui-base-topaz-pressed: #00758c;--rp-ui-base-almost-black: #3f3f3f;--rp-ui-base-e-100: #e3e7ec;--rp-ui-base-e-200: #c1c7d0;--rp-ui-base-e-300: #a2aab5;--rp-ui-base-e-400: #8d95a1;--rp-ui-base-dark-bg: #101010;--rp-ui-base-dark-bg-solid-98: #141414;--rp-ui-base-dark-error: #ff4040;--rp-ui-base-dark-error-text: #ff6666;--rp-ui-base-dark-log-error: #ff3222;--rp-ui-base-dark-log-fatal: #c2352b;--rp-ui-base-dark-topaz-main: #1a9cb0;--rp-ui-base-dark-topaz-hover: #1cb0c7;--rp-ui-base-dark-topaz-focused: #1dbdd6;--rp-ui-base-dark-topaz-pressed: #9ee7f2;--rp-ui-base-dark-topaz-text: #3abcd0;--rp-ui-base-dark-topaz-additional: #00505d;--rp-ui-base-dark-e-50: #e8e8e8;--rp-ui-base-dark-e-100: #cfcfcf;--rp-ui-base-dark-e-150: #8f8f8f;--rp-ui-base-dark-e-200: #626262;--rp-ui-base-dark-e-300: #383838;--rp-ui-base-dark-e-400: #262626;--rp-ui-base-dark-e-450: #282828;--rp-ui-base-dark-e-500: #222222;--rp-ui-base-sm-warning: #d78706;--rp-ui-base-sm-warning-line-100: #fceecb;--rp-ui-base-sm-warning-line-200: #fbe7b6;--rp-ui-base-sm-error: #db3549;--rp-ui-base-sm-error-line-100: #fccbcb;--rp-ui-base-sm-error-line-200: #ffc0bd;--rp-ui-base-sm-info-line-100: #ced3db;--rp-ui-base-defect-type-AB: #ffc208;--rp-ui-base-tag-value-text: #394db6;--rp-ui-base-tag-value-background: #ced8fc;--rp-ui-base-tag-key-text: #6f4599;--rp-ui-base-tag-key-background: #dac3e6;--rp-ui-base-system-issue-group: #3e7be6;--rp-ui-base-product-bug-group: #d32f2f;--rp-ui-base-automation-bug-group: #ffc208;--rp-ui-base-no-defect-bug-group: #76839b;--rp-ui-base-test-execution-status-passed: #3aa76d;--rp-ui-base-shadow: 0px 1px 3px rgba(55, 67, 98, .1);--rp-ui-base-shadow-hover: 0px 1px 3px rgba(55, 67, 98, .2);--rp-ui-base-shadow-secondary: 0 8px 40px rgba(0, 0, 0, .15);--rp-ui-base-almost-black-light: rgba(63, 63, 63, .75);--rp-ui-base-almost-black-slight-light: rgba(63, 63, 63, .95);--rp-ui-base-dark-bg-light: rgba(16, 16, 16, .15);--rp-ui-base-overlay: rgba(141, 149, 161, .35);--rp-ui-base-overlay-light-cyan: rgba(208, 240, 241, .7);--rp-ui-base-font-family: Roboto, Arial, Helvetica, sans-serif;--rp-ui-base-font-family-heading: OpenSans, Segoe UI, Tahoma, sans-serif;--rp-ui-color-bg: var(--rp-ui-base-bg-000);--rp-ui-color-bg-2: var(--rp-ui-base-bg-100);--rp-ui-color-bg-3: var(--rp-ui-base-bg-200);--rp-ui-color-primary: var(--rp-ui-base-topaz);--rp-ui-color-primary-hover: var(--rp-ui-base-topaz-hover);--rp-ui-color-primary-focused: var(--rp-ui-base-topaz-focused);--rp-ui-color-primary-pressed: var(--rp-ui-base-topaz-pressed);--rp-ui-color-primary-text: var(--rp-ui-base-topaz);--rp-ui-color-error: var(--rp-ui-base-error);--rp-ui-color-error-hover: var(--rp-ui-base-error-hover);--rp-ui-color-error-pressed: var(--rp-ui-base-error-pressed);--rp-ui-color-error-focused: var(--rp-ui-base-error-focused);--rp-ui-color-text: var(--rp-ui-base-almost-black);--rp-ui-color-text-2: var(--rp-ui-base-almost-black);--rp-ui-color-text-3: var(--rp-ui-base-almost-black);--rp-ui-color-field-bg: var(--rp-ui-base-bg-000);--rp-ui-color-field-bg-2: var(--rp-ui-base-bg-100);--rp-ui-color-field-bg-3: var(--rp-ui-base-bg-000);--rp-ui-color-field-bg-3-hover: var(--rp-ui-base-bg-000);--rp-ui-color-field-border: var(--rp-ui-base-e-200);--rp-ui-color-field-border-2: var(--rp-ui-base-e-300);--rp-ui-color-field-border-2-hover: var(--rp-ui-base-e-400);--rp-ui-color-field-border-3: var(--rp-ui-base-e-200);--rp-ui-color-field-border-3-hover: var(--rp-ui-base-e-300);--rp-ui-color-field-hover: var(--rp-ui-base-e-300);--rp-ui-color-field-hover-2: var(--rp-ui-base-e-400);--rp-ui-color-field-opened: var(--rp-ui-base-topaz-pressed);--rp-ui-color-field-placeholder: var(--rp-ui-base-almost-black);--rp-ui-color-field-placeholder-3: var(--rp-ui-base-e-300);--rp-ui-color-radio-checked: var(--rp-ui-base-topaz-pressed);--rp-ui-color-disabled: var(--rp-ui-base-e-300);--rp-ui-opacity-default: 30%}.rp-ui-kit-theme-light{--rp-ui-color-bg: var(--rp-ui-base-bg-000);--rp-ui-color-bg-2: var(--rp-ui-base-bg-100);--rp-ui-color-bg-3: var(--rp-ui-base-bg-200);--rp-ui-color-primary: var(--rp-ui-base-topaz);--rp-ui-color-primary-hover: var(--rp-ui-base-topaz-hover);--rp-ui-color-primary-focused: var(--rp-ui-base-topaz-focused);--rp-ui-color-primary-pressed: var(--rp-ui-base-topaz-pressed);--rp-ui-color-primary-text: var(--rp-ui-base-topaz);--rp-ui-color-error: var(--rp-ui-base-error);--rp-ui-color-error-hover: var(--rp-ui-base-error-hover);--rp-ui-color-error-pressed: var(--rp-ui-base-error-pressed);--rp-ui-color-error-focused: var(--rp-ui-base-error-focused);--rp-ui-color-text: var(--rp-ui-base-almost-black);--rp-ui-color-text-2: var(--rp-ui-base-almost-black);--rp-ui-color-text-3: var(--rp-ui-base-almost-black);--rp-ui-color-field-bg: var(--rp-ui-base-bg-000);--rp-ui-color-field-bg-2: var(--rp-ui-base-bg-100);--rp-ui-color-field-bg-3: var(--rp-ui-base-bg-000);--rp-ui-color-field-bg-3-hover: var(--rp-ui-base-bg-000);--rp-ui-color-field-border: var(--rp-ui-base-e-200);--rp-ui-color-field-border-2: var(--rp-ui-base-e-300);--rp-ui-color-field-border-2-hover: var(--rp-ui-base-e-400);--rp-ui-color-field-border-3: var(--rp-ui-base-e-200);--rp-ui-color-field-border-3-hover: var(--rp-ui-base-e-300);--rp-ui-color-field-hover: var(--rp-ui-base-e-300);--rp-ui-color-field-hover-2: var(--rp-ui-base-e-400);--rp-ui-color-field-opened: var(--rp-ui-base-topaz-pressed);--rp-ui-color-field-placeholder: var(--rp-ui-base-almost-black);--rp-ui-color-field-placeholder-3: var(--rp-ui-base-e-300);--rp-ui-color-radio-checked: var(--rp-ui-base-topaz-pressed);--rp-ui-color-disabled: var(--rp-ui-base-e-300);--rp-ui-opacity-default: 30%}.rp-ui-kit-theme-dark{--rp-ui-color-bg: var(--rp-ui-base-dark-bg);--rp-ui-color-bg-2: var(--rp-ui-base-dark-e-500);--rp-ui-color-bg-3: var(--rp-ui-base-dark-bg-solid-98);--rp-ui-color-primary: var(--rp-ui-base-dark-topaz-main);--rp-ui-color-primary-hover: var(--rp-ui-base-dark-topaz-hover);--rp-ui-color-primary-focused: var(--rp-ui-base-dark-topaz-focused);--rp-ui-color-primary-pressed: var(--rp-ui-base-dark-topaz-pressed);--rp-ui-color-primary-text: var(--rp-ui-base-dark-topaz-text);--rp-ui-color-error: var(--rp-ui-base-dark-error);--rp-ui-color-error-hover: var(--rp-ui-base-error-hover);--rp-ui-color-error-pressed: var(--rp-ui-base-error-pressed);--rp-ui-color-error-focused: var(--rp-ui-base-error-focused);--rp-ui-color-text: var(--rp-ui-base-dark-e-50);--rp-ui-color-text-2: var(--rp-ui-base-dark-e-100);--rp-ui-color-text-3: var(--rp-ui-base-bg-000);--rp-ui-color-field-bg: var(--rp-ui-base-dark-e-400);--rp-ui-color-field-bg-2: var(--rp-ui-base-dark-e-400);--rp-ui-color-field-bg-3: var(--rp-ui-base-dark-e-450);--rp-ui-color-field-bg-3-hover: var(--rp-ui-base-dark-e-500);--rp-ui-color-field-border: var(--rp-ui-base-dark-e-400);--rp-ui-color-field-border-2: var(--rp-ui-base-dark-e-100);--rp-ui-color-field-border-2-hover: var(--rp-ui-base-dark-e-50);--rp-ui-color-field-border-3: var(--rp-ui-base-dark-e-450);--rp-ui-color-field-border-3-hover: var(--rp-ui-base-dark-e-500);--rp-ui-color-field-hover: var(--rp-ui-base-e-200);--rp-ui-color-field-hover-2: var(--rp-ui-base-e-300);--rp-ui-color-field-opened: var(--rp-ui-base-e-200);--rp-ui-color-field-placeholder: var(--rp-ui-base-dark-e-200);--rp-ui-color-field-placeholder-3: var(--rp-ui-base-dark-e-200);--rp-ui-color-radio-checked: var(--rp-ui-base-dark-topaz-main);--rp-ui-color-disabled: var(--rp-ui-base-dark-e-100);--rp-ui-opacity-default: 50%}._theme-provider_xipmx_1{height:100%;width:100%}._icon-container_4wu1a_1,._icon-container-end_4wu1a_1,._icon-container-start_4wu1a_1{display:flex;justify-content:center;align-items:center;flex-shrink:0;width:22px;height:22px}._icon-container-start_4wu1a_1{margin-right:4px}._icon-container-end_4wu1a_1{margin-left:4px}._label_4wu1a_18{display:block;margin-bottom:4px;font-family:var(--rp-ui-base-font-family);font-weight:500;font-size:13px;line-height:20px;color:var(--rp-ui-color-text)}._label_4wu1a_18 ._asterisk_4wu1a_27{position:absolute;top:-3px;color:var(--rp-ui-base-e-300);padding-left:4px}._label_4wu1a_18._disabled_4wu1a_33{pointer-events:none;background-color:var(--rp-ui-base-bg-100)}._field_4wu1a_38{display:flex;align-items:center;height:36px;width:100%;padding:7px 12px;box-sizing:border-box;border:1px solid var(--rp-ui-color-field-border-3);border-radius:3px;background-color:var(--rp-ui-color-field-bg-3)}._field_4wu1a_38:hover:not(._disabled_4wu1a_33){border-color:var(--rp-ui-color-field-border-3-hover);background-color:var(--rp-ui-color-field-bg-3-hover)}._field_4wu1a_38:focus-within:not(._error_4wu1a_53._touched_4wu1a_53){padding:6px 11px;border:2px solid var(--rp-ui-color-primary-focused)}._field_4wu1a_38._error_4wu1a_53._touched_4wu1a_53{border-color:var(--rp-ui-base-error)}._field_4wu1a_38._disabled_4wu1a_33{pointer-events:none;background-color:var(--rp-ui-base-bg-100)}._field_4wu1a_38._disabled_4wu1a_33 ._placeholder_4wu1a_64{color:var(--rp-ui-base-e-300)}._field_4wu1a_38._default-width_4wu1a_67{width:240px}._input-container_4wu1a_71{position:relative;width:100%}._input_4wu1a_71{font-size:13px;line-height:20px;font-family:var(--rp-ui-base-font-family);font-weight:400;width:100%;margin:2px 0 0;padding:0;border:none;background:transparent;overflow:hidden;text-overflow:ellipsis;color:var(--rp-ui-color-text-3)}._input_4wu1a_71:focus{outline:none}._input_4wu1a_71:disabled{color:var(--rp-ui-base-e-300)}._placeholder_4wu1a_64{font-size:13px;line-height:20px;font-family:var(--rp-ui-base-font-family);font-weight:400;color:var(--rp-ui-color-field-placeholder-3);position:absolute;top:2px;left:0;pointer-events:none}._placeholder_4wu1a_64 ._asterisk_4wu1a_27:after{position:absolute;top:-3px;color:var(--rp-ui-base-e-300);right:-7px;content:"*";color:var(--rp-ui-base-error-focused)}._icon_4wu1a_1,._clear-icon_4wu1a_117{display:inline-block;width:16px;height:16px}._clear-icon_4wu1a_117{background:none;border:none;padding:0;font:inherit;outline:inherit;cursor:pointer}._clear-icon_4wu1a_117 svg>path{fill:var(--rp-ui-color-bg-2)}._clear-icon_4wu1a_117._disabled_4wu1a_33{pointer-events:none}._clear-icon_4wu1a_117:hover svg{fill:var(--rp-ui-base-e-400)}._clear-icon_4wu1a_117:hover svg>rect{fill:var(--rp-ui-base-e-400)}._clear-icon_4wu1a_117:focus svg{fill:var(--rp-ui-color-primary-focused)}._clear-icon_4wu1a_117:focus svg>rect{fill:var(--rp-ui-color-primary-focused)}._clear-icon_4wu1a_117:active svg{fill:var(--rp-ui-color-primary-pressed)}._clear-icon_4wu1a_117:active svg>rect{fill:var(--rp-ui-color-primary-pressed)}._additional-content_4wu1a_156{margin-top:4px}._additional-content_4wu1a_156._disabled_4wu1a_33{pointer-events:none}._text_4wu1a_163{font-size:11px;line-height:16px;font-family:var(--rp-ui-base-font-family);font-weight:400;display:block}._error-text_4wu1a_171{color:var(--rp-ui-base-error)}._help-text_4wu1a_175{color:var(--rp-ui-base-dark-e-300)}._field-number_3tc9r_1{position:relative;display:inline-flex;flex-direction:column}._field-number_3tc9r_1._disabled_3tc9r_6{opacity:.4}._label_3tc9r_10{display:block;margin-bottom:4px;font-family:var(--rp-ui-base-font-family);font-weight:500;font-size:13px;line-height:20px;text-indent:1px;color:var(--rp-ui-base-almost-black)}._sign_3tc9r_21{display:inline-flex;cursor:pointer}._input-container_3tc9r_26{display:inline-flex;align-items:center;padding:6px 8px;border:1px solid var(--rp-ui-base-e-200);box-sizing:border-box;border-radius:3px;background:var(--rp-ui-base-bg-000);-webkit-user-select:none;user-select:none}._input-container_3tc9r_26:focus-within:not(._error_3tc9r_36._touched_3tc9r_36){padding:5px 7px;border-width:2px;border-color:var(--rp-ui-base-topaz-focused)}._input-container_3tc9r_26:hover:not(._disabled_3tc9r_6):not(:focus-within):not(._error_3tc9r_36._touched_3tc9r_36),._input-container_3tc9r_26._filled_3tc9r_41:not(:focus-within){border-color:var(--rp-ui-base-e-300)}._input-container_3tc9r_26._error_3tc9r_36._touched_3tc9r_36{border-color:var(--rp-ui-base-error)}._input-field_3tc9r_48{display:flex;align-items:center;justify-content:center;height:20px;min-width:44px;margin:2px 4px 0;text-align:center;cursor:text}._input-field_3tc9r_48._disabled_3tc9r_6{cursor:default}._input_3tc9r_26{padding:0;margin:0;border:none;text-align:center;-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield}._input_3tc9r_26:focus{outline:none}._input_3tc9r_26:focus::placeholder{color:transparent}._input_3tc9r_26::placeholder{color:var(--rp-ui-base-e-200)}._input_3tc9r_26::-webkit-inner-spin-button,._input_3tc9r_26::-webkit-outer-spin-button{-webkit-appearance:none;-moz-appearance:none;appearance:none;margin:0}._table_kha9s_1{width:100%;max-width:1200px}._table_kha9s_1 *{box-sizing:border-box}._table-header_kha9s_9{display:flex;width:100%;height:32px;align-items:center}._table-row_kha9s_16{display:flex;width:100%;height:64px}._table-row_kha9s_16 ._table-row-content_kha9s_21{display:flex;align-items:center;height:100%;flex:1;box-shadow:var(--rp-ui-base-shadow-hover);background-color:var(--rp-ui-base-bg-000);border-radius:4px;max-width:100%}._table-row_kha9s_16._size-small_kha9s_31{height:44px}._table-row_kha9s_16._size-large_kha9s_34{height:80px}._table-body_kha9s_38{display:flex;flex-direction:column;gap:4px;width:100%}._table-header-cell_kha9s_45,._table-cell_kha9s_45{font-family:var(--rp-ui-base-font-family);font-weight:400;padding:0 16px}._table-header-cell_kha9s_45._action-menu-cell_kha9s_50,._table-cell_kha9s_45._action-menu-cell_kha9s_50{width:48px;padding:0 16px;flex-shrink:0}._table-header-cell_kha9s_45:not(._action-menu-cell_kha9s_50),._table-cell_kha9s_45:not(._action-menu-cell_kha9s_50){overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._table-header-cell_kha9s_45._checkbox-cell_kha9s_60,._table-cell_kha9s_45._checkbox-cell_kha9s_60{width:48px;display:flex;justify-content:center;height:100%;cursor:pointer;flex-shrink:0}._table-header-cell_kha9s_45._checkbox-cell_kha9s_60+._table-row-content_kha9s_21,._table-cell_kha9s_45._checkbox-cell_kha9s_60+._table-row-content_kha9s_21{max-width:calc(100% - 48px)}._table-header-cell_kha9s_45._primary-cell_kha9s_71,._table-cell_kha9s_45._primary-cell_kha9s_71{flex:1 1 320px;font-weight:500;text-align:left}._table-header-cell_kha9s_45{font-size:11px;line-height:16px;color:var(--rp-ui-base-e-400);display:flex;align-items:center;text-align:left;background:none;border:none}._table-header-cell_kha9s_45 ._label_kha9s_87{display:flex;align-items:center}._table-header-cell_kha9s_45._sortable-cell_kha9s_91>._label_kha9s_87{cursor:pointer}._table-header-cell_kha9s_45._align-right_kha9s_94{justify-content:flex-end}._table-header-cell_kha9s_45._align-right_kha9s_94 svg{margin-right:-16px}._table-header-cell_kha9s_45._align-center_kha9s_100{justify-content:center}._table-cell_kha9s_45{font-size:13px;line-height:20px}._dropdown-option_f4c9h_1{display:inline-block;font-family:var(--rp-ui-base-font-family);font-weight:400;font-size:13px;line-height:20px;box-sizing:border-box;cursor:pointer;color:var(--rp-ui-color-text-3)}._dropdown-option_f4c9h_1._disabled_f4c9h_11{pointer-events:none;background-color:var(--rp-ui-color-field-bg-2)}._dropdown-option_f4c9h_1._hidden_f4c9h_15{display:none}._dropdown-option_f4c9h_1:hover:not(:active){background:var(--rp-ui-color-bg-3)}._dropdown-option_f4c9h_1._selected_f4c9h_21{color:var(--rp-ui-color-primary-text)}._dropdown-option_f4c9h_1._hover_f4c9h_24:not(._disabled_f4c9h_11){padding:8px 11px 6px;background-color:var(--rp-ui-color-bg-3);border:1px solid var(--rp-ui-color-primary-focused)}._dropdown-option_f4c9h_1._hover_f4c9h_24:not(._disabled_f4c9h_11):hover{border:none;padding:9px 12px 7px}._dropdown-option_f4c9h_1._hover_f4c9h_24:not(._disabled_f4c9h_11):hover:hover:not(:active){background:var(--rp-ui-color-bg-3)}._single-option_f4c9h_37{height:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding:9px 12px 7px}._sub-option_f4c9h_45{padding-left:24px}._container_vh03o_1{position:relative;display:inline-block;width:100%}._icon_vh03o_7{width:16px;height:16px;margin-right:8px}._arrow_vh03o_13{display:inline-flex;margin-left:12px;transition:transform .2s linear}._dropdown_vh03o_19{display:flex;align-items:center;text-align:start;padding:9px 12px 7px;width:100%;height:36px;border:1px solid var(--rp-ui-color-field-border);border-radius:3px;background-color:var(--rp-ui-color-field-bg);box-sizing:border-box;transition:border-color .2s linear;cursor:pointer}._dropdown_vh03o_19._transparent-background_vh03o_33{background-color:transparent}._dropdown_vh03o_19._disabled_vh03o_36{pointer-events:none;background-color:var(--rp-ui-color-field-bg-2)}._dropdown_vh03o_19._disabled_vh03o_36 ._arrow_vh03o_13 svg path{opacity:.4}._dropdown_vh03o_19._disabled_vh03o_36 ._value_vh03o_43{color:var(--rp-ui-color-disabled)}._dropdown_vh03o_19._error_vh03o_46._touched_vh03o_46{border-width:1px;border-color:var(--rp-ui-color-error)}._dropdown_vh03o_19:hover:not(:active):not(:focus-visible):not(._opened_vh03o_50):not(._error_vh03o_46){border-color:var(--rp-ui-color-field-hover)}._dropdown_vh03o_19:active,._dropdown_vh03o_19:focus-visible{padding:7px 11px;border-width:2px;border-color:var(--rp-ui-color-primary-focused);outline:none}._dropdown_vh03o_19:active ._arrow_vh03o_13 svg path,._dropdown_vh03o_19:focus-visible ._arrow_vh03o_13 svg path{fill:var(--rp-ui-color-field-hover-2)}._dropdown_vh03o_19._opened_vh03o_50:not(:active):not(._error_vh03o_46){border-width:1px;border-color:var(--rp-ui-color-primary-pressed)}._dropdown_vh03o_19._opened_vh03o_50:not(:active):not(._error_vh03o_46) ._arrow_vh03o_13 svg path{fill:var(--rp-ui-color-field-opened)}._dropdown_vh03o_19._opened_vh03o_50 ._arrow_vh03o_13{transform:rotate(180deg)}._dropdown_vh03o_19 ._placeholder_vh03o_72{color:var(--rp-ui-color-field-placeholder)}._dropdown_vh03o_19 ._value_vh03o_43{flex-grow:1;font-family:var(--rp-ui-base-font-family);font-weight:400;font-size:13px;line-height:20px;color:var(--rp-ui-color-text-3);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}@media (max-width: 767px){._dropdown_vh03o_19 ._mobile-disabled_vh03o_87{background-color:var(--rp-ui-color-field-bg-2)}}._select-list_vh03o_92{position:absolute;top:100%;padding:8px 0;width:max-content;max-width:100%;min-width:100%;min-height:10px;border-radius:3px;box-sizing:border-box;z-index:10;box-shadow:var(--rp-ui-base-shadow-secondary);background:var(--rp-ui-color-field-bg)}._select-list_vh03o_92._opened_vh03o_50:focus-visible{outline:none}._select-list_vh03o_92._limited-width_vh03o_109{max-width:384px}._options-container_vh03o_113{display:flex;flex-direction:column}._ghost_vh03o_118{border-color:transparent;background:transparent}._ghost_vh03o_118:hover:not(:active):not(:focus-visible):not(._opened_vh03o_50):not(._error_vh03o_46){border-color:transparent}._ghost_vh03o_118._opened_vh03o_50:not(:active):not(._error_vh03o_46){border-color:transparent}._ghost_vh03o_118._opened_vh03o_50 ._value_vh03o_43{color:var(--rp-ui-color-primary-pressed)}._header_a3cjx_1{display:flex;align-items:center;justify-content:space-between;background-color:var(--rp-ui-base-bg-000);padding-bottom:18px}._header_a3cjx_1 ._dropdowns-wrapper_a3cjx_8{display:flex;align-items:center;column-gap:8px}._header_a3cjx_1 ._button-prev_a3cjx_13,._header_a3cjx_1 ._button-next_a3cjx_14{all:unset;align-self:center;width:16px;height:16px}._header_a3cjx_1 ._button-prev_a3cjx_13 svg,._header_a3cjx_1 ._button-next_a3cjx_14 svg{width:16px;height:16px}._header_a3cjx_1 ._button-prev_a3cjx_13:hover:not(._disabled_a3cjx_25),._header_a3cjx_1 ._button-next_a3cjx_14:hover:not(._disabled_a3cjx_25){cursor:pointer}._header_a3cjx_1 ._button-prev_a3cjx_13:hover:not(._disabled_a3cjx_25) svg>path,._header_a3cjx_1 ._button-next_a3cjx_14:hover:not(._disabled_a3cjx_25) svg>path{fill:var(--rp-ui-base-e-400)}._header_a3cjx_1 ._button-prev_a3cjx_13._disabled_a3cjx_25,._header_a3cjx_1 ._button-next_a3cjx_14._disabled_a3cjx_25{opacity:.3;pointer-events:none}._header_a3cjx_1 ._button-next_a3cjx_14{transform:rotate(180deg)}._header_a3cjx_1 ._dropdown_a3cjx_8{width:auto}._header_a3cjx_1 ._dropdown_a3cjx_8._month-dropdown_a3cjx_44{width:117px}._header_a3cjx_1 ._dropdown_a3cjx_8 ._toggle-button_a3cjx_47>span{color:var(--rp-ui-base-topaz);font-family:var(--rp-ui-base-font-family);font-weight:700}._header_a3cjx_1 ._dropdown_a3cjx_8 ._toggle-button_a3cjx_47:hover>span{color:var(-rp-ui-base-topaz-hover)}.react-datepicker__aria-live{display:none}._calendar_1jr94_5{box-sizing:border-box;background-color:var(--rp-ui-base-bg-000);width:344px;padding:30px 32px 32px;border-radius:8px;box-shadow:0 8px 40px var(--rp-ui-base-dark-bg-light);border:none;margin-top:4px}._calendar_1jr94_5 .react-datepicker__month-container{width:100%;height:100%;float:none;display:flex;flex-direction:column;justify-content:center;align-items:center}._calendar_1jr94_5 .react-datepicker__month-container .react-datepicker__header.react-datepicker__header--custom{width:100%;background-color:var(--rp-ui-base-bg-000);border-bottom:none;padding:0}._calendar_1jr94_5 .react-datepicker__month-container .react-datepicker__header.react-datepicker__header--custom .react-datepicker__day-names{display:flex;height:40px;justify-content:space-between;font-family:var(--rp-ui-base-font-family);font-weight:700;font-size:13px;line-height:20px;color:var(--rp-ui-base-dark-e-500);vertical-align:middle}._calendar_1jr94_5 .react-datepicker__month-container .react-datepicker__header.react-datepicker__header--custom .react-datepicker__day-names .react-datepicker__day-name{width:40px;text-align:center}._calendar_1jr94_5 .react-datepicker__month-container .react-datepicker__month{display:flex;flex-direction:column;width:100%;height:100%;row-gap:8px}._calendar_1jr94_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__week{height:32px;display:flex;align-items:center;justify-content:space-between;font-family:var(--rp-ui-base-font-family);color:var(--rp-ui-base-dark-e-500);font-size:13px;line-height:20px}._calendar_1jr94_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__week .react-datepicker__day--range-end:first-child:before{display:none}._calendar_1jr94_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__day{cursor:pointer}._calendar_1jr94_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__day.react-datepicker__day--in-selecting-range:not(.react-datepicker__day--selecting-range-end,.react-datepicker__day--selecting-range-start,.react-datepicker__day--range-start,.react-datepicker__day--range-end){background-color:var(--rp-ui-base-bg-200);height:32px;line-height:32px;position:relative}._calendar_1jr94_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__day.react-datepicker__day--selected{position:relative;border-radius:50%;background-color:var(--rp-ui-base-topaz);font-family:var(--rp-ui-base-font-family);font-weight:700;color:var(--rp-ui-base-bg-000)}._calendar_1jr94_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__day--disabled{cursor:default}._calendar_1jr94_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__day--disabled:hover{border:none!important;line-height:40px!important}._calendar_1jr94_5 ._current-date_1jr94_89,._calendar_1jr94_5 ._date_1jr94_90{width:40px;margin:0;box-sizing:border-box;height:40px;line-height:40px}._calendar_1jr94_5 ._current-date_1jr94_89:focus-visible,._calendar_1jr94_5 ._date_1jr94_90:focus-visible{outline:none}._calendar_1jr94_5 ._date_1jr94_90{background-color:transparent;border-radius:unset;color:inherit;text-align:center}._calendar_1jr94_5 ._current-date_1jr94_89,._calendar_1jr94_5 ._current-date_1jr94_89:hover{position:relative;z-index:3;font-family:var(--rp-ui-base-font-family);font-weight:700;border-radius:50%;border:1px solid var(--rp-ui-base-topaz);background-color:var(--rp-ui-base-topaz);line-height:38px;color:var(--rp-ui-base-bg-000)}._calendar_1jr94_5 ._date_1jr94_90:hover:not(._current-date_1jr94_89):not(._selected-range_1jr94_119):not(._end-date_1jr94_119){border-radius:50%;border:1px solid var(--rp-ui-base-topaz);background-color:transparent;line-height:38px;color:inherit}._calendar_1jr94_5 ._end-date_1jr94_119{position:relative;border-radius:50%;background-color:var(--rp-ui-base-topaz);font-family:var(--rp-ui-base-font-family);font-weight:700;color:var(--rp-ui-base-bg-000)}._calendar_1jr94_5 ._end-date_1jr94_119:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:40px;height:40px;border:10px solid var(--rp-ui-base-topaz);border-radius:50%;display:block;z-index:2;box-sizing:border-box}._calendar_1jr94_5 ._end-date_1jr94_119:before{position:absolute;content:"";height:32px;background-color:var(--rp-ui-base-bg-200);width:16px;left:-9px;z-index:1;top:4px}._calendar_1jr94_5 ._selected-range_1jr94_119{background-color:var(--rp-ui-base-bg-200);border-radius:8px;height:32px;line-height:32px;position:relative}._calendar_1jr94_5 ._selected-range_1jr94_119:hover{height:40px;line-height:40px;border-radius:50%;background:var(--rp-ui-base-bg-200)}._calendar_1jr94_5 ._selected-range_1jr94_119:hover:after{display:block}._calendar_1jr94_5 ._selected-range_1jr94_119:hover:not(:first-child):before{top:4px}._calendar_1jr94_5 ._selected-range_1jr94_119:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:40px;height:40px;border:1px solid var(--rp-ui-base-topaz);border-radius:50%;display:none;z-index:2;box-sizing:border-box}._calendar_1jr94_5 ._selected-range_1jr94_119:not(:first-child):before{position:absolute;content:"";height:32px;background-color:var(--rp-ui-base-bg-200);width:16px;top:0;left:-9px;z-index:1}._calendar_1jr94_5 ._disabled_1jr94_202{color:var(--rp-ui-base-e-400);background-color:transparent}._calendar_1jr94_5 ._disabled_1jr94_202:focus-visible{outline:none}._popper_1jr94_210{z-index:10}._input_1jr94_214{width:100%;min-width:138px}._item-counter_4g6do_1{display:inline-block;width:200px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._size-selector_183l8_1{display:flex;flex-direction:column}._size-option_183l8_6{width:88px;padding:8px 0;outline:none;border:none;background:none;cursor:pointer;font-family:var(--rp-ui-base-font-family);font-weight:400;font-size:13px;line-height:20px;text-align:left;color:var(--rp-ui-base-almost-black)}._size-option_183l8_6:first-child{padding-top:0}._size-option_183l8_6:last-child{padding-bottom:0}._size-option_183l8_6:hover{color:var(--rp-ui-base-topaz-hover)}._size-option_183l8_6:active{color:var(--rp-ui-base-topaz-pressed)}._size-option_183l8_6._selected_183l8_32{color:var(--rp-ui-base-topaz)}._page-size-control_gnurh_1{display:flex;justify-content:flex-end;width:160px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._size-selector-button_gnurh_10{margin-right:4px;font-weight:700;font-size:11px;line-height:16px}._page-selector_rtho4_1{display:flex;gap:8px}._field-wrapper_rtho4_6,._apply-button_rtho4_10{width:90px}._active-page_14j0y_1{display:inline-block;width:124px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-align:right}._page-selector_14j0y_10{text-align:left}._page-selector-button_14j0y_14{margin-left:4px;font-weight:700;font-size:11px;line-height:16px}._bar_dfnmf_1{width:260px;height:8px;margin:4px 0;border-radius:3px;background-color:var(--rp-ui-base-e-100)}._section-with-tooltip_dfnmf_9{display:inline-block;height:16px}._section-with-tooltip_dfnmf_9:hover ._section_dfnmf_9{background-color:var(--rp-ui-base-topaz-hover)}._section-with-tooltip_dfnmf_9:active ._section_dfnmf_9{background-color:var(--rp-ui-base-topaz-pressed)}._section-with-tooltip_dfnmf_9:first-child ._section_dfnmf_9{border-radius:3px 0 0 3px}._section-with-tooltip_dfnmf_9:last-child ._section_dfnmf_9{border-radius:0 3px 3px 0}._section_dfnmf_9{position:relative;top:4px;height:8px;background-color:transparent;margin:4px 0}._section_dfnmf_9._selected_dfnmf_33{background-color:var(--rp-ui-base-topaz)}._tooltip-wrapper_dfnmf_37{width:inherit;height:16px}._tooltip_dfnmf_37{font-family:var(--rp-ui-base-font-family);font-size:11px;line-height:16px;text-align:center}._tooltip_dfnmf_37 ._tooltip-text_dfnmf_48{font-weight:400;padding-bottom:8px}._tooltip_dfnmf_37 ._page-number_dfnmf_52{font-weight:700}._section-with-tooltip_dfnmf_9,._tooltip-wrapper_dfnmf_37{position:relative;top:-4px}._page-navigator_1p2t5_1{display:flex;gap:16px}._page-buttons_1p2t5_6{display:inline-flex;gap:16px}._page-button_1p2t5_6{display:inline-flex;justify-content:center;align-items:center;width:16px;height:16px}._page-button_1p2t5_6._next_1p2t5_18{transform:rotateY(180deg)}._page-controls_thyf8_1{display:flex;flex-direction:row;align-items:center;gap:24px}._total-pages_thyf8_8{display:inline-block;width:124px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-align:left}._pagination_uykxy_1{display:flex;justify-content:space-between;align-items:center;width:100%;max-width:1200px;padding:24px 0;font-family:var(--rp-ui-base-font-family);font-weight:400;font-size:11px;line-height:16px;color:var(--rp-ui-base-almost-black)}._modal-content_qziry_1{width:100%;font-family:var(--rp-ui-base-font-family);font-weight:400;font-size:13px;line-height:20px;color:var(--rp-ui-color-text);white-space:pre-line;word-break:break-word;padding:0 0 16px}._modal-content_qziry_1._scrollable_qziry_12{width:calc(100% - 34px)}._buttons-block_1dgm4_1{white-space:nowrap}._button-container_1dgm4_5{display:inline-block;min-width:70px;margin-right:10px}._button-container_1dgm4_5:last-child{margin-right:0}._modal-footer_1dgm4_14{position:relative;display:flex;justify-content:flex-end;width:100%;margin-top:16px}._modal-footer_1dgm4_14._with-extra-node_1dgm4_21{justify-content:space-between}._size-small_1dgm4_25{flex-direction:column;align-items:stretch}._size-small_1dgm4_25 ._buttons-block_1dgm4_1{display:flex;flex-direction:column;align-items:stretch}._size-small_1dgm4_25 ._button-container_1dgm4_5{margin:0 0 10px}._size-small_1dgm4_25 ._button-container_1dgm4_5:last-child{margin-bottom:0}._modal-header_68lru_1{position:relative;font-family:var(--rp-ui-base-font-family);font-weight:400;font-size:20px;line-height:31px;color:var(--rp-ui-color-text);padding-bottom:24px}._modal-header_68lru_1._width-description_68lru_10{padding-bottom:8px}._modal-header-content_68lru_14{width:100%;padding-right:30px;box-sizing:border-box}._modal-title_68lru_20{font-family:var(--rp-ui-base-font-family-heading);flex-grow:1;vertical-align:middle;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}._close-modal-icon_68lru_29{position:absolute;top:6px;right:0;line-height:normal;cursor:pointer}._modal_f3ckb_1{position:absolute;top:0;left:0;display:block;width:100%;height:100%;text-align:center;overflow:hidden}._overlay-default_f3ckb_12{background-color:var(--rp-ui-base-overlay)}._overlay-light-cyan_f3ckb_16{background-color:var(--rp-ui-base-overlay-light-cyan)}._scrolling-content_f3ckb_20{position:fixed;width:100%;height:100%}._modal-window_f3ckb_26{position:absolute;left:50%;transform:translate(-50%);display:inline-block;margin-bottom:10px;padding:32px 40px;box-sizing:border-box;background-color:var(--rp-ui-base-bg-100);text-align:left;border-radius:16px;box-shadow:var(--rp-ui-base-shadow-secondary);opacity:1;outline:none;max-height:90%}._description_f3ckb_43{display:inline-block;width:100%;padding-bottom:24px;font-family:var(--rp-ui-base-font-family);font-weight:400;font-size:13px;line-height:20px;color:var(--rp-ui-base-almost-black)}._description_f3ckb_43._scrollable_f3ckb_53{width:calc(100% - 34px)}._size-default_f3ckb_57{width:480px}@media (max-width: 480px){._size-default_f3ckb_57{right:10px;left:10px;transform:none;width:auto}}._size-small_f3ckb_69{width:320px}@media (max-width: 320px){._size-small_f3ckb_69{right:10px;left:10px;transform:none;width:auto}}._size-large_f3ckb_81{width:720px}@media (max-width: 720px){._size-large_f3ckb_81{right:10px;left:10px;transform:none;width:auto}}._tooltip-wrapper_15goq_1{display:block;width:100%;height:fit-content;cursor:pointer}._tooltip_15goq_1{transition:opacity .3s ease;margin:4px}._tooltip_15goq_1[data-placement*=bottom]{padding-top:9px;z-index:2}._tooltip_15goq_1[data-placement*=top]{padding-bottom:9px}._tooltip_15goq_1[data-placement*=left]{padding-right:9px}._tooltip_15goq_1[data-placement*=right]{padding-left:9px}._tooltip-content_15goq_26{padding:16px;border-radius:8px;background-color:var(--rp-ui-base-almost-black-slight-light);font-family:var(--rp-ui-base-font-family);font-weight:500;font-size:11px;line-height:16px;color:var(--rp-ui-base-bg-000);word-wrap:break-word;white-space:pre-wrap}._tooltip-arrow_15goq_39{position:absolute}._tooltip-arrow_15goq_39:before,._tooltip-arrow_15goq_39:after{content:"";margin:auto;display:block;width:0;height:0;border-style:solid}._tooltip-arrow_15goq_39:after{position:absolute}._tooltip-arrow_15goq_39[data-placement*=bottom]{top:0;width:18px;height:9px}._tooltip-arrow_15goq_39[data-placement*=bottom]:before,._tooltip-arrow_15goq_39[data-placement*=bottom]:after{border-width:0 9px 9px}._tooltip-arrow_15goq_39[data-placement*=bottom]:before{border-color:transparent transparent var(--rp-ui-base-almost-black-light)}._tooltip-arrow_15goq_39[data-placement*=bottom]:after{top:0;border-color:transparent transparent var(--rp-ui-base-almost-black-light)}._tooltip-arrow_15goq_39[data-placement*=top]{bottom:0;width:18px;height:9px}._tooltip-arrow_15goq_39[data-placement*=top]:before,._tooltip-arrow_15goq_39[data-placement*=top]:after{border-width:9px 9px 0}._tooltip-arrow_15goq_39[data-placement*=top]:before{border-color:var(--rp-ui-base-almost-black-light) transparent transparent}._tooltip-arrow_15goq_39[data-placement*=top]:after{bottom:0;border-color:var(--rp-ui-base-almost-black-light) transparent transparent}._tooltip-arrow_15goq_39[data-placement*=left]{right:0;width:9px;height:18px}._tooltip-arrow_15goq_39[data-placement*=left]:before,._tooltip-arrow_15goq_39[data-placement*=left]:after{border-width:9px 0 9px 9px}._tooltip-arrow_15goq_39[data-placement*=left]:before{border-color:transparent transparent transparent var(--rp-ui-base-almost-black-light)}._tooltip-arrow_15goq_39[data-placement*=left]:after{top:0;right:0;border-color:transparent transparent transparent var(--rp-ui-base-almost-black-light)}._tooltip-arrow_15goq_39[data-placement*=right]{left:0;width:9px;height:18px}._tooltip-arrow_15goq_39[data-placement*=right]:before,._tooltip-arrow_15goq_39[data-placement*=right]:after{border-width:9px 9px 9px 0}._tooltip-arrow_15goq_39[data-placement*=right]:before{border-color:transparent var(--rp-ui-base-almost-black-light) transparent transparent}._tooltip-arrow_15goq_39[data-placement*=right]:after{top:0;left:0;border-color:transparent var(--rp-ui-base-almost-black-light) transparent transparent}._popover-wrapper_16ogt_1{display:inline-block;width:fit-content;height:fit-content;cursor:pointer}._popover_16ogt_1{display:block;position:absolute;z-index:10;font-family:var(--rp-ui-base-font-family);font-size:11px;line-height:16px;background-color:var(--rp-ui-color-bg);border-radius:8px;box-shadow:var(--rp-ui-base-shadow-secondary);padding:16px;min-height:52px;min-width:120px;max-width:fit-content;box-sizing:border-box;outline:0;width:max-content;color:var(--rp-ui-color-text)}._title_16ogt_28{font-family:var(--rp-ui-base-font-family-heading);font-weight:700;font-size:13px;line-height:20px;margin-bottom:8px}
1
+ ._system-message_fp9ws_1{min-height:85px;height:auto;width:100%;background:var(--rp-ui-base-bg-000);border-radius:8px;box-shadow:var(--rp-ui-base-shadow);display:flex;flex-direction:column;font-family:var(--rp-ui-base-font-family)}._system-message_fp9ws_1 ._stripes-info_fp9ws_12{height:8px;border-radius:8px 8px 0 0;background-image:repeating-linear-gradient(45deg,var(--rp-ui-base-sm-info-line-100),var(--rp-ui-base-sm-info-line-100) 24px,var(--rp-ui-base-e-200) 24px,var(--rp-ui-base-e-200) 48px)}._system-message_fp9ws_1 ._stripes-warning_fp9ws_17{height:8px;border-radius:8px 8px 0 0;background-image:repeating-linear-gradient(45deg,var(--rp-ui-base-sm-warning-line-100),var(--rp-ui-base-sm-warning-line-100) 24px,var(--rp-ui-base-sm-warning-line-200) 24px,var(--rp-ui-base-sm-warning-line-200) 48px)}._system-message_fp9ws_1 ._stripes-error_fp9ws_22{height:8px;border-radius:8px 8px 0 0;background-image:repeating-linear-gradient(45deg,var(--rp-ui-base-sm-error-line-100),var(--rp-ui-base-sm-error-line-100) 24px,var(--rp-ui-base-sm-error-line-200) 24px,var(--rp-ui-base-sm-error-line-200) 48px)}._system-message_fp9ws_1 ._text-container_fp9ws_27{padding:12px 16px 16px}._system-message_fp9ws_1 ._text-container_fp9ws_27 ._message-header-info_fp9ws_30{font-size:15px;line-height:24px;font-weight:500;color:var(--rp-ui-base-e-400);text-transform:capitalize;margin-bottom:8px}._system-message_fp9ws_1 ._text-container_fp9ws_27 ._message-header-warning_fp9ws_38{font-size:15px;line-height:24px;font-weight:500;color:var(--rp-ui-base-sm-warning);text-transform:capitalize;margin-bottom:8px}._system-message_fp9ws_1 ._text-container_fp9ws_27 ._message-header-error_fp9ws_46{font-size:15px;line-height:24px;font-weight:500;color:var(--rp-ui-base-sm-error);text-transform:capitalize;margin-bottom:8px}._system-message_fp9ws_1 ._text-container_fp9ws_27 ._children_fp9ws_54{text-indent:1px;color:var(--rp-ui-color-text);font-weight:700;font-size:13px;line-height:20px}._system-message_fp9ws_1 ._text-container_fp9ws_27 p{margin-top:4px;max-width:780px;color:var(--rp-ui-base-e-400);font-weight:400;font-size:12px;line-height:18px}._content-width_fp9ws_70{max-width:max-content}._toggle_9h25s_1{position:relative;display:inline-flex;align-items:center;font-family:var(--rp-ui-base-font-family);font-weight:400;font-size:13px;line-height:20px;color:var(--rp-ui-base-almost-black);cursor:pointer;width:32px}._children-container_9h25s_14{margin-left:40px}._children-container_9h25s_14 a{text-decoration:none;color:var(--rp-ui-base-topaz)}._children-container_9h25s_14 a:focus,._children-container_9h25s_14 a:focus-visible{outline:none;color:var(--rp-ui-base-topaz-focused);text-decoration:underline}._slider_9h25s_27{background-color:var(--rp-ui-base-e-300);cursor:pointer;position:absolute;transition:.4s;border-radius:10px;width:32px;height:20px}._slider_9h25s_27:before{position:absolute;top:2px;left:2px;content:"";width:16px;height:16px;background-color:var(--rp-ui-base-bg-000);transition:.4s}._round_9h25s_47:before{border-radius:50%}._input_9h25s_51{position:absolute;opacity:0;top:0;left:0}._input_9h25s_51:disabled+._slider_9h25s_27{background-color:var(--rp-ui-base-e-200);cursor:default}._input_9h25s_51:focus-visible{outline:none}._input_9h25s_51:focus:not(._disabled_9h25s_64):after,._input_9h25s_51:focus-visible:not(._disabled_9h25s_64)+._slider_9h25s_27:after{top:50%;left:50%;content:"";position:absolute;width:100%;height:100%;border:2px solid var(--rp-ui-base-topaz-focused);border-radius:12px;transform:translate(-50%,-50%)}._input_9h25s_51:checked+._slider_9h25s_27{background-color:var(--rp-ui-base-topaz)}._input_9h25s_51:checked+._slider_9h25s_27:before{transform:translate(12px)}._input_9h25s_51:hover+._slider_9h25s_27{background-color:var(--rp-ui-base-e-400)}._input_9h25s_51:checked:hover+._slider_9h25s_27{background-color:var(--rp-ui-base-topaz-hover)}._input_9h25s_51:checked:disabled+._slider_9h25s_27{background-color:var(--rp-ui-base-topaz);cursor:default}._disabled_9h25s_64{opacity:.3;cursor:default}._bubbles-loader_kn4ln_1{position:relative}._bubbles-loader_kn4ln_1._color-topaz_kn4ln_4 ._bubble_kn4ln_1{background-color:var(--rp-ui-base-dark-topaz-main)}._bubble_kn4ln_1{position:absolute;width:6px;height:6px;border-radius:50%;background:var(--rp-ui-base-bg-000);transform:scale(.3);animation:_bubbles_kn4ln_1 2.5s infinite linear}._bubble_kn4ln_1:nth-child(1){left:0;animation-delay:.1s}._bubble_kn4ln_1:nth-child(2){left:7px;animation-delay:.3s}._bubble_kn4ln_1:nth-child(3){left:14px;animation-delay:.5s}._bubble_kn4ln_1:nth-child(4){left:21px;animation-delay:.7s}._bubble_kn4ln_1:nth-child(5){left:28px;animation-delay:.9s}._bubble_kn4ln_1:nth-child(6){left:35px;animation-delay:1.1s}._bubble_kn4ln_1:nth-child(7){left:42px;animation-delay:1.3s}@keyframes _bubbles_kn4ln_1{20%,60%{transform:scale(.5)}40%{transform:scale(1)}}._radio-button_9d3ij_1{display:flex;align-items:center;height:100%;outline:none;cursor:pointer;padding-bottom:4px}._radio-button_9d3ij_1._disabled_9d3ij_9{cursor:default}._radio-button_9d3ij_1._disabled_9d3ij_9 ._children-container_9d3ij_12{color:var(--rp-ui-base-e-300)}._radio-button_9d3ij_1._disabled_9d3ij_9 ._toggler_9d3ij_15{opacity:.3}._radio-button_9d3ij_1._disabled_9d3ij_9 ._toggler_9d3ij_15:after{background-color:transparent}._radio-button_9d3ij_1._disabled_9d3ij_9 ._toggler_9d3ij_15._checked_9d3ij_21:after{background-color:var(--rp-ui-base-topaz-pressed)}._radio-button_9d3ij_1:focus-visible:not(._disabled_9d3ij_9) ._toggler_9d3ij_15{border:2px solid var(--rp-ui-color-primary-focused)}._input_9d3ij_28{display:none}._toggler_9d3ij_15{display:flex;width:16px;height:16px;min-width:16px;box-sizing:border-box;margin:auto 10px auto 0;border-radius:100%;border-width:1px;border-style:solid;line-height:18;border-color:var(--rp-ui-color-field-border-2)}._toggler_9d3ij_15:after{width:8px;height:8px;content:"";display:block;border-radius:100%;margin:auto;background-color:var(--rp-ui-color-radio-checked);opacity:0;transform:scale(.5);transition:transform .2s,opacity .2s}._toggler_9d3ij_15:hover:not(._disabled_9d3ij_9){border-color:var(--rp-ui-color-field-border-2-hover)}._toggler_9d3ij_15:hover:not(._disabled_9d3ij_9):after{background-color:var(--rp-ui-color-primary-hover)}._toggler_9d3ij_15._checked_9d3ij_21:after,._toggler_9d3ij_15._disabled_9d3ij_9:after{transform:scale(1);opacity:1}._children-container_9d3ij_12{display:inline-block;overflow:hidden;max-width:100%;font-family:var(--rp-ui-base-font-family);font-weight:500;font-size:13px;line-height:20px;word-break:break-all;text-overflow:ellipsis;color:var(--rp-ui-color-text)}._children-container_9d3ij_12 a{text-decoration:none;color:var(--rp-ui-base-topaz)}._children-container_9d3ij_12 a:focus,._children-container_9d3ij_12 a:focus-visible{outline:none;color:var(--rp-ui-base-topaz-focused);text-decoration:underline}._text-area_cxv68_1{font-size:13px;line-height:20px;width:100%;min-height:72px;padding:9px 12px 7px;outline:none;border:1px solid var(--rp-ui-base-e-200);border-radius:3px;box-sizing:border-box;font-family:var(--rp-ui-base-font-family);font-weight:400;color:var(--rp-ui-base-almost-black);resize:vertical}._text-area_cxv68_1:hover{border-color:var(--rp-ui-base-e-300)}._text-area_cxv68_1:focus:not(._error_cxv68_19._touched_cxv68_19){border:1px solid var(--rp-ui-base-topaz-hover);box-shadow:0 0 0 1px var(--rp-ui-base-topaz-hover)}._text-area_cxv68_1._error_cxv68_19._touched_cxv68_19{border:1px solid var(--rp-ui-base-error)}._text-area_cxv68_1::placeholder{color:var(--rp-ui-base-e-300)}._label_cxv68_30{font-size:13px;line-height:20px;font-family:var(--rp-ui-base-font-family);font-weight:500;color:var(--rp-ui-base-almost-black);margin-bottom:4px}._additional-content_cxv68_39 ._error-text_cxv68_39{font-size:11px;line-height:16px;display:block;font-family:var(--rp-ui-base-font-family);font-weight:400;color:var(--rp-ui-base-error)}._additional-content_cxv68_39 ._help-text_cxv68_47{font-size:11px;line-height:16px;display:block;font-family:var(--rp-ui-base-font-family);font-weight:400;color:var(--rp-ui-base-e-300)}._disabled_cxv68_56{opacity:.3;pointer-events:none}._button_15twe_1{display:inline-flex;justify-content:center;align-items:center;height:36px;min-width:120px;padding:7px 16px;margin:0;outline:none;border-radius:3px;font-family:var(--rp-ui-base-font-family);font-weight:500;font-size:13px;line-height:20px;cursor:pointer;box-sizing:border-box}._primary_15twe_19{border:1px solid var(--rp-ui-color-primary);background-color:var(--rp-ui-color-primary);color:var(--rp-ui-base-bg-000)}._primary_15twe_19:hover:not(._disabled_15twe_24){border:1px solid var(--rp-ui-color-primary-hover);background-color:var(--rp-ui-color-primary-hover)}._primary_15twe_19:active:not(._disabled_15twe_24){border:1px solid var(--rp-ui-color-primary-pressed);background-color:var(--rp-ui-color-primary-pressed)}._primary_15twe_19:focus:not(._disabled_15twe_24,:active){border:2px solid var(--rp-ui-color-primary-focused)}._primary_15twe_19 svg *{fill:var(--rp-ui-base-bg-000)}._ghost_15twe_39{border:1px solid var(--rp-ui-color-primary);background-color:transparent;color:var(--rp-ui-color-primary-text)}._ghost_15twe_39:hover:not(._disabled_15twe_24){border:1px solid var(--rp-ui-base-dark-topaz-hover);color:var(--rp-ui-base-dark-topaz-hover)}._ghost_15twe_39:active:not(._disabled_15twe_24){border:1px solid var(--rp-ui-color-primary-pressed);color:var(--rp-ui-color-primary-pressed)}._ghost_15twe_39:focus:not(._disabled_15twe_24,:active){border:2px solid var(--rp-ui-color-primary-focused);color:var(--rp-ui-color-primary-focused)}._ghost_15twe_39 svg *{fill:var(--rp-ui-color-primary-text)}._danger_15twe_60{border:1px solid var(--rp-ui-color-error);background-color:var(--rp-ui-color-error);color:var(--rp-ui-base-bg-000)}._danger_15twe_60:hover:not(._disabled_15twe_24){opacity:.9}._danger_15twe_60:active:not(._disabled_15twe_24){border:1px solid var(--rp-ui-color-error-pressed);background-color:var(--rp-ui-color-error-pressed)}._danger_15twe_60:focus:not(._disabled_15twe_24,:active){border:2px solid var(--rp-ui-color-error-focused)}._danger_15twe_60 svg *{fill:var(--rp-ui-base-bg-000)}._text_15twe_79{min-width:auto;height:auto;border:0;padding:0;background:none;line-height:22px;color:var(--rp-ui-color-primary-text)}._text_15twe_79:hover:not(._disabled_15twe_24){color:var(--rp-ui-color-primary-hover)}._text_15twe_79:hover:not(._disabled_15twe_24) svg *{fill:var(--rp-ui-color-primary-hover)}._text_15twe_79:active:not(._disabled_15twe_24){color:var(--rp-ui-color-primary-pressed)}._text_15twe_79:active:not(._disabled_15twe_24) svg *{fill:var(--rp-ui-color-primary-pressed)}._text_15twe_79:focus:not(._disabled_15twe_24,:active){color:var(--rp-ui-color-primary-focused)}._text_15twe_79:focus:not(._disabled_15twe_24,:active) svg *{fill:var(--rp-ui-color-primary-focused)}._text_15twe_79 svg *{fill:var(--rp-ui-color-primary-text)}._disabled_15twe_24{opacity:var(--rp-ui-opacity-default);cursor:default}._width-wide-content_15twe_115{padding:9px 47px 7px;margin:0}._width-parent_15twe_120{display:flex;width:100%}._icon_15twe_125{display:inline-block;width:16px;height:16px}._icon-start_15twe_131{margin:auto 8px auto 0}._icon-end_15twe_135{margin:auto 0 auto 8px;order:1}._checkbox_189ko_1{display:inline-flex;align-items:center;padding-left:24px;color:var(--rp-ui-color-text-2);font-family:var(--rp-ui-base-font-family);font-weight:500;font-size:13px;line-height:20px}._checkbox_189ko_1 ._disabled_189ko_11{opacity:var(--rp-ui-opacity-default);pointer-events:none}._input_189ko_16{position:absolute;opacity:0;top:0;left:0}._control_189ko_23{position:absolute;width:16px;height:16px;border:1px solid var(--rp-ui-color-field-border-2);border-radius:3px;margin-left:-24px;box-sizing:border-box;cursor:pointer}._input_189ko_16:checked+._control_189ko_23{border-color:var(--rp-ui-color-primary);background-color:var(--rp-ui-color-primary);background-repeat:no-repeat;background-position:center;background-image:url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 4.25L4.5 7.25L10.5 0.75' stroke='white' stroke-width='2'/%3E%3C/svg%3E")}._input_189ko_16:hover+._control_189ko_23{border-color:var(--rp-ui-color-field-hover-2)}._input_189ko_16:active:not(:disabled)+._control_189ko_23{border:2px solid var(--rp-ui-color-primary-focused)}._input_189ko_16:checked:hover+._control_189ko_23{border-color:var(--rp-ui-color-primary-hover);background-color:var(--rp-ui-color-primary-hover);background-repeat:no-repeat;background-position:center;background-image:url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 4.25L4.5 7.25L10.5 0.75' stroke='white' stroke-width='2'/%3E%3C/svg%3E")}._input_189ko_16:checked:active:not(:disabled)+._control_189ko_23{border-color:var(--rp-ui-color-primary-focused);background-color:var(--rp-ui-color-primary-focused);background-repeat:no-repeat;background-position:center;background-image:url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 4.25L4.5 7.25L10.5 0.75' stroke='white' stroke-width='2'/%3E%3C/svg%3E")}._input_189ko_16:disabled+._control_189ko_23{border-color:var(--rp-ui-color-disabled)}._input_189ko_16:checked:disabled+._control_189ko_23{border-color:var(--rp-ui-color-primary);background-color:var(--rp-ui-color-primary);background-repeat:no-repeat;background-position:center;background-image:url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 4.25L4.5 7.25L10.5 0.75' stroke='white' stroke-width='2'/%3E%3C/svg%3E");opacity:var(--rp-ui-opacity-default);pointer-events:none}._input_189ko_16:focus+._control_189ko_23{border:2px solid var(--rp-ui-color-primary-focused)}._input_189ko_16._partially-checked_189ko_76:not(:checked)+._control_189ko_23{border-color:var(--rp-ui-color-field-border);background-repeat:no-repeat;background-position:center;position:relative}._input_189ko_16._partially-checked_189ko_76:not(:checked)+._control_189ko_23:after{content:"";display:block;width:8px;height:2px;border-radius:1px;background-color:var(--rp-ui-color-field-border-2);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}._input_189ko_16._partially-checked_189ko_76:not(:checked):hover+._control_189ko_23{border-color:var(--rp-ui-color-field-border-2-hover);background-repeat:no-repeat;background-position:center;position:relative}._input_189ko_16._partially-checked_189ko_76:not(:checked):hover+._control_189ko_23:after{content:"";display:block;width:8px;height:2px;border-radius:1px;background-color:var(--rp-ui-color-primary-hover);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}._input_189ko_16._partially-checked_189ko_76:not(:checked):active:not(:disabled)+._control_189ko_23{border-color:var(--rp-ui-color-primary-focused);background-repeat:no-repeat;background-position:center;position:relative}._input_189ko_16._partially-checked_189ko_76:not(:checked):active:not(:disabled)+._control_189ko_23:after{content:"";display:block;width:8px;height:2px;border-radius:1px;background-color:var(--rp-ui-color-field-border-2);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}._input_189ko_16._partially-checked_189ko_76:not(:checked):disabled+._control_189ko_23{border-color:var(--rp-ui-color-field-borderd);background-repeat:no-repeat;background-position:center;position:relative}._input_189ko_16._partially-checked_189ko_76:not(:checked):disabled+._control_189ko_23:after{content:"";display:block;width:8px;height:2px;border-radius:1px;background-color:var(--rp-ui-color-field-border);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}._children_189ko_149{cursor:pointer}._children_189ko_149 a{text-decoration:none;color:var(--rp-ui-color-primary)}._children_189ko_149 a:focus,._children_189ko_149 a:focus-visible{outline:none;color:var(--rp-ui-color-primary-focused);text-decoration:underline}._base-icon-button_1q88n_1{margin:0;padding:0;outline:none;background:transparent;border:none;cursor:pointer}._base-icon-button_1q88n_1 svg path{fill:var(--rp-ui-base-e-300)}._base-icon-button_1q88n_1._disabled_1q88n_12{opacity:40%;cursor:default}._base-icon-button_1q88n_1:hover:not(._disabled_1q88n_12) svg path{fill:var(--rp-ui-base-e-400)}._base-icon-button_1q88n_1:active:not(._disabled_1q88n_12) svg path{fill:var(--rp-ui-base-topaz-pressed)}._base-icon-button_1q88n_1:focus-visible:not(._disabled_1q88n_12,:active) svg path{fill:var(--rp-ui-base-topaz-focused)}@font-face{font-family:Roboto;font-weight:400;font-display:swap;font-style:normal;src:local("Roboto Regular"),local("Roboto-Regular"),url(./fonts/Roboto/Roboto-Regular.ttf) format("truetype")}@font-face{font-family:Roboto;font-weight:500;font-display:swap;font-style:normal;src:local("Roboto Medium"),local("Roboto-Medium"),url(./fonts/Roboto/Roboto-Medium.ttf) format("truetype")}@font-face{font-family:Roboto;font-weight:700;font-display:swap;font-style:normal;src:local("Roboto-Bold"),local("Roboto-Bold"),url(./fonts/Roboto/Roboto-Bold.ttf) format("truetype")}@font-face{font-family:OpenSans;font-weight:300;font-display:swap;font-style:normal;src:local("Open Sans Light"),local("OpenSans-Light"),url(./fonts/OpenSans/OpenSans-Light.ttf) format("truetype")}@font-face{font-family:OpenSans;font-weight:400;font-display:swap;font-style:normal;src:local("Open Sans Regular"),local("OpenSans-Regular"),url(./fonts/OpenSans/OpenSans-Regular.ttf) format("truetype")}@font-face{font-family:OpenSans;font-weight:600;font-display:swap;font-style:normal;src:local("Open Sans Semibold"),local("OpenSans-Semibold"),url(./fonts/OpenSans/OpenSans-Semibold.ttf) format("truetype")}:root{--rp-ui-base-bg-000: #ffffff;--rp-ui-base-bg-100: #f7f7f8;--rp-ui-base-bg-200: #eceff4;--rp-ui-base-error: #dc5959;--rp-ui-base-error-hover: #f24a4a;--rp-ui-base-error-pressed: #c54141;--rp-ui-base-error-focused: #ffb1b1;--rp-ui-base-topaz: #00829b;--rp-ui-base-topaz-hover: #009dbb;--rp-ui-base-topaz-focused: #00b0d1;--rp-ui-base-topaz-pressed: #00758c;--rp-ui-base-almost-black: #3f3f3f;--rp-ui-base-e-100: #e3e7ec;--rp-ui-base-e-200: #c1c7d0;--rp-ui-base-e-300: #a2aab5;--rp-ui-base-e-400: #8d95a1;--rp-ui-base-dark-bg: #101010;--rp-ui-base-dark-bg-solid-98: #141414;--rp-ui-base-dark-error: #ff4040;--rp-ui-base-dark-error-text: #ff6666;--rp-ui-base-dark-log-error: #ff3222;--rp-ui-base-dark-log-fatal: #c2352b;--rp-ui-base-dark-topaz-main: #1a9cb0;--rp-ui-base-dark-topaz-hover: #1cb0c7;--rp-ui-base-dark-topaz-focused: #1dbdd6;--rp-ui-base-dark-topaz-pressed: #9ee7f2;--rp-ui-base-dark-topaz-text: #3abcd0;--rp-ui-base-dark-topaz-additional: #00505d;--rp-ui-base-dark-e-50: #e8e8e8;--rp-ui-base-dark-e-100: #cfcfcf;--rp-ui-base-dark-e-150: #8f8f8f;--rp-ui-base-dark-e-200: #626262;--rp-ui-base-dark-e-300: #383838;--rp-ui-base-dark-e-400: #262626;--rp-ui-base-dark-e-450: #282828;--rp-ui-base-dark-e-500: #222222;--rp-ui-base-sm-warning: #d78706;--rp-ui-base-sm-warning-line-100: #fceecb;--rp-ui-base-sm-warning-line-200: #fbe7b6;--rp-ui-base-sm-error: #db3549;--rp-ui-base-sm-error-line-100: #fccbcb;--rp-ui-base-sm-error-line-200: #ffc0bd;--rp-ui-base-sm-info-line-100: #ced3db;--rp-ui-base-defect-type-AB: #ffc208;--rp-ui-base-tag-value-text: #394db6;--rp-ui-base-tag-value-background: #ced8fc;--rp-ui-base-tag-key-text: #6f4599;--rp-ui-base-tag-key-background: #dac3e6;--rp-ui-base-system-issue-group: #3e7be6;--rp-ui-base-product-bug-group: #d32f2f;--rp-ui-base-automation-bug-group: #ffc208;--rp-ui-base-no-defect-bug-group: #76839b;--rp-ui-base-test-execution-status-passed: #3aa76d;--rp-ui-base-shadow: 0px 1px 3px rgba(55, 67, 98, .1);--rp-ui-base-shadow-hover: 0px 1px 3px rgba(55, 67, 98, .2);--rp-ui-base-shadow-secondary: 0 8px 40px rgba(0, 0, 0, .15);--rp-ui-base-almost-black-light: rgba(63, 63, 63, .75);--rp-ui-base-almost-black-slight-light: rgba(63, 63, 63, .95);--rp-ui-base-dark-bg-light: rgba(16, 16, 16, .15);--rp-ui-base-overlay: rgba(141, 149, 161, .35);--rp-ui-base-overlay-light-cyan: rgba(208, 240, 241, .7);--rp-ui-base-font-family: Roboto, Arial, Helvetica, sans-serif;--rp-ui-base-font-family-heading: OpenSans, Segoe UI, Tahoma, sans-serif;--rp-ui-color-bg: var(--rp-ui-base-bg-000);--rp-ui-color-bg-2: var(--rp-ui-base-bg-100);--rp-ui-color-bg-3: var(--rp-ui-base-bg-200);--rp-ui-color-primary: var(--rp-ui-base-topaz);--rp-ui-color-primary-hover: var(--rp-ui-base-topaz-hover);--rp-ui-color-primary-focused: var(--rp-ui-base-topaz-focused);--rp-ui-color-primary-pressed: var(--rp-ui-base-topaz-pressed);--rp-ui-color-primary-text: var(--rp-ui-base-topaz);--rp-ui-color-error: var(--rp-ui-base-error);--rp-ui-color-error-hover: var(--rp-ui-base-error-hover);--rp-ui-color-error-pressed: var(--rp-ui-base-error-pressed);--rp-ui-color-error-focused: var(--rp-ui-base-error-focused);--rp-ui-color-text: var(--rp-ui-base-almost-black);--rp-ui-color-text-2: var(--rp-ui-base-almost-black);--rp-ui-color-text-3: var(--rp-ui-base-almost-black);--rp-ui-color-field-bg: var(--rp-ui-base-bg-000);--rp-ui-color-field-bg-2: var(--rp-ui-base-bg-100);--rp-ui-color-field-bg-3: var(--rp-ui-base-bg-000);--rp-ui-color-field-bg-3-hover: var(--rp-ui-base-bg-000);--rp-ui-color-field-border: var(--rp-ui-base-e-200);--rp-ui-color-field-border-2: var(--rp-ui-base-e-300);--rp-ui-color-field-border-2-hover: var(--rp-ui-base-e-400);--rp-ui-color-field-border-3: var(--rp-ui-base-e-200);--rp-ui-color-field-border-3-hover: var(--rp-ui-base-e-300);--rp-ui-color-field-hover: var(--rp-ui-base-e-300);--rp-ui-color-field-hover-2: var(--rp-ui-base-e-400);--rp-ui-color-field-opened: var(--rp-ui-base-topaz-pressed);--rp-ui-color-field-placeholder: var(--rp-ui-base-almost-black);--rp-ui-color-field-placeholder-3: var(--rp-ui-base-e-300);--rp-ui-color-radio-checked: var(--rp-ui-base-topaz-pressed);--rp-ui-color-disabled: var(--rp-ui-base-e-300);--rp-ui-opacity-default: 30%}.rp-ui-kit-theme-light{--rp-ui-color-bg: var(--rp-ui-base-bg-000);--rp-ui-color-bg-2: var(--rp-ui-base-bg-100);--rp-ui-color-bg-3: var(--rp-ui-base-bg-200);--rp-ui-color-primary: var(--rp-ui-base-topaz);--rp-ui-color-primary-hover: var(--rp-ui-base-topaz-hover);--rp-ui-color-primary-focused: var(--rp-ui-base-topaz-focused);--rp-ui-color-primary-pressed: var(--rp-ui-base-topaz-pressed);--rp-ui-color-primary-text: var(--rp-ui-base-topaz);--rp-ui-color-error: var(--rp-ui-base-error);--rp-ui-color-error-hover: var(--rp-ui-base-error-hover);--rp-ui-color-error-pressed: var(--rp-ui-base-error-pressed);--rp-ui-color-error-focused: var(--rp-ui-base-error-focused);--rp-ui-color-text: var(--rp-ui-base-almost-black);--rp-ui-color-text-2: var(--rp-ui-base-almost-black);--rp-ui-color-text-3: var(--rp-ui-base-almost-black);--rp-ui-color-field-bg: var(--rp-ui-base-bg-000);--rp-ui-color-field-bg-2: var(--rp-ui-base-bg-100);--rp-ui-color-field-bg-3: var(--rp-ui-base-bg-000);--rp-ui-color-field-bg-3-hover: var(--rp-ui-base-bg-000);--rp-ui-color-field-border: var(--rp-ui-base-e-200);--rp-ui-color-field-border-2: var(--rp-ui-base-e-300);--rp-ui-color-field-border-2-hover: var(--rp-ui-base-e-400);--rp-ui-color-field-border-3: var(--rp-ui-base-e-200);--rp-ui-color-field-border-3-hover: var(--rp-ui-base-e-300);--rp-ui-color-field-hover: var(--rp-ui-base-e-300);--rp-ui-color-field-hover-2: var(--rp-ui-base-e-400);--rp-ui-color-field-opened: var(--rp-ui-base-topaz-pressed);--rp-ui-color-field-placeholder: var(--rp-ui-base-almost-black);--rp-ui-color-field-placeholder-3: var(--rp-ui-base-e-300);--rp-ui-color-radio-checked: var(--rp-ui-base-topaz-pressed);--rp-ui-color-disabled: var(--rp-ui-base-e-300);--rp-ui-opacity-default: 30%}.rp-ui-kit-theme-dark{--rp-ui-color-bg: var(--rp-ui-base-dark-bg);--rp-ui-color-bg-2: var(--rp-ui-base-dark-e-500);--rp-ui-color-bg-3: var(--rp-ui-base-dark-bg-solid-98);--rp-ui-color-primary: var(--rp-ui-base-dark-topaz-main);--rp-ui-color-primary-hover: var(--rp-ui-base-dark-topaz-hover);--rp-ui-color-primary-focused: var(--rp-ui-base-dark-topaz-focused);--rp-ui-color-primary-pressed: var(--rp-ui-base-dark-topaz-pressed);--rp-ui-color-primary-text: var(--rp-ui-base-dark-topaz-text);--rp-ui-color-error: var(--rp-ui-base-dark-error);--rp-ui-color-error-hover: var(--rp-ui-base-error-hover);--rp-ui-color-error-pressed: var(--rp-ui-base-error-pressed);--rp-ui-color-error-focused: var(--rp-ui-base-error-focused);--rp-ui-color-text: var(--rp-ui-base-dark-e-50);--rp-ui-color-text-2: var(--rp-ui-base-dark-e-100);--rp-ui-color-text-3: var(--rp-ui-base-bg-000);--rp-ui-color-field-bg: var(--rp-ui-base-dark-e-400);--rp-ui-color-field-bg-2: var(--rp-ui-base-dark-e-400);--rp-ui-color-field-bg-3: var(--rp-ui-base-dark-e-450);--rp-ui-color-field-bg-3-hover: var(--rp-ui-base-dark-e-500);--rp-ui-color-field-border: var(--rp-ui-base-dark-e-400);--rp-ui-color-field-border-2: var(--rp-ui-base-dark-e-100);--rp-ui-color-field-border-2-hover: var(--rp-ui-base-dark-e-50);--rp-ui-color-field-border-3: var(--rp-ui-base-dark-e-450);--rp-ui-color-field-border-3-hover: var(--rp-ui-base-dark-e-500);--rp-ui-color-field-hover: var(--rp-ui-base-e-200);--rp-ui-color-field-hover-2: var(--rp-ui-base-e-300);--rp-ui-color-field-opened: var(--rp-ui-base-e-200);--rp-ui-color-field-placeholder: var(--rp-ui-base-dark-e-200);--rp-ui-color-field-placeholder-3: var(--rp-ui-base-dark-e-200);--rp-ui-color-radio-checked: var(--rp-ui-base-dark-topaz-main);--rp-ui-color-disabled: var(--rp-ui-base-dark-e-100);--rp-ui-opacity-default: 50%}._theme-provider_xipmx_1{height:100%;width:100%}._field-number_3tc9r_1{position:relative;display:inline-flex;flex-direction:column}._field-number_3tc9r_1._disabled_3tc9r_6{opacity:.4}._label_3tc9r_10{display:block;margin-bottom:4px;font-family:var(--rp-ui-base-font-family);font-weight:500;font-size:13px;line-height:20px;text-indent:1px;color:var(--rp-ui-base-almost-black)}._sign_3tc9r_21{display:inline-flex;cursor:pointer}._input-container_3tc9r_26{display:inline-flex;align-items:center;padding:6px 8px;border:1px solid var(--rp-ui-base-e-200);box-sizing:border-box;border-radius:3px;background:var(--rp-ui-base-bg-000);-webkit-user-select:none;user-select:none}._input-container_3tc9r_26:focus-within:not(._error_3tc9r_36._touched_3tc9r_36){padding:5px 7px;border-width:2px;border-color:var(--rp-ui-base-topaz-focused)}._input-container_3tc9r_26:hover:not(._disabled_3tc9r_6):not(:focus-within):not(._error_3tc9r_36._touched_3tc9r_36),._input-container_3tc9r_26._filled_3tc9r_41:not(:focus-within){border-color:var(--rp-ui-base-e-300)}._input-container_3tc9r_26._error_3tc9r_36._touched_3tc9r_36{border-color:var(--rp-ui-base-error)}._input-field_3tc9r_48{display:flex;align-items:center;justify-content:center;height:20px;min-width:44px;margin:2px 4px 0;text-align:center;cursor:text}._input-field_3tc9r_48._disabled_3tc9r_6{cursor:default}._input_3tc9r_26{padding:0;margin:0;border:none;text-align:center;-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield}._input_3tc9r_26:focus{outline:none}._input_3tc9r_26:focus::placeholder{color:transparent}._input_3tc9r_26::placeholder{color:var(--rp-ui-base-e-200)}._input_3tc9r_26::-webkit-inner-spin-button,._input_3tc9r_26::-webkit-outer-spin-button{-webkit-appearance:none;-moz-appearance:none;appearance:none;margin:0}._icon-container_kgu2d_1,._icon-container-end_kgu2d_1,._icon-container-start_kgu2d_1{display:flex;justify-content:center;align-items:center;flex-shrink:0;width:22px;height:22px}._icon-container-start_kgu2d_1{margin-right:4px}._collapsed_kgu2d_13 ._icon-container-start_kgu2d_1{cursor:pointer}._icon-container-end_kgu2d_1{margin-left:4px}._label_kgu2d_21{display:block;margin-bottom:4px;font-family:var(--rp-ui-base-font-family);font-weight:500;font-size:13px;line-height:20px;color:var(--rp-ui-color-text)}._label_kgu2d_21 ._asterisk_kgu2d_30{position:absolute;top:-3px;color:var(--rp-ui-base-e-300);padding-left:4px}._label_kgu2d_21._disabled_kgu2d_36{pointer-events:none;background-color:var(--rp-ui-base-bg-100)}._field_kgu2d_41{display:flex;align-items:center;height:36px;width:100%;padding:7px 12px;box-sizing:border-box;border:1px solid var(--rp-ui-color-field-border-3);border-radius:3px;background-color:var(--rp-ui-color-field-bg-3);transition:width .2s,padding .2s,border .1s}._field_kgu2d_41._default-width_kgu2d_53{width:240px}._field_kgu2d_41._collapsed_kgu2d_13{width:22px;border-width:0;overflow:hidden;padding:0}._field_kgu2d_41._collapsed_kgu2d_13 ._placeholder_kgu2d_62{display:none}._field_kgu2d_41:hover:not(._disabled_kgu2d_36){border-color:var(--rp-ui-color-field-border-3-hover);background-color:var(--rp-ui-color-field-bg-3-hover)}._field_kgu2d_41:focus-within:not(._error_kgu2d_69._touched_kgu2d_69){padding:6px 11px;border:2px solid var(--rp-ui-color-primary-focused)}._field_kgu2d_41._error_kgu2d_69._touched_kgu2d_69{border-color:var(--rp-ui-base-error)}._field_kgu2d_41._disabled_kgu2d_36{pointer-events:none;background-color:var(--rp-ui-base-bg-100)}._field_kgu2d_41._disabled_kgu2d_36 ._placeholder_kgu2d_62{color:var(--rp-ui-base-e-300)}._input-container_kgu2d_84{position:relative;width:100%}._input_kgu2d_84{font-size:13px;line-height:20px;font-family:var(--rp-ui-base-font-family);font-weight:400;width:100%;margin:2px 0 0;padding:0;border:none;background:transparent;overflow:hidden;text-overflow:ellipsis;color:var(--rp-ui-color-text-3)}._input_kgu2d_84:focus{outline:none}._input_kgu2d_84:disabled{color:var(--rp-ui-base-e-300)}._placeholder_kgu2d_62{font-size:13px;line-height:20px;font-family:var(--rp-ui-base-font-family);font-weight:400;color:var(--rp-ui-color-field-placeholder-3);position:absolute;top:2px;left:0;pointer-events:none;white-space:nowrap}._placeholder_kgu2d_62 ._asterisk_kgu2d_30:after{position:absolute;top:-3px;color:var(--rp-ui-base-e-300);right:-7px;content:"*";color:var(--rp-ui-base-error-focused)}._icon_kgu2d_1,._clear-icon_kgu2d_131{display:inline-block;width:16px;height:16px}._clear-icon_kgu2d_131{background:none;border:none;padding:0;font:inherit;outline:inherit;cursor:pointer}._clear-icon_kgu2d_131 svg>path{fill:var(--rp-ui-color-bg-2)}._clear-icon_kgu2d_131._disabled_kgu2d_36{pointer-events:none}._clear-icon_kgu2d_131:hover svg{fill:var(--rp-ui-base-e-400)}._clear-icon_kgu2d_131:hover svg>rect{fill:var(--rp-ui-base-e-400)}._clear-icon_kgu2d_131:focus svg{fill:var(--rp-ui-color-primary-focused)}._clear-icon_kgu2d_131:focus svg>rect{fill:var(--rp-ui-color-primary-focused)}._clear-icon_kgu2d_131:active svg{fill:var(--rp-ui-color-primary-pressed)}._clear-icon_kgu2d_131:active svg>rect{fill:var(--rp-ui-color-primary-pressed)}._additional-content_kgu2d_170{margin-top:4px}._additional-content_kgu2d_170._disabled_kgu2d_36{pointer-events:none}._text_kgu2d_177{font-size:11px;line-height:16px;font-family:var(--rp-ui-base-font-family);font-weight:400;display:block}._error-text_kgu2d_185{color:var(--rp-ui-base-error)}._help-text_kgu2d_189{color:var(--rp-ui-base-dark-e-300)}._spin-loader_qn4ih_1{width:16px;height:16px;margin:3px 7px 3px 3px;flex-shrink:0}._spinner_qn4ih_8{display:flex;align-items:center;justify-content:center;width:100%;height:100%;border-radius:50%;flex-shrink:0;position:relative;mask:radial-gradient(circle,transparent 55%,var(--rp-ui-color-primary) 0%);animation:_spin_qn4ih_1 1s infinite linear}._spinner_qn4ih_8._color-topaz_qn4ih_20{background:conic-gradient(transparent 0%,var(--rp-ui-color-primary))}@keyframes _spin_qn4ih_1{to{transform:rotate(1turn)}}._table_kha9s_1{width:100%;max-width:1200px}._table_kha9s_1 *{box-sizing:border-box}._table-header_kha9s_9{display:flex;width:100%;height:32px;align-items:center}._table-row_kha9s_16{display:flex;width:100%;height:64px}._table-row_kha9s_16 ._table-row-content_kha9s_21{display:flex;align-items:center;height:100%;flex:1;box-shadow:var(--rp-ui-base-shadow-hover);background-color:var(--rp-ui-base-bg-000);border-radius:4px;max-width:100%}._table-row_kha9s_16._size-small_kha9s_31{height:44px}._table-row_kha9s_16._size-large_kha9s_34{height:80px}._table-body_kha9s_38{display:flex;flex-direction:column;gap:4px;width:100%}._table-header-cell_kha9s_45,._table-cell_kha9s_45{font-family:var(--rp-ui-base-font-family);font-weight:400;padding:0 16px}._table-header-cell_kha9s_45._action-menu-cell_kha9s_50,._table-cell_kha9s_45._action-menu-cell_kha9s_50{width:48px;padding:0 16px;flex-shrink:0}._table-header-cell_kha9s_45:not(._action-menu-cell_kha9s_50),._table-cell_kha9s_45:not(._action-menu-cell_kha9s_50){overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._table-header-cell_kha9s_45._checkbox-cell_kha9s_60,._table-cell_kha9s_45._checkbox-cell_kha9s_60{width:48px;display:flex;justify-content:center;height:100%;cursor:pointer;flex-shrink:0}._table-header-cell_kha9s_45._checkbox-cell_kha9s_60+._table-row-content_kha9s_21,._table-cell_kha9s_45._checkbox-cell_kha9s_60+._table-row-content_kha9s_21{max-width:calc(100% - 48px)}._table-header-cell_kha9s_45._primary-cell_kha9s_71,._table-cell_kha9s_45._primary-cell_kha9s_71{flex:1 1 320px;font-weight:500;text-align:left}._table-header-cell_kha9s_45{font-size:11px;line-height:16px;color:var(--rp-ui-base-e-400);display:flex;align-items:center;text-align:left;background:none;border:none}._table-header-cell_kha9s_45 ._label_kha9s_87{display:flex;align-items:center}._table-header-cell_kha9s_45._sortable-cell_kha9s_91>._label_kha9s_87{cursor:pointer}._table-header-cell_kha9s_45._align-right_kha9s_94{justify-content:flex-end}._table-header-cell_kha9s_45._align-right_kha9s_94 svg{margin-right:-16px}._table-header-cell_kha9s_45._align-center_kha9s_100{justify-content:center}._table-cell_kha9s_45{font-size:13px;line-height:20px}._dropdown-option_f4c9h_1{display:inline-block;font-family:var(--rp-ui-base-font-family);font-weight:400;font-size:13px;line-height:20px;box-sizing:border-box;cursor:pointer;color:var(--rp-ui-color-text-3)}._dropdown-option_f4c9h_1._disabled_f4c9h_11{pointer-events:none;background-color:var(--rp-ui-color-field-bg-2)}._dropdown-option_f4c9h_1._hidden_f4c9h_15{display:none}._dropdown-option_f4c9h_1:hover:not(:active){background:var(--rp-ui-color-bg-3)}._dropdown-option_f4c9h_1._selected_f4c9h_21{color:var(--rp-ui-color-primary-text)}._dropdown-option_f4c9h_1._hover_f4c9h_24:not(._disabled_f4c9h_11){padding:8px 11px 6px;background-color:var(--rp-ui-color-bg-3);border:1px solid var(--rp-ui-color-primary-focused)}._dropdown-option_f4c9h_1._hover_f4c9h_24:not(._disabled_f4c9h_11):hover{border:none;padding:9px 12px 7px}._dropdown-option_f4c9h_1._hover_f4c9h_24:not(._disabled_f4c9h_11):hover:hover:not(:active){background:var(--rp-ui-color-bg-3)}._single-option_f4c9h_37{height:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding:9px 12px 7px}._sub-option_f4c9h_45{padding-left:24px}._container_vh03o_1{position:relative;display:inline-block;width:100%}._icon_vh03o_7{width:16px;height:16px;margin-right:8px}._arrow_vh03o_13{display:inline-flex;margin-left:12px;transition:transform .2s linear}._dropdown_vh03o_19{display:flex;align-items:center;text-align:start;padding:9px 12px 7px;width:100%;height:36px;border:1px solid var(--rp-ui-color-field-border);border-radius:3px;background-color:var(--rp-ui-color-field-bg);box-sizing:border-box;transition:border-color .2s linear;cursor:pointer}._dropdown_vh03o_19._transparent-background_vh03o_33{background-color:transparent}._dropdown_vh03o_19._disabled_vh03o_36{pointer-events:none;background-color:var(--rp-ui-color-field-bg-2)}._dropdown_vh03o_19._disabled_vh03o_36 ._arrow_vh03o_13 svg path{opacity:.4}._dropdown_vh03o_19._disabled_vh03o_36 ._value_vh03o_43{color:var(--rp-ui-color-disabled)}._dropdown_vh03o_19._error_vh03o_46._touched_vh03o_46{border-width:1px;border-color:var(--rp-ui-color-error)}._dropdown_vh03o_19:hover:not(:active):not(:focus-visible):not(._opened_vh03o_50):not(._error_vh03o_46){border-color:var(--rp-ui-color-field-hover)}._dropdown_vh03o_19:active,._dropdown_vh03o_19:focus-visible{padding:7px 11px;border-width:2px;border-color:var(--rp-ui-color-primary-focused);outline:none}._dropdown_vh03o_19:active ._arrow_vh03o_13 svg path,._dropdown_vh03o_19:focus-visible ._arrow_vh03o_13 svg path{fill:var(--rp-ui-color-field-hover-2)}._dropdown_vh03o_19._opened_vh03o_50:not(:active):not(._error_vh03o_46){border-width:1px;border-color:var(--rp-ui-color-primary-pressed)}._dropdown_vh03o_19._opened_vh03o_50:not(:active):not(._error_vh03o_46) ._arrow_vh03o_13 svg path{fill:var(--rp-ui-color-field-opened)}._dropdown_vh03o_19._opened_vh03o_50 ._arrow_vh03o_13{transform:rotate(180deg)}._dropdown_vh03o_19 ._placeholder_vh03o_72{color:var(--rp-ui-color-field-placeholder)}._dropdown_vh03o_19 ._value_vh03o_43{flex-grow:1;font-family:var(--rp-ui-base-font-family);font-weight:400;font-size:13px;line-height:20px;color:var(--rp-ui-color-text-3);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}@media (max-width: 767px){._dropdown_vh03o_19 ._mobile-disabled_vh03o_87{background-color:var(--rp-ui-color-field-bg-2)}}._select-list_vh03o_92{position:absolute;top:100%;padding:8px 0;width:max-content;max-width:100%;min-width:100%;min-height:10px;border-radius:3px;box-sizing:border-box;z-index:10;box-shadow:var(--rp-ui-base-shadow-secondary);background:var(--rp-ui-color-field-bg)}._select-list_vh03o_92._opened_vh03o_50:focus-visible{outline:none}._select-list_vh03o_92._limited-width_vh03o_109{max-width:384px}._options-container_vh03o_113{display:flex;flex-direction:column}._ghost_vh03o_118{border-color:transparent;background:transparent}._ghost_vh03o_118:hover:not(:active):not(:focus-visible):not(._opened_vh03o_50):not(._error_vh03o_46){border-color:transparent}._ghost_vh03o_118._opened_vh03o_50:not(:active):not(._error_vh03o_46){border-color:transparent}._ghost_vh03o_118._opened_vh03o_50 ._value_vh03o_43{color:var(--rp-ui-color-primary-pressed)}._header_a3cjx_1{display:flex;align-items:center;justify-content:space-between;background-color:var(--rp-ui-base-bg-000);padding-bottom:18px}._header_a3cjx_1 ._dropdowns-wrapper_a3cjx_8{display:flex;align-items:center;column-gap:8px}._header_a3cjx_1 ._button-prev_a3cjx_13,._header_a3cjx_1 ._button-next_a3cjx_14{all:unset;align-self:center;width:16px;height:16px}._header_a3cjx_1 ._button-prev_a3cjx_13 svg,._header_a3cjx_1 ._button-next_a3cjx_14 svg{width:16px;height:16px}._header_a3cjx_1 ._button-prev_a3cjx_13:hover:not(._disabled_a3cjx_25),._header_a3cjx_1 ._button-next_a3cjx_14:hover:not(._disabled_a3cjx_25){cursor:pointer}._header_a3cjx_1 ._button-prev_a3cjx_13:hover:not(._disabled_a3cjx_25) svg>path,._header_a3cjx_1 ._button-next_a3cjx_14:hover:not(._disabled_a3cjx_25) svg>path{fill:var(--rp-ui-base-e-400)}._header_a3cjx_1 ._button-prev_a3cjx_13._disabled_a3cjx_25,._header_a3cjx_1 ._button-next_a3cjx_14._disabled_a3cjx_25{opacity:.3;pointer-events:none}._header_a3cjx_1 ._button-next_a3cjx_14{transform:rotate(180deg)}._header_a3cjx_1 ._dropdown_a3cjx_8{width:auto}._header_a3cjx_1 ._dropdown_a3cjx_8._month-dropdown_a3cjx_44{width:117px}._header_a3cjx_1 ._dropdown_a3cjx_8 ._toggle-button_a3cjx_47>span{color:var(--rp-ui-base-topaz);font-family:var(--rp-ui-base-font-family);font-weight:700}._header_a3cjx_1 ._dropdown_a3cjx_8 ._toggle-button_a3cjx_47:hover>span{color:var(-rp-ui-base-topaz-hover)}.react-datepicker__aria-live{display:none}._calendar_1jr94_5{box-sizing:border-box;background-color:var(--rp-ui-base-bg-000);width:344px;padding:30px 32px 32px;border-radius:8px;box-shadow:0 8px 40px var(--rp-ui-base-dark-bg-light);border:none;margin-top:4px}._calendar_1jr94_5 .react-datepicker__month-container{width:100%;height:100%;float:none;display:flex;flex-direction:column;justify-content:center;align-items:center}._calendar_1jr94_5 .react-datepicker__month-container .react-datepicker__header.react-datepicker__header--custom{width:100%;background-color:var(--rp-ui-base-bg-000);border-bottom:none;padding:0}._calendar_1jr94_5 .react-datepicker__month-container .react-datepicker__header.react-datepicker__header--custom .react-datepicker__day-names{display:flex;height:40px;justify-content:space-between;font-family:var(--rp-ui-base-font-family);font-weight:700;font-size:13px;line-height:20px;color:var(--rp-ui-base-dark-e-500);vertical-align:middle}._calendar_1jr94_5 .react-datepicker__month-container .react-datepicker__header.react-datepicker__header--custom .react-datepicker__day-names .react-datepicker__day-name{width:40px;text-align:center}._calendar_1jr94_5 .react-datepicker__month-container .react-datepicker__month{display:flex;flex-direction:column;width:100%;height:100%;row-gap:8px}._calendar_1jr94_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__week{height:32px;display:flex;align-items:center;justify-content:space-between;font-family:var(--rp-ui-base-font-family);color:var(--rp-ui-base-dark-e-500);font-size:13px;line-height:20px}._calendar_1jr94_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__week .react-datepicker__day--range-end:first-child:before{display:none}._calendar_1jr94_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__day{cursor:pointer}._calendar_1jr94_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__day.react-datepicker__day--in-selecting-range:not(.react-datepicker__day--selecting-range-end,.react-datepicker__day--selecting-range-start,.react-datepicker__day--range-start,.react-datepicker__day--range-end){background-color:var(--rp-ui-base-bg-200);height:32px;line-height:32px;position:relative}._calendar_1jr94_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__day.react-datepicker__day--selected{position:relative;border-radius:50%;background-color:var(--rp-ui-base-topaz);font-family:var(--rp-ui-base-font-family);font-weight:700;color:var(--rp-ui-base-bg-000)}._calendar_1jr94_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__day--disabled{cursor:default}._calendar_1jr94_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__day--disabled:hover{border:none!important;line-height:40px!important}._calendar_1jr94_5 ._current-date_1jr94_89,._calendar_1jr94_5 ._date_1jr94_90{width:40px;margin:0;box-sizing:border-box;height:40px;line-height:40px}._calendar_1jr94_5 ._current-date_1jr94_89:focus-visible,._calendar_1jr94_5 ._date_1jr94_90:focus-visible{outline:none}._calendar_1jr94_5 ._date_1jr94_90{background-color:transparent;border-radius:unset;color:inherit;text-align:center}._calendar_1jr94_5 ._current-date_1jr94_89,._calendar_1jr94_5 ._current-date_1jr94_89:hover{position:relative;z-index:3;font-family:var(--rp-ui-base-font-family);font-weight:700;border-radius:50%;border:1px solid var(--rp-ui-base-topaz);background-color:var(--rp-ui-base-topaz);line-height:38px;color:var(--rp-ui-base-bg-000)}._calendar_1jr94_5 ._date_1jr94_90:hover:not(._current-date_1jr94_89):not(._selected-range_1jr94_119):not(._end-date_1jr94_119){border-radius:50%;border:1px solid var(--rp-ui-base-topaz);background-color:transparent;line-height:38px;color:inherit}._calendar_1jr94_5 ._end-date_1jr94_119{position:relative;border-radius:50%;background-color:var(--rp-ui-base-topaz);font-family:var(--rp-ui-base-font-family);font-weight:700;color:var(--rp-ui-base-bg-000)}._calendar_1jr94_5 ._end-date_1jr94_119:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:40px;height:40px;border:10px solid var(--rp-ui-base-topaz);border-radius:50%;display:block;z-index:2;box-sizing:border-box}._calendar_1jr94_5 ._end-date_1jr94_119:before{position:absolute;content:"";height:32px;background-color:var(--rp-ui-base-bg-200);width:16px;left:-9px;z-index:1;top:4px}._calendar_1jr94_5 ._selected-range_1jr94_119{background-color:var(--rp-ui-base-bg-200);border-radius:8px;height:32px;line-height:32px;position:relative}._calendar_1jr94_5 ._selected-range_1jr94_119:hover{height:40px;line-height:40px;border-radius:50%;background:var(--rp-ui-base-bg-200)}._calendar_1jr94_5 ._selected-range_1jr94_119:hover:after{display:block}._calendar_1jr94_5 ._selected-range_1jr94_119:hover:not(:first-child):before{top:4px}._calendar_1jr94_5 ._selected-range_1jr94_119:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:40px;height:40px;border:1px solid var(--rp-ui-base-topaz);border-radius:50%;display:none;z-index:2;box-sizing:border-box}._calendar_1jr94_5 ._selected-range_1jr94_119:not(:first-child):before{position:absolute;content:"";height:32px;background-color:var(--rp-ui-base-bg-200);width:16px;top:0;left:-9px;z-index:1}._calendar_1jr94_5 ._disabled_1jr94_202{color:var(--rp-ui-base-e-400);background-color:transparent}._calendar_1jr94_5 ._disabled_1jr94_202:focus-visible{outline:none}._popper_1jr94_210{z-index:10}._input_1jr94_214{width:100%;min-width:138px}._item-counter_4g6do_1{display:inline-block;width:200px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._size-selector_183l8_1{display:flex;flex-direction:column}._size-option_183l8_6{width:88px;padding:8px 0;outline:none;border:none;background:none;cursor:pointer;font-family:var(--rp-ui-base-font-family);font-weight:400;font-size:13px;line-height:20px;text-align:left;color:var(--rp-ui-base-almost-black)}._size-option_183l8_6:first-child{padding-top:0}._size-option_183l8_6:last-child{padding-bottom:0}._size-option_183l8_6:hover{color:var(--rp-ui-base-topaz-hover)}._size-option_183l8_6:active{color:var(--rp-ui-base-topaz-pressed)}._size-option_183l8_6._selected_183l8_32{color:var(--rp-ui-base-topaz)}._page-size-control_gnurh_1{display:flex;justify-content:flex-end;width:160px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._size-selector-button_gnurh_10{margin-right:4px;font-weight:700;font-size:11px;line-height:16px}._page-selector_rtho4_1{display:flex;gap:8px}._field-wrapper_rtho4_6,._apply-button_rtho4_10{width:90px}._active-page_14j0y_1{display:inline-block;width:124px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-align:right}._page-selector_14j0y_10{text-align:left}._page-selector-button_14j0y_14{margin-left:4px;font-weight:700;font-size:11px;line-height:16px}._bar_dfnmf_1{width:260px;height:8px;margin:4px 0;border-radius:3px;background-color:var(--rp-ui-base-e-100)}._section-with-tooltip_dfnmf_9{display:inline-block;height:16px}._section-with-tooltip_dfnmf_9:hover ._section_dfnmf_9{background-color:var(--rp-ui-base-topaz-hover)}._section-with-tooltip_dfnmf_9:active ._section_dfnmf_9{background-color:var(--rp-ui-base-topaz-pressed)}._section-with-tooltip_dfnmf_9:first-child ._section_dfnmf_9{border-radius:3px 0 0 3px}._section-with-tooltip_dfnmf_9:last-child ._section_dfnmf_9{border-radius:0 3px 3px 0}._section_dfnmf_9{position:relative;top:4px;height:8px;background-color:transparent;margin:4px 0}._section_dfnmf_9._selected_dfnmf_33{background-color:var(--rp-ui-base-topaz)}._tooltip-wrapper_dfnmf_37{width:inherit;height:16px}._tooltip_dfnmf_37{font-family:var(--rp-ui-base-font-family);font-size:11px;line-height:16px;text-align:center}._tooltip_dfnmf_37 ._tooltip-text_dfnmf_48{font-weight:400;padding-bottom:8px}._tooltip_dfnmf_37 ._page-number_dfnmf_52{font-weight:700}._section-with-tooltip_dfnmf_9,._tooltip-wrapper_dfnmf_37{position:relative;top:-4px}._page-navigator_1p2t5_1{display:flex;gap:16px}._page-buttons_1p2t5_6{display:inline-flex;gap:16px}._page-button_1p2t5_6{display:inline-flex;justify-content:center;align-items:center;width:16px;height:16px}._page-button_1p2t5_6._next_1p2t5_18{transform:rotateY(180deg)}._page-controls_thyf8_1{display:flex;flex-direction:row;align-items:center;gap:24px}._total-pages_thyf8_8{display:inline-block;width:124px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-align:left}._pagination_uykxy_1{display:flex;justify-content:space-between;align-items:center;width:100%;max-width:1200px;padding:24px 0;font-family:var(--rp-ui-base-font-family);font-weight:400;font-size:11px;line-height:16px;color:var(--rp-ui-base-almost-black)}._modal-content_qziry_1{width:100%;font-family:var(--rp-ui-base-font-family);font-weight:400;font-size:13px;line-height:20px;color:var(--rp-ui-color-text);white-space:pre-line;word-break:break-word;padding:0 0 16px}._modal-content_qziry_1._scrollable_qziry_12{width:calc(100% - 34px)}._buttons-block_1dgm4_1{white-space:nowrap}._button-container_1dgm4_5{display:inline-block;min-width:70px;margin-right:10px}._button-container_1dgm4_5:last-child{margin-right:0}._modal-footer_1dgm4_14{position:relative;display:flex;justify-content:flex-end;width:100%;margin-top:16px}._modal-footer_1dgm4_14._with-extra-node_1dgm4_21{justify-content:space-between}._size-small_1dgm4_25{flex-direction:column;align-items:stretch}._size-small_1dgm4_25 ._buttons-block_1dgm4_1{display:flex;flex-direction:column;align-items:stretch}._size-small_1dgm4_25 ._button-container_1dgm4_5{margin:0 0 10px}._size-small_1dgm4_25 ._button-container_1dgm4_5:last-child{margin-bottom:0}._modal-header_68lru_1{position:relative;font-family:var(--rp-ui-base-font-family);font-weight:400;font-size:20px;line-height:31px;color:var(--rp-ui-color-text);padding-bottom:24px}._modal-header_68lru_1._width-description_68lru_10{padding-bottom:8px}._modal-header-content_68lru_14{width:100%;padding-right:30px;box-sizing:border-box}._modal-title_68lru_20{font-family:var(--rp-ui-base-font-family-heading);flex-grow:1;vertical-align:middle;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}._close-modal-icon_68lru_29{position:absolute;top:6px;right:0;line-height:normal;cursor:pointer}._modal_f3ckb_1{position:absolute;top:0;left:0;display:block;width:100%;height:100%;text-align:center;overflow:hidden}._overlay-default_f3ckb_12{background-color:var(--rp-ui-base-overlay)}._overlay-light-cyan_f3ckb_16{background-color:var(--rp-ui-base-overlay-light-cyan)}._scrolling-content_f3ckb_20{position:fixed;width:100%;height:100%}._modal-window_f3ckb_26{position:absolute;left:50%;transform:translate(-50%);display:inline-block;margin-bottom:10px;padding:32px 40px;box-sizing:border-box;background-color:var(--rp-ui-base-bg-100);text-align:left;border-radius:16px;box-shadow:var(--rp-ui-base-shadow-secondary);opacity:1;outline:none;max-height:90%}._description_f3ckb_43{display:inline-block;width:100%;padding-bottom:24px;font-family:var(--rp-ui-base-font-family);font-weight:400;font-size:13px;line-height:20px;color:var(--rp-ui-base-almost-black)}._description_f3ckb_43._scrollable_f3ckb_53{width:calc(100% - 34px)}._size-default_f3ckb_57{width:480px}@media (max-width: 480px){._size-default_f3ckb_57{right:10px;left:10px;transform:none;width:auto}}._size-small_f3ckb_69{width:320px}@media (max-width: 320px){._size-small_f3ckb_69{right:10px;left:10px;transform:none;width:auto}}._size-large_f3ckb_81{width:720px}@media (max-width: 720px){._size-large_f3ckb_81{right:10px;left:10px;transform:none;width:auto}}._tooltip-wrapper_15goq_1{display:block;width:100%;height:fit-content;cursor:pointer}._tooltip_15goq_1{transition:opacity .3s ease;margin:4px}._tooltip_15goq_1[data-placement*=bottom]{padding-top:9px;z-index:2}._tooltip_15goq_1[data-placement*=top]{padding-bottom:9px}._tooltip_15goq_1[data-placement*=left]{padding-right:9px}._tooltip_15goq_1[data-placement*=right]{padding-left:9px}._tooltip-content_15goq_26{padding:16px;border-radius:8px;background-color:var(--rp-ui-base-almost-black-slight-light);font-family:var(--rp-ui-base-font-family);font-weight:500;font-size:11px;line-height:16px;color:var(--rp-ui-base-bg-000);word-wrap:break-word;white-space:pre-wrap}._tooltip-arrow_15goq_39{position:absolute}._tooltip-arrow_15goq_39:before,._tooltip-arrow_15goq_39:after{content:"";margin:auto;display:block;width:0;height:0;border-style:solid}._tooltip-arrow_15goq_39:after{position:absolute}._tooltip-arrow_15goq_39[data-placement*=bottom]{top:0;width:18px;height:9px}._tooltip-arrow_15goq_39[data-placement*=bottom]:before,._tooltip-arrow_15goq_39[data-placement*=bottom]:after{border-width:0 9px 9px}._tooltip-arrow_15goq_39[data-placement*=bottom]:before{border-color:transparent transparent var(--rp-ui-base-almost-black-light)}._tooltip-arrow_15goq_39[data-placement*=bottom]:after{top:0;border-color:transparent transparent var(--rp-ui-base-almost-black-light)}._tooltip-arrow_15goq_39[data-placement*=top]{bottom:0;width:18px;height:9px}._tooltip-arrow_15goq_39[data-placement*=top]:before,._tooltip-arrow_15goq_39[data-placement*=top]:after{border-width:9px 9px 0}._tooltip-arrow_15goq_39[data-placement*=top]:before{border-color:var(--rp-ui-base-almost-black-light) transparent transparent}._tooltip-arrow_15goq_39[data-placement*=top]:after{bottom:0;border-color:var(--rp-ui-base-almost-black-light) transparent transparent}._tooltip-arrow_15goq_39[data-placement*=left]{right:0;width:9px;height:18px}._tooltip-arrow_15goq_39[data-placement*=left]:before,._tooltip-arrow_15goq_39[data-placement*=left]:after{border-width:9px 0 9px 9px}._tooltip-arrow_15goq_39[data-placement*=left]:before{border-color:transparent transparent transparent var(--rp-ui-base-almost-black-light)}._tooltip-arrow_15goq_39[data-placement*=left]:after{top:0;right:0;border-color:transparent transparent transparent var(--rp-ui-base-almost-black-light)}._tooltip-arrow_15goq_39[data-placement*=right]{left:0;width:9px;height:18px}._tooltip-arrow_15goq_39[data-placement*=right]:before,._tooltip-arrow_15goq_39[data-placement*=right]:after{border-width:9px 9px 9px 0}._tooltip-arrow_15goq_39[data-placement*=right]:before{border-color:transparent var(--rp-ui-base-almost-black-light) transparent transparent}._tooltip-arrow_15goq_39[data-placement*=right]:after{top:0;left:0;border-color:transparent var(--rp-ui-base-almost-black-light) transparent transparent}._popover-wrapper_16ogt_1{display:inline-block;width:fit-content;height:fit-content;cursor:pointer}._popover_16ogt_1{display:block;position:absolute;z-index:10;font-family:var(--rp-ui-base-font-family);font-size:11px;line-height:16px;background-color:var(--rp-ui-color-bg);border-radius:8px;box-shadow:var(--rp-ui-base-shadow-secondary);padding:16px;min-height:52px;min-width:120px;max-width:fit-content;box-sizing:border-box;outline:0;width:max-content;color:var(--rp-ui-color-text)}._title_16ogt_28{font-family:var(--rp-ui-base-font-family-heading);font-weight:700;font-size:13px;line-height:20px;margin-bottom:8px}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reportportal/ui-kit",
3
- "version": "0.0.1-alpha.26",
3
+ "version": "0.0.1-alpha.27",
4
4
  "description": "The UI-kit library for ReportPortal Design System.",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -33,14 +33,14 @@
33
33
  "react-datepicker": "^7.3.0"
34
34
  },
35
35
  "devDependencies": {
36
- "@storybook/addon-essentials": "^7.2.0",
37
- "@storybook/addon-interactions": "^7.2.0",
38
- "@storybook/addon-links": "^7.2.0",
39
- "@storybook/addon-onboarding": "^1.0.8",
40
- "@storybook/blocks": "^7.2.0",
41
- "@storybook/react": "^7.2.0",
42
- "@storybook/react-vite": "^7.2.0",
43
- "@storybook/testing-library": "^0.2.0",
36
+ "@storybook/addon-essentials": "^8.2.9",
37
+ "@storybook/addon-interactions": "^8.2.9",
38
+ "@storybook/addon-links": "^8.2.9",
39
+ "@storybook/addon-onboarding": "^8.2.9",
40
+ "@storybook/blocks": "^8.2.9",
41
+ "@storybook/react": "^8.2.9",
42
+ "@storybook/react-vite": "^8.2.9",
43
+ "@storybook/testing-library": "^0.2.2",
44
44
  "@types/node": "^20.4.5",
45
45
  "@types/react": "^18.3.3",
46
46
  "@types/react-datepicker": "^6.2.0",
@@ -58,14 +58,14 @@
58
58
  "eslint-plugin-react": "^7.33.1",
59
59
  "eslint-plugin-react-hooks": "^4.6.0",
60
60
  "eslint-plugin-react-refresh": "^0.4.3",
61
- "eslint-plugin-storybook": "^0.6.13",
61
+ "eslint-plugin-storybook": "^0.8.0",
62
62
  "husky": "^8.0.3",
63
63
  "lint-staged": "^13.2.3",
64
64
  "prettier": "^3.0.1",
65
65
  "react": "18.2.0",
66
66
  "react-dom": "18.2.0",
67
67
  "sass": "^1.64.1",
68
- "storybook": "^7.2.2",
68
+ "storybook": "^8.2.9",
69
69
  "typescript": "^5.0.2",
70
70
  "vite": "^4.4.5",
71
71
  "vite-plugin-dts": "^3.4.0",
@@ -1,102 +0,0 @@
1
- import { jsx as t, jsxs as a, Fragment as f } from "react/jsx-runtime";
2
- import * as o from "react";
3
- import { forwardRef as R } from "react";
4
- import { c as j } from "./bind-06a7ff84.js";
5
- import "./baseIconButton-b6adc843.js";
6
- const y = (n) => /* @__PURE__ */ o.createElement("svg", { width: 17, height: 17, viewBox: "0 0 17 17", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...n }, /* @__PURE__ */ o.createElement("rect", { width: 16.2089, height: 16.1568, rx: 8.07842, fill: "#A2AAB5" }), /* @__PURE__ */ o.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M5.14768 5.14645C4.95077 5.34171 4.95077 5.65829 5.14768 5.85355L7.49578 8.18198L5.35655 10.3033C5.15963 10.4986 5.15963 10.8151 5.35655 11.0104C5.55346 11.2057 5.87271 11.2057 6.06962 11.0104L8.20886 8.88909L10.1392 10.8033C10.3361 10.9986 10.6554 10.9986 10.8523 10.8033C11.0492 10.608 11.0492 10.2915 10.8523 10.0962L8.92193 8.18198L11.0612 6.06065C11.2581 5.86539 11.2581 5.54881 11.0612 5.35355C10.8643 5.15828 10.545 5.15828 10.3481 5.35355L8.20886 7.47487L5.86076 5.14645C5.66385 4.95118 5.34459 4.95118 5.14768 5.14645Z", fill: "white" })), B = "_label_4wu1a_18", S = "_asterisk_4wu1a_27", M = "_disabled_4wu1a_33", Z = "_field_4wu1a_38", z = "_error_4wu1a_53", D = "_touched_4wu1a_53", G = "_placeholder_4wu1a_64", H = "_input_4wu1a_71", J = "_icon_4wu1a_1", K = "_text_4wu1a_163", O = {
7
- "icon-container": "_icon-container_4wu1a_1",
8
- "icon-container-end": "_icon-container-end_4wu1a_1",
9
- "icon-container-start": "_icon-container-start_4wu1a_1",
10
- label: B,
11
- asterisk: S,
12
- disabled: M,
13
- field: Z,
14
- error: z,
15
- touched: D,
16
- placeholder: G,
17
- "default-width": "_default-width_4wu1a_67",
18
- "input-container": "_input-container_4wu1a_71",
19
- input: H,
20
- icon: J,
21
- "clear-icon": "_clear-icon_4wu1a_117",
22
- "additional-content": "_additional-content_4wu1a_156",
23
- text: K,
24
- "error-text": "_error-text_4wu1a_171",
25
- "help-text": "_help-text_4wu1a_175"
26
- }, e = j.bind(O), V = R(
27
- ({
28
- value: n = "",
29
- className: x,
30
- error: s,
31
- placeholder: r,
32
- disabled: c = !1,
33
- onChange: N,
34
- touched: _ = !1,
35
- title: C,
36
- label: i,
37
- helpText: l,
38
- defaultWidth: g = !0,
39
- startIcon: d,
40
- endIcon: h,
41
- clearable: L = !1,
42
- onClear: p,
43
- isRequired: u = !1,
44
- hasDoubleMessage: k = !1,
45
- type: v = "text",
46
- displayError: E = !0,
47
- ...b
48
- }, A) => {
49
- const F = () => {
50
- p && p(n);
51
- }, m = E && s && _, w = /* @__PURE__ */ t("span", { className: e("text", "help-text"), children: l });
52
- return /* @__PURE__ */ a(f, { children: [
53
- i && /* @__PURE__ */ a("span", { className: e("label", { disabled: c }), children: [
54
- i,
55
- u && /* @__PURE__ */ t("span", { className: e("asterisk"), children: "*" })
56
- ] }),
57
- /* @__PURE__ */ a(
58
- "div",
59
- {
60
- className: e("field", x, {
61
- error: s,
62
- touched: _,
63
- disabled: c,
64
- "default-width": g
65
- }),
66
- title: C,
67
- children: [
68
- d && /* @__PURE__ */ t("span", { className: e("icon-container-start"), children: /* @__PURE__ */ t("span", { className: e("icon"), children: d }) }),
69
- /* @__PURE__ */ a("span", { className: e("input-container"), children: [
70
- /* @__PURE__ */ t(
71
- "input",
72
- {
73
- ref: A,
74
- type: v,
75
- className: e("input"),
76
- value: n,
77
- disabled: c,
78
- onChange: N,
79
- ...b
80
- }
81
- ),
82
- r && !n && /* @__PURE__ */ a("span", { className: e("placeholder"), children: [
83
- r,
84
- u && !i && /* @__PURE__ */ t("span", { className: e("asterisk") })
85
- ] })
86
- ] }),
87
- h && /* @__PURE__ */ t("span", { className: e("icon-container-end"), children: /* @__PURE__ */ t("span", { className: e("icon"), children: h }) }),
88
- L && n.length > 0 && /* @__PURE__ */ t("span", { className: e("icon-container-end"), children: /* @__PURE__ */ t("button", { type: "button", className: e("clear-icon", { disabled: c }), onClick: F, children: /* @__PURE__ */ t(y, {}) }) })
89
- ]
90
- }
91
- ),
92
- (m || l) && /* @__PURE__ */ t("div", { className: e("additional-content", { disabled: c }), children: m ? /* @__PURE__ */ a(f, { children: [
93
- /* @__PURE__ */ t("span", { className: e("text", "error-text"), children: s }),
94
- k && w
95
- ] }) : l && w })
96
- ] });
97
- }
98
- );
99
- export {
100
- V as F,
101
- y as S
102
- };