@reportportal/ui-kit 0.0.1-alpha.79 → 0.0.1-alpha.80
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/button-2baad814.js +66 -0
- package/dist/button.js +1 -1
- package/dist/components/button/button.d.ts +1 -1
- package/dist/{datePicker-4a2968df.js → datePicker-d3709c9e.js} +1 -1
- package/dist/datePicker.js +4 -4
- package/dist/{fieldText-0c853cee.js → fieldText-f38be7ba.js} +1 -1
- package/dist/fieldText.js +2 -2
- package/dist/index.js +4 -4
- package/dist/modal.js +1 -1
- package/dist/{pagination-1fa6a7de.js → pagination-8cf70249.js} +2 -2
- package/dist/pagination.js +3 -3
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/button-33bc880f.js +0 -64
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import { jsxs as w, jsx as g } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef as p } from "react";
|
|
3
|
+
import { c as l } from "./bind-06a7ff84.js";
|
|
4
|
+
const x = "_button_10o5b_1", u = "_primary_10o5b_18", f = "_disabled_10o5b_23", y = "_ghost_10o5b_38", N = "_danger_10o5b_59", B = "_text_10o5b_79", $ = "_icon_10o5b_182", j = {
|
|
5
|
+
button: x,
|
|
6
|
+
primary: u,
|
|
7
|
+
disabled: f,
|
|
8
|
+
ghost: y,
|
|
9
|
+
danger: N,
|
|
10
|
+
text: B,
|
|
11
|
+
"ghost-danger": "_ghost-danger_10o5b_111",
|
|
12
|
+
"text-danger": "_text-danger_10o5b_131",
|
|
13
|
+
"width-min-width": "_width-min-width_10o5b_164",
|
|
14
|
+
"width-content": "_width-content_10o5b_168",
|
|
15
|
+
"width-wide-content": "_width-wide-content_10o5b_172",
|
|
16
|
+
"width-parent": "_width-parent_10o5b_177",
|
|
17
|
+
icon: $,
|
|
18
|
+
"icon-start": "_icon-start_10o5b_188",
|
|
19
|
+
"icon-end": "_icon-end_10o5b_192"
|
|
20
|
+
}, s = l.bind(j), v = p(
|
|
21
|
+
({
|
|
22
|
+
variant: i = "primary",
|
|
23
|
+
icon: t,
|
|
24
|
+
iconPlace: o = "start",
|
|
25
|
+
adjustWidthOn: n = "min-width",
|
|
26
|
+
type: e = "button",
|
|
27
|
+
children: r,
|
|
28
|
+
disabled: _ = !1,
|
|
29
|
+
onClick: c,
|
|
30
|
+
title: d,
|
|
31
|
+
className: a,
|
|
32
|
+
...b
|
|
33
|
+
}, h) => {
|
|
34
|
+
const m = s("button", i, a, {
|
|
35
|
+
disabled: _,
|
|
36
|
+
[`width-${n}`]: n
|
|
37
|
+
});
|
|
38
|
+
return /* @__PURE__ */ w(
|
|
39
|
+
"button",
|
|
40
|
+
{
|
|
41
|
+
ref: h,
|
|
42
|
+
type: e,
|
|
43
|
+
disabled: _,
|
|
44
|
+
className: m,
|
|
45
|
+
onClick: c,
|
|
46
|
+
title: d,
|
|
47
|
+
...b,
|
|
48
|
+
children: [
|
|
49
|
+
t && /* @__PURE__ */ g(
|
|
50
|
+
"i",
|
|
51
|
+
{
|
|
52
|
+
className: s("icon", {
|
|
53
|
+
[`icon-${o}`]: o
|
|
54
|
+
}),
|
|
55
|
+
children: t
|
|
56
|
+
}
|
|
57
|
+
),
|
|
58
|
+
r
|
|
59
|
+
]
|
|
60
|
+
}
|
|
61
|
+
);
|
|
62
|
+
}
|
|
63
|
+
);
|
|
64
|
+
export {
|
|
65
|
+
v as B
|
|
66
|
+
};
|
package/dist/button.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ReactNode, ComponentPropsWithRef, MouseEventHandler } from 'react';
|
|
2
2
|
|
|
3
3
|
type IconPlace = 'start' | 'end';
|
|
4
|
-
type ButtonVariant = 'primary' | 'ghost' | 'danger' | 'text';
|
|
4
|
+
type ButtonVariant = 'primary' | 'ghost' | 'danger' | 'text' | 'ghost-danger' | 'text-danger';
|
|
5
5
|
type ButtonWidth = 'content' | 'wide-content' | 'parent' | 'min-width';
|
|
6
6
|
export interface ButtonProps extends ComponentPropsWithRef<'button'> {
|
|
7
7
|
children?: ReactNode;
|
|
@@ -2,7 +2,7 @@ import { jsxs as x, Fragment as U, jsx as t } from "react/jsx-runtime";
|
|
|
2
2
|
import $ from "react-datepicker/dist/es/index.js";
|
|
3
3
|
import { c as R } from "./bind-06a7ff84.js";
|
|
4
4
|
import { useMemo as P, useRef as B } from "react";
|
|
5
|
-
import { F as D } from "./fieldText-
|
|
5
|
+
import { F as D } from "./fieldText-f38be7ba.js";
|
|
6
6
|
import { a as E, S as j } from "./calendarArrow-3e1339ea.js";
|
|
7
7
|
import { D as T } from "./dropdown-9427f821.js";
|
|
8
8
|
import { registerLocale as G } from "react-datepicker";
|
package/dist/datePicker.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { D as t } from "./datePicker-
|
|
2
|
-
import { r as v } from "./datePicker-
|
|
1
|
+
import { D as t } from "./datePicker-d3709c9e.js";
|
|
2
|
+
import { r as v } from "./datePicker-d3709c9e.js";
|
|
3
3
|
import "react/jsx-runtime";
|
|
4
4
|
import "react-datepicker/dist/es/index.js";
|
|
5
5
|
import "./bind-06a7ff84.js";
|
|
6
6
|
import "react";
|
|
7
|
-
import "./fieldText-
|
|
7
|
+
import "./fieldText-f38be7ba.js";
|
|
8
8
|
import "./openEye-7b9cf080.js";
|
|
9
|
-
import "./button-
|
|
9
|
+
import "./button-2baad814.js";
|
|
10
10
|
import "./spinLoader-c4a53718.js";
|
|
11
11
|
import "./maxValueDisplay-9be01a75.js";
|
|
12
12
|
import "./fieldLabel.js";
|
|
@@ -2,7 +2,7 @@ import { jsx as e, jsxs as o, Fragment as v } from "react/jsx-runtime";
|
|
|
2
2
|
import { forwardRef as W, useRef as X, useId as Y, useState as E } from "react";
|
|
3
3
|
import { c as Z } from "./bind-06a7ff84.js";
|
|
4
4
|
import { b as q, a as ee, S as ne } from "./openEye-7b9cf080.js";
|
|
5
|
-
import { B as te } from "./button-
|
|
5
|
+
import { B as te } from "./button-2baad814.js";
|
|
6
6
|
import { S as se } from "./spinLoader-c4a53718.js";
|
|
7
7
|
import { M as oe } from "./maxValueDisplay-9be01a75.js";
|
|
8
8
|
import { FieldLabel as ae } from "./fieldLabel.js";
|
package/dist/fieldText.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { F as o } from "./fieldText-
|
|
1
|
+
import { F as o } from "./fieldText-f38be7ba.js";
|
|
2
2
|
import "react/jsx-runtime";
|
|
3
3
|
import "react";
|
|
4
4
|
import "./bind-06a7ff84.js";
|
|
5
5
|
import "./openEye-7b9cf080.js";
|
|
6
|
-
import "./button-
|
|
6
|
+
import "./button-2baad814.js";
|
|
7
7
|
import "./spinLoader-c4a53718.js";
|
|
8
8
|
import "./maxValueDisplay-9be01a75.js";
|
|
9
9
|
import "./fieldLabel.js";
|
package/dist/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { B as u } from "./button-
|
|
1
|
+
import { B as u } from "./button-2baad814.js";
|
|
2
2
|
import { B as C } from "./baseIconButton-251479f7.js";
|
|
3
3
|
import { C as g } from "./checkbox-aa91985d.js";
|
|
4
4
|
import { S as y } from "./systemMessage-924fdaa6.js";
|
|
5
|
-
import { F as b } from "./fieldText-
|
|
5
|
+
import { F as b } from "./fieldText-f38be7ba.js";
|
|
6
6
|
import { T as B } from "./themeProvider-46c2be7b.js";
|
|
7
7
|
import { Modal as v } from "./modal.js";
|
|
8
8
|
import { D as M } from "./dropdown-9427f821.js";
|
|
@@ -14,9 +14,9 @@ import { F as J } from "./fieldTextFlex-9e616f66.js";
|
|
|
14
14
|
import { R as j } from "./radio-62546efa.js";
|
|
15
15
|
import { Tooltip as G } from "./tooltip.js";
|
|
16
16
|
import { Popover as Q } from "./popover.js";
|
|
17
|
-
import { P as X } from "./pagination-
|
|
17
|
+
import { P as X } from "./pagination-8cf70249.js";
|
|
18
18
|
import { T as Z } from "./table-20aa2cdf.js";
|
|
19
|
-
import { D as $ } from "./datePicker-
|
|
19
|
+
import { D as $ } from "./datePicker-d3709c9e.js";
|
|
20
20
|
import "react-datepicker";
|
|
21
21
|
import { SystemAlert as ro } from "./systemAlert.js";
|
|
22
22
|
import { AddCsvIcon as no, AddImageIcon as to, AddJarIcon as ao, BreadcrumbsTreeIcon as co, CheckmarkIcon as po, ChevronDownDropdownIcon as io, ChevronRightBreadcrumbsIcon as mo, CopyIcon as Io, DeleteIcon as so, DragAndDropIcon as xo, DragNDropIcon as fo, DurationIcon as lo, EditIcon as So, ExportIcon as uo, ExternalLinkIcon as Po, FilterFilledIcon as Co, FilterOutlineIcon as Do, FlagIcon as go, HideIcon as Fo, MaximizeIcon as yo, MeatballMenuIcon as To, MoveToFolderIcon as bo, PriorityBlockerIcon as ho, PriorityCriticalIcon as Bo, PriorityHighIcon as wo, PriorityLowIcon as vo, PriorityMediumIcon as Ao, PriorityUnspecifiedIcon as Mo, RefreshIcon as ko, RerunIcon as Eo, SearchIcon as Ro, SortIcon as Lo, StatusSuccessIcon as Ho, WarningIcon as No } from "./icons.js";
|
package/dist/modal.js
CHANGED
|
@@ -5,7 +5,7 @@ import { AnimatePresence as P, motion as B } from "framer-motion";
|
|
|
5
5
|
import { c as u } from "./bind-06a7ff84.js";
|
|
6
6
|
import { u as Y } from "./useOnClickOutside-c332f7d3.js";
|
|
7
7
|
import { K as U } from "./keyCodes-f63c0e11.js";
|
|
8
|
-
import { B as O } from "./button-
|
|
8
|
+
import { B as O } from "./button-2baad814.js";
|
|
9
9
|
import { B as X } from "./baseIconButton-251479f7.js";
|
|
10
10
|
import { S as J } from "./close-4d480ef7.js";
|
|
11
11
|
const Q = () => {
|
|
@@ -2,8 +2,8 @@ import { jsxs as p, jsx as t } from "react/jsx-runtime";
|
|
|
2
2
|
import { c as g } from "./bind-06a7ff84.js";
|
|
3
3
|
import { useState as b } from "react";
|
|
4
4
|
import { Popover as O } from "./popover.js";
|
|
5
|
-
import { B as x } from "./button-
|
|
6
|
-
import { F as A } from "./fieldText-
|
|
5
|
+
import { B as x } from "./button-2baad814.js";
|
|
6
|
+
import { F as A } from "./fieldText-f38be7ba.js";
|
|
7
7
|
import { B as h } from "./baseIconButton-251479f7.js";
|
|
8
8
|
import { S as $, a as T } from "./prevPage-87faf576.js";
|
|
9
9
|
import { Tooltip as B } from "./tooltip.js";
|
package/dist/pagination.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { P as t } from "./pagination-
|
|
1
|
+
import { P as t } from "./pagination-8cf70249.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
|
-
import "./button-
|
|
8
|
-
import "./fieldText-
|
|
7
|
+
import "./button-2baad814.js";
|
|
8
|
+
import "./fieldText-f38be7ba.js";
|
|
9
9
|
import "./openEye-7b9cf080.js";
|
|
10
10
|
import "./spinLoader-c4a53718.js";
|
|
11
11
|
import "./maxValueDisplay-9be01a75.js";
|
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
._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)}}._text-area_1pqer_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:var(--rp-ui-base-fw-regular);color:var(--rp-ui-base-almost-black);resize:vertical}._text-area_1pqer_1:hover{border-color:var(--rp-ui-base-e-300)}._text-area_1pqer_1:focus:not(._error_1pqer_19._touched_1pqer_19){border:1px solid var(--rp-ui-base-topaz-hover);box-shadow:0 0 0 1px var(--rp-ui-base-topaz-hover)}._text-area_1pqer_1._error_1pqer_19._touched_1pqer_19{border:1px solid var(--rp-ui-base-error)}._text-area_1pqer_1:focus:not(._error_1pqer_19._touched_1pqer_19)+._max-length-display_1pqer_26,._text-area_1pqer_1._error_1pqer_19._touched_1pqer_19+._max-length-display_1pqer_26{display:block}._text-area_1pqer_1::placeholder{color:var(--rp-ui-base-e-300)}._text-area_1pqer_1:has(~._max-length-display_1pqer_26){padding-bottom:24px}._additional-content_1pqer_36 ._error-text_1pqer_36{font-size:11px;line-height:16px;display:block;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);color:var(--rp-ui-base-error)}._additional-content_1pqer_36 ._help-text_1pqer_44{font-size:11px;line-height:16px;display:block;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);color:var(--rp-ui-base-e-300)}._max-length-display_1pqer_26{font-size:11px;line-height:16px;position:absolute;margin-top:-29px;display:none;padding-left:12px;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);color:var(--rp-ui-base-e-300)}._disabled_1pqer_65{opacity:.3;pointer-events:none}._icon-container_1xyy3_1,._icon-container-end_1xyy3_1,._icon-container-start_1xyy3_1{display:flex;justify-content:center;align-items:center;flex-shrink:0;width:22px;height:22px}._icon-container-start_1xyy3_1{margin-right:4px}._collapsed_1xyy3_13 ._icon-container-start_1xyy3_1{cursor:pointer}._icon-container-end_1xyy3_1{margin-left:4px}._field_1xyy3_21{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_1xyy3_21._default-width_1xyy3_33{width:240px}._field_1xyy3_21._collapsed_1xyy3_13{width:22px;border-width:0;overflow:hidden;padding:0;background-color:transparent}._field_1xyy3_21._collapsed_1xyy3_13:hover{background-color:transparent}._field_1xyy3_21._collapsed_1xyy3_13 ._placeholder_1xyy3_46{display:none}._field_1xyy3_21:hover:not(._disabled_1xyy3_49){border-color:var(--rp-ui-color-field-border-3-hover)}._field_1xyy3_21:focus-within:not(._error_1xyy3_52._touched_1xyy3_52){padding:6px 11px;border:2px solid var(--rp-ui-color-primary-focused)}._field_1xyy3_21._error_1xyy3_52._touched_1xyy3_52{border-color:var(--rp-ui-base-error)}._field_1xyy3_21:focus-within:not(._error_1xyy3_52._touched_1xyy3_52) ._max-length-display_1xyy3_59,._field_1xyy3_21._error_1xyy3_52._touched_1xyy3_52 ._max-length-display_1xyy3_59{display:block}._field_1xyy3_21._disabled_1xyy3_49{pointer-events:none;background-color:var(--rp-ui-base-bg-100)}._field_1xyy3_21._disabled_1xyy3_49 ._placeholder_1xyy3_46{color:var(--rp-ui-base-e-300)}._input-container_1xyy3_70{position:relative;width:100%}._input-container_1xyy3_70._type-password_1xyy3_74 ._input_1xyy3_70{width:calc(100% - 30px);text-overflow:unset}._input-container_1xyy3_70._type-password_1xyy3_74 ._eye-icon_1xyy3_78{position:absolute;z-index:2;top:4px;right:-2px;height:16px;width:16px}._input-container_1xyy3_70._type-password_1xyy3_74 ._eye-icon_1xyy3_78 svg path{fill:var(--rp-ui-color-field-icon)}._input_1xyy3_70{font-size:13px;line-height:20px;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);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_1xyy3_70:focus{outline:none}._input_1xyy3_70:disabled{color:var(--rp-ui-base-e-300)}._placeholder_1xyy3_46{font-size:13px;line-height:20px;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);color:var(--rp-ui-color-field-placeholder-3);position:absolute;top:2px;left:0;pointer-events:none;white-space:nowrap}._icon_1xyy3_1,._start-icon_1xyy3_124,._clear-icon_1xyy3_125{display:inline-block;width:16px;height:16px}._start-icon_1xyy3_124,._clear-icon_1xyy3_125{background:none;border:none;padding:0;font:inherit;outline:inherit;cursor:pointer}._start-icon_1xyy3_124 svg>path,._clear-icon_1xyy3_125 svg>path{fill:var(--rp-ui-color-field-icon)}._start-icon_1xyy3_124._disabled_1xyy3_49,._clear-icon_1xyy3_125._disabled_1xyy3_49{pointer-events:none}._start-icon_1xyy3_124:hover svg>path,._clear-icon_1xyy3_125:hover svg>path{fill:var(--rp-ui-color-field-hover-2)}._start-icon_1xyy3_124:focus svg>path,._clear-icon_1xyy3_125:focus svg>path{fill:var(--rp-ui-color-primary-focused)}._start-icon_1xyy3_124:active svg>path,._clear-icon_1xyy3_125:active svg>path{fill:var(--rp-ui-color-primary-pressed)}._additional-content_1xyy3_161{margin-top:4px}._additional-content_1xyy3_161._disabled_1xyy3_49{pointer-events:none}._text_1xyy3_168,._max-length-display_1xyy3_59{font-size:11px;line-height:16px;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular)}._text_1xyy3_168{display:block}._max-length-display_1xyy3_59{display:none;margin-left:15px;align-self:end;color:var(--rp-ui-base-e-300);word-break:initial}._error-text_1xyy3_188{color:var(--rp-ui-base-error)}._help-text_1xyy3_192{color:var(--rp-ui-base-dark-e-300)}._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)}._button_108em_1{display:inline-flex;justify-content:center;align-items:center;height:36px;padding:7px 16px;margin:0;outline:none;border-radius:3px;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-medium);font-size:13px;line-height:20px;cursor:pointer;box-sizing:border-box}._primary_108em_18{border:1px solid var(--rp-ui-color-primary);background-color:var(--rp-ui-color-primary);color:var(--rp-ui-base-bg-000)}._primary_108em_18:hover:not(._disabled_108em_23){border:1px solid var(--rp-ui-color-primary-hover);background-color:var(--rp-ui-color-primary-hover)}._primary_108em_18:active:not(._disabled_108em_23){border:1px solid var(--rp-ui-color-primary-pressed);background-color:var(--rp-ui-color-primary-pressed)}._primary_108em_18:focus:not(._disabled_108em_23,:active){border:2px solid var(--rp-ui-color-primary-focused)}._primary_108em_18 svg *{fill:var(--rp-ui-base-bg-000)}._ghost_108em_38{border:1px solid var(--rp-ui-color-primary);background-color:transparent;color:var(--rp-ui-color-primary-text)}._ghost_108em_38:hover:not(._disabled_108em_23){border:1px solid var(--rp-ui-base-dark-topaz-hover);color:var(--rp-ui-base-dark-topaz-hover)}._ghost_108em_38:active:not(._disabled_108em_23){border:1px solid var(--rp-ui-color-primary-pressed);color:var(--rp-ui-color-primary-pressed)}._ghost_108em_38:focus:not(._disabled_108em_23,:active){border:2px solid var(--rp-ui-color-primary-focused);color:var(--rp-ui-color-primary-focused)}._ghost_108em_38 svg *{fill:var(--rp-ui-color-primary-text)}._danger_108em_59{border:1px solid var(--rp-ui-color-error);background-color:var(--rp-ui-color-error);color:var(--rp-ui-base-bg-000)}._danger_108em_59:hover:not(._disabled_108em_23){opacity:.9;background-color:var(--rp-ui-color-error-hover)}._danger_108em_59:active:not(._disabled_108em_23){border:1px solid var(--rp-ui-color-error-pressed);background-color:var(--rp-ui-color-error-pressed)}._danger_108em_59:focus:not(._disabled_108em_23,:active){border:2px solid var(--rp-ui-color-error-focused)}._danger_108em_59 svg *{fill:var(--rp-ui-base-bg-000)}._text_108em_79{min-width:auto;height:auto;border:0;padding:0;background:none;line-height:22px;color:var(--rp-ui-color-primary-text)}._text_108em_79:hover:not(._disabled_108em_23){color:var(--rp-ui-color-primary-hover)}._text_108em_79:hover:not(._disabled_108em_23) svg *{fill:var(--rp-ui-color-primary-hover)}._text_108em_79:active:not(._disabled_108em_23){color:var(--rp-ui-color-primary-pressed)}._text_108em_79:active:not(._disabled_108em_23) svg *{fill:var(--rp-ui-color-primary-pressed)}._text_108em_79:focus:not(._disabled_108em_23,:active){color:var(--rp-ui-color-primary-focused)}._text_108em_79:focus:not(._disabled_108em_23,:active) svg *{fill:var(--rp-ui-color-primary-focused)}._text_108em_79 svg *{fill:var(--rp-ui-color-primary-text)}._disabled_108em_23{opacity:var(--rp-ui-opacity-default);cursor:default}._width-min-width_108em_115{min-width:120px}._width-content_108em_119{min-width:auto}._width-wide-content_108em_123{padding:9px 47px 7px;margin:0}._width-parent_108em_128{display:flex;width:100%}._icon_108em_133{display:inline-block;width:16px;height:16px}._icon-start_108em_139{margin:auto 8px auto 0}._icon-end_108em_143{margin:auto 0 auto 8px;order:1}._radio-button_1fetm_1{display:flex;align-items:center;height:100%;outline:none;cursor:pointer;padding-bottom:4px}._radio-button_1fetm_1._disabled_1fetm_9{cursor:default}._radio-button_1fetm_1._disabled_1fetm_9 ._children-container_1fetm_12{color:var(--rp-ui-base-e-300)}._radio-button_1fetm_1._disabled_1fetm_9 ._toggler_1fetm_15{opacity:.3}._radio-button_1fetm_1._disabled_1fetm_9 ._toggler_1fetm_15:after{background-color:transparent}._radio-button_1fetm_1._disabled_1fetm_9 ._toggler_1fetm_15._checked_1fetm_21:after{background-color:var(--rp-ui-base-topaz-pressed)}._radio-button_1fetm_1:focus-visible:not(._disabled_1fetm_9) ._toggler_1fetm_15{border:2px solid var(--rp-ui-color-primary-focused)}._input_1fetm_28{display:none}._toggler_1fetm_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_1fetm_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_1fetm_15:hover:not(._disabled_1fetm_9){border-color:var(--rp-ui-color-field-border-2-hover)}._toggler_1fetm_15:hover:not(._disabled_1fetm_9):after{background-color:var(--rp-ui-color-primary-hover)}._toggler_1fetm_15._checked_1fetm_21:after,._toggler_1fetm_15._disabled_1fetm_9:after{transform:scale(1);opacity:1}._children-container_1fetm_12{display:inline-block;overflow:hidden;max-width:100%;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-medium);font-size:13px;line-height:20px;word-break:break-all;text-overflow:ellipsis;color:var(--rp-ui-color-text)}._children-container_1fetm_12 a{text-decoration:none;color:var(--rp-ui-base-topaz)}._children-container_1fetm_12 a:focus,._children-container_1fetm_12 a:focus-visible{outline:none;color:var(--rp-ui-base-topaz-focused);text-decoration:underline}._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)}}._system-message_vll7q_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_vll7q_1 ._stripes-info_vll7q_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_vll7q_1 ._stripes-warning_vll7q_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_vll7q_1 ._stripes-error_vll7q_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_vll7q_1 ._text-container_vll7q_27{padding:12px 16px 16px}._system-message_vll7q_1 ._text-container_vll7q_27 ._message-header-info_vll7q_30{font-size:15px;line-height:24px;font-weight:var(--rp-ui-base-fw-medium);color:var(--rp-ui-base-e-400);text-transform:capitalize;margin-bottom:8px}._system-message_vll7q_1 ._text-container_vll7q_27 ._message-header-warning_vll7q_38{font-size:15px;line-height:24px;font-weight:var(--rp-ui-base-fw-medium);color:var(--rp-ui-base-sm-warning);text-transform:capitalize;margin-bottom:8px}._system-message_vll7q_1 ._text-container_vll7q_27 ._message-header-error_vll7q_46{font-size:15px;line-height:24px;font-weight:var(--rp-ui-base-fw-medium);color:var(--rp-ui-base-sm-error);text-transform:capitalize;margin-bottom:8px}._system-message_vll7q_1 ._text-container_vll7q_27 ._children_vll7q_54{text-indent:1px;color:var(--rp-ui-color-text);font-weight:var(--rp-ui-base-fw-bold);font-size:13px;line-height:20px}._system-message_vll7q_1 ._text-container_vll7q_27 p{margin-top:4px;max-width:780px;color:var(--rp-ui-base-e-400);font-weight:var(--rp-ui-base-fw-regular);font-size:12px;line-height:18px}._content-width_vll7q_70{max-width:max-content}._checkbox_1tbt5_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:var(--rp-ui-base-fw-medium);font-size:13px;line-height:20px}._checkbox_1tbt5_1 ._disabled_1tbt5_11{opacity:var(--rp-ui-opacity-default);pointer-events:none}._input_1tbt5_16{position:absolute;opacity:0;top:0;left:0}._control_1tbt5_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_1tbt5_16:checked+._control_1tbt5_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_1tbt5_16:hover+._control_1tbt5_23{border-color:var(--rp-ui-color-field-hover-2)}._input_1tbt5_16:active:not(:disabled)+._control_1tbt5_23{border:2px solid var(--rp-ui-color-primary-focused)}._input_1tbt5_16:checked:hover+._control_1tbt5_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_1tbt5_16:checked:active:not(:disabled)+._control_1tbt5_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_1tbt5_16:disabled+._control_1tbt5_23{border-color:var(--rp-ui-color-disabled)}._input_1tbt5_16:checked:disabled+._control_1tbt5_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_1tbt5_16:focus+._control_1tbt5_23{border:2px solid var(--rp-ui-color-primary-focused)}._input_1tbt5_16._partially-checked_1tbt5_76:not(:checked)+._control_1tbt5_23{border-color:var(--rp-ui-color-field-border);background-repeat:no-repeat;background-position:center;position:relative}._input_1tbt5_16._partially-checked_1tbt5_76:not(:checked)+._control_1tbt5_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_1tbt5_16._partially-checked_1tbt5_76:not(:checked):hover+._control_1tbt5_23{border-color:var(--rp-ui-color-field-border-2-hover);background-repeat:no-repeat;background-position:center;position:relative}._input_1tbt5_16._partially-checked_1tbt5_76:not(:checked):hover+._control_1tbt5_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_1tbt5_16._partially-checked_1tbt5_76:not(:checked):active:not(:disabled)+._control_1tbt5_23{border-color:var(--rp-ui-color-primary-focused);background-repeat:no-repeat;background-position:center;position:relative}._input_1tbt5_16._partially-checked_1tbt5_76:not(:checked):active:not(:disabled)+._control_1tbt5_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_1tbt5_16._partially-checked_1tbt5_76:not(:checked):disabled+._control_1tbt5_23{border-color:var(--rp-ui-color-field-borderd);background-repeat:no-repeat;background-position:center;position:relative}._input_1tbt5_16._partially-checked_1tbt5_76:not(:checked):disabled+._control_1tbt5_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_1tbt5_149{cursor:pointer}._children_1tbt5_149 a{text-decoration:none;color:var(--rp-ui-color-primary)}._children_1tbt5_149 a:focus,._children_1tbt5_149 a:focus-visible{outline:none;color:var(--rp-ui-color-primary-focused);text-decoration:underline}._toggle_1c7gt_1{position:relative;display:inline-flex;align-items:center;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);font-size:13px;line-height:20px;color:var(--rp-ui-base-almost-black);cursor:pointer;width:32px}._children-container_1c7gt_14{margin-left:40px}._children-container_1c7gt_14 a{text-decoration:none;color:var(--rp-ui-base-topaz)}._children-container_1c7gt_14 a:focus,._children-container_1c7gt_14 a:focus-visible{outline:none;color:var(--rp-ui-base-topaz-focused);text-decoration:underline}._slider_1c7gt_27{background-color:var(--rp-ui-base-e-300);cursor:pointer;position:absolute;transition:.4s;border-radius:10px;width:32px;height:20px}._slider_1c7gt_27:before{position:absolute;top:2px;left:2px;content:"";width:16px;height:16px;background-color:var(--rp-ui-base-bg-000);transition:.4s}._round_1c7gt_47:before{border-radius:50%}._input_1c7gt_51{position:absolute;opacity:0;top:0;left:0}._input_1c7gt_51:disabled+._slider_1c7gt_27{background-color:var(--rp-ui-base-e-200);cursor:default}._input_1c7gt_51:focus-visible{outline:none}._input_1c7gt_51:focus:not(:disabled):after,._input_1c7gt_51:focus-visible:not(:disabled)+._slider_1c7gt_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_1c7gt_51:checked+._slider_1c7gt_27{background-color:var(--rp-ui-base-topaz)}._input_1c7gt_51:checked+._slider_1c7gt_27:before{transform:translate(12px)}._input_1c7gt_51:hover:not(:disabled)+._slider_1c7gt_27{background-color:var(--rp-ui-base-e-400)}._input_1c7gt_51:checked:hover+._slider_1c7gt_27{background-color:var(--rp-ui-base-topaz-hover)}._input_1c7gt_51:checked:disabled+._slider_1c7gt_27{background-color:var(--rp-ui-base-topaz);cursor:default}._disabled_1c7gt_92{opacity:.3;cursor:default}._field-number_1wxs7_1{position:relative;display:inline-flex;flex-direction:column}._field-number_1wxs7_1._disabled_1wxs7_6{opacity:.4}._label_1wxs7_10{display:block;margin-bottom:4px;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-medium);font-size:13px;line-height:20px;text-indent:1px;color:var(--rp-ui-base-almost-black)}._sign_1wxs7_21{display:inline-flex;cursor:pointer}._input-container_1wxs7_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_1wxs7_26:focus-within:not(._error_1wxs7_36._touched_1wxs7_36){padding:5px 7px;border-width:2px;border-color:var(--rp-ui-base-topaz-focused)}._input-container_1wxs7_26:hover:not(._disabled_1wxs7_6):not(:focus-within):not(._error_1wxs7_36._touched_1wxs7_36){border-color:var(--rp-ui-base-e-300)}._input-container_1wxs7_26._filled_1wxs7_44:not(:focus-within){border-color:var(--rp-ui-base-e-200)}._input-container_1wxs7_26._error_1wxs7_36._touched_1wxs7_36{border-color:var(--rp-ui-base-error)}._input-field_1wxs7_51{display:flex;align-items:center;justify-content:center;height:20px;min-width:44px;margin:2px 4px 0;text-align:center;cursor:text}._input-field_1wxs7_51._disabled_1wxs7_6{cursor:default}._input_1wxs7_26{padding:0;margin:0;border:none;text-align:center;-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield;color:var(--rp-ui-base-almost-black)}._input_1wxs7_26:focus{outline:none}._input_1wxs7_26:focus::placeholder{color:transparent}._input_1wxs7_26::placeholder{color:var(--rp-ui-base-e-200)}._input_1wxs7_26::-webkit-inner-spin-button,._input_1wxs7_26::-webkit-outer-spin-button{-webkit-appearance:none;-moz-appearance:none;appearance:none;margin:0}@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:500;font-display:swap;font-style:normal;src:local("Open Sans Medium"),local("OpenSans-Medium"),url(./fonts/OpenSans/OpenSans-Medium.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")}@font-face{font-family:OpenSans;font-weight:700;font-display:swap;font-style:normal;src:local("Open Sans Bold"),local("OpenSans-Bold"),url(./fonts/OpenSans/OpenSans-Bold.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: #00b0d1;--rp-ui-base-topaz-100: #e5f5f8;--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-icon-priority-high: #dc5959;--rp-ui-base-icon-priority-medium: #ffbc6c;--rp-ui-base-icon-priority-low: #3e7be6;--rp-ui-base-icon-priority-unspecified: #c1c7d0;--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-tooltip-bg: rgba(34, 34, 34, .91);--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-base-fw-thin: 100;--rp-ui-base-fw-extra-light: 200;--rp-ui-base-fw-light: 300;--rp-ui-base-fw-regular: 400;--rp-ui-base-fw-medium: 500;--rp-ui-base-fw-semi-bold: 600;--rp-ui-base-fw-bold: 700;--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-field-icon: 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-field-icon: 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-field-icon: var(--rp-ui-base-dark-e-50);--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%}._table_qun9e_1{width:100%;max-width:1200px}._table_qun9e_1 *{box-sizing:border-box}._table-header_qun9e_9{display:flex;width:100%;height:32px;align-items:center}._table-row_qun9e_16{display:flex;width:100%;height:64px}._table-row_qun9e_16 ._table-row-content_qun9e_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_qun9e_16._size-small_qun9e_31{height:44px}._table-row_qun9e_16._size-large_qun9e_34{height:80px}._table-body_qun9e_38{display:flex;flex-direction:column;gap:4px;width:100%}._table-header-cell_qun9e_45,._table-cell_qun9e_45{font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);padding:0 16px}._table-header-cell_qun9e_45._action-menu-cell_qun9e_50,._table-cell_qun9e_45._action-menu-cell_qun9e_50{width:48px;padding:0 16px;flex-shrink:0}._table-header-cell_qun9e_45:not(._action-menu-cell_qun9e_50),._table-cell_qun9e_45:not(._action-menu-cell_qun9e_50){overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._table-header-cell_qun9e_45._checkbox-cell_qun9e_60,._table-cell_qun9e_45._checkbox-cell_qun9e_60{width:48px;display:flex;justify-content:center;height:100%;cursor:pointer;flex-shrink:0}._table-header-cell_qun9e_45._checkbox-cell_qun9e_60+._table-row-content_qun9e_21,._table-cell_qun9e_45._checkbox-cell_qun9e_60+._table-row-content_qun9e_21{max-width:calc(100% - 48px)}._table-header-cell_qun9e_45._primary-cell_qun9e_71,._table-cell_qun9e_45._primary-cell_qun9e_71{flex:1 1 320px;font-weight:var(--rp-ui-base-fw-medium);text-align:left}._table-header-cell_qun9e_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_qun9e_45 ._label_qun9e_87{display:flex;align-items:center}._table-header-cell_qun9e_45._sortable-cell_qun9e_91>._label_qun9e_87{cursor:pointer}._table-header-cell_qun9e_45._align-right_qun9e_94{justify-content:flex-end}._table-header-cell_qun9e_45._align-right_qun9e_94 svg{margin-right:-16px}._table-header-cell_qun9e_45._align-center_qun9e_100{justify-content:center}._table-cell_qun9e_45{font-size:13px;line-height:20px}._header_1q16i_1{display:flex;align-items:center;justify-content:space-between;background-color:var(--rp-ui-base-bg-000);padding-bottom:18px}._header_1q16i_1 ._dropdowns-wrapper_1q16i_8{display:flex;align-items:center;column-gap:8px}._header_1q16i_1 ._button-prev_1q16i_13,._header_1q16i_1 ._button-next_1q16i_14{all:unset;align-self:center;width:16px;height:16px}._header_1q16i_1 ._button-prev_1q16i_13 svg,._header_1q16i_1 ._button-next_1q16i_14 svg{width:16px;height:16px}._header_1q16i_1 ._button-prev_1q16i_13:hover:not(._disabled_1q16i_25),._header_1q16i_1 ._button-next_1q16i_14:hover:not(._disabled_1q16i_25){cursor:pointer}._header_1q16i_1 ._button-prev_1q16i_13:hover:not(._disabled_1q16i_25) svg>path,._header_1q16i_1 ._button-next_1q16i_14:hover:not(._disabled_1q16i_25) svg>path{fill:var(--rp-ui-base-e-400)}._header_1q16i_1 ._button-prev_1q16i_13._disabled_1q16i_25,._header_1q16i_1 ._button-next_1q16i_14._disabled_1q16i_25{opacity:.3;pointer-events:none}._header_1q16i_1 ._button-next_1q16i_14{transform:rotate(180deg)}._header_1q16i_1 ._dropdown_1q16i_8{width:auto}._header_1q16i_1 ._dropdown_1q16i_8._month-dropdown_1q16i_44{width:117px}._header_1q16i_1 ._dropdown_1q16i_8 ._toggle-button_1q16i_47>span{color:var(--rp-ui-base-topaz);font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-bold)}._header_1q16i_1 ._dropdown_1q16i_8 ._toggle-button_1q16i_47:hover>span{color:var(-rp-ui-base-topaz-hover)}.react-datepicker__aria-live{display:none}._calendar_1pok6_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_1pok6_5 .react-datepicker__month-container{width:100%;height:100%;float:none;display:flex;flex-direction:column;justify-content:center;align-items:center}._calendar_1pok6_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_1pok6_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:var(--rp-ui-base-fw-bold);font-size:13px;line-height:20px;color:var(--rp-ui-base-dark-e-500);vertical-align:middle}._calendar_1pok6_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_1pok6_5 .react-datepicker__month-container .react-datepicker__month{display:flex;flex-direction:column;width:100%;height:100%;row-gap:8px}._calendar_1pok6_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_1pok6_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__week .react-datepicker__day--range-end:first-child:before{display:none}._calendar_1pok6_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__day{cursor:pointer}._calendar_1pok6_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_1pok6_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:var(--rp-ui-base-fw-bold);color:var(--rp-ui-base-bg-000)}._calendar_1pok6_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__day--disabled{cursor:default}._calendar_1pok6_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__day--disabled:hover{border:none!important;line-height:40px!important}._calendar_1pok6_5 ._current-date_1pok6_89,._calendar_1pok6_5 ._date_1pok6_90{width:40px;margin:0;box-sizing:border-box;height:40px;line-height:40px}._calendar_1pok6_5 ._current-date_1pok6_89:focus-visible,._calendar_1pok6_5 ._date_1pok6_90:focus-visible{outline:none}._calendar_1pok6_5 ._date_1pok6_90{background-color:transparent;border-radius:unset;color:inherit;text-align:center}._calendar_1pok6_5 ._current-date_1pok6_89,._calendar_1pok6_5 ._current-date_1pok6_89:hover{position:relative;z-index:3;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-bold);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_1pok6_5 ._date_1pok6_90:hover:not(._current-date_1pok6_89):not(._selected-range_1pok6_119):not(._end-date_1pok6_119){border-radius:50%;border:1px solid var(--rp-ui-base-topaz);background-color:transparent;line-height:38px;color:inherit}._calendar_1pok6_5 ._end-date_1pok6_119{position:relative;border-radius:50%;background-color:var(--rp-ui-base-topaz);font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-bold);color:var(--rp-ui-base-bg-000)}._calendar_1pok6_5 ._end-date_1pok6_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_1pok6_5 ._end-date_1pok6_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_1pok6_5 ._selected-range_1pok6_119{background-color:var(--rp-ui-base-bg-200);border-radius:8px;height:32px;line-height:32px;position:relative}._calendar_1pok6_5 ._selected-range_1pok6_119:hover{height:40px;line-height:40px;border-radius:50%;background:var(--rp-ui-base-bg-200)}._calendar_1pok6_5 ._selected-range_1pok6_119:hover:after{display:block}._calendar_1pok6_5 ._selected-range_1pok6_119:hover:not(:first-child):before{top:4px}._calendar_1pok6_5 ._selected-range_1pok6_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_1pok6_5 ._selected-range_1pok6_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_1pok6_5 ._disabled_1pok6_202{color:var(--rp-ui-base-e-400);background-color:transparent}._calendar_1pok6_5 ._disabled_1pok6_202:focus-visible{outline:none}._popper_1pok6_210{z-index:10}._input_1pok6_214{width:100%;min-width:138px}._dropdown-option_1etj7_1{display:flex;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);font-size:13px;line-height:20px;box-sizing:border-box;cursor:pointer;color:var(--rp-ui-color-text-3);padding:9px 12px 7px}._dropdown-option_1etj7_1._disabled_1etj7_12{pointer-events:none;background-color:var(--rp-ui-color-field-bg-2)}._dropdown-option_1etj7_1._hidden_1etj7_16{display:none}._dropdown-option_1etj7_1:hover:not(:active){background:var(--rp-ui-color-bg-3)}._dropdown-option_1etj7_1._hover_1etj7_22:not(._disabled_1etj7_12){padding:8px 11px 6px;background-color:var(--rp-ui-color-bg-3);border:1px solid var(--rp-ui-color-primary-focused)}._dropdown-option_1etj7_1._hover_1etj7_22:not(._disabled_1etj7_12):hover{border:none;padding:9px 12px 7px}._dropdown-option_1etj7_1._hover_1etj7_22:not(._disabled_1etj7_12):hover:hover:not(:active){background:var(--rp-ui-color-bg-3)}._dropdown-option_1etj7_1._selected_1etj7_34:not(._multi-select_1etj7_34){background:var(--rp-ui-base-topaz-100);color:var(--rp-ui-base-topaz)}._single-option_1etj7_39{height:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}._sub-option_1etj7_46{padding-left:24px}._container_5enku_1{position:relative;display:inline-block;width:100%}._icon_5enku_7{width:16px;height:16px;margin-right:8px}._arrow_5enku_13{display:inline-flex;margin-left:12px;transition:transform .2s linear}._dropdown_5enku_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_5enku_19._transparent-background_5enku_33{background-color:transparent}._dropdown_5enku_19._disabled_5enku_36{pointer-events:none;background-color:var(--rp-ui-color-field-bg-2)}._dropdown_5enku_19._disabled_5enku_36 ._arrow_5enku_13 svg path{opacity:.4}._dropdown_5enku_19._disabled_5enku_36 ._value_5enku_43{color:var(--rp-ui-color-disabled)}._dropdown_5enku_19._error_5enku_46._touched_5enku_46{border-width:1px;border-color:var(--rp-ui-color-error)}._dropdown_5enku_19:hover:not(:active):not(:focus-visible):not(._opened_5enku_50):not(._error_5enku_46){border-color:var(--rp-ui-color-field-hover)}._dropdown_5enku_19:active,._dropdown_5enku_19:focus-visible{padding:7px 11px;border-width:2px;border-color:var(--rp-ui-color-primary-focused);outline:none}._dropdown_5enku_19:active ._arrow_5enku_13 svg path,._dropdown_5enku_19:focus-visible ._arrow_5enku_13 svg path{fill:var(--rp-ui-color-field-hover-2)}._dropdown_5enku_19._opened_5enku_50:not(:active):not(._error_5enku_46){border-width:1px;border-color:var(--rp-ui-color-primary-pressed)}._dropdown_5enku_19._opened_5enku_50:not(:active):not(._error_5enku_46) ._arrow_5enku_13 svg path{fill:var(--rp-ui-color-field-opened)}._dropdown_5enku_19._opened_5enku_50 ._arrow_5enku_13{transform:rotate(180deg)}._dropdown_5enku_19 ._value_5enku_43{flex-grow:1;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);font-size:13px;line-height:20px;color:var(--rp-ui-color-text-3);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}._dropdown_5enku_19 ._value_5enku_43._placeholder_5enku_83{color:var(--rp-ui-color-field-placeholder-3)}@media (max-width: 767px){._dropdown_5enku_19 ._mobile-disabled_5enku_87{background-color:var(--rp-ui-color-field-bg-2)}}._select-list_5enku_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_5enku_92._opened_5enku_50:focus-visible{outline:none}._select-list_5enku_92._limited-width_5enku_109{max-width:384px}._options-container_5enku_113{display:flex;flex-direction:column}._ghost_5enku_118{border-color:transparent;background:transparent;padding:9px 0 7px}._ghost_5enku_118._disabled_5enku_36{background:transparent}._ghost_5enku_118:hover:not(:active):not(:focus-visible):not(._opened_5enku_50):not(._error_5enku_46){border-color:transparent}._ghost_5enku_118._opened_5enku_50:not(:active):not(._error_5enku_46){border-color:transparent}._ghost_5enku_118._opened_5enku_50 ._value_5enku_43{color:var(--rp-ui-color-primary-pressed)}._ghost_5enku_118:active,._ghost_5enku_118:focus-visible{padding:7px 0}._divider_5enku_139{height:1px;margin:8px 12px;background-color:var(--rp-ui-base-e-100)}._item-counter_4g6do_1{display:inline-block;width:200px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._size-selector_9ub70_1{display:flex;flex-direction:column}._size-option_9ub70_6{width:88px;padding:8px 0;outline:none;border:none;background:none;cursor:pointer;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);font-size:13px;line-height:20px;text-align:left;color:var(--rp-ui-base-almost-black)}._size-option_9ub70_6:first-child{padding-top:0}._size-option_9ub70_6:last-child{padding-bottom:0}._size-option_9ub70_6:hover{color:var(--rp-ui-base-topaz-hover)}._size-option_9ub70_6:active{color:var(--rp-ui-base-topaz-pressed)}._size-option_9ub70_6._selected_9ub70_32{color:var(--rp-ui-base-topaz)}._page-size-control_sgwmi_1{display:flex;justify-content:flex-end;width:160px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._size-selector-button_sgwmi_10{margin-right:4px;font-weight:var(--rp-ui-base-fw-bold)}._page-selector_rtho4_1{display:flex;gap:8px}._field-wrapper_rtho4_6,._apply-button_rtho4_10{width:90px}._active-page_1gl9o_1{display:inline-block;width:124px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-align:right}._page-selector_1gl9o_10{text-align:left}._page-selector-button_1gl9o_14{margin-left:4px;font-weight:var(--rp-ui-base-fw-bold)}._bar_y74hy_1{width:260px;height:8px;margin:4px 0;border-radius:3px;background-color:var(--rp-ui-base-e-100)}._section-with-tooltip_y74hy_9{display:inline-block;height:16px}._section-with-tooltip_y74hy_9:hover ._section_y74hy_9{background-color:var(--rp-ui-base-topaz-hover)}._section-with-tooltip_y74hy_9:active ._section_y74hy_9{background-color:var(--rp-ui-base-topaz-pressed)}._section-with-tooltip_y74hy_9:first-child ._section_y74hy_9{border-radius:3px 0 0 3px}._section-with-tooltip_y74hy_9:last-child ._section_y74hy_9{border-radius:0 3px 3px 0}._section_y74hy_9{position:relative;top:4px;height:8px;background-color:transparent;margin:4px 0}._section_y74hy_9._selected_y74hy_33{background-color:var(--rp-ui-base-topaz)}._tooltip-wrapper_y74hy_37{width:inherit;height:16px}._tooltip_y74hy_37{font-family:var(--rp-ui-base-font-family);font-size:11px;line-height:16px;text-align:center}._tooltip_y74hy_37 ._tooltip-text_y74hy_48{font-weight:var(--rp-ui-base-fw-regular);padding-bottom:8px}._tooltip_y74hy_37 ._page-number_y74hy_52{font-weight:var(--rp-ui-base-fw-bold)}._section-with-tooltip_y74hy_9,._tooltip-wrapper_y74hy_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_w2r3n_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:var(--rp-ui-base-fw-regular);font-size:13px;line-height:20px;color:var(--rp-ui-base-almost-black)}._field-label_10m6x_1{font-size:13px;line-height:20px;display:block;position:relative;margin-bottom:4px;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-medium);color:var(--rp-ui-color-text)}._field-label_10m6x_1 ._asterisk_10m6x_11{position:absolute;top:-3px;color:var(--rp-ui-base-e-300);padding-left:4px}._field-label_10m6x_1._disabled_10m6x_17{pointer-events:none}._modal-content_zh8d2_1{width:100%;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);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_zh8d2_1._scrollable_zh8d2_12{width:calc(100% - 34px)}._buttons-block_1mwne_1{display:flex;align-items:center;column-gap:10px}._button-container_1mwne_7{display:inline-block;min-width:70px}._modal-footer_1mwne_12{position:relative;display:flex;justify-content:flex-end;width:100%;margin-top:16px}._modal-footer_1mwne_12._with-extra-node_1mwne_19{justify-content:space-between}._size-small_1mwne_23{flex-direction:column;align-items:stretch}._size-small_1mwne_23 ._buttons-block_1mwne_1{display:flex;flex-direction:column;align-items:stretch}._size-small_1mwne_23 ._button-container_1mwne_7{margin:0 0 10px}._size-small_1mwne_23 ._button-container_1mwne_7:last-child{margin-bottom:0}._modal-header_w4aaf_1{position:relative;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);font-size:20px;line-height:31px;color:var(--rp-ui-color-text);padding-bottom:24px}._modal-header_w4aaf_1._width-description_w4aaf_10{padding-bottom:8px}._modal-header-content_w4aaf_14{width:100%;padding-right:30px;box-sizing:border-box}._modal-title_w4aaf_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_w4aaf_29{position:absolute;top:6px;right:0;line-height:normal;cursor:pointer}._modal_yxql5_1{position:absolute;top:0;left:0;display:block;width:100%;height:100%;text-align:center;overflow:hidden}._overlay-default_yxql5_12{background-color:var(--rp-ui-base-overlay)}._overlay-light-cyan_yxql5_16{background-color:var(--rp-ui-base-overlay-light-cyan)}._scrolling-content_yxql5_20{position:fixed;width:100%;height:100%}._modal-window_yxql5_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_yxql5_43{display:inline-block;width:100%;padding-bottom:24px;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);font-size:13px;line-height:20px;color:var(--rp-ui-base-almost-black)}._description_yxql5_43._scrollable_yxql5_53{width:calc(100% - 34px)}._size-default_yxql5_57{width:480px}@media (max-width: 480px){._size-default_yxql5_57{right:10px;left:10px;transform:none;width:auto}}._size-small_yxql5_69{width:320px}@media (max-width: 320px){._size-small_yxql5_69{right:10px;left:10px;transform:none;width:auto}}._size-large_yxql5_81{width:720px}@media (max-width: 720px){._size-large_yxql5_81{right:10px;left:10px;transform:none;width:auto}}._popover-wrapper_n3nff_1{display:inline-block;width:fit-content;height:fit-content;cursor:pointer}._popover_n3nff_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_n3nff_28{font-family:var(--rp-ui-base-font-family-heading);font-weight:var(--rp-ui-base-fw-bold);font-size:13px;line-height:20px;margin-bottom:8px}._system-alert_1py1m_1{display:flex;box-sizing:border-box;width:600px;padding:16px;gap:16px;border-radius:16px;justify-content:space-between;box-shadow:var(--rp-ui-base-shadow-secondary)}._system-alert_1py1m_1._error_1py1m_11{background-color:var(--rp-ui-base-sm-error)}._system-alert_1py1m_1._success_1py1m_14{background-color:var(--rp-ui-base-test-execution-status-passed)}._system-alert_1py1m_1._info_1py1m_17{background-color:var(--rp-ui-base-no-defect-bug-group)}._system-alert_1py1m_1 ._icon-wrapper_1py1m_20{width:20px;height:24px;display:grid;place-content:center}._system-alert_1py1m_1 ._content-wrapper_1py1m_26{display:flex;gap:16px;flex-direction:column;flex:1}._system-alert_1py1m_1 ._content-wrapper_1py1m_26 ._title_1py1m_32{text-align:start;font-family:var(--rp-ui-base-font-family);font-size:15px;line-height:24px;font-weight:var(--rp-ui-base-fw-semi-bold);color:var(--rp-ui-base-bg-000);display:-webkit-box;max-width:100%;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}._system-alert_1py1m_1 ._close-button_1py1m_45{background:none;border:none;width:24px;height:24px;cursor:pointer}._system-alert_1py1m_1 ._close-button_1py1m_45 svg path{fill:var(--rp-ui-base-bg-000)}._tooltip-wrapper_lwpn2_16{display:block;width:100%;height:fit-content;cursor:pointer}._tooltip-content_lwpn2_23{font-size:11px;line-height:16px;padding:16px;border-radius:8px;background-color:var(--rp-ui-base-tooltip-bg);font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-medium);color:var(--rp-ui-base-bg-000);word-wrap:break-word;white-space:pre-wrap;box-sizing:border-box;width:100%}
|
|
1
|
+
._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)}}._text-area_1pqer_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:var(--rp-ui-base-fw-regular);color:var(--rp-ui-base-almost-black);resize:vertical}._text-area_1pqer_1:hover{border-color:var(--rp-ui-base-e-300)}._text-area_1pqer_1:focus:not(._error_1pqer_19._touched_1pqer_19){border:1px solid var(--rp-ui-base-topaz-hover);box-shadow:0 0 0 1px var(--rp-ui-base-topaz-hover)}._text-area_1pqer_1._error_1pqer_19._touched_1pqer_19{border:1px solid var(--rp-ui-base-error)}._text-area_1pqer_1:focus:not(._error_1pqer_19._touched_1pqer_19)+._max-length-display_1pqer_26,._text-area_1pqer_1._error_1pqer_19._touched_1pqer_19+._max-length-display_1pqer_26{display:block}._text-area_1pqer_1::placeholder{color:var(--rp-ui-base-e-300)}._text-area_1pqer_1:has(~._max-length-display_1pqer_26){padding-bottom:24px}._additional-content_1pqer_36 ._error-text_1pqer_36{font-size:11px;line-height:16px;display:block;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);color:var(--rp-ui-base-error)}._additional-content_1pqer_36 ._help-text_1pqer_44{font-size:11px;line-height:16px;display:block;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);color:var(--rp-ui-base-e-300)}._max-length-display_1pqer_26{font-size:11px;line-height:16px;position:absolute;margin-top:-29px;display:none;padding-left:12px;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);color:var(--rp-ui-base-e-300)}._disabled_1pqer_65{opacity:.3;pointer-events:none}._icon-container_1xyy3_1,._icon-container-end_1xyy3_1,._icon-container-start_1xyy3_1{display:flex;justify-content:center;align-items:center;flex-shrink:0;width:22px;height:22px}._icon-container-start_1xyy3_1{margin-right:4px}._collapsed_1xyy3_13 ._icon-container-start_1xyy3_1{cursor:pointer}._icon-container-end_1xyy3_1{margin-left:4px}._field_1xyy3_21{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_1xyy3_21._default-width_1xyy3_33{width:240px}._field_1xyy3_21._collapsed_1xyy3_13{width:22px;border-width:0;overflow:hidden;padding:0;background-color:transparent}._field_1xyy3_21._collapsed_1xyy3_13:hover{background-color:transparent}._field_1xyy3_21._collapsed_1xyy3_13 ._placeholder_1xyy3_46{display:none}._field_1xyy3_21:hover:not(._disabled_1xyy3_49){border-color:var(--rp-ui-color-field-border-3-hover)}._field_1xyy3_21:focus-within:not(._error_1xyy3_52._touched_1xyy3_52){padding:6px 11px;border:2px solid var(--rp-ui-color-primary-focused)}._field_1xyy3_21._error_1xyy3_52._touched_1xyy3_52{border-color:var(--rp-ui-base-error)}._field_1xyy3_21:focus-within:not(._error_1xyy3_52._touched_1xyy3_52) ._max-length-display_1xyy3_59,._field_1xyy3_21._error_1xyy3_52._touched_1xyy3_52 ._max-length-display_1xyy3_59{display:block}._field_1xyy3_21._disabled_1xyy3_49{pointer-events:none;background-color:var(--rp-ui-base-bg-100)}._field_1xyy3_21._disabled_1xyy3_49 ._placeholder_1xyy3_46{color:var(--rp-ui-base-e-300)}._input-container_1xyy3_70{position:relative;width:100%}._input-container_1xyy3_70._type-password_1xyy3_74 ._input_1xyy3_70{width:calc(100% - 30px);text-overflow:unset}._input-container_1xyy3_70._type-password_1xyy3_74 ._eye-icon_1xyy3_78{position:absolute;z-index:2;top:4px;right:-2px;height:16px;width:16px}._input-container_1xyy3_70._type-password_1xyy3_74 ._eye-icon_1xyy3_78 svg path{fill:var(--rp-ui-color-field-icon)}._input_1xyy3_70{font-size:13px;line-height:20px;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);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_1xyy3_70:focus{outline:none}._input_1xyy3_70:disabled{color:var(--rp-ui-base-e-300)}._placeholder_1xyy3_46{font-size:13px;line-height:20px;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);color:var(--rp-ui-color-field-placeholder-3);position:absolute;top:2px;left:0;pointer-events:none;white-space:nowrap}._icon_1xyy3_1,._start-icon_1xyy3_124,._clear-icon_1xyy3_125{display:inline-block;width:16px;height:16px}._start-icon_1xyy3_124,._clear-icon_1xyy3_125{background:none;border:none;padding:0;font:inherit;outline:inherit;cursor:pointer}._start-icon_1xyy3_124 svg>path,._clear-icon_1xyy3_125 svg>path{fill:var(--rp-ui-color-field-icon)}._start-icon_1xyy3_124._disabled_1xyy3_49,._clear-icon_1xyy3_125._disabled_1xyy3_49{pointer-events:none}._start-icon_1xyy3_124:hover svg>path,._clear-icon_1xyy3_125:hover svg>path{fill:var(--rp-ui-color-field-hover-2)}._start-icon_1xyy3_124:focus svg>path,._clear-icon_1xyy3_125:focus svg>path{fill:var(--rp-ui-color-primary-focused)}._start-icon_1xyy3_124:active svg>path,._clear-icon_1xyy3_125:active svg>path{fill:var(--rp-ui-color-primary-pressed)}._additional-content_1xyy3_161{margin-top:4px}._additional-content_1xyy3_161._disabled_1xyy3_49{pointer-events:none}._text_1xyy3_168,._max-length-display_1xyy3_59{font-size:11px;line-height:16px;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular)}._text_1xyy3_168{display:block}._max-length-display_1xyy3_59{display:none;margin-left:15px;align-self:end;color:var(--rp-ui-base-e-300);word-break:initial}._error-text_1xyy3_188{color:var(--rp-ui-base-error)}._help-text_1xyy3_192{color:var(--rp-ui-base-dark-e-300)}._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)}._button_10o5b_1{display:inline-flex;justify-content:center;align-items:center;height:36px;padding:7px 16px;margin:0;outline:none;border-radius:3px;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-medium);font-size:13px;line-height:20px;cursor:pointer;box-sizing:border-box}._primary_10o5b_18{border:1px solid var(--rp-ui-color-primary);background-color:var(--rp-ui-color-primary);color:var(--rp-ui-base-bg-000)}._primary_10o5b_18:hover:not(._disabled_10o5b_23){border:1px solid var(--rp-ui-color-primary-hover);background-color:var(--rp-ui-color-primary-hover)}._primary_10o5b_18:active:not(._disabled_10o5b_23){border:1px solid var(--rp-ui-color-primary-pressed);background-color:var(--rp-ui-color-primary-pressed)}._primary_10o5b_18:focus:not(._disabled_10o5b_23,:active){border:2px solid var(--rp-ui-color-primary-focused)}._primary_10o5b_18 svg *{fill:var(--rp-ui-base-bg-000)}._ghost_10o5b_38{border:1px solid var(--rp-ui-color-primary);background-color:transparent;color:var(--rp-ui-color-primary-text)}._ghost_10o5b_38:hover:not(._disabled_10o5b_23){border:1px solid var(--rp-ui-base-dark-topaz-hover);color:var(--rp-ui-base-dark-topaz-hover)}._ghost_10o5b_38:active:not(._disabled_10o5b_23){border:1px solid var(--rp-ui-color-primary-pressed);color:var(--rp-ui-color-primary-pressed)}._ghost_10o5b_38:focus:not(._disabled_10o5b_23,:active){border:2px solid var(--rp-ui-color-primary-focused);color:var(--rp-ui-color-primary-focused)}._ghost_10o5b_38 svg *{fill:var(--rp-ui-color-primary-text)}._danger_10o5b_59{border:1px solid var(--rp-ui-color-error);background-color:var(--rp-ui-color-error);color:var(--rp-ui-base-bg-000)}._danger_10o5b_59:hover:not(._disabled_10o5b_23){opacity:.9;background-color:var(--rp-ui-color-error-hover)}._danger_10o5b_59:active:not(._disabled_10o5b_23){border:1px solid var(--rp-ui-color-error-pressed);background-color:var(--rp-ui-color-error-pressed)}._danger_10o5b_59:focus:not(._disabled_10o5b_23,:active){border:2px solid var(--rp-ui-color-error-focused)}._danger_10o5b_59 svg *{fill:var(--rp-ui-base-bg-000)}._text_10o5b_79{min-width:auto;height:auto;border:0;padding:2px 0 0;background:none;line-height:22px;color:var(--rp-ui-color-primary-text)}._text_10o5b_79:hover:not(._disabled_10o5b_23){color:var(--rp-ui-color-primary-hover)}._text_10o5b_79:hover:not(._disabled_10o5b_23) svg *{fill:var(--rp-ui-color-primary-hover)}._text_10o5b_79:active:not(._disabled_10o5b_23){color:var(--rp-ui-color-primary-pressed)}._text_10o5b_79:active:not(._disabled_10o5b_23) svg *{fill:var(--rp-ui-color-primary-pressed)}._text_10o5b_79:focus:not(._disabled_10o5b_23,:active){border:2px solid var(--rp-ui-color-primary-focused);color:var(--rp-ui-color-primary-focused)}._text_10o5b_79:focus:not(._disabled_10o5b_23,:active) svg *{fill:var(--rp-ui-color-primary-focused)}._text_10o5b_79 svg *{fill:var(--rp-ui-color-primary-text)}._ghost-danger_10o5b_111{border:1px solid var(--rp-ui-color-error);background-color:transparent;color:var(--rp-ui-color-error)}._ghost-danger_10o5b_111:hover:not(._disabled_10o5b_23){border:1px solid var(--rp-ui-color-error-hover);color:var(--rp-ui-color-error-hover)}._ghost-danger_10o5b_111:active:not(._disabled_10o5b_23){border:1px solid var(--rp-ui-color-error-pressed);color:var(--rp-ui-color-error-pressed)}._ghost-danger_10o5b_111:focus:not(._disabled_10o5b_23,:active){border:2px solid var(--rp-ui-color-error-focused)}._ghost-danger_10o5b_111 svg *{fill:var(--rp-ui-color-error)}._text-danger_10o5b_131{min-width:auto;height:auto;border:0;padding:2px 0 0;background:none;line-height:22px;color:var(--rp-ui-color-error)}._text-danger_10o5b_131:hover:not(._disabled_10o5b_23){color:var(--rp-ui-color-error-hover)}._text-danger_10o5b_131:hover:not(._disabled_10o5b_23) svg *{fill:var(--rp-ui-color-error-hover)}._text-danger_10o5b_131:active:not(._disabled_10o5b_23){color:var(--rp-ui-color-error-pressed)}._text-danger_10o5b_131:active:not(._disabled_10o5b_23) svg *{fill:var(--rp-ui-color-error-pressed)}._text-danger_10o5b_131:focus:not(._disabled_10o5b_23,:active){border:2px solid var(--rp-ui-color-error-focused)}._text-danger_10o5b_131 svg *{fill:var(--rp-ui-color-error)}._disabled_10o5b_23{opacity:var(--rp-ui-opacity-default);cursor:default}._width-min-width_10o5b_164{min-width:120px}._width-content_10o5b_168{min-width:auto}._width-wide-content_10o5b_172{padding:9px 47px 7px;margin:0}._width-parent_10o5b_177{display:flex;width:100%}._icon_10o5b_182{display:inline-block;width:16px;height:16px}._icon-start_10o5b_188{margin:auto 8px auto 0}._icon-end_10o5b_192{margin:auto 0 auto 8px;order:1}._radio-button_1fetm_1{display:flex;align-items:center;height:100%;outline:none;cursor:pointer;padding-bottom:4px}._radio-button_1fetm_1._disabled_1fetm_9{cursor:default}._radio-button_1fetm_1._disabled_1fetm_9 ._children-container_1fetm_12{color:var(--rp-ui-base-e-300)}._radio-button_1fetm_1._disabled_1fetm_9 ._toggler_1fetm_15{opacity:.3}._radio-button_1fetm_1._disabled_1fetm_9 ._toggler_1fetm_15:after{background-color:transparent}._radio-button_1fetm_1._disabled_1fetm_9 ._toggler_1fetm_15._checked_1fetm_21:after{background-color:var(--rp-ui-base-topaz-pressed)}._radio-button_1fetm_1:focus-visible:not(._disabled_1fetm_9) ._toggler_1fetm_15{border:2px solid var(--rp-ui-color-primary-focused)}._input_1fetm_28{display:none}._toggler_1fetm_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_1fetm_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_1fetm_15:hover:not(._disabled_1fetm_9){border-color:var(--rp-ui-color-field-border-2-hover)}._toggler_1fetm_15:hover:not(._disabled_1fetm_9):after{background-color:var(--rp-ui-color-primary-hover)}._toggler_1fetm_15._checked_1fetm_21:after,._toggler_1fetm_15._disabled_1fetm_9:after{transform:scale(1);opacity:1}._children-container_1fetm_12{display:inline-block;overflow:hidden;max-width:100%;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-medium);font-size:13px;line-height:20px;word-break:break-all;text-overflow:ellipsis;color:var(--rp-ui-color-text)}._children-container_1fetm_12 a{text-decoration:none;color:var(--rp-ui-base-topaz)}._children-container_1fetm_12 a:focus,._children-container_1fetm_12 a:focus-visible{outline:none;color:var(--rp-ui-base-topaz-focused);text-decoration:underline}._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)}}._system-message_vll7q_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_vll7q_1 ._stripes-info_vll7q_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_vll7q_1 ._stripes-warning_vll7q_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_vll7q_1 ._stripes-error_vll7q_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_vll7q_1 ._text-container_vll7q_27{padding:12px 16px 16px}._system-message_vll7q_1 ._text-container_vll7q_27 ._message-header-info_vll7q_30{font-size:15px;line-height:24px;font-weight:var(--rp-ui-base-fw-medium);color:var(--rp-ui-base-e-400);text-transform:capitalize;margin-bottom:8px}._system-message_vll7q_1 ._text-container_vll7q_27 ._message-header-warning_vll7q_38{font-size:15px;line-height:24px;font-weight:var(--rp-ui-base-fw-medium);color:var(--rp-ui-base-sm-warning);text-transform:capitalize;margin-bottom:8px}._system-message_vll7q_1 ._text-container_vll7q_27 ._message-header-error_vll7q_46{font-size:15px;line-height:24px;font-weight:var(--rp-ui-base-fw-medium);color:var(--rp-ui-base-sm-error);text-transform:capitalize;margin-bottom:8px}._system-message_vll7q_1 ._text-container_vll7q_27 ._children_vll7q_54{text-indent:1px;color:var(--rp-ui-color-text);font-weight:var(--rp-ui-base-fw-bold);font-size:13px;line-height:20px}._system-message_vll7q_1 ._text-container_vll7q_27 p{margin-top:4px;max-width:780px;color:var(--rp-ui-base-e-400);font-weight:var(--rp-ui-base-fw-regular);font-size:12px;line-height:18px}._content-width_vll7q_70{max-width:max-content}._checkbox_1tbt5_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:var(--rp-ui-base-fw-medium);font-size:13px;line-height:20px}._checkbox_1tbt5_1 ._disabled_1tbt5_11{opacity:var(--rp-ui-opacity-default);pointer-events:none}._input_1tbt5_16{position:absolute;opacity:0;top:0;left:0}._control_1tbt5_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_1tbt5_16:checked+._control_1tbt5_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_1tbt5_16:hover+._control_1tbt5_23{border-color:var(--rp-ui-color-field-hover-2)}._input_1tbt5_16:active:not(:disabled)+._control_1tbt5_23{border:2px solid var(--rp-ui-color-primary-focused)}._input_1tbt5_16:checked:hover+._control_1tbt5_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_1tbt5_16:checked:active:not(:disabled)+._control_1tbt5_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_1tbt5_16:disabled+._control_1tbt5_23{border-color:var(--rp-ui-color-disabled)}._input_1tbt5_16:checked:disabled+._control_1tbt5_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_1tbt5_16:focus+._control_1tbt5_23{border:2px solid var(--rp-ui-color-primary-focused)}._input_1tbt5_16._partially-checked_1tbt5_76:not(:checked)+._control_1tbt5_23{border-color:var(--rp-ui-color-field-border);background-repeat:no-repeat;background-position:center;position:relative}._input_1tbt5_16._partially-checked_1tbt5_76:not(:checked)+._control_1tbt5_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_1tbt5_16._partially-checked_1tbt5_76:not(:checked):hover+._control_1tbt5_23{border-color:var(--rp-ui-color-field-border-2-hover);background-repeat:no-repeat;background-position:center;position:relative}._input_1tbt5_16._partially-checked_1tbt5_76:not(:checked):hover+._control_1tbt5_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_1tbt5_16._partially-checked_1tbt5_76:not(:checked):active:not(:disabled)+._control_1tbt5_23{border-color:var(--rp-ui-color-primary-focused);background-repeat:no-repeat;background-position:center;position:relative}._input_1tbt5_16._partially-checked_1tbt5_76:not(:checked):active:not(:disabled)+._control_1tbt5_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_1tbt5_16._partially-checked_1tbt5_76:not(:checked):disabled+._control_1tbt5_23{border-color:var(--rp-ui-color-field-borderd);background-repeat:no-repeat;background-position:center;position:relative}._input_1tbt5_16._partially-checked_1tbt5_76:not(:checked):disabled+._control_1tbt5_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_1tbt5_149{cursor:pointer}._children_1tbt5_149 a{text-decoration:none;color:var(--rp-ui-color-primary)}._children_1tbt5_149 a:focus,._children_1tbt5_149 a:focus-visible{outline:none;color:var(--rp-ui-color-primary-focused);text-decoration:underline}._toggle_1c7gt_1{position:relative;display:inline-flex;align-items:center;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);font-size:13px;line-height:20px;color:var(--rp-ui-base-almost-black);cursor:pointer;width:32px}._children-container_1c7gt_14{margin-left:40px}._children-container_1c7gt_14 a{text-decoration:none;color:var(--rp-ui-base-topaz)}._children-container_1c7gt_14 a:focus,._children-container_1c7gt_14 a:focus-visible{outline:none;color:var(--rp-ui-base-topaz-focused);text-decoration:underline}._slider_1c7gt_27{background-color:var(--rp-ui-base-e-300);cursor:pointer;position:absolute;transition:.4s;border-radius:10px;width:32px;height:20px}._slider_1c7gt_27:before{position:absolute;top:2px;left:2px;content:"";width:16px;height:16px;background-color:var(--rp-ui-base-bg-000);transition:.4s}._round_1c7gt_47:before{border-radius:50%}._input_1c7gt_51{position:absolute;opacity:0;top:0;left:0}._input_1c7gt_51:disabled+._slider_1c7gt_27{background-color:var(--rp-ui-base-e-200);cursor:default}._input_1c7gt_51:focus-visible{outline:none}._input_1c7gt_51:focus:not(:disabled):after,._input_1c7gt_51:focus-visible:not(:disabled)+._slider_1c7gt_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_1c7gt_51:checked+._slider_1c7gt_27{background-color:var(--rp-ui-base-topaz)}._input_1c7gt_51:checked+._slider_1c7gt_27:before{transform:translate(12px)}._input_1c7gt_51:hover:not(:disabled)+._slider_1c7gt_27{background-color:var(--rp-ui-base-e-400)}._input_1c7gt_51:checked:hover+._slider_1c7gt_27{background-color:var(--rp-ui-base-topaz-hover)}._input_1c7gt_51:checked:disabled+._slider_1c7gt_27{background-color:var(--rp-ui-base-topaz);cursor:default}._disabled_1c7gt_92{opacity:.3;cursor:default}._field-number_1wxs7_1{position:relative;display:inline-flex;flex-direction:column}._field-number_1wxs7_1._disabled_1wxs7_6{opacity:.4}._label_1wxs7_10{display:block;margin-bottom:4px;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-medium);font-size:13px;line-height:20px;text-indent:1px;color:var(--rp-ui-base-almost-black)}._sign_1wxs7_21{display:inline-flex;cursor:pointer}._input-container_1wxs7_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_1wxs7_26:focus-within:not(._error_1wxs7_36._touched_1wxs7_36){padding:5px 7px;border-width:2px;border-color:var(--rp-ui-base-topaz-focused)}._input-container_1wxs7_26:hover:not(._disabled_1wxs7_6):not(:focus-within):not(._error_1wxs7_36._touched_1wxs7_36){border-color:var(--rp-ui-base-e-300)}._input-container_1wxs7_26._filled_1wxs7_44:not(:focus-within){border-color:var(--rp-ui-base-e-200)}._input-container_1wxs7_26._error_1wxs7_36._touched_1wxs7_36{border-color:var(--rp-ui-base-error)}._input-field_1wxs7_51{display:flex;align-items:center;justify-content:center;height:20px;min-width:44px;margin:2px 4px 0;text-align:center;cursor:text}._input-field_1wxs7_51._disabled_1wxs7_6{cursor:default}._input_1wxs7_26{padding:0;margin:0;border:none;text-align:center;-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield;color:var(--rp-ui-base-almost-black)}._input_1wxs7_26:focus{outline:none}._input_1wxs7_26:focus::placeholder{color:transparent}._input_1wxs7_26::placeholder{color:var(--rp-ui-base-e-200)}._input_1wxs7_26::-webkit-inner-spin-button,._input_1wxs7_26::-webkit-outer-spin-button{-webkit-appearance:none;-moz-appearance:none;appearance:none;margin:0}@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:500;font-display:swap;font-style:normal;src:local("Open Sans Medium"),local("OpenSans-Medium"),url(./fonts/OpenSans/OpenSans-Medium.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")}@font-face{font-family:OpenSans;font-weight:700;font-display:swap;font-style:normal;src:local("Open Sans Bold"),local("OpenSans-Bold"),url(./fonts/OpenSans/OpenSans-Bold.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: #00b0d1;--rp-ui-base-topaz-100: #e5f5f8;--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-icon-priority-high: #dc5959;--rp-ui-base-icon-priority-medium: #ffbc6c;--rp-ui-base-icon-priority-low: #3e7be6;--rp-ui-base-icon-priority-unspecified: #c1c7d0;--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-tooltip-bg: rgba(34, 34, 34, .91);--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-base-fw-thin: 100;--rp-ui-base-fw-extra-light: 200;--rp-ui-base-fw-light: 300;--rp-ui-base-fw-regular: 400;--rp-ui-base-fw-medium: 500;--rp-ui-base-fw-semi-bold: 600;--rp-ui-base-fw-bold: 700;--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-field-icon: 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-field-icon: 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-field-icon: var(--rp-ui-base-dark-e-50);--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%}._table_qun9e_1{width:100%;max-width:1200px}._table_qun9e_1 *{box-sizing:border-box}._table-header_qun9e_9{display:flex;width:100%;height:32px;align-items:center}._table-row_qun9e_16{display:flex;width:100%;height:64px}._table-row_qun9e_16 ._table-row-content_qun9e_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_qun9e_16._size-small_qun9e_31{height:44px}._table-row_qun9e_16._size-large_qun9e_34{height:80px}._table-body_qun9e_38{display:flex;flex-direction:column;gap:4px;width:100%}._table-header-cell_qun9e_45,._table-cell_qun9e_45{font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);padding:0 16px}._table-header-cell_qun9e_45._action-menu-cell_qun9e_50,._table-cell_qun9e_45._action-menu-cell_qun9e_50{width:48px;padding:0 16px;flex-shrink:0}._table-header-cell_qun9e_45:not(._action-menu-cell_qun9e_50),._table-cell_qun9e_45:not(._action-menu-cell_qun9e_50){overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._table-header-cell_qun9e_45._checkbox-cell_qun9e_60,._table-cell_qun9e_45._checkbox-cell_qun9e_60{width:48px;display:flex;justify-content:center;height:100%;cursor:pointer;flex-shrink:0}._table-header-cell_qun9e_45._checkbox-cell_qun9e_60+._table-row-content_qun9e_21,._table-cell_qun9e_45._checkbox-cell_qun9e_60+._table-row-content_qun9e_21{max-width:calc(100% - 48px)}._table-header-cell_qun9e_45._primary-cell_qun9e_71,._table-cell_qun9e_45._primary-cell_qun9e_71{flex:1 1 320px;font-weight:var(--rp-ui-base-fw-medium);text-align:left}._table-header-cell_qun9e_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_qun9e_45 ._label_qun9e_87{display:flex;align-items:center}._table-header-cell_qun9e_45._sortable-cell_qun9e_91>._label_qun9e_87{cursor:pointer}._table-header-cell_qun9e_45._align-right_qun9e_94{justify-content:flex-end}._table-header-cell_qun9e_45._align-right_qun9e_94 svg{margin-right:-16px}._table-header-cell_qun9e_45._align-center_qun9e_100{justify-content:center}._table-cell_qun9e_45{font-size:13px;line-height:20px}._header_1q16i_1{display:flex;align-items:center;justify-content:space-between;background-color:var(--rp-ui-base-bg-000);padding-bottom:18px}._header_1q16i_1 ._dropdowns-wrapper_1q16i_8{display:flex;align-items:center;column-gap:8px}._header_1q16i_1 ._button-prev_1q16i_13,._header_1q16i_1 ._button-next_1q16i_14{all:unset;align-self:center;width:16px;height:16px}._header_1q16i_1 ._button-prev_1q16i_13 svg,._header_1q16i_1 ._button-next_1q16i_14 svg{width:16px;height:16px}._header_1q16i_1 ._button-prev_1q16i_13:hover:not(._disabled_1q16i_25),._header_1q16i_1 ._button-next_1q16i_14:hover:not(._disabled_1q16i_25){cursor:pointer}._header_1q16i_1 ._button-prev_1q16i_13:hover:not(._disabled_1q16i_25) svg>path,._header_1q16i_1 ._button-next_1q16i_14:hover:not(._disabled_1q16i_25) svg>path{fill:var(--rp-ui-base-e-400)}._header_1q16i_1 ._button-prev_1q16i_13._disabled_1q16i_25,._header_1q16i_1 ._button-next_1q16i_14._disabled_1q16i_25{opacity:.3;pointer-events:none}._header_1q16i_1 ._button-next_1q16i_14{transform:rotate(180deg)}._header_1q16i_1 ._dropdown_1q16i_8{width:auto}._header_1q16i_1 ._dropdown_1q16i_8._month-dropdown_1q16i_44{width:117px}._header_1q16i_1 ._dropdown_1q16i_8 ._toggle-button_1q16i_47>span{color:var(--rp-ui-base-topaz);font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-bold)}._header_1q16i_1 ._dropdown_1q16i_8 ._toggle-button_1q16i_47:hover>span{color:var(-rp-ui-base-topaz-hover)}.react-datepicker__aria-live{display:none}._calendar_1pok6_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_1pok6_5 .react-datepicker__month-container{width:100%;height:100%;float:none;display:flex;flex-direction:column;justify-content:center;align-items:center}._calendar_1pok6_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_1pok6_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:var(--rp-ui-base-fw-bold);font-size:13px;line-height:20px;color:var(--rp-ui-base-dark-e-500);vertical-align:middle}._calendar_1pok6_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_1pok6_5 .react-datepicker__month-container .react-datepicker__month{display:flex;flex-direction:column;width:100%;height:100%;row-gap:8px}._calendar_1pok6_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_1pok6_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__week .react-datepicker__day--range-end:first-child:before{display:none}._calendar_1pok6_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__day{cursor:pointer}._calendar_1pok6_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_1pok6_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:var(--rp-ui-base-fw-bold);color:var(--rp-ui-base-bg-000)}._calendar_1pok6_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__day--disabled{cursor:default}._calendar_1pok6_5 .react-datepicker__month-container .react-datepicker__month .react-datepicker__day--disabled:hover{border:none!important;line-height:40px!important}._calendar_1pok6_5 ._current-date_1pok6_89,._calendar_1pok6_5 ._date_1pok6_90{width:40px;margin:0;box-sizing:border-box;height:40px;line-height:40px}._calendar_1pok6_5 ._current-date_1pok6_89:focus-visible,._calendar_1pok6_5 ._date_1pok6_90:focus-visible{outline:none}._calendar_1pok6_5 ._date_1pok6_90{background-color:transparent;border-radius:unset;color:inherit;text-align:center}._calendar_1pok6_5 ._current-date_1pok6_89,._calendar_1pok6_5 ._current-date_1pok6_89:hover{position:relative;z-index:3;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-bold);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_1pok6_5 ._date_1pok6_90:hover:not(._current-date_1pok6_89):not(._selected-range_1pok6_119):not(._end-date_1pok6_119){border-radius:50%;border:1px solid var(--rp-ui-base-topaz);background-color:transparent;line-height:38px;color:inherit}._calendar_1pok6_5 ._end-date_1pok6_119{position:relative;border-radius:50%;background-color:var(--rp-ui-base-topaz);font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-bold);color:var(--rp-ui-base-bg-000)}._calendar_1pok6_5 ._end-date_1pok6_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_1pok6_5 ._end-date_1pok6_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_1pok6_5 ._selected-range_1pok6_119{background-color:var(--rp-ui-base-bg-200);border-radius:8px;height:32px;line-height:32px;position:relative}._calendar_1pok6_5 ._selected-range_1pok6_119:hover{height:40px;line-height:40px;border-radius:50%;background:var(--rp-ui-base-bg-200)}._calendar_1pok6_5 ._selected-range_1pok6_119:hover:after{display:block}._calendar_1pok6_5 ._selected-range_1pok6_119:hover:not(:first-child):before{top:4px}._calendar_1pok6_5 ._selected-range_1pok6_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_1pok6_5 ._selected-range_1pok6_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_1pok6_5 ._disabled_1pok6_202{color:var(--rp-ui-base-e-400);background-color:transparent}._calendar_1pok6_5 ._disabled_1pok6_202:focus-visible{outline:none}._popper_1pok6_210{z-index:10}._input_1pok6_214{width:100%;min-width:138px}._dropdown-option_1etj7_1{display:flex;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);font-size:13px;line-height:20px;box-sizing:border-box;cursor:pointer;color:var(--rp-ui-color-text-3);padding:9px 12px 7px}._dropdown-option_1etj7_1._disabled_1etj7_12{pointer-events:none;background-color:var(--rp-ui-color-field-bg-2)}._dropdown-option_1etj7_1._hidden_1etj7_16{display:none}._dropdown-option_1etj7_1:hover:not(:active){background:var(--rp-ui-color-bg-3)}._dropdown-option_1etj7_1._hover_1etj7_22:not(._disabled_1etj7_12){padding:8px 11px 6px;background-color:var(--rp-ui-color-bg-3);border:1px solid var(--rp-ui-color-primary-focused)}._dropdown-option_1etj7_1._hover_1etj7_22:not(._disabled_1etj7_12):hover{border:none;padding:9px 12px 7px}._dropdown-option_1etj7_1._hover_1etj7_22:not(._disabled_1etj7_12):hover:hover:not(:active){background:var(--rp-ui-color-bg-3)}._dropdown-option_1etj7_1._selected_1etj7_34:not(._multi-select_1etj7_34){background:var(--rp-ui-base-topaz-100);color:var(--rp-ui-base-topaz)}._single-option_1etj7_39{height:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}._sub-option_1etj7_46{padding-left:24px}._container_5enku_1{position:relative;display:inline-block;width:100%}._icon_5enku_7{width:16px;height:16px;margin-right:8px}._arrow_5enku_13{display:inline-flex;margin-left:12px;transition:transform .2s linear}._dropdown_5enku_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_5enku_19._transparent-background_5enku_33{background-color:transparent}._dropdown_5enku_19._disabled_5enku_36{pointer-events:none;background-color:var(--rp-ui-color-field-bg-2)}._dropdown_5enku_19._disabled_5enku_36 ._arrow_5enku_13 svg path{opacity:.4}._dropdown_5enku_19._disabled_5enku_36 ._value_5enku_43{color:var(--rp-ui-color-disabled)}._dropdown_5enku_19._error_5enku_46._touched_5enku_46{border-width:1px;border-color:var(--rp-ui-color-error)}._dropdown_5enku_19:hover:not(:active):not(:focus-visible):not(._opened_5enku_50):not(._error_5enku_46){border-color:var(--rp-ui-color-field-hover)}._dropdown_5enku_19:active,._dropdown_5enku_19:focus-visible{padding:7px 11px;border-width:2px;border-color:var(--rp-ui-color-primary-focused);outline:none}._dropdown_5enku_19:active ._arrow_5enku_13 svg path,._dropdown_5enku_19:focus-visible ._arrow_5enku_13 svg path{fill:var(--rp-ui-color-field-hover-2)}._dropdown_5enku_19._opened_5enku_50:not(:active):not(._error_5enku_46){border-width:1px;border-color:var(--rp-ui-color-primary-pressed)}._dropdown_5enku_19._opened_5enku_50:not(:active):not(._error_5enku_46) ._arrow_5enku_13 svg path{fill:var(--rp-ui-color-field-opened)}._dropdown_5enku_19._opened_5enku_50 ._arrow_5enku_13{transform:rotate(180deg)}._dropdown_5enku_19 ._value_5enku_43{flex-grow:1;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);font-size:13px;line-height:20px;color:var(--rp-ui-color-text-3);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}._dropdown_5enku_19 ._value_5enku_43._placeholder_5enku_83{color:var(--rp-ui-color-field-placeholder-3)}@media (max-width: 767px){._dropdown_5enku_19 ._mobile-disabled_5enku_87{background-color:var(--rp-ui-color-field-bg-2)}}._select-list_5enku_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_5enku_92._opened_5enku_50:focus-visible{outline:none}._select-list_5enku_92._limited-width_5enku_109{max-width:384px}._options-container_5enku_113{display:flex;flex-direction:column}._ghost_5enku_118{border-color:transparent;background:transparent;padding:9px 0 7px}._ghost_5enku_118._disabled_5enku_36{background:transparent}._ghost_5enku_118:hover:not(:active):not(:focus-visible):not(._opened_5enku_50):not(._error_5enku_46){border-color:transparent}._ghost_5enku_118._opened_5enku_50:not(:active):not(._error_5enku_46){border-color:transparent}._ghost_5enku_118._opened_5enku_50 ._value_5enku_43{color:var(--rp-ui-color-primary-pressed)}._ghost_5enku_118:active,._ghost_5enku_118:focus-visible{padding:7px 0}._divider_5enku_139{height:1px;margin:8px 12px;background-color:var(--rp-ui-base-e-100)}._item-counter_4g6do_1{display:inline-block;width:200px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._size-selector_9ub70_1{display:flex;flex-direction:column}._size-option_9ub70_6{width:88px;padding:8px 0;outline:none;border:none;background:none;cursor:pointer;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);font-size:13px;line-height:20px;text-align:left;color:var(--rp-ui-base-almost-black)}._size-option_9ub70_6:first-child{padding-top:0}._size-option_9ub70_6:last-child{padding-bottom:0}._size-option_9ub70_6:hover{color:var(--rp-ui-base-topaz-hover)}._size-option_9ub70_6:active{color:var(--rp-ui-base-topaz-pressed)}._size-option_9ub70_6._selected_9ub70_32{color:var(--rp-ui-base-topaz)}._page-size-control_sgwmi_1{display:flex;justify-content:flex-end;width:160px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._size-selector-button_sgwmi_10{margin-right:4px;font-weight:var(--rp-ui-base-fw-bold)}._page-selector_rtho4_1{display:flex;gap:8px}._field-wrapper_rtho4_6,._apply-button_rtho4_10{width:90px}._active-page_1gl9o_1{display:inline-block;width:124px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-align:right}._page-selector_1gl9o_10{text-align:left}._page-selector-button_1gl9o_14{margin-left:4px;font-weight:var(--rp-ui-base-fw-bold)}._bar_y74hy_1{width:260px;height:8px;margin:4px 0;border-radius:3px;background-color:var(--rp-ui-base-e-100)}._section-with-tooltip_y74hy_9{display:inline-block;height:16px}._section-with-tooltip_y74hy_9:hover ._section_y74hy_9{background-color:var(--rp-ui-base-topaz-hover)}._section-with-tooltip_y74hy_9:active ._section_y74hy_9{background-color:var(--rp-ui-base-topaz-pressed)}._section-with-tooltip_y74hy_9:first-child ._section_y74hy_9{border-radius:3px 0 0 3px}._section-with-tooltip_y74hy_9:last-child ._section_y74hy_9{border-radius:0 3px 3px 0}._section_y74hy_9{position:relative;top:4px;height:8px;background-color:transparent;margin:4px 0}._section_y74hy_9._selected_y74hy_33{background-color:var(--rp-ui-base-topaz)}._tooltip-wrapper_y74hy_37{width:inherit;height:16px}._tooltip_y74hy_37{font-family:var(--rp-ui-base-font-family);font-size:11px;line-height:16px;text-align:center}._tooltip_y74hy_37 ._tooltip-text_y74hy_48{font-weight:var(--rp-ui-base-fw-regular);padding-bottom:8px}._tooltip_y74hy_37 ._page-number_y74hy_52{font-weight:var(--rp-ui-base-fw-bold)}._section-with-tooltip_y74hy_9,._tooltip-wrapper_y74hy_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_w2r3n_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:var(--rp-ui-base-fw-regular);font-size:13px;line-height:20px;color:var(--rp-ui-base-almost-black)}._field-label_10m6x_1{font-size:13px;line-height:20px;display:block;position:relative;margin-bottom:4px;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-medium);color:var(--rp-ui-color-text)}._field-label_10m6x_1 ._asterisk_10m6x_11{position:absolute;top:-3px;color:var(--rp-ui-base-e-300);padding-left:4px}._field-label_10m6x_1._disabled_10m6x_17{pointer-events:none}._modal-content_zh8d2_1{width:100%;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);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_zh8d2_1._scrollable_zh8d2_12{width:calc(100% - 34px)}._buttons-block_1mwne_1{display:flex;align-items:center;column-gap:10px}._button-container_1mwne_7{display:inline-block;min-width:70px}._modal-footer_1mwne_12{position:relative;display:flex;justify-content:flex-end;width:100%;margin-top:16px}._modal-footer_1mwne_12._with-extra-node_1mwne_19{justify-content:space-between}._size-small_1mwne_23{flex-direction:column;align-items:stretch}._size-small_1mwne_23 ._buttons-block_1mwne_1{display:flex;flex-direction:column;align-items:stretch}._size-small_1mwne_23 ._button-container_1mwne_7{margin:0 0 10px}._size-small_1mwne_23 ._button-container_1mwne_7:last-child{margin-bottom:0}._modal-header_w4aaf_1{position:relative;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);font-size:20px;line-height:31px;color:var(--rp-ui-color-text);padding-bottom:24px}._modal-header_w4aaf_1._width-description_w4aaf_10{padding-bottom:8px}._modal-header-content_w4aaf_14{width:100%;padding-right:30px;box-sizing:border-box}._modal-title_w4aaf_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_w4aaf_29{position:absolute;top:6px;right:0;line-height:normal;cursor:pointer}._modal_yxql5_1{position:absolute;top:0;left:0;display:block;width:100%;height:100%;text-align:center;overflow:hidden}._overlay-default_yxql5_12{background-color:var(--rp-ui-base-overlay)}._overlay-light-cyan_yxql5_16{background-color:var(--rp-ui-base-overlay-light-cyan)}._scrolling-content_yxql5_20{position:fixed;width:100%;height:100%}._modal-window_yxql5_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_yxql5_43{display:inline-block;width:100%;padding-bottom:24px;font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-regular);font-size:13px;line-height:20px;color:var(--rp-ui-base-almost-black)}._description_yxql5_43._scrollable_yxql5_53{width:calc(100% - 34px)}._size-default_yxql5_57{width:480px}@media (max-width: 480px){._size-default_yxql5_57{right:10px;left:10px;transform:none;width:auto}}._size-small_yxql5_69{width:320px}@media (max-width: 320px){._size-small_yxql5_69{right:10px;left:10px;transform:none;width:auto}}._size-large_yxql5_81{width:720px}@media (max-width: 720px){._size-large_yxql5_81{right:10px;left:10px;transform:none;width:auto}}._popover-wrapper_n3nff_1{display:inline-block;width:fit-content;height:fit-content;cursor:pointer}._popover_n3nff_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_n3nff_28{font-family:var(--rp-ui-base-font-family-heading);font-weight:var(--rp-ui-base-fw-bold);font-size:13px;line-height:20px;margin-bottom:8px}._system-alert_1py1m_1{display:flex;box-sizing:border-box;width:600px;padding:16px;gap:16px;border-radius:16px;justify-content:space-between;box-shadow:var(--rp-ui-base-shadow-secondary)}._system-alert_1py1m_1._error_1py1m_11{background-color:var(--rp-ui-base-sm-error)}._system-alert_1py1m_1._success_1py1m_14{background-color:var(--rp-ui-base-test-execution-status-passed)}._system-alert_1py1m_1._info_1py1m_17{background-color:var(--rp-ui-base-no-defect-bug-group)}._system-alert_1py1m_1 ._icon-wrapper_1py1m_20{width:20px;height:24px;display:grid;place-content:center}._system-alert_1py1m_1 ._content-wrapper_1py1m_26{display:flex;gap:16px;flex-direction:column;flex:1}._system-alert_1py1m_1 ._content-wrapper_1py1m_26 ._title_1py1m_32{text-align:start;font-family:var(--rp-ui-base-font-family);font-size:15px;line-height:24px;font-weight:var(--rp-ui-base-fw-semi-bold);color:var(--rp-ui-base-bg-000);display:-webkit-box;max-width:100%;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}._system-alert_1py1m_1 ._close-button_1py1m_45{background:none;border:none;width:24px;height:24px;cursor:pointer}._system-alert_1py1m_1 ._close-button_1py1m_45 svg path{fill:var(--rp-ui-base-bg-000)}._tooltip-wrapper_lwpn2_16{display:block;width:100%;height:fit-content;cursor:pointer}._tooltip-content_lwpn2_23{font-size:11px;line-height:16px;padding:16px;border-radius:8px;background-color:var(--rp-ui-base-tooltip-bg);font-family:var(--rp-ui-base-font-family);font-weight:var(--rp-ui-base-fw-medium);color:var(--rp-ui-base-bg-000);word-wrap:break-word;white-space:pre-wrap;box-sizing:border-box;width:100%}
|
package/package.json
CHANGED
package/dist/button-33bc880f.js
DELETED
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
import { jsxs as p, jsx as b } from "react/jsx-runtime";
|
|
2
|
-
import { forwardRef as l } from "react";
|
|
3
|
-
import { c as u } from "./bind-06a7ff84.js";
|
|
4
|
-
const x = "_button_108em_1", f = "_primary_108em_18", g = "_disabled_108em_23", y = "_ghost_108em_38", N = "_danger_108em_59", B = "_text_108em_79", $ = "_icon_108em_133", j = {
|
|
5
|
-
button: x,
|
|
6
|
-
primary: f,
|
|
7
|
-
disabled: g,
|
|
8
|
-
ghost: y,
|
|
9
|
-
danger: N,
|
|
10
|
-
text: B,
|
|
11
|
-
"width-min-width": "_width-min-width_108em_115",
|
|
12
|
-
"width-content": "_width-content_108em_119",
|
|
13
|
-
"width-wide-content": "_width-wide-content_108em_123",
|
|
14
|
-
"width-parent": "_width-parent_108em_128",
|
|
15
|
-
icon: $,
|
|
16
|
-
"icon-start": "_icon-start_108em_139",
|
|
17
|
-
"icon-end": "_icon-end_108em_143"
|
|
18
|
-
}, _ = u.bind(j), v = l(
|
|
19
|
-
({
|
|
20
|
-
variant: i = "primary",
|
|
21
|
-
icon: t,
|
|
22
|
-
iconPlace: n = "start",
|
|
23
|
-
adjustWidthOn: e = "min-width",
|
|
24
|
-
type: s = "button",
|
|
25
|
-
children: c,
|
|
26
|
-
disabled: o = !1,
|
|
27
|
-
onClick: m,
|
|
28
|
-
title: r,
|
|
29
|
-
className: d,
|
|
30
|
-
...a
|
|
31
|
-
}, h) => {
|
|
32
|
-
const w = _("button", i, d, {
|
|
33
|
-
disabled: o,
|
|
34
|
-
[`width-${e}`]: e
|
|
35
|
-
});
|
|
36
|
-
return /* @__PURE__ */ p(
|
|
37
|
-
"button",
|
|
38
|
-
{
|
|
39
|
-
ref: h,
|
|
40
|
-
type: s,
|
|
41
|
-
disabled: o,
|
|
42
|
-
className: w,
|
|
43
|
-
onClick: m,
|
|
44
|
-
title: r,
|
|
45
|
-
...a,
|
|
46
|
-
children: [
|
|
47
|
-
t && /* @__PURE__ */ b(
|
|
48
|
-
"i",
|
|
49
|
-
{
|
|
50
|
-
className: _("icon", {
|
|
51
|
-
[`icon-${n}`]: n
|
|
52
|
-
}),
|
|
53
|
-
children: t
|
|
54
|
-
}
|
|
55
|
-
),
|
|
56
|
-
c
|
|
57
|
-
]
|
|
58
|
-
}
|
|
59
|
-
);
|
|
60
|
-
}
|
|
61
|
-
);
|
|
62
|
-
export {
|
|
63
|
-
v as B
|
|
64
|
-
};
|