@synerise/ds-table 1.11.17 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/CLAUDE.md +6 -0
- package/README.md +73 -0
- package/dist/Cell/Star/StarCell.d.ts +8 -8
- package/dist/InfiniteScroll/ErrorItem.js +2 -2
- package/dist/InfiniteScroll/NoMoreItem.js +2 -2
- package/dist/Table.d.ts +6 -0
- package/dist/Table.styles.d.ts +0 -2
- package/dist/Table.styles.js +4 -10
- package/dist/Table.types.d.ts +9 -0
- package/dist/TableHeader/TableLimit/TableLimit.js +2 -2
- package/dist/index.d.ts +48 -6
- package/dist/index.js +9 -9
- package/dist/style/index.css +1 -1
- package/package.json +30 -30
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [2.0.0](https://github.com/synerise/synerise-design/compare/@synerise/ds-table@1.11.17...@synerise/ds-table@2.0.0) (2026-08-26)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **table:** deprecate @synerise/ds-table in favour of ds-table-new ([bdbe9e8](https://github.com/synerise/synerise-design/commit/bdbe9e8e909221926bcf9936a92482ff0a72c975))
|
|
11
|
+
|
|
6
12
|
## [1.11.17](https://github.com/synerise/synerise-design/compare/@synerise/ds-table@1.11.16...@synerise/ds-table@1.11.17) (2026-08-20)
|
|
7
13
|
|
|
8
14
|
**Note:** Version bump only for package @synerise/ds-table
|
package/CLAUDE.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Table (`@synerise/ds-table`)
|
|
2
2
|
|
|
3
|
+
> **⚠ DEPRECATED — do not use in new code.** This package stays on antd 4 and will not be
|
|
4
|
+
> migrated off it. Use `@synerise/ds-table-new` instead. The prop mapping and the list of
|
|
5
|
+
> features with no equivalent live in the "Migrating to @synerise/ds-table-new" section of
|
|
6
|
+
> this package's `README.md`. The package stays published while `portal-ui-bridge` and
|
|
7
|
+
> `universal-list` migrate; deleting it is gated on them.
|
|
8
|
+
|
|
3
9
|
> Feature-rich Ant Design 4.x table wrapper that adds a DS-styled title bar, row selection, row starring, multi-column sorting, grouped rows, tree rows, virtualized rendering, and infinite scroll.
|
|
4
10
|
|
|
5
11
|
## Package structure
|
package/README.md
CHANGED
|
@@ -3,12 +3,85 @@ id: table
|
|
|
3
3
|
title: Table
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
+
> **⚠ DEPRECATED.** This package stays on antd 4 and will not be migrated off it. Use [`@synerise/ds-table-new`](../table-new/README.md) instead — see [Migrating to @synerise/ds-table-new](#migrating-to-syneriseds-table-new) below for the full prop mapping and the list of features that have no equivalent.
|
|
7
|
+
|
|
6
8
|
Table UI Component
|
|
7
9
|
|
|
8
10
|
## Demo
|
|
9
11
|
|
|
10
12
|
<iframe src="/storybook-static/iframe.html?id=components-table--default"></iframe>
|
|
11
13
|
|
|
14
|
+
## Migrating to @synerise/ds-table-new
|
|
15
|
+
|
|
16
|
+
`@synerise/ds-table-new` is the antd-free replacement, built on `@tanstack/react-table` and
|
|
17
|
+
`@tanstack/react-virtual`. The full guide with examples lives in Storybook under
|
|
18
|
+
**Components/TableNew/Migration from Table**; this is the summary.
|
|
19
|
+
|
|
20
|
+
### Imports
|
|
21
|
+
|
|
22
|
+
The default export is gone, and cells are flat named exports:
|
|
23
|
+
|
|
24
|
+
```diff
|
|
25
|
+
- import Table, { VirtualTable, TreeTable, TableCell } from '@synerise/ds-table';
|
|
26
|
+
+ import { Table, VirtualTable, TreeTable, AvatarLabelCell } from '@synerise/ds-table-new';
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
`SELECTION_ALL` / `SELECTION_INVERT` were statics on the default export (`Table.SELECTION_ALL`); they
|
|
30
|
+
are now package exports.
|
|
31
|
+
|
|
32
|
+
### Renamed props
|
|
33
|
+
|
|
34
|
+
| `@synerise/ds-table` | `@synerise/ds-table-new` |
|
|
35
|
+
| --- | --- |
|
|
36
|
+
| `dataSource` | `data` (required, and mutable `TData[]`) |
|
|
37
|
+
| `columns` (`DSColumnType[]`) | `columns` (required, `ColumnDef[]`) |
|
|
38
|
+
| `loading` | `isLoading` |
|
|
39
|
+
| `locale` | `texts` (restructured; antd's own `TableLocale` keys dropped) |
|
|
40
|
+
| `selection` | `selectionConfig` + top-level `selectedRowKeys: string[]`; `globalSelection: { isSelected, onChange }` becomes `globalSelected` + `globalSelectionOnChange` |
|
|
41
|
+
| `roundedHeader` | `cardStyles` |
|
|
42
|
+
| `onRow` | `getRowProps` (no `index` argument) |
|
|
43
|
+
| `scroll={{ y }}` | `maxHeight` (number, default `800`) |
|
|
44
|
+
| `sticky={{ … }}` | `stickyHeader` (boolean) + `scrollElementRef` |
|
|
45
|
+
| `search` | `matchesSearchQuery` / `filterData` / `searchProps` |
|
|
46
|
+
| `onListRefChange` | `tableRef` |
|
|
47
|
+
| `showHeader={false}` | `hideColumnNames` |
|
|
48
|
+
|
|
49
|
+
### Columns
|
|
50
|
+
|
|
51
|
+
Use `legacyColumnConfigAdapter(legacyColumns)` for a bulk migration, or write `ColumnDef` directly:
|
|
52
|
+
`dataIndex`→`accessorKey`, `key`→`id`, `title`→`header`, `render`→`cell`, `width`→`size`,
|
|
53
|
+
`sorter`→`sortingFn`/`enableSorting`, and `fixed`/`align`/`childRender`/`getCellTooltipProps` move
|
|
54
|
+
under `meta`. Prefer the native `size` field over `meta.width`.
|
|
55
|
+
|
|
56
|
+
### Changed defaults
|
|
57
|
+
|
|
58
|
+
**`pagination` flips from off to on — the easiest regression to miss.** The legacy table paginated
|
|
59
|
+
only when you passed the prop, so a call site that omitted it showed every row. `ds-table-new` treats
|
|
60
|
+
anything other than an explicit `false` as enabled and paginates at 10 rows per page. Pass
|
|
61
|
+
`pagination={false}` on every migrated table that did not previously set it.
|
|
62
|
+
|
|
63
|
+
`cellHeight` was required (documented default `52`) and is now optional, defaulting to `73` — pass it
|
|
64
|
+
explicitly when matching an existing design. `initialWidth` is gone; widths are measured.
|
|
65
|
+
|
|
66
|
+
### No equivalent in `ds-table-new`
|
|
67
|
+
|
|
68
|
+
`GroupedTable` / `GROUP_BY` and the `grouped*` props, `rowStar`, `filters` / `FilterTrigger`, the
|
|
69
|
+
`components` override (and `ScrollProxyType` / `CustomizeScrollBodyInfo`), `cellSize`,
|
|
70
|
+
`dataSourceFull`, `skeletonProps`, `initialWidth`, `onChange`, and the exported `ItemsMenu` /
|
|
71
|
+
`BackToTopButton` (now the `itemsMenu` prop and `showBackToTopButton` / `onBackToTop`).
|
|
72
|
+
`VirtualTableRef` is reshaped — the raw `virtualListRef` / `outerListRef` / `horizontalScrollRef`
|
|
73
|
+
handles are replaced by `getDimensions`, `scrollToIndex` and `highlightRow`.
|
|
74
|
+
|
|
75
|
+
`defaultSortOrder` has no equivalent either — `initialState` is internal to `ds-table-new` and
|
|
76
|
+
`meta.sortOrder` only paints the sort caret without sorting, so pre-sort the array you pass to `data`.
|
|
77
|
+
|
|
78
|
+
### The DOM changes
|
|
79
|
+
|
|
80
|
+
`.ant-table-*` and `.virtual-table-cell` become `.ds-table-*` on a real `<table>`, with
|
|
81
|
+
`data-testid="ds-table-*"` hooks. Rows are `table-layout: fixed` with `overflow: hidden`, so a narrow
|
|
82
|
+
column that used to grow to fit a button will now clip it. Audit consumer CSS overrides, E2E selectors
|
|
83
|
+
and snapshot tests.
|
|
84
|
+
|
|
12
85
|
## API
|
|
13
86
|
|
|
14
87
|
### Table
|
|
@@ -1,6 +1,14 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
declare const _default: React.ForwardRefExoticComponent<{
|
|
3
3
|
[x: `data-${string}`]: string;
|
|
4
|
+
title?: string | undefined | undefined;
|
|
5
|
+
className?: string | undefined | undefined;
|
|
6
|
+
style?: React.CSSProperties | undefined;
|
|
7
|
+
children: React.ReactNode | React.ReactNode[];
|
|
8
|
+
id?: string | undefined | undefined;
|
|
9
|
+
onChange?: React.FormEventHandler<HTMLDivElement> | undefined;
|
|
10
|
+
onSelect?: React.ReactEventHandler<HTMLDivElement> | undefined;
|
|
11
|
+
slot?: string | undefined | undefined;
|
|
4
12
|
defaultChecked?: boolean | undefined | undefined;
|
|
5
13
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
6
14
|
suppressContentEditableWarning?: boolean | undefined | undefined;
|
|
@@ -8,21 +16,16 @@ declare const _default: React.ForwardRefExoticComponent<{
|
|
|
8
16
|
accessKey?: string | undefined | undefined;
|
|
9
17
|
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {}) | undefined;
|
|
10
18
|
autoFocus?: boolean | undefined | undefined;
|
|
11
|
-
className?: string | undefined | undefined;
|
|
12
19
|
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
13
20
|
contextMenu?: string | undefined | undefined;
|
|
14
21
|
dir?: string | undefined | undefined;
|
|
15
22
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
16
23
|
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
|
|
17
24
|
hidden?: boolean | undefined | undefined;
|
|
18
|
-
id?: string | undefined | undefined;
|
|
19
25
|
lang?: string | undefined | undefined;
|
|
20
26
|
nonce?: string | undefined | undefined;
|
|
21
|
-
slot?: string | undefined | undefined;
|
|
22
27
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
23
|
-
style?: React.CSSProperties | undefined;
|
|
24
28
|
tabIndex?: number | undefined | undefined;
|
|
25
|
-
title?: string | undefined | undefined;
|
|
26
29
|
translate?: "yes" | "no" | undefined | undefined;
|
|
27
30
|
radioGroup?: string | undefined | undefined;
|
|
28
31
|
role?: React.AriaRole | undefined;
|
|
@@ -103,7 +106,6 @@ declare const _default: React.ForwardRefExoticComponent<{
|
|
|
103
106
|
"aria-valuemin"?: number | undefined | undefined;
|
|
104
107
|
"aria-valuenow"?: number | undefined | undefined;
|
|
105
108
|
"aria-valuetext"?: string | undefined | undefined;
|
|
106
|
-
children: React.ReactNode | React.ReactNode[];
|
|
107
109
|
dangerouslySetInnerHTML?: {
|
|
108
110
|
__html: string | TrustedHTML;
|
|
109
111
|
} | undefined | undefined;
|
|
@@ -123,7 +125,6 @@ declare const _default: React.ForwardRefExoticComponent<{
|
|
|
123
125
|
onFocusCapture?: React.FocusEventHandler<HTMLDivElement> | undefined;
|
|
124
126
|
onBlur?: React.FocusEventHandler<HTMLDivElement> | undefined;
|
|
125
127
|
onBlurCapture?: React.FocusEventHandler<HTMLDivElement> | undefined;
|
|
126
|
-
onChange?: React.FormEventHandler<HTMLDivElement> | undefined;
|
|
127
128
|
onChangeCapture?: React.FormEventHandler<HTMLDivElement> | undefined;
|
|
128
129
|
onBeforeInput?: React.FormEventHandler<HTMLDivElement> | undefined;
|
|
129
130
|
onBeforeInputCapture?: React.FormEventHandler<HTMLDivElement> | undefined;
|
|
@@ -227,7 +228,6 @@ declare const _default: React.ForwardRefExoticComponent<{
|
|
|
227
228
|
onMouseOverCapture?: React.MouseEventHandler<HTMLDivElement> | undefined;
|
|
228
229
|
onMouseUp?: React.MouseEventHandler<HTMLDivElement> | undefined;
|
|
229
230
|
onMouseUpCapture?: React.MouseEventHandler<HTMLDivElement> | undefined;
|
|
230
|
-
onSelect?: React.ReactEventHandler<HTMLDivElement> | undefined;
|
|
231
231
|
onSelectCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
|
|
232
232
|
onTouchCancel?: React.TouchEventHandler<HTMLDivElement> | undefined;
|
|
233
233
|
onTouchCancelCapture?: React.TouchEventHandler<HTMLDivElement> | undefined;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
-
import Alert from "@synerise/ds-alert";
|
|
3
2
|
import Button from "@synerise/ds-button";
|
|
4
3
|
import Icon, { RefreshM } from "@synerise/ds-icon";
|
|
4
|
+
import InlineAlert from "@synerise/ds-inline-alert";
|
|
5
5
|
import { useTableLocaleContext } from "../utils/locale.js";
|
|
6
6
|
import { ErrorItemWrapper } from "./ErrorItem.styles.js";
|
|
7
7
|
const ErrorItem = ({
|
|
@@ -9,7 +9,7 @@ const ErrorItem = ({
|
|
|
9
9
|
}) => {
|
|
10
10
|
const tableLocale = useTableLocaleContext();
|
|
11
11
|
return /* @__PURE__ */ jsxs(ErrorItemWrapper, { children: [
|
|
12
|
-
/* @__PURE__ */ jsx(
|
|
12
|
+
/* @__PURE__ */ jsx(InlineAlert, { type: "alert", message: tableLocale.infiniteScrollError }),
|
|
13
13
|
onRetryClick && /* @__PURE__ */ jsx(Button, { onClick: onRetryClick, type: "ghost", mode: "icon-label", icon: /* @__PURE__ */ jsx(Icon, { component: /* @__PURE__ */ jsx(RefreshM, {}) }), style: {
|
|
14
14
|
marginLeft: 8
|
|
15
15
|
}, children: tableLocale.infiniteScrollRetry })
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { jsx } from "react/jsx-runtime";
|
|
2
|
-
import
|
|
2
|
+
import InlineAlert from "@synerise/ds-inline-alert";
|
|
3
3
|
import { useTableLocaleContext } from "../utils/locale.js";
|
|
4
4
|
const NoMoreItem = () => {
|
|
5
5
|
const tableLocale = useTableLocaleContext();
|
|
6
|
-
return /* @__PURE__ */ jsx(
|
|
6
|
+
return /* @__PURE__ */ jsx(InlineAlert, { type: "info", message: tableLocale.infiniteScrollNoMoreData });
|
|
7
7
|
};
|
|
8
8
|
export {
|
|
9
9
|
NoMoreItem
|
package/dist/Table.d.ts
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
import { DSTableProps } from './Table.types';
|
|
3
3
|
import { SELECTION_ALL, SELECTION_INVERT } from './constants/Table.constants';
|
|
4
|
+
/**
|
|
5
|
+
* @deprecated `@synerise/ds-table` is deprecated and will not be migrated off antd.
|
|
6
|
+
* Use `@synerise/ds-table-new` instead (`Table` / `VirtualTable` / `TreeTable`).
|
|
7
|
+
* See the "Migrating to @synerise/ds-table-new" section in this package's README
|
|
8
|
+
* for the prop mapping and the list of features that have no equivalent.
|
|
9
|
+
*/
|
|
4
10
|
declare const DSTable: {
|
|
5
11
|
<T extends object>(props: DSTableProps<T>): React.JSX.Element;
|
|
6
12
|
SELECTION_ALL: string;
|
package/dist/Table.styles.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { default as Menu } from '@synerise/ds-menu';
|
|
2
1
|
export declare const Header: import('styled-components').StyledComponent<"div", any, {
|
|
3
2
|
withBorderTop?: boolean;
|
|
4
3
|
}, never>;
|
|
@@ -26,7 +25,6 @@ export declare const InputWrapper: import('styled-components').StyledComponent<"
|
|
|
26
25
|
searchValue: string | undefined;
|
|
27
26
|
}, never>;
|
|
28
27
|
export declare const Selection: import('styled-components').StyledComponent<"div", any, {}, never>;
|
|
29
|
-
export declare const SelectionMenu: import('styled-components').StyledComponent<typeof Menu, any, {}, never>;
|
|
30
28
|
export declare const Spinner: import('styled-components').StyledComponent<"div", any, {}, never>;
|
|
31
29
|
export declare const TableWrapper: import('styled-components').StyledComponent<"div", any, {
|
|
32
30
|
hideColumnNames?: boolean;
|
package/dist/Table.styles.js
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import styled, { keyframes } from "styled-components";
|
|
2
2
|
import { CheckboxWrapper } from "@synerise/ds-checkbox/dist/Checkbox.styles";
|
|
3
3
|
import { IconContainer } from "@synerise/ds-icon";
|
|
4
|
-
import Menu from "@synerise/ds-menu";
|
|
5
4
|
import Skeleton$1 from "@synerise/ds-skeleton";
|
|
6
5
|
import { macro, Text } from "@synerise/ds-typography";
|
|
7
6
|
const Header = /* @__PURE__ */ styled.div.withConfig({
|
|
@@ -60,18 +59,14 @@ const Selection = /* @__PURE__ */ styled.div.withConfig({
|
|
|
60
59
|
})(["display:flex;align-items:center;justify-content:flex-start;max-width:64px;margin-right:24px;border-radius:3px;&:hover{background-color:", ";}.ant-btn.ds-button:first-of-type{border-top-right-radius:0;border-bottom-right-radius:0;}.ant-btn.ds-button:last-of-type{border-top-left-radius:0;border-bottom-left-radius:0;}", "{padding:0;}"], ({
|
|
61
60
|
theme
|
|
62
61
|
}) => theme.palette["grey-100"], CheckboxWrapper);
|
|
63
|
-
const SelectionMenu = /* @__PURE__ */ styled(Menu).withConfig({
|
|
64
|
-
displayName: "Tablestyles__SelectionMenu",
|
|
65
|
-
componentId: "sc-dacfhr-13"
|
|
66
|
-
})(["padding:8px;"]);
|
|
67
62
|
const spinnerAnimation = /* @__PURE__ */ keyframes(["from{transform:rotateZ(0deg);}to{transform:rotateZ(360deg);}"]);
|
|
68
63
|
const Spinner = /* @__PURE__ */ styled.div.withConfig({
|
|
69
64
|
displayName: "Tablestyles__Spinner",
|
|
70
|
-
componentId: "sc-dacfhr-
|
|
65
|
+
componentId: "sc-dacfhr-13"
|
|
71
66
|
})(["position:absolute !important;top:0;left:0;width:100%;height:100%;margin:0;border-radius:inherit;display:flex;align-items:center;justify-content:center;background-color:rgba(255,255,255,0.6);z-index:10;", "{animation:", " 1s forwards linear infinite;svg{color:", ";fill:", ";}}"], IconContainer, spinnerAnimation, (props) => props.theme.palette["blue-600"], (props) => props.theme.palette["blue-600"]);
|
|
72
67
|
const TableWrapper = /* @__PURE__ */ styled.div.withConfig({
|
|
73
68
|
displayName: "Tablestyles__TableWrapper",
|
|
74
|
-
componentId: "sc-dacfhr-
|
|
69
|
+
componentId: "sc-dacfhr-14"
|
|
75
70
|
})(["table{.ant-table-thead{", ";}}.ant-table-wrapper .ant-table{z-index:1;}.ant-table .ant-table-cell.ant-table-selection-column,.ant-table .ant-table-cell.ds-table-star-column{padding:0 8px 0 24px;& > button{display:inline-block;}}.ant-table .ant-table-cell.ant-table-selection-column + .ant-table-cell.ds-table-star-column{padding-left:0;}.ant-table .ant-table-thead th{transition:background 0.3s,border-color 0.3s;background-color:", ";border-bottom-color:", ";&.ant-table-column-has-sorters{cursor:default;}&.ant-table-column-has-sorters:hover{background-color:", ";border-bottom:2px solid ", ";> *{margin-bottom:-1px;}}> *{display:flex;width:100%;}[class^='ant-table-column-sorters']{width:100%;}&.ant-table-column-sort{background-color:", ";border-bottom:2px solid ", ";&:hover{background-color:", ";border-bottom:2px solid ", ";}& > [class^='ant-table-column-sorters']{overflow:hidden;}> *{margin-bottom:-1px;}}&.ant-table-cell-ellipsis.ant-table-column-has-sorters{overflow:visible;}&:not(.ds-table-column-sort){.ds-table-column-sorter{margin-left:8px;}}&.ds-table-active-column{background-color:", ";border-bottom:2px solid ", ";cursor:default;&:hover{background-color:", ";border-bottom:2px solid ", ";}.ant-table-column-sorter{display:none;}> *{margin-bottom:-1px;}}}.ant-table tr.ant-table-row:not(:hover) td.ant-table-column-sort{background-color:", ";}.ant-table .ant-table-column-sorter{margin-left:8px;max-width:32px;min-width:32px;}.ant-table-cell .ds-sort-dropdown-button{opacity:0;}.ant-table-cell:hover .ds-sort-dropdown-button,.ant-table-cell.ant-table-column-sort .ds-sort-dropdown-button{opacity:1;}.ant-table-wrapper.virtual-table.virtual-table-infinite-scroll .ant-table .ant-table-header{box-shadow:0 4px 12px 0 rgba(35,41,54,0.04);}.virtual-table:not(.with-sticky-header) .ant-table-container{overflow:auto hidden;}.virtual-table .virtual-table-row:not(:hover) .virtual-table-cell.ant-table-column-sort{background-color:", ";}& .ant-table .ant-table-cell-scrollbar{box-shadow:none;}& .ant-table th.ant-table-cell{white-space:", ";}&&& .ant-table-thead > tr > th:not(:last-child):not(.ant-table-selection-column):not( .ant-table-row-expand-icon-cell ):not([colspan])::before{position:relative;}"], (props) => props.hideColumnNames ? "display: none" : "", ({
|
|
76
71
|
theme
|
|
77
72
|
}) => theme.palette.white, ({
|
|
@@ -103,11 +98,11 @@ const TableWrapper = /* @__PURE__ */ styled.div.withConfig({
|
|
|
103
98
|
}) => theme.palette["blue-050"], (props) => props.disableColumnNamesLineBreak ? "nowrap" : "normal");
|
|
104
99
|
const Skeleton = /* @__PURE__ */ styled(Skeleton$1).withConfig({
|
|
105
100
|
displayName: "Tablestyles__Skeleton",
|
|
106
|
-
componentId: "sc-dacfhr-
|
|
101
|
+
componentId: "sc-dacfhr-15"
|
|
107
102
|
})(["padding:0;", ""], (props) => props.skeletonWidth && `width: ${props.skeletonWidth};`);
|
|
108
103
|
const TableSkeletonCell = /* @__PURE__ */ styled.div.withConfig({
|
|
109
104
|
displayName: "Tablestyles__TableSkeletonCell",
|
|
110
|
-
componentId: "sc-dacfhr-
|
|
105
|
+
componentId: "sc-dacfhr-16"
|
|
111
106
|
})(["display:flex;height:", ";width:", ";align-items:center;justify-content:flex-start;"], (props) => props.height ? `${props.height}px` : "auto", (props) => `${props.width}` || "50%");
|
|
112
107
|
export {
|
|
113
108
|
Header,
|
|
@@ -118,7 +113,6 @@ export {
|
|
|
118
113
|
Right,
|
|
119
114
|
RightSideWrapper,
|
|
120
115
|
Selection,
|
|
121
|
-
SelectionMenu,
|
|
122
116
|
Size,
|
|
123
117
|
Skeleton,
|
|
124
118
|
Spinner,
|
package/dist/Table.types.d.ts
CHANGED
|
@@ -93,6 +93,11 @@ export type Locale = TableLocale & {
|
|
|
93
93
|
unselectAll?: string;
|
|
94
94
|
unselectGlobalAll?: string;
|
|
95
95
|
};
|
|
96
|
+
/**
|
|
97
|
+
* @deprecated `@synerise/ds-table` is deprecated. Use `ColumnDef` from
|
|
98
|
+
* `@synerise/ds-table-new` (or `LegacyColumnType` + `legacyColumnConfigAdapter`
|
|
99
|
+
* for a bulk migration) instead.
|
|
100
|
+
*/
|
|
96
101
|
export type DSColumnType<T> = Omit<ColumnType<T>, 'fixed'> & {
|
|
97
102
|
fixed?: 'left' | 'right';
|
|
98
103
|
sortRender?: SortRender<T>;
|
|
@@ -124,6 +129,10 @@ export type CustomCounterArgs = {
|
|
|
124
129
|
content: ReactNode;
|
|
125
130
|
};
|
|
126
131
|
export type CustomCounterFn = (props: CustomCounterArgs) => ReactNode;
|
|
132
|
+
/**
|
|
133
|
+
* @deprecated `@synerise/ds-table` is deprecated. Use `TableProps` or
|
|
134
|
+
* `VirtualTableProps` from `@synerise/ds-table-new` instead.
|
|
135
|
+
*/
|
|
127
136
|
export type DSTableProps<T extends any & GroupType<T>> = AntTableProps<T> & {
|
|
128
137
|
title?: ReactNode | (() => ReactNode);
|
|
129
138
|
hideTitleBar?: boolean;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx, jsxs, Fragment } from "react/jsx-runtime";
|
|
2
2
|
import { useMemo } from "react";
|
|
3
|
-
import Alert$1 from "@synerise/ds-alert";
|
|
4
3
|
import { useDataFormat } from "@synerise/ds-core";
|
|
4
|
+
import InlineAlert from "@synerise/ds-inline-alert";
|
|
5
5
|
import { Skeleton } from "../../Table.styles.js";
|
|
6
6
|
import { Alert, Title, TableLimit as TableLimit$1, ItemsMenu } from "./TableLimit.styles.js";
|
|
7
7
|
function TableLimit({
|
|
@@ -20,7 +20,7 @@ function TableLimit({
|
|
|
20
20
|
limit
|
|
21
21
|
} = selection;
|
|
22
22
|
const selectedRows = useMemo(() => selectedRowKeys.length || 0, [selectedRowKeys]);
|
|
23
|
-
const limitReachedInfo = useMemo(() => limit <= selectedRows && /* @__PURE__ */ jsx(Alert, { children: /* @__PURE__ */ jsx(
|
|
23
|
+
const limitReachedInfo = useMemo(() => limit <= selectedRows && /* @__PURE__ */ jsx(Alert, { children: /* @__PURE__ */ jsx(InlineAlert, { type: "warning", message: locale.selectionLimitWarning }) }), [locale, selectedRows, limit]);
|
|
24
24
|
const selected = useMemo(() => {
|
|
25
25
|
const counterContent = /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
26
26
|
/* @__PURE__ */ jsx("strong", { children: formatValue(total) }),
|
package/dist/index.d.ts
CHANGED
|
@@ -1,11 +1,53 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
/**
|
|
2
|
+
* @deprecated `@synerise/ds-table` is deprecated and will not be migrated off antd.
|
|
3
|
+
* Use `@synerise/ds-table-new` instead. See the "Migrating to
|
|
4
|
+
* @synerise/ds-table-new" section in this package's README for the prop mapping
|
|
5
|
+
* and the list of features that have no equivalent.
|
|
6
|
+
*/
|
|
6
7
|
export { default } from './Table';
|
|
7
|
-
|
|
8
|
+
/**
|
|
9
|
+
* @deprecated Use `VirtualTable` from `@synerise/ds-table-new` instead. Note
|
|
10
|
+
* `dataSource` → `data`, `scroll={{ y }}` → `maxHeight`, and `initialWidth` is
|
|
11
|
+
* gone (column widths are measured).
|
|
12
|
+
*/
|
|
13
|
+
export { default as VirtualTable } from './VirtualTable/VirtualTable';
|
|
14
|
+
/**
|
|
15
|
+
* @deprecated Use `TreeTable` from `@synerise/ds-table-new` instead.
|
|
16
|
+
*/
|
|
17
|
+
export { default as TreeTable } from './TreeTable/TreeTable';
|
|
18
|
+
/**
|
|
19
|
+
* @deprecated Grouping has no equivalent in `@synerise/ds-table-new`. If you
|
|
20
|
+
* need it, keep this package for now and raise it with the DS team.
|
|
21
|
+
*/
|
|
22
|
+
export { default as GroupedTable } from './GroupTable/GroupTable';
|
|
23
|
+
/**
|
|
24
|
+
* @deprecated Use the flat cell exports from `@synerise/ds-table-new`
|
|
25
|
+
* (`AvatarLabelCell`, `ActionCell`, …). Prop surfaces are unchanged.
|
|
26
|
+
*/
|
|
27
|
+
export * as TableCell from './Cell';
|
|
28
|
+
/**
|
|
29
|
+
* @deprecated `@synerise/ds-table-new` has no exported `ItemsMenu` — pass the
|
|
30
|
+
* batch-action nodes to its `itemsMenu` prop instead.
|
|
31
|
+
*/
|
|
32
|
+
export { default as ItemsMenu } from './ItemsMenu/ItemsMenu';
|
|
33
|
+
/**
|
|
34
|
+
* @deprecated `@synerise/ds-table-new` has no exported `BackToTopButton` — use
|
|
35
|
+
* its `showBackToTopButton` / `onBackToTop` props instead.
|
|
36
|
+
*/
|
|
8
37
|
export { default as BackToTopButton } from './InfiniteScroll/BackToTopButton';
|
|
38
|
+
/**
|
|
39
|
+
* @deprecated Use `VirtualTableProps` / `VirtualTableRef` / `ColumnDef` from
|
|
40
|
+
* `@synerise/ds-table-new` instead. `VirtualTableRef` has been reshaped — the
|
|
41
|
+
* raw `virtualListRef` / `outerListRef` / `horizontalScrollRef` handles are gone.
|
|
42
|
+
*/
|
|
9
43
|
export type { Props as VirtualTableProps, VirtualTableRef, VirtualColumnType, } from './VirtualTable/VirtualTable.types';
|
|
44
|
+
/**
|
|
45
|
+
* @deprecated Use the equivalents from `@synerise/ds-table-new`. `Locale` →
|
|
46
|
+
* `texts`, `RowSelection` → `SelectionConfig` + top-level `selectedRowKeys`, and
|
|
47
|
+
* `ScrollProxyType` / `CustomizeScrollBodyInfo` have no equivalent.
|
|
48
|
+
*/
|
|
10
49
|
export type { RowSelection, RowType, SingleColumnSort, OnSortFn, Locale, DSColumnType, DSTableProps, ScrollProxyType, Selection, SelectionItem, CustomizeScrollBodyInfo, } from './Table.types';
|
|
50
|
+
/**
|
|
51
|
+
* @deprecated Grouping has no equivalent in `@synerise/ds-table-new`.
|
|
52
|
+
*/
|
|
11
53
|
export { GROUP_BY } from './GroupTable/GroupTable.types';
|
package/dist/index.js
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { default as
|
|
3
|
-
import { default as default3 } from "./ItemsMenu/ItemsMenu.js";
|
|
1
|
+
import { default as default2 } from "./Table.js";
|
|
2
|
+
import { default as default3 } from "./VirtualTable/VirtualTable.js";
|
|
4
3
|
import { default as default4 } from "./TreeTable/TreeTable.js";
|
|
5
|
-
import { default as default5 } from "./
|
|
6
|
-
import
|
|
4
|
+
import { default as default5 } from "./GroupTable/GroupTable.js";
|
|
5
|
+
import * as Cell_index from "./Cell/index.js";
|
|
6
|
+
import { default as default6 } from "./ItemsMenu/ItemsMenu.js";
|
|
7
7
|
import { BackToTopButton } from "./InfiniteScroll/BackToTopButton.js";
|
|
8
8
|
import { GROUP_BY } from "./GroupTable/GroupTable.types.js";
|
|
9
9
|
export {
|
|
10
10
|
BackToTopButton,
|
|
11
11
|
GROUP_BY,
|
|
12
|
-
|
|
13
|
-
|
|
12
|
+
default5 as GroupedTable,
|
|
13
|
+
default6 as ItemsMenu,
|
|
14
14
|
Cell_index as TableCell,
|
|
15
15
|
default4 as TreeTable,
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
default3 as VirtualTable,
|
|
17
|
+
default2 as default
|
|
18
18
|
};
|
package/dist/style/index.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.ant-table.ant-table-middle{font-size:13px}.ant-table.ant-table-middle .ant-table-footer,.ant-table.ant-table-middle .ant-table-tbody>tr>td,.ant-table.ant-table-middle .ant-table-thead>tr>th,.ant-table.ant-table-middle .ant-table-title,.ant-table.ant-table-middle tfoot>tr>td,.ant-table.ant-table-middle tfoot>tr>th{padding:12px 8px}.ant-table.ant-table-middle .ant-table-filter-trigger{margin-right:-4px}.ant-table.ant-table-middle .ant-table-expanded-row-fixed{margin:-12px -8px}.ant-table.ant-table-middle .ant-table-tbody .ant-table-wrapper:only-child .ant-table{margin:-12px -8px -12px 40px}.ant-table.ant-table-middle .ant-table-selection-column{padding-inline-start:2px}.ant-table.ant-table-small{font-size:13px}.ant-table.ant-table-small .ant-table-footer,.ant-table.ant-table-small .ant-table-tbody>tr>td,.ant-table.ant-table-small .ant-table-thead>tr>th,.ant-table.ant-table-small .ant-table-title,.ant-table.ant-table-small tfoot>tr>td,.ant-table.ant-table-small tfoot>tr>th{padding:8px 8px}.ant-table.ant-table-small .ant-table-filter-trigger{margin-right:-4px}.ant-table.ant-table-small .ant-table-expanded-row-fixed{margin:-8px -8px}.ant-table.ant-table-small .ant-table-tbody .ant-table-wrapper:only-child .ant-table{margin:-8px -8px -8px 40px}.ant-table.ant-table-small .ant-table-selection-column{padding-inline-start:2px}.ant-table.ant-table-bordered>.ant-table-title{border:1px solid #e9edee;border-bottom:0}.ant-table.ant-table-bordered>.ant-table-container{border-left:1px solid #e9edee}.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>tbody>tr>td,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>tfoot>tr>td,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>tfoot>tr>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>thead>tr>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>tbody>tr>td,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>tfoot>tr>td,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>tfoot>tr>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>thead>tr>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>tbody>tr>td,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>tfoot>tr>td,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>tfoot>tr>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>thead>tr>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>tbody>tr>td,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>tfoot>tr>td,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>tfoot>tr>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>thead>tr>th{border-right:1px solid #e9edee}.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>thead>tr:not(:last-child)>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>thead>tr:not(:last-child)>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>thead>tr:not(:last-child)>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>thead>tr:not(:last-child)>th{border-bottom:1px solid #e9edee}.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>thead>tr>th::before,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>thead>tr>th::before,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>thead>tr>th::before,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>thead>tr>th::before{background-color:transparent!important}.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>tbody>tr>.ant-table-cell-fix-right-first::after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>tfoot>tr>.ant-table-cell-fix-right-first::after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>thead>tr>.ant-table-cell-fix-right-first::after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>tbody>tr>.ant-table-cell-fix-right-first::after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>tfoot>tr>.ant-table-cell-fix-right-first::after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>thead>tr>.ant-table-cell-fix-right-first::after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>tbody>tr>.ant-table-cell-fix-right-first::after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>tfoot>tr>.ant-table-cell-fix-right-first::after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>thead>tr>.ant-table-cell-fix-right-first::after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>tbody>tr>.ant-table-cell-fix-right-first::after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>tfoot>tr>.ant-table-cell-fix-right-first::after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>thead>tr>.ant-table-cell-fix-right-first::after{border-right:1px solid #e9edee}.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>tbody>tr>td>.ant-table-expanded-row-fixed,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>tbody>tr>td>.ant-table-expanded-row-fixed,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>tbody>tr>td>.ant-table-expanded-row-fixed,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>tbody>tr>td>.ant-table-expanded-row-fixed{margin:-16px -17px}.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>tbody>tr>td>.ant-table-expanded-row-fixed::after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>tbody>tr>td>.ant-table-expanded-row-fixed::after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>tbody>tr>td>.ant-table-expanded-row-fixed::after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>tbody>tr>td>.ant-table-expanded-row-fixed::after{position:absolute;top:0;right:1px;bottom:0;border-right:1px solid #e9edee;content:''}.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table{border-top:1px solid #e9edee}.ant-table.ant-table-bordered.ant-table-scroll-horizontal>.ant-table-container>.ant-table-body>table>tbody>tr.ant-table-expanded-row>td,.ant-table.ant-table-bordered.ant-table-scroll-horizontal>.ant-table-container>.ant-table-body>table>tbody>tr.ant-table-placeholder>td{border-right:0}.ant-table.ant-table-bordered.ant-table-middle>.ant-table-container>.ant-table-body>table>tbody>tr>td>.ant-table-expanded-row-fixed,.ant-table.ant-table-bordered.ant-table-middle>.ant-table-container>.ant-table-content>table>tbody>tr>td>.ant-table-expanded-row-fixed{margin:-12px -9px}.ant-table.ant-table-bordered.ant-table-small>.ant-table-container>.ant-table-body>table>tbody>tr>td>.ant-table-expanded-row-fixed,.ant-table.ant-table-bordered.ant-table-small>.ant-table-container>.ant-table-content>table>tbody>tr>td>.ant-table-expanded-row-fixed{margin:-8px -9px}.ant-table.ant-table-bordered>.ant-table-footer{border:1px solid #e9edee;border-top:0}.ant-table-cell .ant-table-container:first-child{border-top:0}.ant-table-cell-scrollbar:not([rowspan]){box-shadow:0 1px 0 1px #f9fafb}.ant-table-wrapper{clear:both;max-width:100%}.ant-table-wrapper::before{display:table;content:''}.ant-table-wrapper::after{display:table;clear:both;content:''}.ant-table{box-sizing:border-box;margin:0;padding:0;color:#6a7580;font-variant:tabular-nums;line-height:1.38;list-style:none;font-feature-settings:'tnum';position:relative;font-size:13px;background:#fff;border-radius:3px}.ant-table table{width:100%;text-align:left;border-radius:3px 3px 0 0;border-collapse:separate;border-spacing:0}.ant-table tfoot>tr>td,.ant-table tfoot>tr>th,.ant-table-tbody>tr>td,.ant-table-thead>tr>th{position:relative;padding:16px 16px;overflow-wrap:break-word}.ant-table-cell-ellipsis{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;word-break:keep-all}.ant-table-cell-ellipsis.ant-table-cell-fix-left-last,.ant-table-cell-ellipsis.ant-table-cell-fix-right-first{overflow:visible}.ant-table-cell-ellipsis.ant-table-cell-fix-left-last .ant-table-cell-content,.ant-table-cell-ellipsis.ant-table-cell-fix-right-first .ant-table-cell-content{display:block;overflow:hidden;text-overflow:ellipsis}.ant-table-cell-ellipsis .ant-table-column-title{overflow:hidden;text-overflow:ellipsis;word-break:keep-all}.ant-table-title{padding:16px 16px}.ant-table-footer{padding:16px 16px;color:#384350;background:#e9edee}.ant-table-thead>tr>th{position:relative;color:#384350;font-weight:500;text-align:left;background:#f9fafb;border-bottom:1px solid #e9edee;transition:background .3s ease}.ant-table-thead>tr>th[colspan]:not([colspan='1']){text-align:center}.ant-table-thead>tr>th:not(:last-child):not(.ant-table-selection-column):not(.ant-table-row-expand-icon-cell):not([colspan])::before{position:absolute;top:50%;right:0;width:1px;height:1.6em;background-color:rgba(0,0,0,.06);transform:translateY(-50%);transition:background-color .3s;content:''}.ant-table-thead>tr:not(:last-child)>th[colspan]{border-bottom:0}.ant-table-tbody>tr>td{border-bottom:1px solid #e9edee;transition:background .3s}.ant-table-tbody>tr>td>.ant-table-expanded-row-fixed>.ant-table-wrapper:only-child .ant-table,.ant-table-tbody>tr>td>.ant-table-wrapper:only-child .ant-table{margin:-16px -16px -16px 32px}.ant-table-tbody>tr>td>.ant-table-expanded-row-fixed>.ant-table-wrapper:only-child .ant-table-tbody>tr:last-child>td,.ant-table-tbody>tr>td>.ant-table-wrapper:only-child .ant-table-tbody>tr:last-child>td{border-bottom:0}.ant-table-tbody>tr>td>.ant-table-expanded-row-fixed>.ant-table-wrapper:only-child .ant-table-tbody>tr:last-child>td:first-child,.ant-table-tbody>tr>td>.ant-table-expanded-row-fixed>.ant-table-wrapper:only-child .ant-table-tbody>tr:last-child>td:last-child,.ant-table-tbody>tr>td>.ant-table-wrapper:only-child .ant-table-tbody>tr:last-child>td:first-child,.ant-table-tbody>tr>td>.ant-table-wrapper:only-child .ant-table-tbody>tr:last-child>td:last-child{border-radius:0}.ant-table-tbody>tr.ant-table-row:hover>td,.ant-table-tbody>tr>td.ant-table-cell-row-hover{background:#f9fafb}.ant-table-tbody>tr.ant-table-row-selected>td{background:#f4faff;border-color:rgba(0,0,0,.03)}.ant-table-tbody>tr.ant-table-row-selected:hover>td{background:#eaf5ff}.ant-table-summary{position:relative;z-index:2;background:#fff}div.ant-table-summary{box-shadow:0 -1px 0 #e9edee}.ant-table-summary>tr>td,.ant-table-summary>tr>th{border-bottom:1px solid #e9edee}.ant-table-pagination.ant-pagination{margin:16px 0}.ant-table-pagination{display:flex;flex-wrap:wrap;row-gap:8px}.ant-table-pagination>*{flex:none}.ant-table-pagination-left{justify-content:flex-start}.ant-table-pagination-center{justify-content:center}.ant-table-pagination-right{justify-content:flex-end}.ant-table-thead th.ant-table-column-has-sorters{outline:0;cursor:pointer;transition:all .3s}.ant-table-thead th.ant-table-column-has-sorters:hover{background:rgba(0,0,0,.04)}.ant-table-thead th.ant-table-column-has-sorters:hover::before{background-color:transparent!important}.ant-table-thead th.ant-table-column-has-sorters:focus-visible{color:#0b68ff}.ant-table-thead th.ant-table-column-has-sorters.ant-table-cell-fix-left:hover,.ant-table-thead th.ant-table-column-has-sorters.ant-table-cell-fix-right:hover{background:#f5f5f5}.ant-table-thead th.ant-table-column-sort{background:#f3f5f6}.ant-table-thead th.ant-table-column-sort::before{background-color:transparent!important}td.ant-table-column-sort{background:#fafafa}.ant-table-column-title{position:relative;z-index:1;flex:1}.ant-table-column-sorters{display:flex;flex:auto;align-items:center;justify-content:space-between}.ant-table-column-sorters::after{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;content:''}.ant-table-column-sorter{margin-left:4px;color:#232936;font-size:0;transition:color .3s}.ant-table-column-sorter-inner{display:inline-flex;flex-direction:column;align-items:center}.ant-table-column-sorter-down,.ant-table-column-sorter-up{font-size:11px}.ant-table-column-sorter-down.active,.ant-table-column-sorter-up.active{color:#0b68ff}.ant-table-column-sorter-up+.ant-table-column-sorter-down{margin-top:-.3em}.ant-table-column-sorters:hover .ant-table-column-sorter{color:#0f1217}.ant-table-filter-column{display:flex;justify-content:space-between}.ant-table-filter-trigger{position:relative;display:flex;align-items:center;margin:-4px -8px -4px 4px;padding:0 4px;color:#232936;font-size:11px;border-radius:3px;cursor:pointer;transition:all .3s}.ant-table-filter-trigger:hover{color:#232936;background:rgba(0,0,0,.04)}.ant-table-filter-trigger.active{color:#0b68ff}.ant-table-filter-dropdown{box-sizing:border-box;margin:0;padding:0;color:#6a7580;font-size:13px;font-variant:tabular-nums;line-height:1.38;list-style:none;font-feature-settings:'tnum';min-width:120px;background-color:#fff;border-radius:3px;box-shadow:0 2px 6px rgba(171,178,183,.12)}.ant-table-filter-dropdown .ant-dropdown-menu{max-height:264px;overflow-x:hidden;border:0;box-shadow:none}.ant-table-filter-dropdown .ant-dropdown-menu:empty::after{display:block;padding:8px 0;color:#b5bdc3;font-size:11px;text-align:center;content:'Not Found'}.ant-table-filter-dropdown-tree{padding:8px 8px 0}.ant-table-filter-dropdown-tree .ant-tree-treenode .ant-tree-node-content-wrapper:hover{background-color:#f4faff}.ant-table-filter-dropdown-tree .ant-tree-treenode-checkbox-checked .ant-tree-node-content-wrapper,.ant-table-filter-dropdown-tree .ant-tree-treenode-checkbox-checked .ant-tree-node-content-wrapper:hover{background-color:#add8ff}.ant-table-filter-dropdown-search{padding:8px;border-bottom:1px #e9edee solid}.ant-table-filter-dropdown-search-input input{min-width:140px}.ant-table-filter-dropdown-search-input .anticon{color:#b5bdc3}.ant-table-filter-dropdown-checkall{width:100%;margin-bottom:4px;margin-left:4px}.ant-table-filter-dropdown-submenu>ul{max-height:calc(100vh - 130px);overflow-x:hidden;overflow-y:auto}.ant-table-filter-dropdown .ant-checkbox-wrapper+span,.ant-table-filter-dropdown-submenu .ant-checkbox-wrapper+span{padding-left:8px}.ant-table-filter-dropdown-btns{display:flex;justify-content:space-between;padding:7px 8px;overflow:hidden;background-color:inherit;border-top:1px solid #e9edee}.ant-table-selection-col{width:32px}.ant-table-bordered .ant-table-selection-col{width:50px}table tr td.ant-table-selection-column,table tr th.ant-table-selection-column{padding-right:8px;padding-left:8px;text-align:center}table tr td.ant-table-selection-column .ant-radio-wrapper,table tr th.ant-table-selection-column .ant-radio-wrapper{margin-right:0}table tr th.ant-table-selection-column.ant-table-cell-fix-left{z-index:3}table tr th.ant-table-selection-column::after{background-color:transparent!important}.ant-table-selection{position:relative;display:inline-flex;flex-direction:column}.ant-table-selection-extra{position:absolute;top:0;z-index:1;cursor:pointer;transition:all .3s;margin-inline-start:100%;padding-inline-start:4px}.ant-table-selection-extra .anticon{color:#232936;font-size:10px}.ant-table-selection-extra .anticon:hover{color:#0f1217}.ant-table-expand-icon-col{width:48px}.ant-table-row-expand-icon-cell{text-align:center}.ant-table-row-expand-icon-cell .ant-table-row-expand-icon{display:inline-flex;float:none;vertical-align:sub}.ant-table-row-indent{float:left;height:1px}.ant-table-row-expand-icon{color:#0b68ff;outline:0;cursor:pointer;transition:color .3s;position:relative;float:left;box-sizing:border-box;width:17px;height:17px;padding:0;color:inherit;line-height:17px;background:#fff;border:1px solid #e9edee;border-radius:3px;transform:scale(.94117647);transition:all .3s;user-select:none}.ant-table-row-expand-icon:focus-visible,.ant-table-row-expand-icon:hover{color:#238afe}.ant-table-row-expand-icon:active{color:#0b68ff}.ant-table-row-expand-icon:active,.ant-table-row-expand-icon:focus,.ant-table-row-expand-icon:hover{border-color:currentcolor}.ant-table-row-expand-icon::after,.ant-table-row-expand-icon::before{position:absolute;background:currentcolor;transition:transform .3s ease-out;content:''}.ant-table-row-expand-icon::before{top:7px;right:3px;left:3px;height:1px}.ant-table-row-expand-icon::after{top:3px;bottom:3px;left:7px;width:1px;transform:rotate(90deg)}.ant-table-row-expand-icon-collapsed::before{transform:rotate(-180deg)}.ant-table-row-expand-icon-collapsed::after{transform:rotate(0)}.ant-table-row-expand-icon-spaced{background:0 0;border:0;visibility:hidden}.ant-table-row-expand-icon-spaced::after,.ant-table-row-expand-icon-spaced::before{display:none;content:none}.ant-table-row-indent+.ant-table-row-expand-icon{margin-top:.47px;margin-right:8px}tr.ant-table-expanded-row:hover>td,tr.ant-table-expanded-row>td{background:#fbfbfb}tr.ant-table-expanded-row .ant-descriptions-view{display:flex}tr.ant-table-expanded-row .ant-descriptions-view table{flex:auto;width:auto}.ant-table .ant-table-expanded-row-fixed{position:relative;margin:-16px -16px;padding:16px 16px}.ant-table-tbody>tr.ant-table-placeholder{text-align:center}.ant-table-empty .ant-table-tbody>tr.ant-table-placeholder{color:#b5bdc3}.ant-table-tbody>tr.ant-table-placeholder:hover>td{background:#fff}.ant-table-cell-fix-left,.ant-table-cell-fix-right{position:sticky!important;z-index:2;background:#fff}.ant-table-cell-fix-left-first::after,.ant-table-cell-fix-left-last::after{position:absolute;top:0;right:0;bottom:-1px;width:30px;transform:translateX(100%);transition:box-shadow .3s;content:'';pointer-events:none}.ant-table-cell-fix-left-all::after{display:none}.ant-table-cell-fix-right-first::after,.ant-table-cell-fix-right-last::after{position:absolute;top:0;bottom:-1px;left:0;width:30px;transform:translateX(-100%);transition:box-shadow .3s;content:'';pointer-events:none}.ant-table .ant-table-container::after,.ant-table .ant-table-container::before{position:absolute;top:0;bottom:0;z-index:calc(calc(2 + 1) + 1);width:30px;transition:box-shadow .3s;content:'';pointer-events:none}.ant-table .ant-table-container::before{left:0}.ant-table .ant-table-container::after{right:0}.ant-table-ping-left:not(.ant-table-has-fix-left)>.ant-table-container{position:relative}.ant-table-ping-left:not(.ant-table-has-fix-left)>.ant-table-container::before{box-shadow:inset 10px 0 8px -8px rgba(157,165,171,.12)}.ant-table-ping-left .ant-table-cell-fix-left-first::after,.ant-table-ping-left .ant-table-cell-fix-left-last::after{box-shadow:inset 10px 0 8px -8px rgba(157,165,171,.12)}.ant-table-ping-left .ant-table-cell-fix-left-last::before{background-color:transparent!important}.ant-table-ping-right:not(.ant-table-has-fix-right)>.ant-table-container{position:relative}.ant-table-ping-right:not(.ant-table-has-fix-right)>.ant-table-container::after{box-shadow:inset -10px 0 8px -8px rgba(157,165,171,.12)}.ant-table-ping-right .ant-table-cell-fix-right-first::after,.ant-table-ping-right .ant-table-cell-fix-right-last::after{box-shadow:inset -10px 0 8px -8px rgba(157,165,171,.12)}.ant-table-sticky-holder{position:sticky;z-index:calc(2 + 1);background:#fff}.ant-table-sticky-scroll{position:sticky;bottom:0;z-index:calc(2 + 1);display:flex;align-items:center;background:#fff;border-top:1px solid #e9edee;opacity:.6}.ant-table-sticky-scroll:hover{transform-origin:center bottom}.ant-table-sticky-scroll-bar{height:8px;background-color:rgba(0,0,0,.35);border-radius:4px}.ant-table-sticky-scroll-bar:hover{background-color:rgba(0,0,0,.8)}.ant-table-sticky-scroll-bar-active{background-color:rgba(0,0,0,.8)}@media all and (-ms-high-contrast:none){.ant-table-ping-left .ant-table-cell-fix-left-last::after{box-shadow:none!important}.ant-table-ping-right .ant-table-cell-fix-right-first::after{box-shadow:none!important}}.ant-table-title{border-radius:3px 3px 0 0}.ant-table-title+.ant-table-container{border-top-left-radius:0;border-top-right-radius:0}.ant-table-title+.ant-table-container table{border-radius:0}.ant-table-title+.ant-table-container table>thead>tr:first-child th:first-child{border-radius:0}.ant-table-title+.ant-table-container table>thead>tr:first-child th:last-child{border-radius:0}.ant-table-container{border-top-left-radius:3px;border-top-right-radius:3px}.ant-table-container table>thead>tr:first-child th:first-child{border-top-left-radius:3px}.ant-table-container table>thead>tr:first-child th:last-child{border-top-right-radius:3px}.ant-table-footer{border-radius:0 0 3px 3px}.ant-table-wrapper-rtl{direction:rtl}.ant-table-rtl{direction:rtl}.ant-table-wrapper-rtl .ant-table table{text-align:right}.ant-table-wrapper-rtl .ant-table-thead>tr>th[colspan]:not([colspan='1']){text-align:center}.ant-table-wrapper-rtl .ant-table-thead>tr>th:not(:last-child):not(.ant-table-selection-column):not(.ant-table-row-expand-icon-cell):not([colspan])::before{right:auto;left:0}.ant-table-wrapper-rtl .ant-table-thead>tr>th{text-align:right}.ant-table-tbody>tr .ant-table-wrapper:only-child .ant-table.ant-table-rtl{margin:-16px 32px -16px -16px}.ant-table-wrapper.ant-table-wrapper-rtl .ant-table-pagination-left{justify-content:flex-end}.ant-table-wrapper.ant-table-wrapper-rtl .ant-table-pagination-right{justify-content:flex-start}.ant-table-wrapper-rtl .ant-table-column-sorter{margin-right:4px;margin-left:0}.ant-table-wrapper-rtl .ant-table-filter-column-title{padding:16px 16px 16px 2.3em}.ant-table-rtl .ant-table-thead tr th.ant-table-column-has-sorters .ant-table-filter-column-title{padding:0 0 0 2.3em}.ant-table-wrapper-rtl .ant-table-filter-trigger{margin:-4px 4px -4px -8px}.ant-dropdown-menu-submenu-rtl.ant-table-filter-dropdown .ant-checkbox-wrapper+span,.ant-dropdown-menu-submenu-rtl.ant-table-filter-dropdown-submenu .ant-checkbox-wrapper+span,.ant-dropdown-rtl .ant-table-filter-dropdown .ant-checkbox-wrapper+span,.ant-dropdown-rtl .ant-table-filter-dropdown-submenu .ant-checkbox-wrapper+span{padding-right:8px;padding-left:0}.ant-table-wrapper-rtl .ant-table-selection{text-align:center}.ant-table-wrapper-rtl .ant-table-row-indent{float:right}.ant-table-wrapper-rtl .ant-table-row-expand-icon{float:right}.ant-table-wrapper-rtl .ant-table-row-indent+.ant-table-row-expand-icon{margin-right:0;margin-left:8px}.ant-table-wrapper-rtl .ant-table-row-expand-icon::after{transform:rotate(-90deg)}.ant-table-wrapper-rtl .ant-table-row-expand-icon-collapsed::before{transform:rotate(180deg)}.ant-table-wrapper-rtl .ant-table-row-expand-icon-collapsed::after{transform:rotate(0)}.ant-select-single .ant-select-selector{display:flex}.ant-select-single .ant-select-selector .ant-select-selection-search{position:absolute;top:0;right:15px;bottom:0;left:15px}.ant-select-single .ant-select-selector .ant-select-selection-search-input{width:100%}.ant-select-single .ant-select-selector .ant-select-selection-item,.ant-select-single .ant-select-selector .ant-select-selection-placeholder{padding:0;line-height:30px;transition:all .3s,visibility 0s}.ant-select-single .ant-select-selector .ant-select-selection-item{position:relative;user-select:none}.ant-select-single .ant-select-selector .ant-select-selection-placeholder{transition:none;pointer-events:none}.ant-select-single .ant-select-selector .ant-select-selection-item::after,.ant-select-single .ant-select-selector .ant-select-selection-placeholder::after,.ant-select-single .ant-select-selector::after{display:inline-block;width:0;visibility:hidden;content:'\a0'}.ant-select-single.ant-select-show-arrow .ant-select-selection-search{right:28px}.ant-select-single.ant-select-show-arrow .ant-select-selection-item,.ant-select-single.ant-select-show-arrow .ant-select-selection-placeholder{padding-right:17px}.ant-select-single.ant-select-open .ant-select-selection-item{color:#b5bdc3}.ant-select-single:not(.ant-select-customize-input) .ant-select-selector{width:100%;height:32px;padding:0 15px}.ant-select-single:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-search-input{height:30px}.ant-select-single:not(.ant-select-customize-input) .ant-select-selector::after{line-height:30px}.ant-select-single.ant-select-customize-input .ant-select-selector::after{display:none}.ant-select-single.ant-select-customize-input .ant-select-selector .ant-select-selection-search{position:static;width:100%}.ant-select-single.ant-select-customize-input .ant-select-selector .ant-select-selection-placeholder{position:absolute;right:0;left:0;padding:0 15px}.ant-select-single.ant-select-customize-input .ant-select-selector .ant-select-selection-placeholder::after{display:none}.ant-select-single.ant-select-lg:not(.ant-select-customize-input) .ant-select-selector{height:40px}.ant-select-single.ant-select-lg:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-item,.ant-select-single.ant-select-lg:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-placeholder,.ant-select-single.ant-select-lg:not(.ant-select-customize-input) .ant-select-selector::after{line-height:38px}.ant-select-single.ant-select-lg:not(.ant-select-customize-input):not(.ant-select-customize-input) .ant-select-selection-search-input{height:38px}.ant-select-single.ant-select-sm:not(.ant-select-customize-input) .ant-select-selector{height:24px}.ant-select-single.ant-select-sm:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-item,.ant-select-single.ant-select-sm:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-placeholder,.ant-select-single.ant-select-sm:not(.ant-select-customize-input) .ant-select-selector::after{line-height:22px}.ant-select-single.ant-select-sm:not(.ant-select-customize-input):not(.ant-select-customize-input) .ant-select-selection-search-input{height:22px}.ant-select-single.ant-select-sm:not(.ant-select-customize-input) .ant-select-selection-search{right:7px;left:7px}.ant-select-single.ant-select-sm:not(.ant-select-customize-input) .ant-select-selector{padding:0 7px}.ant-select-single.ant-select-sm:not(.ant-select-customize-input).ant-select-show-arrow .ant-select-selection-search{right:26.5px}.ant-select-single.ant-select-sm:not(.ant-select-customize-input).ant-select-show-arrow .ant-select-selection-item,.ant-select-single.ant-select-sm:not(.ant-select-customize-input).ant-select-show-arrow .ant-select-selection-placeholder{padding-right:19.5px}.ant-select-single.ant-select-lg:not(.ant-select-customize-input) .ant-select-selector{padding:0 15px}.ant-select-selection-overflow{position:relative;display:flex;flex:auto;flex-wrap:wrap;max-width:100%}.ant-select-selection-overflow-item{flex:none;align-self:center;max-width:100%}.ant-select-multiple .ant-select-selector{display:flex;flex-wrap:wrap;align-items:center;padding:1px 4px}.ant-select-show-search.ant-select-multiple .ant-select-selector{cursor:text}.ant-select-disabled.ant-select-multiple .ant-select-selector{background:#f9fafb;cursor:not-allowed}.ant-select-multiple .ant-select-selector::after{display:inline-block;width:0;margin:2px 0;line-height:24px;visibility:hidden;content:'\a0'}.ant-select-multiple.ant-select-allow-clear .ant-select-selector,.ant-select-multiple.ant-select-show-arrow .ant-select-selector{padding-right:27px}.ant-select-multiple .ant-select-selection-item{position:relative;display:flex;flex:none;box-sizing:border-box;max-width:100%;height:24px;margin-top:2px;margin-bottom:2px;line-height:22px;background:#f3f5f6;border:1px solid #e9edee;border-radius:3px;cursor:default;transition:font-size .3s,line-height .3s,height .3s;user-select:none;margin-inline-end:4px;padding-inline-start:8px;padding-inline-end:4px}.ant-select-disabled.ant-select-multiple .ant-select-selection-item{color:#bfbfbf;border-color:#dbe0e3;cursor:not-allowed}.ant-select-multiple .ant-select-selection-item-content{display:inline-block;margin-right:4px;overflow:hidden;white-space:pre;text-overflow:ellipsis}.ant-select-multiple .ant-select-selection-item-remove{color:inherit;font-style:normal;line-height:0;text-align:center;text-transform:none;vertical-align:-.125em;text-rendering:optimizelegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;display:inline-flex;align-items:center;color:#232936;font-weight:700;font-size:10px;line-height:inherit;cursor:pointer}.ant-select-multiple .ant-select-selection-item-remove>*{line-height:1}.ant-select-multiple .ant-select-selection-item-remove svg{display:inline-block}.ant-select-multiple .ant-select-selection-item-remove::before{display:none}.ant-select-multiple .ant-select-selection-item-remove .ant-select-multiple .ant-select-selection-item-remove-icon{display:block}.ant-select-multiple .ant-select-selection-item-remove>.anticon{vertical-align:middle}.ant-select-multiple .ant-select-selection-item-remove:hover{color:rgba(0,0,0,.75)}.ant-select-multiple .ant-select-selection-overflow-item+.ant-select-selection-overflow-item .ant-select-selection-search{margin-inline-start:0}.ant-select-multiple .ant-select-selection-search{position:relative;max-width:100%;margin-inline-start:11px}.ant-select-multiple .ant-select-selection-search-input,.ant-select-multiple .ant-select-selection-search-mirror{height:24px;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,'Noto Sans',sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol','Noto Color Emoji';line-height:24px;transition:all .3s}.ant-select-multiple .ant-select-selection-search-input{width:100%;min-width:4.1px}.ant-select-multiple .ant-select-selection-search-mirror{position:absolute;top:0;left:0;z-index:999;white-space:pre;visibility:hidden}.ant-select-multiple .ant-select-selection-placeholder{position:absolute;top:50%;right:15px;left:15px;transform:translateY(-50%);transition:all .3s}.ant-select-multiple.ant-select-lg .ant-select-selector::after{line-height:40px}.ant-select-multiple.ant-select-lg .ant-select-selection-item{height:40px;line-height:38px}.ant-select-multiple.ant-select-lg .ant-select-selection-search{height:40px;line-height:40px}.ant-select-multiple.ant-select-lg .ant-select-selection-search-input,.ant-select-multiple.ant-select-lg .ant-select-selection-search-mirror{height:40px;line-height:38px}.ant-select-multiple.ant-select-sm .ant-select-selector::after{line-height:16px}.ant-select-multiple.ant-select-sm .ant-select-selection-item{height:16px;line-height:14px}.ant-select-multiple.ant-select-sm .ant-select-selection-search{height:16px;line-height:16px}.ant-select-multiple.ant-select-sm .ant-select-selection-search-input,.ant-select-multiple.ant-select-sm .ant-select-selection-search-mirror{height:16px;line-height:14px}.ant-select-multiple.ant-select-sm .ant-select-selection-placeholder{left:7px}.ant-select-multiple.ant-select-sm .ant-select-selection-search{margin-inline-start:3px}.ant-select-disabled .ant-select-selection-item-remove{display:none}.ant-select-status-error.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer) .ant-select-selector{background-color:#fff;border-color:#f52922!important}.ant-select-status-error.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer).ant-select-focused .ant-select-selector,.ant-select-status-error.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer).ant-select-open .ant-select-selector{border-color:#ff584d;box-shadow:0 0 0 0 rgba(245,41,34,.2);border-right-width:1px;outline:0}.ant-select-status-warning.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer) .ant-select-selector{background-color:#fff;border-color:#fab700!important}.ant-select-status-warning.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer).ant-select-focused .ant-select-selector,.ant-select-status-warning.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer).ant-select-open .ant-select-selector{border-color:#ffcd29;box-shadow:0 0 0 0 rgba(250,183,0,.2);border-right-width:1px;outline:0}.ant-select-status-error.ant-select-has-feedback .ant-select-clear,.ant-select-status-success.ant-select-has-feedback .ant-select-clear,.ant-select-status-validating.ant-select-has-feedback .ant-select-clear,.ant-select-status-warning.ant-select-has-feedback .ant-select-clear{right:32px}.ant-select-status-error.ant-select-has-feedback .ant-select-selection-selected-value,.ant-select-status-success.ant-select-has-feedback .ant-select-selection-selected-value,.ant-select-status-validating.ant-select-has-feedback .ant-select-selection-selected-value,.ant-select-status-warning.ant-select-has-feedback .ant-select-selection-selected-value{padding-right:42px}.ant-select{box-sizing:border-box;margin:0;padding:0;color:#6a7580;font-size:13px;font-variant:tabular-nums;line-height:1.38;list-style:none;font-feature-settings:'tnum';position:relative;display:inline-block;cursor:pointer}.ant-select:not(.ant-select-customize-input) .ant-select-selector{position:relative;background-color:#fff;border:1px solid #dbe0e3;border-radius:3px;transition:all .3s cubic-bezier(.645, .045, .355, 1)}.ant-select:not(.ant-select-customize-input) .ant-select-selector input{cursor:pointer}.ant-select-show-search.ant-select:not(.ant-select-customize-input) .ant-select-selector{cursor:text}.ant-select-show-search.ant-select:not(.ant-select-customize-input) .ant-select-selector input{cursor:auto}.ant-select-focused:not(.ant-select-disabled).ant-select:not(.ant-select-customize-input) .ant-select-selector{border-color:#38f;box-shadow:0 0 0 0 rgba(11,104,255,.2);border-right-width:1px;outline:0}.ant-select-disabled.ant-select:not(.ant-select-customize-input) .ant-select-selector{color:#b5bdc3;background:#f9fafb;cursor:not-allowed}.ant-select-multiple.ant-select-disabled.ant-select:not(.ant-select-customize-input) .ant-select-selector{background:#f9fafb}.ant-select-disabled.ant-select:not(.ant-select-customize-input) .ant-select-selector input{cursor:not-allowed}.ant-select:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-search-input{margin:0;padding:0;background:0 0;border:none;outline:0;appearance:none}.ant-select:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-search-input::-webkit-search-cancel-button{display:none;-webkit-appearance:none}.ant-select:not(.ant-select-disabled):hover .ant-select-selector{border-color:#b5bdc3;border-right-width:1px}.ant-select-selection-item{flex:1;overflow:hidden;font-weight:400;white-space:nowrap;text-overflow:ellipsis}@media all and (-ms-high-contrast:none){.ant-select-selection-item,.ant-select-selection-item ::-ms-backdrop{flex:auto}}.ant-select-selection-placeholder{flex:1;overflow:hidden;color:#b5bdc3;white-space:nowrap;text-overflow:ellipsis;pointer-events:none}@media all and (-ms-high-contrast:none){.ant-select-selection-placeholder,.ant-select-selection-placeholder ::-ms-backdrop{flex:auto}}.ant-select-arrow{display:inline-flex;color:inherit;font-style:normal;line-height:0;text-transform:none;vertical-align:-.125em;text-rendering:optimizelegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;position:absolute;top:50%;right:15px;display:flex;align-items:center;height:11px;margin-top:-5.5px;color:#b5bdc3;font-size:11px;line-height:1;text-align:center;pointer-events:none}.ant-select-arrow>*{line-height:1}.ant-select-arrow svg{display:inline-block}.ant-select-arrow::before{display:none}.ant-select-arrow .ant-select-arrow-icon{display:block}.ant-select-arrow .anticon{vertical-align:top;transition:transform .3s}.ant-select-arrow .anticon>svg{vertical-align:top}.ant-select-arrow .anticon:not(.ant-select-suffix){pointer-events:auto}.ant-select-disabled .ant-select-arrow{cursor:not-allowed}.ant-select-arrow>:not(:last-child){margin-inline-end:8px}.ant-select-clear{position:absolute;top:50%;right:15px;z-index:1;display:inline-block;width:11px;height:11px;margin-top:-5.5px;color:#b5bdc3;font-size:11px;font-style:normal;line-height:1;text-align:center;text-transform:none;background:#fff;cursor:pointer;opacity:0;transition:color .3s ease,opacity .15s ease;text-rendering:auto}.ant-select-clear::before{display:block}.ant-select-clear:hover{color:#232936}.ant-select:hover .ant-select-clear{opacity:1}.ant-select-dropdown{margin:0;padding:0;color:#6a7580;font-variant:tabular-nums;line-height:1.38;list-style:none;font-feature-settings:'tnum';position:absolute;top:-9999px;left:-9999px;z-index:991050;box-sizing:border-box;padding:4px 0;overflow:hidden;font-size:13px;font-variant:initial;background-color:#fff;border-radius:3px;outline:0;box-shadow:0 2px 6px rgba(171,178,183,.12)}.ant-select-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-select-dropdown-placement-bottomLeft,.ant-select-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-select-dropdown-placement-bottomLeft{animation-name:antSlideUpIn}.ant-select-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-select-dropdown-placement-topLeft,.ant-select-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-select-dropdown-placement-topLeft{animation-name:antSlideDownIn}.ant-select-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-select-dropdown-placement-bottomLeft{animation-name:antSlideUpOut}.ant-select-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-select-dropdown-placement-topLeft{animation-name:antSlideDownOut}.ant-select-dropdown-hidden{display:none}.ant-select-dropdown-empty{color:#b5bdc3}.ant-select-item-empty{position:relative;display:block;min-height:32px;padding:5px 16px;color:#6a7580;font-weight:400;font-size:13px;line-height:22px;color:#b5bdc3}.ant-select-item{position:relative;display:block;min-height:32px;padding:5px 16px;color:#6a7580;font-weight:400;font-size:13px;line-height:22px;cursor:pointer;transition:background .3s ease}.ant-select-item-group{color:#232936;font-size:11px;cursor:default}.ant-select-item-option{display:flex}.ant-select-item-option-content{flex:auto;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.ant-select-item-option-state{flex:none}.ant-select-item-option-active:not(.ant-select-item-option-disabled){background-color:#f4faff}.ant-select-item-option-selected:not(.ant-select-item-option-disabled){color:#6a7580;font-weight:500;background-color:#fff}.ant-select-item-option-selected:not(.ant-select-item-option-disabled) .ant-select-item-option-state{color:#0b68ff}.ant-select-item-option-disabled{color:#b5bdc3;cursor:not-allowed}.ant-select-item-option-disabled.ant-select-item-option-selected{background-color:#f9fafb}.ant-select-item-option-grouped{padding-left:32px}.ant-select-lg{font-size:13px}.ant-select-borderless .ant-select-selector{background-color:transparent!important;border-color:transparent!important;box-shadow:none!important}.ant-select.ant-select-in-form-item{width:100%}.ant-select-compact-item:not(.ant-select-compact-last-item){margin-right:-1px}.ant-select-compact-item:not(.ant-select-compact-last-item).ant-select-compact-item-rtl{margin-right:0;margin-left:-1px}.ant-select-compact-item:active>*,.ant-select-compact-item:focus>*,.ant-select-compact-item:hover>*{z-index:2}.ant-select-compact-item.ant-select-focused>*{z-index:2}.ant-select-compact-item[disabled]>*{z-index:0}.ant-select-compact-item:not(.ant-select-compact-first-item):not(.ant-select-compact-last-item).ant-select>.ant-select-selector{border-radius:0}.ant-select-compact-item.ant-select-compact-first-item.ant-select:not(.ant-select-compact-last-item):not(.ant-select-compact-item-rtl)>.ant-select-selector{border-top-right-radius:0;border-bottom-right-radius:0}.ant-select-compact-item.ant-select-compact-last-item.ant-select:not(.ant-select-compact-first-item):not(.ant-select-compact-item-rtl)>.ant-select-selector{border-top-left-radius:0;border-bottom-left-radius:0}.ant-select-compact-item.ant-select.ant-select-compact-first-item.ant-select-compact-item-rtl:not(.ant-select-compact-last-item)>.ant-select-selector{border-top-left-radius:0;border-bottom-left-radius:0}.ant-select-compact-item.ant-select.ant-select-compact-last-item.ant-select-compact-item-rtl:not(.ant-select-compact-first-item)>.ant-select-selector{border-top-right-radius:0;border-bottom-right-radius:0}.ant-select-rtl{direction:rtl}.ant-select-rtl .ant-select-arrow{right:initial;left:15px}.ant-select-rtl .ant-select-clear{right:initial;left:15px}.ant-select-dropdown-rtl{direction:rtl}.ant-select-dropdown-rtl .ant-select-item-option-grouped{padding-right:32px;padding-left:16px}.ant-select-rtl.ant-select-multiple.ant-select-allow-clear .ant-select-selector,.ant-select-rtl.ant-select-multiple.ant-select-show-arrow .ant-select-selector{padding-right:4px;padding-left:27px}.ant-select-rtl.ant-select-multiple .ant-select-selection-item{text-align:right}.ant-select-rtl.ant-select-multiple .ant-select-selection-item-content{margin-right:0;margin-left:4px;text-align:right}.ant-select-rtl.ant-select-multiple .ant-select-selection-search-mirror{right:0;left:auto}.ant-select-rtl.ant-select-multiple .ant-select-selection-placeholder{right:15px;left:auto}.ant-select-rtl.ant-select-multiple.ant-select-sm .ant-select-selection-placeholder{right:7px}.ant-select-rtl.ant-select-single .ant-select-selector .ant-select-selection-item,.ant-select-rtl.ant-select-single .ant-select-selector .ant-select-selection-placeholder{right:0;left:9px;text-align:right}.ant-select-rtl.ant-select-single.ant-select-show-arrow .ant-select-selection-search{right:15px;left:28px}.ant-select-rtl.ant-select-single.ant-select-show-arrow .ant-select-selection-item,.ant-select-rtl.ant-select-single.ant-select-show-arrow .ant-select-selection-placeholder{padding-right:0;padding-left:17px}.ant-select-rtl.ant-select-single.ant-select-sm:not(.ant-select-customize-input).ant-select-show-arrow .ant-select-selection-search{right:6px}.ant-select-rtl.ant-select-single.ant-select-sm:not(.ant-select-customize-input).ant-select-show-arrow .ant-select-selection-item,.ant-select-rtl.ant-select-single.ant-select-sm:not(.ant-select-customize-input).ant-select-show-arrow .ant-select-selection-placeholder{padding-right:0;padding-left:19.5px}.ant-select-selection-selected-value{color:#57616d}.ant-select-selection-placeholder{color:#949ea6;padding-left:2px}.ant-select-dropdown{margin-top:4px}.ant-select-dropdown-menu-item{font-weight:500;color:#57616d}.ant-select-dropdown-menu-item:hover{background-color:#f9fafb;color:#0b68ff}.ant-select-item-group{padding:8px 12px;text-transform:uppercase;color:#949ea6;font-size:10px;line-height:16px;font-weight:500}.ant-select-multiple .ant-select-selection-item{background-color:#f3f5f6}.ant-select-multiple .ant-select-selection-item:hover{background-color:#e9edee}.ant-select-multiple .ant-select-selection-item:hover .ant-select-selection-item-remove svg{color:#f52922;fill:#f52922}.ant-select-dropdown-menu-item:hover:not( .ant-select-dropdown-menu-item-disabled){background-color:#f9fafb}.ant-select-dropdown-menu-item-active{background-color:#f9fafb;color:#57616d}.ant-select-dropdown-menu-item-active:not( .ant-select-dropdown-menu-item-disabled){background:#f9fafb;color:#0b68ff}.ant-select-item-option-disabled{opacity:.4}.ant-select-item-option-disabled:hover .ant-select-item-option-content{background-color:#f9fafb;color:#57616d}.ant-select-dropdown-menu-item-selected.ant-select-dropdown-menu-item-selected{background:0 0;color:#57616d}.ant-select-item-option-selected:after{position:absolute;width:24px;height:24px;right:8px;content:url('data:image/svg+xml;base64,PHN2ZyBpZD0iaWNvbnMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0iIzc2ZGMyNSIgdmlld0JveD0iMCAwIDI0IDI0Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPjAxLTAyLWNoZWNrLXM8L3RpdGxlPjxyZWN0IGlkPSJjYW52YXMiIGNsYXNzPSJjbHMtMSIgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0Ii8+PHBhdGggZD0iTTEwLjYxLDE1Ljc0YS43NS43NSwwLDAsMS0uNTMtLjIyTDcsMTIuMzZhLjc1Ljc1LDAsMSwxLDEuMDYtMWwyLjU4LDIuNjFMMTYsOC40OGEuNzcuNzcsMCwwLDEsMS4wNywwLC43NS43NSwwLDAsMSwwLDEuMDZsLTUuODksNkEuNzkuNzksMCwwLDEsMTAuNjEsMTUuNzRaIi8+PC9zdmc+');color:#54cb0b;font-size:20px;z-index:11}.ant-select-item-option-selected>.ant-select-item-option-content{padding-right:32px}.ant-select-dropdown{box-shadow:0 8px 16px rgba(171,178,183,.32)}.ant-select-dropdown .ant-empty{display:flex;flex-direction:column;justify-content:center;align-items:center}.ant-select-dropdown .ant-empty p{margin:0}.ant-select-arrow{background-image:url('data:image/svg+xml;base64,PHN2ZyBpZD0iaWNvbnMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDI0IDI0Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPjAxLTAzLWFuZ2xlLWRvd24tczwvdGl0bGU+PHJlY3QgaWQ9ImNhbnZhcyIgY2xhc3M9ImNscy0xIiB3aWR0aD0iMjQiIGhlaWdodD0iMjQiLz48cGF0aCBmaWxsPSIjNmE3NTgwIiBkPSJNMTIsMTQuMzhhLjc5Ljc5LDAsMCwxLS41My0uMjJMOC4yMiwxMC45MWEuNzcuNzcsMCwwLDEsMC0xLjA3Ljc1Ljc1LDAsMCwxLDEuMDYsMEwxMiwxMi41NmwyLjcyLTIuNzJhLjc1Ljc1LDAsMCwxLDEuMDYsMCwuNzcuNzcsMCwwLDEsMCwxLjA3bC0zLjI1LDMuMjVBLjc5Ljc5LDAsMCwxLDEyLDE0LjM4WiIvPjwvc3ZnPg==');width:24px;height:24px;background-position:center;background-repeat:no-repeat;background-size:contain;top:50%;right:8px;transform-origin:50% 25%;display:flex;transform:translateY(-50%);align-items:center;justify-content:center;margin-top:0}.ant-select-arrow .anticon-down{display:none}.ant-select-arrow i{display:none!important}.ant-select-open:not(.ant-select-show-search) .ant-select-arrow{transform:rotateZ(-180deg)}.ant-select-open.ant-select-show-search .ant-select-arrow{background:0 0}.ant-select-dropdown{box-shadow:0 16px 32px 0 rgba(35,41,54,.1);padding:8px}.ant-select-dropdown .ant-select-item-option-content{font-size:13px;line-height:18px;color:#57616d;font-weight:500}.ant-select-dropdown .ant-select-item-option-active{background-color:transparent}.ant-select-dropdown .ant-select-item-option{border-radius:3px;height:32px;display:flex;align-items:center;justify-content:flex-start;padding:0 8px 0 12px}.ant-select-dropdown .ant-select-item-option:hover{background-color:#f9fafb}.ant-select-dropdown .ant-select-item-option:hover .ant-select-item-option-content{color:#0b68ff}.ant-select-dropdown .ant-select-item-option-disabled{opacity:.4}.ant-select-dropdown .ant-select-item-option-disabled:hover{background-color:transparent}.ant-select-dropdown .ant-select-item-option-disabled:hover .ant-select-item-option-content{background-color:transparent;color:#57616d}.ant-select-item-option-state{display:none}.ant-select{color:#57616d;font-size:13px;line-height:18px;font-weight:400}.ant-select.ant-select-single .ant-select-selector{padding:0 12px}.ant-select:hover.error .ant-select-selector{border-color:#f52922}.ant-select-focused .ant-select-selector,.ant-select-selector:active,.ant-select-selector:focus{border-color:#0b68ff!important;box-shadow:inset 0 0 0 1px #0b68ff!important;background:#f4faff!important}.ant-select-disabled .ant-select-selector{border-color:#dbe0e3!important;box-shadow:none!important;background:#f9fafb!important}.ant-select-focused .ant-select-clear{background-color:#f4faff!important}.ant-select .ant-select-clear{width:24px;height:24px;top:9px;right:8px}.ant-select .ant-select-clear svg{fill:#f52922;color:#f52922}.ant-select .ant-select-selector .ant-select-selection-search .ant-select-selection-search-input{left:12px;right:12px}.ant-select-multiple.ant-select-multiple.ant-select-multiple .ant-select-selection-search{left:12px;margin:0;min-width:10px}.ant-select-multiple.ant-select-multiple.ant-select-multiple .ant-select-selection-placeholder{left:12px;right:12px}.ant-select-multiple.ant-select-multiple.ant-select-multiple .ant-select-selection-search-input{margin:0;margin-left:0!important;padding:0}.ant-select-multiple.ant-select-multiple.ant-select-multiple .ant-select-selection-item{padding:0 0 0 8px;border:0}.ant-select-multiple.ant-select-multiple.ant-select-multiple .ant-select-selection-item{margin-left:2px;margin-right:2px}.ant-select-multiple.ant-select-multiple.ant-select-multiple .ant-select-selection-item+.ant-select-selection-search{left:4px}.ant-select-multiple .ant-select-selector{padding:1px 10px 1px 1px}.ant-select-multiple .ant-select-selection-item-remove svg{fill:#f52922;color:#f52922}.ant-select-dropdown-menu-item-group-title{color:#57616d}.ant-select-single .ant-select-selector .ant-select-selection-search{left:10px}.ant-pagination{box-sizing:border-box;margin:0;padding:0;color:#6a7580;font-size:13px;font-variant:tabular-nums;line-height:1.38;list-style:none;font-feature-settings:'tnum'}.ant-pagination ol,.ant-pagination ul{margin:0;padding:0;list-style:none}.ant-pagination::after{display:block;clear:both;height:0;overflow:hidden;visibility:hidden;content:' '}.ant-pagination-total-text{display:inline-block;height:32px;margin-right:8px;line-height:30px;vertical-align:middle}.ant-pagination-item{display:inline-block;min-width:32px;height:32px;margin-right:8px;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,'Noto Sans',sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol','Noto Color Emoji';line-height:30px;text-align:center;vertical-align:middle;list-style:none;background-color:#fff;border:1px solid #dbe0e3;border-radius:3px;outline:0;cursor:pointer;user-select:none}.ant-pagination-item a{display:block;padding:0 6px;color:#6a7580;transition:none}.ant-pagination-item a:hover{text-decoration:none}.ant-pagination-item:hover{border-color:#0b68ff;transition:all .3s}.ant-pagination-item:hover a{color:#0b68ff}.ant-pagination-item:focus-visible{border-color:#0b68ff;transition:all .3s}.ant-pagination-item:focus-visible a{color:#0b68ff}.ant-pagination-item-active{font-weight:500;background:#fff;border-color:#0b68ff}.ant-pagination-item-active a{color:#0b68ff}.ant-pagination-item-active:hover{border-color:#38f}.ant-pagination-item-active:focus-visible{border-color:#38f}.ant-pagination-item-active:hover a{color:#38f}.ant-pagination-item-active:focus-visible a{color:#38f}.ant-pagination-jump-next,.ant-pagination-jump-prev{outline:0}.ant-pagination-jump-next .ant-pagination-item-container,.ant-pagination-jump-prev .ant-pagination-item-container{position:relative}.ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-link-icon,.ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-link-icon{color:#0b68ff;font-size:11px;letter-spacing:-1px;opacity:0;transition:all .2s}.ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-link-icon-svg,.ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-link-icon-svg{top:0;right:0;bottom:0;left:0;margin:auto}.ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-ellipsis,.ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-ellipsis{position:absolute;top:0;right:0;bottom:0;left:0;display:block;margin:auto;color:#b5bdc3;font-family:Arial,Helvetica,sans-serif;letter-spacing:2px;text-align:center;text-indent:.13em;opacity:1;transition:all .2s}.ant-pagination-jump-next:hover .ant-pagination-item-link-icon,.ant-pagination-jump-prev:hover .ant-pagination-item-link-icon{opacity:1}.ant-pagination-jump-next:hover .ant-pagination-item-ellipsis,.ant-pagination-jump-prev:hover .ant-pagination-item-ellipsis{opacity:0}.ant-pagination-jump-next:focus-visible .ant-pagination-item-link-icon,.ant-pagination-jump-prev:focus-visible .ant-pagination-item-link-icon{opacity:1}.ant-pagination-jump-next:focus-visible .ant-pagination-item-ellipsis,.ant-pagination-jump-prev:focus-visible .ant-pagination-item-ellipsis{opacity:0}.ant-pagination-jump-next,.ant-pagination-jump-prev,.ant-pagination-prev{margin-right:8px}.ant-pagination-jump-next,.ant-pagination-jump-prev,.ant-pagination-next,.ant-pagination-prev{display:inline-block;min-width:32px;height:32px;color:#6a7580;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,'Noto Sans',sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol','Noto Color Emoji';line-height:32px;text-align:center;vertical-align:middle;list-style:none;border-radius:3px;cursor:pointer;transition:all .3s}.ant-pagination-next,.ant-pagination-prev{font-family:Arial,Helvetica,sans-serif;outline:0}.ant-pagination-next button,.ant-pagination-prev button{color:#6a7580;cursor:pointer;user-select:none}.ant-pagination-next:hover button,.ant-pagination-prev:hover button{border-color:#38f}.ant-pagination-next .ant-pagination-item-link,.ant-pagination-prev .ant-pagination-item-link{display:block;width:100%;height:100%;padding:0;font-size:12px;text-align:center;background-color:#fff;border:1px solid #dbe0e3;border-radius:3px;outline:0;transition:all .3s}.ant-pagination-next:focus-visible .ant-pagination-item-link,.ant-pagination-prev:focus-visible .ant-pagination-item-link{color:#0b68ff;border-color:#0b68ff}.ant-pagination-next:hover .ant-pagination-item-link,.ant-pagination-prev:hover .ant-pagination-item-link{color:#0b68ff;border-color:#0b68ff}.ant-pagination-disabled,.ant-pagination-disabled:hover{cursor:not-allowed}.ant-pagination-disabled .ant-pagination-item-link,.ant-pagination-disabled:hover .ant-pagination-item-link{color:#b5bdc3;border-color:#dbe0e3;cursor:not-allowed}.ant-pagination-disabled:focus-visible{cursor:not-allowed}.ant-pagination-disabled:focus-visible .ant-pagination-item-link{color:#b5bdc3;border-color:#dbe0e3;cursor:not-allowed}.ant-pagination-slash{margin:0 10px 0 5px}.ant-pagination-options{display:inline-block;margin-left:16px;vertical-align:middle}@media all and (-ms-high-contrast:none){.ant-pagination-options,.ant-pagination-options ::-ms-backdrop{vertical-align:top}}.ant-pagination-options-size-changer.ant-select{display:inline-block;width:auto}.ant-pagination-options-quick-jumper{display:inline-block;height:32px;margin-left:8px;line-height:32px;vertical-align:top}.ant-pagination-options-quick-jumper input{position:relative;display:inline-block;width:100%;min-width:0;padding:4px 15px;color:#6a7580;font-size:13px;line-height:1.38;background-color:#fff;background-image:none;border:1px solid #dbe0e3;border-radius:3px;transition:all .3s;width:50px;height:32px;margin:0 8px}.ant-pagination-options-quick-jumper input::placeholder{color:#b5bdc3;user-select:none}.ant-pagination-options-quick-jumper input:placeholder-shown{text-overflow:ellipsis}.ant-pagination-options-quick-jumper input:hover{border-color:#b5bdc3;border-right-width:1px}.ant-pagination-options-quick-jumper input-focused,.ant-pagination-options-quick-jumper input:focus{border-color:#38f;box-shadow:0 0 0 0 rgba(11,104,255,.2);border-right-width:1px;outline:0}.ant-pagination-options-quick-jumper input-disabled{color:#b5bdc3;background-color:#f9fafb;border-color:#dbe0e3;box-shadow:none;cursor:not-allowed;opacity:1}.ant-pagination-options-quick-jumper input-disabled:hover{border-color:#dbe0e3;border-right-width:1px}.ant-pagination-options-quick-jumper input[disabled]{color:#b5bdc3;background-color:#f9fafb;border-color:#dbe0e3;box-shadow:none;cursor:not-allowed;opacity:1}.ant-pagination-options-quick-jumper input[disabled]:hover{border-color:#dbe0e3;border-right-width:1px}.ant-pagination-options-quick-jumper input-borderless,.ant-pagination-options-quick-jumper input-borderless-disabled,.ant-pagination-options-quick-jumper input-borderless-focused,.ant-pagination-options-quick-jumper input-borderless:focus,.ant-pagination-options-quick-jumper input-borderless:hover,.ant-pagination-options-quick-jumper input-borderless[disabled]{background-color:transparent;border:none;box-shadow:none}textarea.ant-pagination-options-quick-jumper input{max-width:100%;height:auto;min-height:32px;line-height:1.38;vertical-align:bottom;transition:all .3s,height 0s}.ant-pagination-options-quick-jumper input-lg{padding:6px 15px;font-size:13px}.ant-pagination-options-quick-jumper input-sm{padding:1px 7px}.ant-pagination-simple .ant-pagination-next,.ant-pagination-simple .ant-pagination-prev{height:32px;line-height:32px;vertical-align:top}.ant-pagination-simple .ant-pagination-next .ant-pagination-item-link,.ant-pagination-simple .ant-pagination-prev .ant-pagination-item-link{height:32px;background-color:transparent;border:0}.ant-pagination-simple .ant-pagination-next .ant-pagination-item-link::after,.ant-pagination-simple .ant-pagination-prev .ant-pagination-item-link::after{height:32px;line-height:32px}.ant-pagination-simple .ant-pagination-simple-pager{display:inline-block;height:32px;margin-right:8px}.ant-pagination-simple .ant-pagination-simple-pager input{box-sizing:border-box;height:100%;margin-right:8px;padding:0 6px;text-align:center;background-color:#fff;border:1px solid #dbe0e3;border-radius:3px;outline:0;transition:border-color .3s}.ant-pagination-simple .ant-pagination-simple-pager input:hover{border-color:#0b68ff}.ant-pagination-simple .ant-pagination-simple-pager input:focus{border-color:#38f;box-shadow:0 0 0 0 rgba(11,104,255,.2)}.ant-pagination-simple .ant-pagination-simple-pager input[disabled]{color:#b5bdc3;background:#f3f5f6;border-color:#dbe0e3;cursor:not-allowed}.ant-pagination.ant-pagination-mini .ant-pagination-simple-pager,.ant-pagination.ant-pagination-mini .ant-pagination-total-text{height:32px;line-height:32px}.ant-pagination.ant-pagination-mini .ant-pagination-item{min-width:32px;height:32px;margin:0;line-height:30px}.ant-pagination.ant-pagination-mini .ant-pagination-item:not(.ant-pagination-item-active){background:0 0;border-color:transparent}.ant-pagination.ant-pagination-mini .ant-pagination-next,.ant-pagination.ant-pagination-mini .ant-pagination-prev{min-width:32px;height:32px;margin:0;line-height:32px}.ant-pagination.ant-pagination-mini .ant-pagination-next .ant-pagination-item-link,.ant-pagination.ant-pagination-mini .ant-pagination-prev .ant-pagination-item-link{background:0 0;border-color:transparent}.ant-pagination.ant-pagination-mini .ant-pagination-next .ant-pagination-item-link::after,.ant-pagination.ant-pagination-mini .ant-pagination-prev .ant-pagination-item-link::after{height:32px;line-height:32px}.ant-pagination.ant-pagination-mini .ant-pagination-jump-next,.ant-pagination.ant-pagination-mini .ant-pagination-jump-prev{height:32px;margin-right:0;line-height:32px}.ant-pagination.ant-pagination-mini .ant-pagination-options{margin-left:2px}.ant-pagination.ant-pagination-mini .ant-pagination-options-size-changer{top:0}.ant-pagination.ant-pagination-mini .ant-pagination-options-quick-jumper{height:32px;line-height:32px}.ant-pagination.ant-pagination-mini .ant-pagination-options-quick-jumper input{padding:1px 7px;width:44px;height:24px}.ant-pagination.ant-pagination-disabled{cursor:not-allowed}.ant-pagination.ant-pagination-disabled .ant-pagination-item{background:#f3f5f6;border-color:#dbe0e3;cursor:not-allowed}.ant-pagination.ant-pagination-disabled .ant-pagination-item a{color:#b5bdc3;background:0 0;border:none;cursor:not-allowed}.ant-pagination.ant-pagination-disabled .ant-pagination-item-active{background:#e6e6e6}.ant-pagination.ant-pagination-disabled .ant-pagination-item-active a{color:#b5bdc3}.ant-pagination.ant-pagination-disabled .ant-pagination-item-link{color:#b5bdc3;background:#f3f5f6;border-color:#dbe0e3;cursor:not-allowed}.ant-pagination-simple.ant-pagination.ant-pagination-disabled .ant-pagination-item-link{background:0 0}.ant-pagination.ant-pagination-disabled .ant-pagination-item-link-icon{opacity:0}.ant-pagination.ant-pagination-disabled .ant-pagination-item-ellipsis{opacity:1}.ant-pagination.ant-pagination-disabled .ant-pagination-simple-pager{color:#b5bdc3}@media only screen and (max-width:992px){.ant-pagination-item-after-jump-prev,.ant-pagination-item-before-jump-next{display:none}}@media only screen and (max-width:576px){.ant-pagination-options{display:none}}.ant-pagination-rtl .ant-pagination-total-text{margin-right:0;margin-left:8px}.ant-pagination-rtl .ant-pagination-item,.ant-pagination-rtl .ant-pagination-jump-next,.ant-pagination-rtl .ant-pagination-jump-prev,.ant-pagination-rtl .ant-pagination-prev{margin-right:0;margin-left:8px}.ant-pagination-rtl .ant-pagination-slash{margin:0 5px 0 10px}.ant-pagination-rtl .ant-pagination-options{margin-right:16px;margin-left:0}.ant-pagination-rtl .ant-pagination-options .ant-pagination-options-size-changer.ant-select{margin-right:0;margin-left:8px}.ant-pagination-rtl .ant-pagination-options .ant-pagination-options-quick-jumper{margin-left:0}.ant-pagination-rtl.ant-pagination-simple .ant-pagination-simple-pager{margin-right:0;margin-left:8px}.ant-pagination-rtl.ant-pagination-simple .ant-pagination-simple-pager input{margin-right:0;margin-left:8px}.ant-pagination-rtl.ant-pagination.mini .ant-pagination-options{margin-right:2px;margin-left:0}.ant-pagination *{font-family:'Graphik LCG Web',sans-serif}.ant-pagination-jump-next,.ant-pagination-jump-prev,.ant-pagination-prev{margin-right:8px}.ant-pagination-jump-next,.ant-pagination-jump-prev,.ant-pagination-next{margin-left:8px}.ant-pagination-jump-next.ant-pagination-jump-next.ant-pagination-jump-next .ds-button .hover-icon,.ant-pagination-jump-next.ant-pagination-jump-next.ant-pagination-jump-prev .ds-button .hover-icon,.ant-pagination-jump-next.ant-pagination-jump-prev.ant-pagination-jump-next .ds-button .hover-icon,.ant-pagination-jump-next.ant-pagination-jump-prev.ant-pagination-jump-prev .ds-button .hover-icon,.ant-pagination-jump-prev.ant-pagination-jump-next.ant-pagination-jump-next .ds-button .hover-icon,.ant-pagination-jump-prev.ant-pagination-jump-next.ant-pagination-jump-prev .ds-button .hover-icon,.ant-pagination-jump-prev.ant-pagination-jump-prev.ant-pagination-jump-next .ds-button .hover-icon,.ant-pagination-jump-prev.ant-pagination-jump-prev.ant-pagination-jump-prev .ds-button .hover-icon{display:none}.ant-pagination-jump-next.ant-pagination-jump-next.ant-pagination-jump-next .ds-button:hover .default-icon,.ant-pagination-jump-next.ant-pagination-jump-next.ant-pagination-jump-prev .ds-button:hover .default-icon,.ant-pagination-jump-next.ant-pagination-jump-prev.ant-pagination-jump-next .ds-button:hover .default-icon,.ant-pagination-jump-next.ant-pagination-jump-prev.ant-pagination-jump-prev .ds-button:hover .default-icon,.ant-pagination-jump-prev.ant-pagination-jump-next.ant-pagination-jump-next .ds-button:hover .default-icon,.ant-pagination-jump-prev.ant-pagination-jump-next.ant-pagination-jump-prev .ds-button:hover .default-icon,.ant-pagination-jump-prev.ant-pagination-jump-prev.ant-pagination-jump-next .ds-button:hover .default-icon,.ant-pagination-jump-prev.ant-pagination-jump-prev.ant-pagination-jump-prev .ds-button:hover .default-icon{display:none}.ant-pagination-jump-next.ant-pagination-jump-next.ant-pagination-jump-next .ds-button:hover .hover-icon,.ant-pagination-jump-next.ant-pagination-jump-next.ant-pagination-jump-prev .ds-button:hover .hover-icon,.ant-pagination-jump-next.ant-pagination-jump-prev.ant-pagination-jump-next .ds-button:hover .hover-icon,.ant-pagination-jump-next.ant-pagination-jump-prev.ant-pagination-jump-prev .ds-button:hover .hover-icon,.ant-pagination-jump-prev.ant-pagination-jump-next.ant-pagination-jump-next .ds-button:hover .hover-icon,.ant-pagination-jump-prev.ant-pagination-jump-next.ant-pagination-jump-prev .ds-button:hover .hover-icon,.ant-pagination-jump-prev.ant-pagination-jump-prev.ant-pagination-jump-next .ds-button:hover .hover-icon,.ant-pagination-jump-prev.ant-pagination-jump-prev.ant-pagination-jump-prev .ds-button:hover .hover-icon{display:flex}.ant-pagination-next,.ant-pagination-prev{background-size:24px;background-position:center;color:#6a7580}.ant-pagination-next:hover a,.ant-pagination-prev:hover a{border-color:transparent}.ant-pagination-next.ant-pagination-disabled,.ant-pagination-prev.ant-pagination-disabled{opacity:.4}.ant-pagination-next .ant-pagination-item-link,.ant-pagination-prev .ant-pagination-item-link{text-decoration:none}.ant-pagination-next .ant-pagination-item-link,.ant-pagination-prev .ant-pagination-item-link{border:1px solid transparent;background-color:transparent;border-radius:50%}.ant-pagination-next:focus .ant-pagination-item-link,.ant-pagination-next:hover .ant-pagination-item-link,.ant-pagination-prev:focus .ant-pagination-item-link,.ant-pagination-prev:hover .ant-pagination-item-link{text-decoration:none;border-color:transparent}.ant-pagination-next:focus .ant-pagination-item-link,.ant-pagination-prev:focus .ant-pagination-item-link{color:inherit}.ant-pagination-next:hover .ant-pagination-item-link,.ant-pagination-prev:hover .ant-pagination-item-link{color:#0b68ff}.ant-pagination-next.ant-pagination-disabled,.ant-pagination-prev.ant-pagination-disabled{color:#b5bdc3}.ant-pagination-item{border:1px solid transparent;background-color:transparent;border-radius:16px;margin:0 2px}.ant-pagination-item a{color:#57616d}.ant-pagination-item:focus,.ant-pagination-item:hover{border-color:transparent;background-color:rgba(181,189,195,.4)}.ant-pagination-item-active.ant-pagination-item-active{border-color:#57616d;background-color:#57616d}.ant-pagination-item-active.ant-pagination-item-active a{color:#fff}.ant-pagination-item-active.ant-pagination-item-active:focus a,.ant-pagination-item-active.ant-pagination-item-active:hover a{color:#fff}.ant-pagination-item-link i{display:none}.ant-pagination-options-size-changer.ant-select{margin-right:16px;min-width:140px}.ant-pagination-options,.ant-pagination-options-quick-jumper{display:inline-flex;align-items:center;white-space:nowrap}.ant-pagination-options input,.ant-pagination-options-quick-jumper input{margin:0 8px;padding:7px 12px;height:32px}.ant-pagination-options input:focus,.ant-pagination-options-quick-jumper input:focus{box-shadow:inset 0 0 0 1px #0b68ff;border-color:#0b68ff}.ds-table{position:relative}.ds-table .ds-tree-table.ds-tree-table-with-selection thead>tr th:nth-of-type(2){padding-left:0!important}.ds-table .ds-tree-table.ds-tree-table-with-selection tbody>tr.ant-table-row td.ant-table-cell-with-append{padding-left:0!important}.ds-table .ds-tree-table tbody>tr:not(.ant-table-placeholder):not(.ant-table-row-level-0) td{background-color:#fff}.ds-table .ds-tree-table tbody>tr.ant-table-row td{background-color:#fff!important;padding-left:24px!important}.ds-table .ds-tree-table tbody>tr.ant-table-row td.ant-table-cell-with-append{display:flex;align-items:center;justify-content:flex-start}.ds-table .ds-tree-table tbody>tr.ant-table-row:hover td{background-color:#f9fafb!important}.ds-table .ds-tree-table .ant-table-row td:before{display:none!important}.ds-table .virtual-table colgroup{height:0;visibility:hidden;opacity:0}.ds-table .virtual-table .ds-expanded-row{background-color:#f9fafb}.ds-table .virtual-table .ds-expanded-row .ant-table-cell-fix-left,.ds-table .virtual-table .ds-expanded-row .ant-table-cell-fix-right{background-color:#f9fafb}.ds-table .virtual-table .ds-expanded-row:hover{background-color:#f3f5f6}.ds-table .virtual-table .ds-expanded-row:hover .ant-table-cell-fix-left,.ds-table .virtual-table .ds-expanded-row:hover .ant-table-cell-fix-right{background-color:#f3f5f6}.ds-table .virtual-table .ds-expanded-row-first:before{content:'';display:flex;position:absolute;top:0;left:0;width:2px;height:100%;background-color:#949ea6}.ds-table .virtual-table .ds-expanded-row-data{padding-left:48px}.ds-table .virtual-table-row{border-bottom:1px solid #e9edee;transition:background .3s}.ds-table .virtual-table-row .ant-table-cell-fix-left,.ds-table .virtual-table-row .ant-table-cell-fix-right{transition:background .3s;z-index:unset}.ds-table .virtual-table-row:hover,.ds-table .virtual-table-row:hover .ant-table-cell-fix-left,.ds-table .virtual-table-row:hover .ant-table-cell-fix-right{background-color:#f9fafb}.ds-table .virtual-table-cell{padding:16px 24px;display:table-cell}.ds-table.ds-table-rounded .ant-table{border-radius:3px 3px 0 0;overflow:hidden}.ds-table .ant-table-content{overflow:auto!important}.ds-table .ant-table-row-expand-icon-cell{max-width:0!important;min-width:0!important;width:0!important;padding:0!important;overflow:hidden}.ds-table .ant-table-row-expand-icon-cell *{display:none}.ds-table .ant-table-cell:not(.ant-table-selection-column):not(.ds-table-star-column){min-width:72px}.ds-table .ant-table-cell.ds-table-skeleton-cell.ds-table-skeleton-cell{min-width:auto;padding-top:0;padding-bottom:0}.ds-table .ant-table .ant-table-selection-column{padding:0 24px}.ds-table .ant-table .ant-table-selection-column .ds-checkbox{padding:0 4px}.ds-table .ant-table .ant-table-selection-column .ds-checkbox label{padding:0}.ds-table .ant-table-title{border-bottom:0}.ds-table .ds-table-ping-left .ant-table:not(.ant-table-has-fix-left)>.ant-table-container::before{box-shadow:inset 10px 0 8px -8px rgba(157,165,171,.12)}.ds-table .ds-table-ping-right .ant-table:not(.ant-table-has-fix-right)>.ant-table-container::after{box-shadow:inset -10px 0 8px -8px rgba(157,165,171,.12)}.ds-table .ant-table-ping-left .ant-table-cell-fix-left-last:after,.ds-table .ds-table-ping-left .ant-table-cell-fix-left-last:after{opacity:1}.ds-table .ant-table-cell-fix-left-last:after{opacity:0}.ds-table .ant-table-ping-right .ant-table-cell-fix-right-first:after,.ds-table .ds-table-ping-right .ant-table-cell-fix-right-first:after{opacity:1}.ds-table .ant-table-cell-fix-right-first:after{opacity:0}.ds-table .ant-table thead>tr{background-color:#f9fafb}.ds-table .ant-table .ant-table-cell-fix-left-last:after{right:30px}.ds-table .ant-table .ant-table-cell-fix-right-first:after{left:0}.ds-table .ant-table tbody>tr>td,.ds-table .ant-table tfoot>tr>th,.ds-table .ant-table thead>tr>th{padding:16px 24px}.ds-table .ant-table tbody>tr>td.ant-table-cell-fix-left,.ds-table .ant-table tbody>tr>td.ant-table-cell-fix-right,.ds-table .ant-table tfoot>tr>th.ant-table-cell-fix-left,.ds-table .ant-table tfoot>tr>th.ant-table-cell-fix-right,.ds-table .ant-table thead>tr>th.ant-table-cell-fix-left,.ds-table .ant-table thead>tr>th.ant-table-cell-fix-right{display:table-cell}.ds-table .ant-table thead>tr>th{position:relative;background-color:#f9fafb;height:64px;font-weight:500;padding:0 24px;color:#57616d;border-bottom:1px solid #e9edee}.ds-table .ant-table thead>tr>th.ant-table-cell-fix-left,.ds-table .ant-table thead>tr>th.ant-table-cell-fix-right{display:table-cell}.ds-table .ant-table thead>tr>th>div{position:relative}.ds-table .ant-table thead>tr>th .ant-table-selection{display:none}.ds-table .ant-table thead>tr>th.ant-table-cell-fix-left,.ds-table .ant-table thead>tr>th.ant-table-cell-fix-right{z-index:10}.ds-table .ant-table tbody>tr.ant-table-placeholder td{padding:16px 0}.ds-table .ant-table tbody>tr.ant-table-row-selected td{border-bottom-color:#e9edee}.ds-table .ant-table tbody>tr:not(.ant-table-placeholder):not(.ant-table-row-level-0) td{background-color:#f9fafb}.ds-table .ant-table tbody>tr:not(.ant-table-placeholder):not(.ant-table-row-level-0):hover td{background-color:#f3f5f6}.ds-table .ant-table tbody>tr.ds-group-row:hover td{background-color:#fff}.ds-table .ant-table tbody>tr.ant-table-measure-row>td{padding:0 24px}.ds-table .ant-table tbody>tr.ant-table-expanded-row td{padding:24px}.ds-table .ant-table tbody>tr.ant-table-expanded-row td:before{position:absolute;width:2px;height:100%;left:0;top:0;background-color:#6a7580;content:''}.ds-table .ant-table tbody>tr.ant-table-row-level-1 td:first-of-type:before,.ds-table .ant-table tbody>tr.ant-table-row-level-2 td:first-of-type:before{position:absolute;width:2px;height:100%;left:0;top:0;background-color:#6a7580;content:''}.ds-table .ant-table tbody>tr.ant-table-row-level-1 td:first-of-type:not(.ant-table-selection-column){padding-left:48px}.ds-table .ant-table tbody>tr.ant-table-row-level-1 td.ant-table-selection-column+td{padding-left:48px}.ds-table .ant-table tbody>tr.ant-table-row-level-2 td:first-of-type:not(.ant-table-selection-column){padding-left:64px}.ds-table .ant-table tbody>tr.ant-table-row-level-2 td.ant-table-selection-column+td{padding-left:64px}.ds-table .ant-table tbody>tr>td{color:#6a7580;font-weight:400;font-size:13px;line-height:1.38;background-color:#fff}.ds-table .ant-table tbody>tr>td>.ant-select,.ds-table .ant-table tbody>tr>td>input{width:100%}.ds-table .ant-table tbody>tr>td.ant-table-column-sort,.ds-table .ant-table tbody>tr>td.ds-table-active-column{font-weight:500}.ds-table .ant-table-cell-fix-left-last:after{box-shadow:8px 0 12px 0 rgba(35,41,54,.04)}.ds-table .ant-table-cell-fix-right-first:after{transform:rotateZ(180deg);box-shadow:8px 0 12px 0 rgba(35,41,54,.04)}.ds-table.ds-table-cell-size-medium .ant-table-tbody>tr>td,.ds-table.ds-table-cell-size-medium .ant-table-tfoot>tr>th{padding:14px 24px}.ds-table.ds-table-cell-size-small .ant-table-tbody>tr>td,.ds-table.ds-table-cell-size-small .ant-table-tfoot>tr>th{padding:12px 24px}.ds-table .ant-table-column-sorters{display:flex;align-items:center;justify-content:space-between;padding:0}.ds-table .ant-table-column-sorters::after{display:none}.ds-table .ant-table-column-sorter{max-width:24px;min-width:24px;height:100%;display:flex;justify-content:center;align-items:center;margin:0}.ds-table .ant-table-column-sorter-inner{display:none}.ds-table .ant-pagination{width:100%;margin:0;padding:16px 24px;float:none;text-align:right;background-color:#f9fafb}.ds-table .ant-pagination .ant-pagination-total-text{float:left;font-size:13px;line-height:1.39;color:#57616d;font-weight:400;display:flex;align-items:center}.ds-table .ant-pagination .ant-pagination-total-text strong{font-weight:500}.ds-table .ant-pagination .ant-pagination-options{text-align:left}.ds-table .ant-pagination .ant-select{width:auto;min-width:140px}.ant-table{border-radius:0}.ant-table-sticky-scroll{display:none!important}.ant-table table{border-radius:0;background-color:#fff}.ant-table-title{padding:0;border-bottom:1px solid #e9edee}.ant-table-scroll{overflow-x:auto;overflow-y:auto}.ant-table-scroll .ant-table-placeholder{border:0;padding:32px}.ant-table-footer{padding:0;background:0 0;border-radius:0;border:none}.ant-table-footer:before{content:none}.ant-table-tbody>tr.expandable{cursor:pointer}.ant-table tbody>tr>td,.ant-table tfoot>tr>th,.ant-table thead>tr>th{text-overflow:ellipsis}.ant-table tbody>tr>td:last-child,.ant-table tfoot>tr>th:last-child,.ant-table thead>tr>th:last-child{padding-right:24px}.ant-table tbody>tr>td:first-child,.ant-table tfoot>tr>th:first-child,.ant-table thead>tr>th:first-child{padding-left:24px}.ant-table tbody>tr>td:first-child.ant-table-selection-column,.ant-table tfoot>tr>th:first-child.ant-table-selection-column,.ant-table thead>tr>th:first-child.ant-table-selection-column{text-align:center;display:table-cell;justify-content:center;align-items:center}.ant-table tbody>tr>td tfoot>tr>th,.ant-table tfoot>tr>th tfoot>tr>th,.ant-table thead>tr>th tfoot>tr>th{color:#fff;background-color:#f9fafb;font-weight:500}.ant-table tbody>tr>td thead>tr>th,.ant-table tfoot>tr>th thead>tr>th,.ant-table thead>tr>th thead>tr>th{color:#6a7580;font-size:13px;font-weight:500;line-height:1.38}.ant-table tbody>tr>td thead>tr>th>span,.ant-table tfoot>tr>th thead>tr>th>span,.ant-table thead>tr>th thead>tr>th>span{display:flex;align-items:center;justify-content:flex-start;overflow:hidden;width:100%}.ant-table tbody>tr>td thead>tr>th.ant-table-actions,.ant-table tfoot>tr>th thead>tr>th.ant-table-actions,.ant-table thead>tr>th thead>tr>th.ant-table-actions{overflow:visible}.ant-table tbody>tr>td:not(.ant-table-bordered) .ant-table-thead>tr>th,.ant-table tfoot>tr>th:not(.ant-table-bordered) .ant-table-thead>tr>th,.ant-table thead>tr>th:not(.ant-table-bordered) .ant-table-thead>tr>th{border-top:1px solid #e9edee}.ant-table tbody>tr>td .ant-table-selection,.ant-table tfoot>tr>th .ant-table-selection,.ant-table thead>tr>th .ant-table-selection{display:flex;align-items:center;justify-content:center}.ant-table tbody>tr>td .ant-table-selection .ant-table-selection-down,.ant-table tfoot>tr>th .ant-table-selection .ant-table-selection-down,.ant-table thead>tr>th .ant-table-selection .ant-table-selection-down{display:flex;align-items:center}.ant-table tbody>tr>td tr.clickable,.ant-table tfoot>tr>th tr.clickable,.ant-table thead>tr>th tr.clickable{cursor:pointer}.ant-table tbody>tr>td .virtual-table-cell,.ant-table tfoot>tr>th .virtual-table-cell,.ant-table thead>tr>th .virtual-table-cell{padding:0 16px;border-bottom:1px solid #e9edee;display:flex;align-items:center;justify-content:flex-start;flex:1;max-width:100%}.ant-table tbody>tr>td .ant-empty-description,.ant-table tfoot>tr>th .ant-empty-description,.ant-table thead>tr>th .ant-empty-description{color:#6a7580}
|
|
1
|
+
.ant-table.ant-table-middle{font-size:13px}.ant-table.ant-table-middle .ant-table-footer,.ant-table.ant-table-middle .ant-table-tbody>tr>td,.ant-table.ant-table-middle .ant-table-thead>tr>th,.ant-table.ant-table-middle .ant-table-title,.ant-table.ant-table-middle tfoot>tr>td,.ant-table.ant-table-middle tfoot>tr>th{padding:12px 8px}.ant-table.ant-table-middle .ant-table-filter-trigger{margin-right:-4px}.ant-table.ant-table-middle .ant-table-expanded-row-fixed{margin:-12px -8px}.ant-table.ant-table-middle .ant-table-tbody .ant-table-wrapper:only-child .ant-table{margin:-12px -8px -12px 40px}.ant-table.ant-table-middle .ant-table-selection-column{padding-inline-start:2px}.ant-table.ant-table-small{font-size:13px}.ant-table.ant-table-small .ant-table-footer,.ant-table.ant-table-small .ant-table-tbody>tr>td,.ant-table.ant-table-small .ant-table-thead>tr>th,.ant-table.ant-table-small .ant-table-title,.ant-table.ant-table-small tfoot>tr>td,.ant-table.ant-table-small tfoot>tr>th{padding:8px 8px}.ant-table.ant-table-small .ant-table-filter-trigger{margin-right:-4px}.ant-table.ant-table-small .ant-table-expanded-row-fixed{margin:-8px -8px}.ant-table.ant-table-small .ant-table-tbody .ant-table-wrapper:only-child .ant-table{margin:-8px -8px -8px 40px}.ant-table.ant-table-small .ant-table-selection-column{padding-inline-start:2px}.ant-table.ant-table-bordered>.ant-table-title{border:1px solid #e9edee;border-bottom:0}.ant-table.ant-table-bordered>.ant-table-container{border-left:1px solid #e9edee}.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>tbody>tr>td,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>tfoot>tr>td,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>tfoot>tr>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>thead>tr>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>tbody>tr>td,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>tfoot>tr>td,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>tfoot>tr>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>thead>tr>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>tbody>tr>td,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>tfoot>tr>td,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>tfoot>tr>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>thead>tr>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>tbody>tr>td,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>tfoot>tr>td,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>tfoot>tr>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>thead>tr>th{border-right:1px solid #e9edee}.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>thead>tr:not(:last-child)>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>thead>tr:not(:last-child)>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>thead>tr:not(:last-child)>th,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>thead>tr:not(:last-child)>th{border-bottom:1px solid #e9edee}.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>thead>tr>th::before,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>thead>tr>th::before,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>thead>tr>th::before,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>thead>tr>th::before{background-color:transparent!important}.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>tbody>tr>.ant-table-cell-fix-right-first::after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>tfoot>tr>.ant-table-cell-fix-right-first::after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>thead>tr>.ant-table-cell-fix-right-first::after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>tbody>tr>.ant-table-cell-fix-right-first::after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>tfoot>tr>.ant-table-cell-fix-right-first::after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>thead>tr>.ant-table-cell-fix-right-first::after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>tbody>tr>.ant-table-cell-fix-right-first::after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>tfoot>tr>.ant-table-cell-fix-right-first::after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>thead>tr>.ant-table-cell-fix-right-first::after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>tbody>tr>.ant-table-cell-fix-right-first::after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>tfoot>tr>.ant-table-cell-fix-right-first::after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>thead>tr>.ant-table-cell-fix-right-first::after{border-right:1px solid #e9edee}.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>tbody>tr>td>.ant-table-expanded-row-fixed,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>tbody>tr>td>.ant-table-expanded-row-fixed,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>tbody>tr>td>.ant-table-expanded-row-fixed,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>tbody>tr>td>.ant-table-expanded-row-fixed{margin:-16px -17px}.ant-table.ant-table-bordered>.ant-table-container>.ant-table-body>table>tbody>tr>td>.ant-table-expanded-row-fixed::after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table>tbody>tr>td>.ant-table-expanded-row-fixed::after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table>tbody>tr>td>.ant-table-expanded-row-fixed::after,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-summary>table>tbody>tr>td>.ant-table-expanded-row-fixed::after{position:absolute;top:0;right:1px;bottom:0;border-right:1px solid #e9edee;content:''}.ant-table.ant-table-bordered>.ant-table-container>.ant-table-content>table,.ant-table.ant-table-bordered>.ant-table-container>.ant-table-header>table{border-top:1px solid #e9edee}.ant-table.ant-table-bordered.ant-table-scroll-horizontal>.ant-table-container>.ant-table-body>table>tbody>tr.ant-table-expanded-row>td,.ant-table.ant-table-bordered.ant-table-scroll-horizontal>.ant-table-container>.ant-table-body>table>tbody>tr.ant-table-placeholder>td{border-right:0}.ant-table.ant-table-bordered.ant-table-middle>.ant-table-container>.ant-table-body>table>tbody>tr>td>.ant-table-expanded-row-fixed,.ant-table.ant-table-bordered.ant-table-middle>.ant-table-container>.ant-table-content>table>tbody>tr>td>.ant-table-expanded-row-fixed{margin:-12px -9px}.ant-table.ant-table-bordered.ant-table-small>.ant-table-container>.ant-table-body>table>tbody>tr>td>.ant-table-expanded-row-fixed,.ant-table.ant-table-bordered.ant-table-small>.ant-table-container>.ant-table-content>table>tbody>tr>td>.ant-table-expanded-row-fixed{margin:-8px -9px}.ant-table.ant-table-bordered>.ant-table-footer{border:1px solid #e9edee;border-top:0}.ant-table-cell .ant-table-container:first-child{border-top:0}.ant-table-cell-scrollbar:not([rowspan]){box-shadow:0 1px 0 1px #f9fafb}.ant-table-wrapper{clear:both;max-width:100%}.ant-table-wrapper::before{display:table;content:''}.ant-table-wrapper::after{display:table;clear:both;content:''}.ant-table{box-sizing:border-box;margin:0;padding:0;color:#6a7580;font-variant:tabular-nums;line-height:1.38;list-style:none;font-feature-settings:'tnum';position:relative;font-size:13px;background:#fff;border-radius:3px}.ant-table table{width:100%;text-align:left;border-radius:3px 3px 0 0;border-collapse:separate;border-spacing:0}.ant-table tfoot>tr>td,.ant-table tfoot>tr>th,.ant-table-tbody>tr>td,.ant-table-thead>tr>th{position:relative;padding:16px 16px;overflow-wrap:break-word}.ant-table-cell-ellipsis{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;word-break:keep-all}.ant-table-cell-ellipsis.ant-table-cell-fix-left-last,.ant-table-cell-ellipsis.ant-table-cell-fix-right-first{overflow:visible}.ant-table-cell-ellipsis.ant-table-cell-fix-left-last .ant-table-cell-content,.ant-table-cell-ellipsis.ant-table-cell-fix-right-first .ant-table-cell-content{display:block;overflow:hidden;text-overflow:ellipsis}.ant-table-cell-ellipsis .ant-table-column-title{overflow:hidden;text-overflow:ellipsis;word-break:keep-all}.ant-table-title{padding:16px 16px}.ant-table-footer{padding:16px 16px;color:#384350;background:#e9edee}.ant-table-thead>tr>th{position:relative;color:#384350;font-weight:500;text-align:left;background:#f9fafb;border-bottom:1px solid #e9edee;transition:background .3s ease}.ant-table-thead>tr>th[colspan]:not([colspan='1']){text-align:center}.ant-table-thead>tr>th:not(:last-child):not(.ant-table-selection-column):not(.ant-table-row-expand-icon-cell):not([colspan])::before{position:absolute;top:50%;right:0;width:1px;height:1.6em;background-color:rgba(0,0,0,.06);transform:translateY(-50%);transition:background-color .3s;content:''}.ant-table-thead>tr:not(:last-child)>th[colspan]{border-bottom:0}.ant-table-tbody>tr>td{border-bottom:1px solid #e9edee;transition:background .3s}.ant-table-tbody>tr>td>.ant-table-expanded-row-fixed>.ant-table-wrapper:only-child .ant-table,.ant-table-tbody>tr>td>.ant-table-wrapper:only-child .ant-table{margin:-16px -16px -16px 32px}.ant-table-tbody>tr>td>.ant-table-expanded-row-fixed>.ant-table-wrapper:only-child .ant-table-tbody>tr:last-child>td,.ant-table-tbody>tr>td>.ant-table-wrapper:only-child .ant-table-tbody>tr:last-child>td{border-bottom:0}.ant-table-tbody>tr>td>.ant-table-expanded-row-fixed>.ant-table-wrapper:only-child .ant-table-tbody>tr:last-child>td:first-child,.ant-table-tbody>tr>td>.ant-table-expanded-row-fixed>.ant-table-wrapper:only-child .ant-table-tbody>tr:last-child>td:last-child,.ant-table-tbody>tr>td>.ant-table-wrapper:only-child .ant-table-tbody>tr:last-child>td:first-child,.ant-table-tbody>tr>td>.ant-table-wrapper:only-child .ant-table-tbody>tr:last-child>td:last-child{border-radius:0}.ant-table-tbody>tr.ant-table-row:hover>td,.ant-table-tbody>tr>td.ant-table-cell-row-hover{background:#f9fafb}.ant-table-tbody>tr.ant-table-row-selected>td{background:#f4faff;border-color:rgba(0,0,0,.03)}.ant-table-tbody>tr.ant-table-row-selected:hover>td{background:#eaf5ff}.ant-table-summary{position:relative;z-index:2;background:#fff}div.ant-table-summary{box-shadow:0 -1px 0 #e9edee}.ant-table-summary>tr>td,.ant-table-summary>tr>th{border-bottom:1px solid #e9edee}.ant-table-pagination.ant-pagination{margin:16px 0}.ant-table-pagination{display:flex;flex-wrap:wrap;row-gap:8px}.ant-table-pagination>*{flex:none}.ant-table-pagination-left{justify-content:flex-start}.ant-table-pagination-center{justify-content:center}.ant-table-pagination-right{justify-content:flex-end}.ant-table-thead th.ant-table-column-has-sorters{outline:0;cursor:pointer;transition:all .3s}.ant-table-thead th.ant-table-column-has-sorters:hover{background:rgba(0,0,0,.04)}.ant-table-thead th.ant-table-column-has-sorters:hover::before{background-color:transparent!important}.ant-table-thead th.ant-table-column-has-sorters:focus-visible{color:#0b68ff}.ant-table-thead th.ant-table-column-has-sorters.ant-table-cell-fix-left:hover,.ant-table-thead th.ant-table-column-has-sorters.ant-table-cell-fix-right:hover{background:#f5f5f5}.ant-table-thead th.ant-table-column-sort{background:#f3f5f6}.ant-table-thead th.ant-table-column-sort::before{background-color:transparent!important}td.ant-table-column-sort{background:#fafafa}.ant-table-column-title{position:relative;z-index:1;flex:1}.ant-table-column-sorters{display:flex;flex:auto;align-items:center;justify-content:space-between}.ant-table-column-sorters::after{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;content:''}.ant-table-column-sorter{margin-left:4px;color:#232936;font-size:0;transition:color .3s}.ant-table-column-sorter-inner{display:inline-flex;flex-direction:column;align-items:center}.ant-table-column-sorter-down,.ant-table-column-sorter-up{font-size:11px}.ant-table-column-sorter-down.active,.ant-table-column-sorter-up.active{color:#0b68ff}.ant-table-column-sorter-up+.ant-table-column-sorter-down{margin-top:-.3em}.ant-table-column-sorters:hover .ant-table-column-sorter{color:#0f1217}.ant-table-filter-column{display:flex;justify-content:space-between}.ant-table-filter-trigger{position:relative;display:flex;align-items:center;margin:-4px -8px -4px 4px;padding:0 4px;color:#232936;font-size:11px;border-radius:3px;cursor:pointer;transition:all .3s}.ant-table-filter-trigger:hover{color:#232936;background:rgba(0,0,0,.04)}.ant-table-filter-trigger.active{color:#0b68ff}.ant-table-filter-dropdown{box-sizing:border-box;margin:0;padding:0;color:#6a7580;font-size:13px;font-variant:tabular-nums;line-height:1.38;list-style:none;font-feature-settings:'tnum';min-width:120px;background-color:#fff;border-radius:3px;box-shadow:0 2px 6px rgba(171,178,183,.12)}.ant-table-filter-dropdown .ant-dropdown-menu{max-height:264px;overflow-x:hidden;border:0;box-shadow:none}.ant-table-filter-dropdown .ant-dropdown-menu:empty::after{display:block;padding:8px 0;color:#b5bdc3;font-size:11px;text-align:center;content:'Not Found'}.ant-table-filter-dropdown-tree{padding:8px 8px 0}.ant-table-filter-dropdown-tree .ant-tree-treenode .ant-tree-node-content-wrapper:hover{background-color:#f4faff}.ant-table-filter-dropdown-tree .ant-tree-treenode-checkbox-checked .ant-tree-node-content-wrapper,.ant-table-filter-dropdown-tree .ant-tree-treenode-checkbox-checked .ant-tree-node-content-wrapper:hover{background-color:#add8ff}.ant-table-filter-dropdown-search{padding:8px;border-bottom:1px #e9edee solid}.ant-table-filter-dropdown-search-input input{min-width:140px}.ant-table-filter-dropdown-search-input .anticon{color:#b5bdc3}.ant-table-filter-dropdown-checkall{width:100%;margin-bottom:4px;margin-left:4px}.ant-table-filter-dropdown-submenu>ul{max-height:calc(100vh - 130px);overflow-x:hidden;overflow-y:auto}.ant-table-filter-dropdown .ant-checkbox-wrapper+span,.ant-table-filter-dropdown-submenu .ant-checkbox-wrapper+span{padding-left:8px}.ant-table-filter-dropdown-btns{display:flex;justify-content:space-between;padding:7px 8px;overflow:hidden;background-color:inherit;border-top:1px solid #e9edee}.ant-table-selection-col{width:32px}.ant-table-bordered .ant-table-selection-col{width:50px}table tr td.ant-table-selection-column,table tr th.ant-table-selection-column{padding-right:8px;padding-left:8px;text-align:center}table tr td.ant-table-selection-column .ant-radio-wrapper,table tr th.ant-table-selection-column .ant-radio-wrapper{margin-right:0}table tr th.ant-table-selection-column.ant-table-cell-fix-left{z-index:3}table tr th.ant-table-selection-column::after{background-color:transparent!important}.ant-table-selection{position:relative;display:inline-flex;flex-direction:column}.ant-table-selection-extra{position:absolute;top:0;z-index:1;cursor:pointer;transition:all .3s;margin-inline-start:100%;padding-inline-start:4px}.ant-table-selection-extra .anticon{color:#232936;font-size:10px}.ant-table-selection-extra .anticon:hover{color:#0f1217}.ant-table-expand-icon-col{width:48px}.ant-table-row-expand-icon-cell{text-align:center}.ant-table-row-expand-icon-cell .ant-table-row-expand-icon{display:inline-flex;float:none;vertical-align:sub}.ant-table-row-indent{float:left;height:1px}.ant-table-row-expand-icon{color:#0b68ff;outline:0;cursor:pointer;transition:color .3s;position:relative;float:left;box-sizing:border-box;width:17px;height:17px;padding:0;color:inherit;line-height:17px;background:#fff;border:1px solid #e9edee;border-radius:3px;transform:scale(.94117647);transition:all .3s;user-select:none}.ant-table-row-expand-icon:focus-visible,.ant-table-row-expand-icon:hover{color:#238afe}.ant-table-row-expand-icon:active{color:#0b68ff}.ant-table-row-expand-icon:active,.ant-table-row-expand-icon:focus,.ant-table-row-expand-icon:hover{border-color:currentcolor}.ant-table-row-expand-icon::after,.ant-table-row-expand-icon::before{position:absolute;background:currentcolor;transition:transform .3s ease-out;content:''}.ant-table-row-expand-icon::before{top:7px;right:3px;left:3px;height:1px}.ant-table-row-expand-icon::after{top:3px;bottom:3px;left:7px;width:1px;transform:rotate(90deg)}.ant-table-row-expand-icon-collapsed::before{transform:rotate(-180deg)}.ant-table-row-expand-icon-collapsed::after{transform:rotate(0)}.ant-table-row-expand-icon-spaced{background:0 0;border:0;visibility:hidden}.ant-table-row-expand-icon-spaced::after,.ant-table-row-expand-icon-spaced::before{display:none;content:none}.ant-table-row-indent+.ant-table-row-expand-icon{margin-top:.47px;margin-right:8px}tr.ant-table-expanded-row:hover>td,tr.ant-table-expanded-row>td{background:#fbfbfb}tr.ant-table-expanded-row .ant-descriptions-view{display:flex}tr.ant-table-expanded-row .ant-descriptions-view table{flex:auto;width:auto}.ant-table .ant-table-expanded-row-fixed{position:relative;margin:-16px -16px;padding:16px 16px}.ant-table-tbody>tr.ant-table-placeholder{text-align:center}.ant-table-empty .ant-table-tbody>tr.ant-table-placeholder{color:#b5bdc3}.ant-table-tbody>tr.ant-table-placeholder:hover>td{background:#fff}.ant-table-cell-fix-left,.ant-table-cell-fix-right{position:sticky!important;z-index:2;background:#fff}.ant-table-cell-fix-left-first::after,.ant-table-cell-fix-left-last::after{position:absolute;top:0;right:0;bottom:-1px;width:30px;transform:translateX(100%);transition:box-shadow .3s;content:'';pointer-events:none}.ant-table-cell-fix-left-all::after{display:none}.ant-table-cell-fix-right-first::after,.ant-table-cell-fix-right-last::after{position:absolute;top:0;bottom:-1px;left:0;width:30px;transform:translateX(-100%);transition:box-shadow .3s;content:'';pointer-events:none}.ant-table .ant-table-container::after,.ant-table .ant-table-container::before{position:absolute;top:0;bottom:0;z-index:calc(calc(2 + 1) + 1);width:30px;transition:box-shadow .3s;content:'';pointer-events:none}.ant-table .ant-table-container::before{left:0}.ant-table .ant-table-container::after{right:0}.ant-table-ping-left:not(.ant-table-has-fix-left)>.ant-table-container{position:relative}.ant-table-ping-left:not(.ant-table-has-fix-left)>.ant-table-container::before{box-shadow:inset 10px 0 8px -8px rgba(157,165,171,.12)}.ant-table-ping-left .ant-table-cell-fix-left-first::after,.ant-table-ping-left .ant-table-cell-fix-left-last::after{box-shadow:inset 10px 0 8px -8px rgba(157,165,171,.12)}.ant-table-ping-left .ant-table-cell-fix-left-last::before{background-color:transparent!important}.ant-table-ping-right:not(.ant-table-has-fix-right)>.ant-table-container{position:relative}.ant-table-ping-right:not(.ant-table-has-fix-right)>.ant-table-container::after{box-shadow:inset -10px 0 8px -8px rgba(157,165,171,.12)}.ant-table-ping-right .ant-table-cell-fix-right-first::after,.ant-table-ping-right .ant-table-cell-fix-right-last::after{box-shadow:inset -10px 0 8px -8px rgba(157,165,171,.12)}.ant-table-sticky-holder{position:sticky;z-index:calc(2 + 1);background:#fff}.ant-table-sticky-scroll{position:sticky;bottom:0;z-index:calc(2 + 1);display:flex;align-items:center;background:#fff;border-top:1px solid #e9edee;opacity:.6}.ant-table-sticky-scroll:hover{transform-origin:center bottom}.ant-table-sticky-scroll-bar{height:8px;background-color:rgba(0,0,0,.35);border-radius:4px}.ant-table-sticky-scroll-bar:hover{background-color:rgba(0,0,0,.8)}.ant-table-sticky-scroll-bar-active{background-color:rgba(0,0,0,.8)}@media all and (-ms-high-contrast:none){.ant-table-ping-left .ant-table-cell-fix-left-last::after{box-shadow:none!important}.ant-table-ping-right .ant-table-cell-fix-right-first::after{box-shadow:none!important}}.ant-table-title{border-radius:3px 3px 0 0}.ant-table-title+.ant-table-container{border-top-left-radius:0;border-top-right-radius:0}.ant-table-title+.ant-table-container table{border-radius:0}.ant-table-title+.ant-table-container table>thead>tr:first-child th:first-child{border-radius:0}.ant-table-title+.ant-table-container table>thead>tr:first-child th:last-child{border-radius:0}.ant-table-container{border-top-left-radius:3px;border-top-right-radius:3px}.ant-table-container table>thead>tr:first-child th:first-child{border-top-left-radius:3px}.ant-table-container table>thead>tr:first-child th:last-child{border-top-right-radius:3px}.ant-table-footer{border-radius:0 0 3px 3px}.ant-table-wrapper-rtl{direction:rtl}.ant-table-rtl{direction:rtl}.ant-table-wrapper-rtl .ant-table table{text-align:right}.ant-table-wrapper-rtl .ant-table-thead>tr>th[colspan]:not([colspan='1']){text-align:center}.ant-table-wrapper-rtl .ant-table-thead>tr>th:not(:last-child):not(.ant-table-selection-column):not(.ant-table-row-expand-icon-cell):not([colspan])::before{right:auto;left:0}.ant-table-wrapper-rtl .ant-table-thead>tr>th{text-align:right}.ant-table-tbody>tr .ant-table-wrapper:only-child .ant-table.ant-table-rtl{margin:-16px 32px -16px -16px}.ant-table-wrapper.ant-table-wrapper-rtl .ant-table-pagination-left{justify-content:flex-end}.ant-table-wrapper.ant-table-wrapper-rtl .ant-table-pagination-right{justify-content:flex-start}.ant-table-wrapper-rtl .ant-table-column-sorter{margin-right:4px;margin-left:0}.ant-table-wrapper-rtl .ant-table-filter-column-title{padding:16px 16px 16px 2.3em}.ant-table-rtl .ant-table-thead tr th.ant-table-column-has-sorters .ant-table-filter-column-title{padding:0 0 0 2.3em}.ant-table-wrapper-rtl .ant-table-filter-trigger{margin:-4px 4px -4px -8px}.ant-dropdown-menu-submenu-rtl.ant-table-filter-dropdown .ant-checkbox-wrapper+span,.ant-dropdown-menu-submenu-rtl.ant-table-filter-dropdown-submenu .ant-checkbox-wrapper+span,.ant-dropdown-rtl .ant-table-filter-dropdown .ant-checkbox-wrapper+span,.ant-dropdown-rtl .ant-table-filter-dropdown-submenu .ant-checkbox-wrapper+span{padding-right:8px;padding-left:0}.ant-table-wrapper-rtl .ant-table-selection{text-align:center}.ant-table-wrapper-rtl .ant-table-row-indent{float:right}.ant-table-wrapper-rtl .ant-table-row-expand-icon{float:right}.ant-table-wrapper-rtl .ant-table-row-indent+.ant-table-row-expand-icon{margin-right:0;margin-left:8px}.ant-table-wrapper-rtl .ant-table-row-expand-icon::after{transform:rotate(-90deg)}.ant-table-wrapper-rtl .ant-table-row-expand-icon-collapsed::before{transform:rotate(180deg)}.ant-table-wrapper-rtl .ant-table-row-expand-icon-collapsed::after{transform:rotate(0)}.anticon{display:inline-flex;align-items:center;color:inherit;font-style:normal;line-height:0;text-align:center;text-transform:none;vertical-align:-.125em;text-rendering:optimizelegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.anticon>*{line-height:1}.anticon svg{display:inline-block}.anticon::before{display:none}.anticon .anticon-icon{display:block}.anticon>.anticon{line-height:0;vertical-align:0}.anticon[tabindex]{cursor:pointer}.anticon-spin,.anticon-spin::before{display:inline-block;animation:loadingCircle 1s infinite linear}.ant-fade-appear,.ant-fade-enter{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.ant-fade-leave{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.ant-fade-appear.ant-fade-appear-active,.ant-fade-enter.ant-fade-enter-active{animation-name:antFadeIn;animation-play-state:running}.ant-fade-leave.ant-fade-leave-active{animation-name:antFadeOut;animation-play-state:running;pointer-events:none}.ant-fade-appear,.ant-fade-enter{opacity:0;animation-timing-function:linear}.ant-fade-leave{animation-timing-function:linear}@keyframes antFadeIn{0%{opacity:0}100%{opacity:1}}@keyframes antFadeOut{0%{opacity:1}100%{opacity:0}}.ant-move-up-appear,.ant-move-up-enter{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.ant-move-up-leave{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.ant-move-up-appear.ant-move-up-appear-active,.ant-move-up-enter.ant-move-up-enter-active{animation-name:antMoveUpIn;animation-play-state:running}.ant-move-up-leave.ant-move-up-leave-active{animation-name:antMoveUpOut;animation-play-state:running;pointer-events:none}.ant-move-up-appear,.ant-move-up-enter{opacity:0;animation-timing-function:cubic-bezier(0.08,0.82,0.17,1)}.ant-move-up-leave{animation-timing-function:cubic-bezier(0.6,0.04,0.98,0.34)}.ant-move-down-appear,.ant-move-down-enter{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.ant-move-down-leave{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.ant-move-down-appear.ant-move-down-appear-active,.ant-move-down-enter.ant-move-down-enter-active{animation-name:antMoveDownIn;animation-play-state:running}.ant-move-down-leave.ant-move-down-leave-active{animation-name:antMoveDownOut;animation-play-state:running;pointer-events:none}.ant-move-down-appear,.ant-move-down-enter{opacity:0;animation-timing-function:cubic-bezier(0.08,0.82,0.17,1)}.ant-move-down-leave{animation-timing-function:cubic-bezier(0.6,0.04,0.98,0.34)}.ant-move-left-appear,.ant-move-left-enter{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.ant-move-left-leave{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.ant-move-left-appear.ant-move-left-appear-active,.ant-move-left-enter.ant-move-left-enter-active{animation-name:antMoveLeftIn;animation-play-state:running}.ant-move-left-leave.ant-move-left-leave-active{animation-name:antMoveLeftOut;animation-play-state:running;pointer-events:none}.ant-move-left-appear,.ant-move-left-enter{opacity:0;animation-timing-function:cubic-bezier(0.08,0.82,0.17,1)}.ant-move-left-leave{animation-timing-function:cubic-bezier(0.6,0.04,0.98,0.34)}.ant-move-right-appear,.ant-move-right-enter{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.ant-move-right-leave{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.ant-move-right-appear.ant-move-right-appear-active,.ant-move-right-enter.ant-move-right-enter-active{animation-name:antMoveRightIn;animation-play-state:running}.ant-move-right-leave.ant-move-right-leave-active{animation-name:antMoveRightOut;animation-play-state:running;pointer-events:none}.ant-move-right-appear,.ant-move-right-enter{opacity:0;animation-timing-function:cubic-bezier(0.08,0.82,0.17,1)}.ant-move-right-leave{animation-timing-function:cubic-bezier(0.6,0.04,0.98,0.34)}@keyframes antMoveDownIn{0%{transform:translateY(100%);transform-origin:0 0;opacity:0}100%{transform:translateY(0);transform-origin:0 0;opacity:1}}@keyframes antMoveDownOut{0%{transform:translateY(0);transform-origin:0 0;opacity:1}100%{transform:translateY(100%);transform-origin:0 0;opacity:0}}@keyframes antMoveLeftIn{0%{transform:translateX(-100%);transform-origin:0 0;opacity:0}100%{transform:translateX(0);transform-origin:0 0;opacity:1}}@keyframes antMoveLeftOut{0%{transform:translateX(0);transform-origin:0 0;opacity:1}100%{transform:translateX(-100%);transform-origin:0 0;opacity:0}}@keyframes antMoveRightIn{0%{transform:translateX(100%);transform-origin:0 0;opacity:0}100%{transform:translateX(0);transform-origin:0 0;opacity:1}}@keyframes antMoveRightOut{0%{transform:translateX(0);transform-origin:0 0;opacity:1}100%{transform:translateX(100%);transform-origin:0 0;opacity:0}}@keyframes antMoveUpIn{0%{transform:translateY(-100%);transform-origin:0 0;opacity:0}100%{transform:translateY(0);transform-origin:0 0;opacity:1}}@keyframes antMoveUpOut{0%{transform:translateY(0);transform-origin:0 0;opacity:1}100%{transform:translateY(-100%);transform-origin:0 0;opacity:0}}@keyframes loadingCircle{100%{transform:rotate(360deg)}}[ant-click-animating-without-extra-node=true],[ant-click-animating=true]{position:relative}html{--antd-wave-shadow-color:#0b68ff;--scroll-bar:0}.ant-click-animating-node,[ant-click-animating-without-extra-node=true]::after{position:absolute;top:0;right:0;bottom:0;left:0;display:block;border-radius:inherit;box-shadow:0 0 0 0 #0b68ff;box-shadow:0 0 0 0 var(--antd-wave-shadow-color);opacity:.2;animation:fadeEffect 2s cubic-bezier(.08,.82,.17,1),waveEffect .4s cubic-bezier(.08,.82,.17,1);animation-fill-mode:forwards;content:'';pointer-events:none}@keyframes waveEffect{100%{box-shadow:0 0 0 #0b68ff;box-shadow:0 0 0 6px var(--antd-wave-shadow-color)}}@keyframes fadeEffect{100%{opacity:0}}.ant-slide-up-appear,.ant-slide-up-enter{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.ant-slide-up-leave{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.ant-slide-up-appear.ant-slide-up-appear-active,.ant-slide-up-enter.ant-slide-up-enter-active{animation-name:antSlideUpIn;animation-play-state:running}.ant-slide-up-leave.ant-slide-up-leave-active{animation-name:antSlideUpOut;animation-play-state:running;pointer-events:none}.ant-slide-up-appear,.ant-slide-up-enter{transform:scale(0);transform-origin:0% 0%;opacity:0;animation-timing-function:cubic-bezier(0.23,1,0.32,1)}.ant-slide-up-leave{animation-timing-function:cubic-bezier(0.755,0.05,0.855,0.06)}.ant-slide-down-appear,.ant-slide-down-enter{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.ant-slide-down-leave{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.ant-slide-down-appear.ant-slide-down-appear-active,.ant-slide-down-enter.ant-slide-down-enter-active{animation-name:antSlideDownIn;animation-play-state:running}.ant-slide-down-leave.ant-slide-down-leave-active{animation-name:antSlideDownOut;animation-play-state:running;pointer-events:none}.ant-slide-down-appear,.ant-slide-down-enter{transform:scale(0);transform-origin:0% 0%;opacity:0;animation-timing-function:cubic-bezier(0.23,1,0.32,1)}.ant-slide-down-leave{animation-timing-function:cubic-bezier(0.755,0.05,0.855,0.06)}.ant-slide-left-appear,.ant-slide-left-enter{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.ant-slide-left-leave{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.ant-slide-left-appear.ant-slide-left-appear-active,.ant-slide-left-enter.ant-slide-left-enter-active{animation-name:antSlideLeftIn;animation-play-state:running}.ant-slide-left-leave.ant-slide-left-leave-active{animation-name:antSlideLeftOut;animation-play-state:running;pointer-events:none}.ant-slide-left-appear,.ant-slide-left-enter{transform:scale(0);transform-origin:0% 0%;opacity:0;animation-timing-function:cubic-bezier(0.23,1,0.32,1)}.ant-slide-left-leave{animation-timing-function:cubic-bezier(0.755,0.05,0.855,0.06)}.ant-slide-right-appear,.ant-slide-right-enter{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.ant-slide-right-leave{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.ant-slide-right-appear.ant-slide-right-appear-active,.ant-slide-right-enter.ant-slide-right-enter-active{animation-name:antSlideRightIn;animation-play-state:running}.ant-slide-right-leave.ant-slide-right-leave-active{animation-name:antSlideRightOut;animation-play-state:running;pointer-events:none}.ant-slide-right-appear,.ant-slide-right-enter{transform:scale(0);transform-origin:0% 0%;opacity:0;animation-timing-function:cubic-bezier(0.23,1,0.32,1)}.ant-slide-right-leave{animation-timing-function:cubic-bezier(0.755,0.05,0.855,0.06)}@keyframes antSlideUpIn{0%{transform:scaleY(.8);transform-origin:0% 0%;opacity:0}100%{transform:scaleY(1);transform-origin:0% 0%;opacity:1}}@keyframes antSlideUpOut{0%{transform:scaleY(1);transform-origin:0% 0%;opacity:1}100%{transform:scaleY(.8);transform-origin:0% 0%;opacity:0}}@keyframes antSlideDownIn{0%{transform:scaleY(.8);transform-origin:100% 100%;opacity:0}100%{transform:scaleY(1);transform-origin:100% 100%;opacity:1}}@keyframes antSlideDownOut{0%{transform:scaleY(1);transform-origin:100% 100%;opacity:1}100%{transform:scaleY(.8);transform-origin:100% 100%;opacity:0}}@keyframes antSlideLeftIn{0%{transform:scaleX(.8);transform-origin:0% 0%;opacity:0}100%{transform:scaleX(1);transform-origin:0% 0%;opacity:1}}@keyframes antSlideLeftOut{0%{transform:scaleX(1);transform-origin:0% 0%;opacity:1}100%{transform:scaleX(.8);transform-origin:0% 0%;opacity:0}}@keyframes antSlideRightIn{0%{transform:scaleX(.8);transform-origin:100% 0%;opacity:0}100%{transform:scaleX(1);transform-origin:100% 0%;opacity:1}}@keyframes antSlideRightOut{0%{transform:scaleX(1);transform-origin:100% 0%;opacity:1}100%{transform:scaleX(.8);transform-origin:100% 0%;opacity:0}}.ant-zoom-appear,.ant-zoom-enter{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.ant-zoom-leave{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.ant-zoom-appear.ant-zoom-appear-active,.ant-zoom-enter.ant-zoom-enter-active{animation-name:antZoomIn;animation-play-state:running}.ant-zoom-leave.ant-zoom-leave-active{animation-name:antZoomOut;animation-play-state:running;pointer-events:none}.ant-zoom-appear,.ant-zoom-enter{transform:scale(0);opacity:0;animation-timing-function:cubic-bezier(0.08,0.82,0.17,1)}.ant-zoom-appear-prepare,.ant-zoom-enter-prepare{transform:none}.ant-zoom-leave{animation-timing-function:cubic-bezier(0.78,0.14,0.15,0.86)}.ant-zoom-big-appear,.ant-zoom-big-enter{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.ant-zoom-big-leave{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.ant-zoom-big-appear.ant-zoom-big-appear-active,.ant-zoom-big-enter.ant-zoom-big-enter-active{animation-name:antZoomBigIn;animation-play-state:running}.ant-zoom-big-leave.ant-zoom-big-leave-active{animation-name:antZoomBigOut;animation-play-state:running;pointer-events:none}.ant-zoom-big-appear,.ant-zoom-big-enter{transform:scale(0);opacity:0;animation-timing-function:cubic-bezier(0.08,0.82,0.17,1)}.ant-zoom-big-appear-prepare,.ant-zoom-big-enter-prepare{transform:none}.ant-zoom-big-leave{animation-timing-function:cubic-bezier(0.78,0.14,0.15,0.86)}.ant-zoom-big-fast-appear,.ant-zoom-big-fast-enter{animation-duration:.1s;animation-fill-mode:both;animation-play-state:paused}.ant-zoom-big-fast-leave{animation-duration:.1s;animation-fill-mode:both;animation-play-state:paused}.ant-zoom-big-fast-appear.ant-zoom-big-fast-appear-active,.ant-zoom-big-fast-enter.ant-zoom-big-fast-enter-active{animation-name:antZoomBigIn;animation-play-state:running}.ant-zoom-big-fast-leave.ant-zoom-big-fast-leave-active{animation-name:antZoomBigOut;animation-play-state:running;pointer-events:none}.ant-zoom-big-fast-appear,.ant-zoom-big-fast-enter{transform:scale(0);opacity:0;animation-timing-function:cubic-bezier(0.08,0.82,0.17,1)}.ant-zoom-big-fast-appear-prepare,.ant-zoom-big-fast-enter-prepare{transform:none}.ant-zoom-big-fast-leave{animation-timing-function:cubic-bezier(0.78,0.14,0.15,0.86)}.ant-zoom-up-appear,.ant-zoom-up-enter{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.ant-zoom-up-leave{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.ant-zoom-up-appear.ant-zoom-up-appear-active,.ant-zoom-up-enter.ant-zoom-up-enter-active{animation-name:antZoomUpIn;animation-play-state:running}.ant-zoom-up-leave.ant-zoom-up-leave-active{animation-name:antZoomUpOut;animation-play-state:running;pointer-events:none}.ant-zoom-up-appear,.ant-zoom-up-enter{transform:scale(0);opacity:0;animation-timing-function:cubic-bezier(0.08,0.82,0.17,1)}.ant-zoom-up-appear-prepare,.ant-zoom-up-enter-prepare{transform:none}.ant-zoom-up-leave{animation-timing-function:cubic-bezier(0.78,0.14,0.15,0.86)}.ant-zoom-down-appear,.ant-zoom-down-enter{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.ant-zoom-down-leave{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.ant-zoom-down-appear.ant-zoom-down-appear-active,.ant-zoom-down-enter.ant-zoom-down-enter-active{animation-name:antZoomDownIn;animation-play-state:running}.ant-zoom-down-leave.ant-zoom-down-leave-active{animation-name:antZoomDownOut;animation-play-state:running;pointer-events:none}.ant-zoom-down-appear,.ant-zoom-down-enter{transform:scale(0);opacity:0;animation-timing-function:cubic-bezier(0.08,0.82,0.17,1)}.ant-zoom-down-appear-prepare,.ant-zoom-down-enter-prepare{transform:none}.ant-zoom-down-leave{animation-timing-function:cubic-bezier(0.78,0.14,0.15,0.86)}.ant-zoom-left-appear,.ant-zoom-left-enter{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.ant-zoom-left-leave{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.ant-zoom-left-appear.ant-zoom-left-appear-active,.ant-zoom-left-enter.ant-zoom-left-enter-active{animation-name:antZoomLeftIn;animation-play-state:running}.ant-zoom-left-leave.ant-zoom-left-leave-active{animation-name:antZoomLeftOut;animation-play-state:running;pointer-events:none}.ant-zoom-left-appear,.ant-zoom-left-enter{transform:scale(0);opacity:0;animation-timing-function:cubic-bezier(0.08,0.82,0.17,1)}.ant-zoom-left-appear-prepare,.ant-zoom-left-enter-prepare{transform:none}.ant-zoom-left-leave{animation-timing-function:cubic-bezier(0.78,0.14,0.15,0.86)}.ant-zoom-right-appear,.ant-zoom-right-enter{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.ant-zoom-right-leave{animation-duration:.2s;animation-fill-mode:both;animation-play-state:paused}.ant-zoom-right-appear.ant-zoom-right-appear-active,.ant-zoom-right-enter.ant-zoom-right-enter-active{animation-name:antZoomRightIn;animation-play-state:running}.ant-zoom-right-leave.ant-zoom-right-leave-active{animation-name:antZoomRightOut;animation-play-state:running;pointer-events:none}.ant-zoom-right-appear,.ant-zoom-right-enter{transform:scale(0);opacity:0;animation-timing-function:cubic-bezier(0.08,0.82,0.17,1)}.ant-zoom-right-appear-prepare,.ant-zoom-right-enter-prepare{transform:none}.ant-zoom-right-leave{animation-timing-function:cubic-bezier(0.78,0.14,0.15,0.86)}@keyframes antZoomIn{0%{transform:scale(.2);opacity:0}100%{transform:scale(1);opacity:1}}@keyframes antZoomOut{0%{transform:scale(1)}100%{transform:scale(.2);opacity:0}}@keyframes antZoomBigIn{0%{transform:scale(.8);opacity:0}100%{transform:scale(1);opacity:1}}@keyframes antZoomBigOut{0%{transform:scale(1)}100%{transform:scale(.8);opacity:0}}@keyframes antZoomUpIn{0%{transform:scale(.8);transform-origin:50% 0%;opacity:0}100%{transform:scale(1);transform-origin:50% 0%}}@keyframes antZoomUpOut{0%{transform:scale(1);transform-origin:50% 0%}100%{transform:scale(.8);transform-origin:50% 0%;opacity:0}}@keyframes antZoomLeftIn{0%{transform:scale(.8);transform-origin:0% 50%;opacity:0}100%{transform:scale(1);transform-origin:0% 50%}}@keyframes antZoomLeftOut{0%{transform:scale(1);transform-origin:0% 50%}100%{transform:scale(.8);transform-origin:0% 50%;opacity:0}}@keyframes antZoomRightIn{0%{transform:scale(.8);transform-origin:100% 50%;opacity:0}100%{transform:scale(1);transform-origin:100% 50%}}@keyframes antZoomRightOut{0%{transform:scale(1);transform-origin:100% 50%}100%{transform:scale(.8);transform-origin:100% 50%;opacity:0}}@keyframes antZoomDownIn{0%{transform:scale(.8);transform-origin:50% 100%;opacity:0}100%{transform:scale(1);transform-origin:50% 100%}}@keyframes antZoomDownOut{0%{transform:scale(1);transform-origin:50% 100%}100%{transform:scale(.8);transform-origin:50% 100%;opacity:0}}.ant-motion-collapse-legacy{overflow:hidden}.ant-motion-collapse-legacy-active{transition:height .2s cubic-bezier(.645, .045, .355, 1),opacity .2s cubic-bezier(.645, .045, .355, 1)!important}.ant-motion-collapse{overflow:hidden;transition:height .2s cubic-bezier(.645, .045, .355, 1),opacity .2s cubic-bezier(.645, .045, .355, 1)!important}.ant-select-single .ant-select-selector{display:flex}.ant-select-single .ant-select-selector .ant-select-selection-search{position:absolute;top:0;right:15px;bottom:0;left:15px}.ant-select-single .ant-select-selector .ant-select-selection-search-input{width:100%}.ant-select-single .ant-select-selector .ant-select-selection-item,.ant-select-single .ant-select-selector .ant-select-selection-placeholder{padding:0;line-height:30px;transition:all .3s,visibility 0s}.ant-select-single .ant-select-selector .ant-select-selection-item{position:relative;user-select:none}.ant-select-single .ant-select-selector .ant-select-selection-placeholder{transition:none;pointer-events:none}.ant-select-single .ant-select-selector .ant-select-selection-item::after,.ant-select-single .ant-select-selector .ant-select-selection-placeholder::after,.ant-select-single .ant-select-selector::after{display:inline-block;width:0;visibility:hidden;content:'\a0'}.ant-select-single.ant-select-show-arrow .ant-select-selection-search{right:28px}.ant-select-single.ant-select-show-arrow .ant-select-selection-item,.ant-select-single.ant-select-show-arrow .ant-select-selection-placeholder{padding-right:17px}.ant-select-single.ant-select-open .ant-select-selection-item{color:#b5bdc3}.ant-select-single:not(.ant-select-customize-input) .ant-select-selector{width:100%;height:32px;padding:0 15px}.ant-select-single:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-search-input{height:30px}.ant-select-single:not(.ant-select-customize-input) .ant-select-selector::after{line-height:30px}.ant-select-single.ant-select-customize-input .ant-select-selector::after{display:none}.ant-select-single.ant-select-customize-input .ant-select-selector .ant-select-selection-search{position:static;width:100%}.ant-select-single.ant-select-customize-input .ant-select-selector .ant-select-selection-placeholder{position:absolute;right:0;left:0;padding:0 15px}.ant-select-single.ant-select-customize-input .ant-select-selector .ant-select-selection-placeholder::after{display:none}.ant-select-single.ant-select-lg:not(.ant-select-customize-input) .ant-select-selector{height:40px}.ant-select-single.ant-select-lg:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-item,.ant-select-single.ant-select-lg:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-placeholder,.ant-select-single.ant-select-lg:not(.ant-select-customize-input) .ant-select-selector::after{line-height:38px}.ant-select-single.ant-select-lg:not(.ant-select-customize-input):not(.ant-select-customize-input) .ant-select-selection-search-input{height:38px}.ant-select-single.ant-select-sm:not(.ant-select-customize-input) .ant-select-selector{height:24px}.ant-select-single.ant-select-sm:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-item,.ant-select-single.ant-select-sm:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-placeholder,.ant-select-single.ant-select-sm:not(.ant-select-customize-input) .ant-select-selector::after{line-height:22px}.ant-select-single.ant-select-sm:not(.ant-select-customize-input):not(.ant-select-customize-input) .ant-select-selection-search-input{height:22px}.ant-select-single.ant-select-sm:not(.ant-select-customize-input) .ant-select-selection-search{right:7px;left:7px}.ant-select-single.ant-select-sm:not(.ant-select-customize-input) .ant-select-selector{padding:0 7px}.ant-select-single.ant-select-sm:not(.ant-select-customize-input).ant-select-show-arrow .ant-select-selection-search{right:26.5px}.ant-select-single.ant-select-sm:not(.ant-select-customize-input).ant-select-show-arrow .ant-select-selection-item,.ant-select-single.ant-select-sm:not(.ant-select-customize-input).ant-select-show-arrow .ant-select-selection-placeholder{padding-right:19.5px}.ant-select-single.ant-select-lg:not(.ant-select-customize-input) .ant-select-selector{padding:0 15px}.ant-select-selection-overflow{position:relative;display:flex;flex:auto;flex-wrap:wrap;max-width:100%}.ant-select-selection-overflow-item{flex:none;align-self:center;max-width:100%}.ant-select-multiple .ant-select-selector{display:flex;flex-wrap:wrap;align-items:center;padding:1px 4px}.ant-select-show-search.ant-select-multiple .ant-select-selector{cursor:text}.ant-select-disabled.ant-select-multiple .ant-select-selector{background:#f9fafb;cursor:not-allowed}.ant-select-multiple .ant-select-selector::after{display:inline-block;width:0;margin:2px 0;line-height:24px;visibility:hidden;content:'\a0'}.ant-select-multiple.ant-select-allow-clear .ant-select-selector,.ant-select-multiple.ant-select-show-arrow .ant-select-selector{padding-right:27px}.ant-select-multiple .ant-select-selection-item{position:relative;display:flex;flex:none;box-sizing:border-box;max-width:100%;height:24px;margin-top:2px;margin-bottom:2px;line-height:22px;background:#f3f5f6;border:1px solid #e9edee;border-radius:3px;cursor:default;transition:font-size .3s,line-height .3s,height .3s;user-select:none;margin-inline-end:4px;padding-inline-start:8px;padding-inline-end:4px}.ant-select-disabled.ant-select-multiple .ant-select-selection-item{color:#bfbfbf;border-color:#dbe0e3;cursor:not-allowed}.ant-select-multiple .ant-select-selection-item-content{display:inline-block;margin-right:4px;overflow:hidden;white-space:pre;text-overflow:ellipsis}.ant-select-multiple .ant-select-selection-item-remove{color:inherit;font-style:normal;line-height:0;text-align:center;text-transform:none;vertical-align:-.125em;text-rendering:optimizelegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;display:inline-flex;align-items:center;color:#232936;font-weight:700;font-size:10px;line-height:inherit;cursor:pointer}.ant-select-multiple .ant-select-selection-item-remove>*{line-height:1}.ant-select-multiple .ant-select-selection-item-remove svg{display:inline-block}.ant-select-multiple .ant-select-selection-item-remove::before{display:none}.ant-select-multiple .ant-select-selection-item-remove .ant-select-multiple .ant-select-selection-item-remove-icon{display:block}.ant-select-multiple .ant-select-selection-item-remove>.anticon{vertical-align:middle}.ant-select-multiple .ant-select-selection-item-remove:hover{color:rgba(0,0,0,.75)}.ant-select-multiple .ant-select-selection-overflow-item+.ant-select-selection-overflow-item .ant-select-selection-search{margin-inline-start:0}.ant-select-multiple .ant-select-selection-search{position:relative;max-width:100%;margin-inline-start:11px}.ant-select-multiple .ant-select-selection-search-input,.ant-select-multiple .ant-select-selection-search-mirror{height:24px;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,'Noto Sans',sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol','Noto Color Emoji';line-height:24px;transition:all .3s}.ant-select-multiple .ant-select-selection-search-input{width:100%;min-width:4.1px}.ant-select-multiple .ant-select-selection-search-mirror{position:absolute;top:0;left:0;z-index:999;white-space:pre;visibility:hidden}.ant-select-multiple .ant-select-selection-placeholder{position:absolute;top:50%;right:15px;left:15px;transform:translateY(-50%);transition:all .3s}.ant-select-multiple.ant-select-lg .ant-select-selector::after{line-height:40px}.ant-select-multiple.ant-select-lg .ant-select-selection-item{height:40px;line-height:38px}.ant-select-multiple.ant-select-lg .ant-select-selection-search{height:40px;line-height:40px}.ant-select-multiple.ant-select-lg .ant-select-selection-search-input,.ant-select-multiple.ant-select-lg .ant-select-selection-search-mirror{height:40px;line-height:38px}.ant-select-multiple.ant-select-sm .ant-select-selector::after{line-height:16px}.ant-select-multiple.ant-select-sm .ant-select-selection-item{height:16px;line-height:14px}.ant-select-multiple.ant-select-sm .ant-select-selection-search{height:16px;line-height:16px}.ant-select-multiple.ant-select-sm .ant-select-selection-search-input,.ant-select-multiple.ant-select-sm .ant-select-selection-search-mirror{height:16px;line-height:14px}.ant-select-multiple.ant-select-sm .ant-select-selection-placeholder{left:7px}.ant-select-multiple.ant-select-sm .ant-select-selection-search{margin-inline-start:3px}.ant-select-disabled .ant-select-selection-item-remove{display:none}.ant-select-status-error.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer) .ant-select-selector{background-color:#fff;border-color:#f52922!important}.ant-select-status-error.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer).ant-select-focused .ant-select-selector,.ant-select-status-error.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer).ant-select-open .ant-select-selector{border-color:#ff584d;box-shadow:0 0 0 0 rgba(245,41,34,.2);border-right-width:1px;outline:0}.ant-select-status-warning.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer) .ant-select-selector{background-color:#fff;border-color:#fab700!important}.ant-select-status-warning.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer).ant-select-focused .ant-select-selector,.ant-select-status-warning.ant-select:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer).ant-select-open .ant-select-selector{border-color:#ffcd29;box-shadow:0 0 0 0 rgba(250,183,0,.2);border-right-width:1px;outline:0}.ant-select-status-error.ant-select-has-feedback .ant-select-clear,.ant-select-status-success.ant-select-has-feedback .ant-select-clear,.ant-select-status-validating.ant-select-has-feedback .ant-select-clear,.ant-select-status-warning.ant-select-has-feedback .ant-select-clear{right:32px}.ant-select-status-error.ant-select-has-feedback .ant-select-selection-selected-value,.ant-select-status-success.ant-select-has-feedback .ant-select-selection-selected-value,.ant-select-status-validating.ant-select-has-feedback .ant-select-selection-selected-value,.ant-select-status-warning.ant-select-has-feedback .ant-select-selection-selected-value{padding-right:42px}.ant-select{box-sizing:border-box;margin:0;padding:0;color:#6a7580;font-size:13px;font-variant:tabular-nums;line-height:1.38;list-style:none;font-feature-settings:'tnum';position:relative;display:inline-block;cursor:pointer}.ant-select:not(.ant-select-customize-input) .ant-select-selector{position:relative;background-color:#fff;border:1px solid #dbe0e3;border-radius:3px;transition:all .3s cubic-bezier(.645, .045, .355, 1)}.ant-select:not(.ant-select-customize-input) .ant-select-selector input{cursor:pointer}.ant-select-show-search.ant-select:not(.ant-select-customize-input) .ant-select-selector{cursor:text}.ant-select-show-search.ant-select:not(.ant-select-customize-input) .ant-select-selector input{cursor:auto}.ant-select-focused:not(.ant-select-disabled).ant-select:not(.ant-select-customize-input) .ant-select-selector{border-color:#38f;box-shadow:0 0 0 0 rgba(11,104,255,.2);border-right-width:1px;outline:0}.ant-select-disabled.ant-select:not(.ant-select-customize-input) .ant-select-selector{color:#b5bdc3;background:#f9fafb;cursor:not-allowed}.ant-select-multiple.ant-select-disabled.ant-select:not(.ant-select-customize-input) .ant-select-selector{background:#f9fafb}.ant-select-disabled.ant-select:not(.ant-select-customize-input) .ant-select-selector input{cursor:not-allowed}.ant-select:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-search-input{margin:0;padding:0;background:0 0;border:none;outline:0;appearance:none}.ant-select:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-search-input::-webkit-search-cancel-button{display:none;-webkit-appearance:none}.ant-select:not(.ant-select-disabled):hover .ant-select-selector{border-color:#b5bdc3;border-right-width:1px}.ant-select-selection-item{flex:1;overflow:hidden;font-weight:400;white-space:nowrap;text-overflow:ellipsis}@media all and (-ms-high-contrast:none){.ant-select-selection-item,.ant-select-selection-item ::-ms-backdrop{flex:auto}}.ant-select-selection-placeholder{flex:1;overflow:hidden;color:#b5bdc3;white-space:nowrap;text-overflow:ellipsis;pointer-events:none}@media all and (-ms-high-contrast:none){.ant-select-selection-placeholder,.ant-select-selection-placeholder ::-ms-backdrop{flex:auto}}.ant-select-arrow{display:inline-flex;color:inherit;font-style:normal;line-height:0;text-transform:none;vertical-align:-.125em;text-rendering:optimizelegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;position:absolute;top:50%;right:15px;display:flex;align-items:center;height:11px;margin-top:-5.5px;color:#b5bdc3;font-size:11px;line-height:1;text-align:center;pointer-events:none}.ant-select-arrow>*{line-height:1}.ant-select-arrow svg{display:inline-block}.ant-select-arrow::before{display:none}.ant-select-arrow .ant-select-arrow-icon{display:block}.ant-select-arrow .anticon{vertical-align:top;transition:transform .3s}.ant-select-arrow .anticon>svg{vertical-align:top}.ant-select-arrow .anticon:not(.ant-select-suffix){pointer-events:auto}.ant-select-disabled .ant-select-arrow{cursor:not-allowed}.ant-select-arrow>:not(:last-child){margin-inline-end:8px}.ant-select-clear{position:absolute;top:50%;right:15px;z-index:1;display:inline-block;width:11px;height:11px;margin-top:-5.5px;color:#b5bdc3;font-size:11px;font-style:normal;line-height:1;text-align:center;text-transform:none;background:#fff;cursor:pointer;opacity:0;transition:color .3s ease,opacity .15s ease;text-rendering:auto}.ant-select-clear::before{display:block}.ant-select-clear:hover{color:#232936}.ant-select:hover .ant-select-clear{opacity:1}.ant-select-dropdown{margin:0;padding:0;color:#6a7580;font-variant:tabular-nums;line-height:1.38;list-style:none;font-feature-settings:'tnum';position:absolute;top:-9999px;left:-9999px;z-index:991050;box-sizing:border-box;padding:4px 0;overflow:hidden;font-size:13px;font-variant:initial;background-color:#fff;border-radius:3px;outline:0;box-shadow:0 2px 6px rgba(171,178,183,.12)}.ant-select-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-select-dropdown-placement-bottomLeft,.ant-select-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-select-dropdown-placement-bottomLeft{animation-name:antSlideUpIn}.ant-select-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-select-dropdown-placement-topLeft,.ant-select-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-select-dropdown-placement-topLeft{animation-name:antSlideDownIn}.ant-select-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-select-dropdown-placement-bottomLeft{animation-name:antSlideUpOut}.ant-select-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-select-dropdown-placement-topLeft{animation-name:antSlideDownOut}.ant-select-dropdown-hidden{display:none}.ant-select-dropdown-empty{color:#b5bdc3}.ant-select-item-empty{position:relative;display:block;min-height:32px;padding:5px 16px;color:#6a7580;font-weight:400;font-size:13px;line-height:22px;color:#b5bdc3}.ant-select-item{position:relative;display:block;min-height:32px;padding:5px 16px;color:#6a7580;font-weight:400;font-size:13px;line-height:22px;cursor:pointer;transition:background .3s ease}.ant-select-item-group{color:#232936;font-size:11px;cursor:default}.ant-select-item-option{display:flex}.ant-select-item-option-content{flex:auto;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.ant-select-item-option-state{flex:none}.ant-select-item-option-active:not(.ant-select-item-option-disabled){background-color:#f4faff}.ant-select-item-option-selected:not(.ant-select-item-option-disabled){color:#6a7580;font-weight:500;background-color:#fff}.ant-select-item-option-selected:not(.ant-select-item-option-disabled) .ant-select-item-option-state{color:#0b68ff}.ant-select-item-option-disabled{color:#b5bdc3;cursor:not-allowed}.ant-select-item-option-disabled.ant-select-item-option-selected{background-color:#f9fafb}.ant-select-item-option-grouped{padding-left:32px}.ant-select-lg{font-size:13px}.ant-select-borderless .ant-select-selector{background-color:transparent!important;border-color:transparent!important;box-shadow:none!important}.ant-select.ant-select-in-form-item{width:100%}.ant-select-compact-item:not(.ant-select-compact-last-item){margin-right:-1px}.ant-select-compact-item:not(.ant-select-compact-last-item).ant-select-compact-item-rtl{margin-right:0;margin-left:-1px}.ant-select-compact-item:active>*,.ant-select-compact-item:focus>*,.ant-select-compact-item:hover>*{z-index:2}.ant-select-compact-item.ant-select-focused>*{z-index:2}.ant-select-compact-item[disabled]>*{z-index:0}.ant-select-compact-item:not(.ant-select-compact-first-item):not(.ant-select-compact-last-item).ant-select>.ant-select-selector{border-radius:0}.ant-select-compact-item.ant-select-compact-first-item.ant-select:not(.ant-select-compact-last-item):not(.ant-select-compact-item-rtl)>.ant-select-selector{border-top-right-radius:0;border-bottom-right-radius:0}.ant-select-compact-item.ant-select-compact-last-item.ant-select:not(.ant-select-compact-first-item):not(.ant-select-compact-item-rtl)>.ant-select-selector{border-top-left-radius:0;border-bottom-left-radius:0}.ant-select-compact-item.ant-select.ant-select-compact-first-item.ant-select-compact-item-rtl:not(.ant-select-compact-last-item)>.ant-select-selector{border-top-left-radius:0;border-bottom-left-radius:0}.ant-select-compact-item.ant-select.ant-select-compact-last-item.ant-select-compact-item-rtl:not(.ant-select-compact-first-item)>.ant-select-selector{border-top-right-radius:0;border-bottom-right-radius:0}.ant-select-rtl{direction:rtl}.ant-select-rtl .ant-select-arrow{right:initial;left:15px}.ant-select-rtl .ant-select-clear{right:initial;left:15px}.ant-select-dropdown-rtl{direction:rtl}.ant-select-dropdown-rtl .ant-select-item-option-grouped{padding-right:32px;padding-left:16px}.ant-select-rtl.ant-select-multiple.ant-select-allow-clear .ant-select-selector,.ant-select-rtl.ant-select-multiple.ant-select-show-arrow .ant-select-selector{padding-right:4px;padding-left:27px}.ant-select-rtl.ant-select-multiple .ant-select-selection-item{text-align:right}.ant-select-rtl.ant-select-multiple .ant-select-selection-item-content{margin-right:0;margin-left:4px;text-align:right}.ant-select-rtl.ant-select-multiple .ant-select-selection-search-mirror{right:0;left:auto}.ant-select-rtl.ant-select-multiple .ant-select-selection-placeholder{right:15px;left:auto}.ant-select-rtl.ant-select-multiple.ant-select-sm .ant-select-selection-placeholder{right:7px}.ant-select-rtl.ant-select-single .ant-select-selector .ant-select-selection-item,.ant-select-rtl.ant-select-single .ant-select-selector .ant-select-selection-placeholder{right:0;left:9px;text-align:right}.ant-select-rtl.ant-select-single.ant-select-show-arrow .ant-select-selection-search{right:15px;left:28px}.ant-select-rtl.ant-select-single.ant-select-show-arrow .ant-select-selection-item,.ant-select-rtl.ant-select-single.ant-select-show-arrow .ant-select-selection-placeholder{padding-right:0;padding-left:17px}.ant-select-rtl.ant-select-single.ant-select-sm:not(.ant-select-customize-input).ant-select-show-arrow .ant-select-selection-search{right:6px}.ant-select-rtl.ant-select-single.ant-select-sm:not(.ant-select-customize-input).ant-select-show-arrow .ant-select-selection-item,.ant-select-rtl.ant-select-single.ant-select-sm:not(.ant-select-customize-input).ant-select-show-arrow .ant-select-selection-placeholder{padding-right:0;padding-left:19.5px}.ant-select-selection-selected-value{color:#57616d}.ant-select-selection-placeholder{color:#949ea6;padding-left:2px}.ant-select-dropdown{margin-top:4px}.ant-select-dropdown-menu-item{font-weight:500;color:#57616d}.ant-select-dropdown-menu-item:hover{background-color:#f9fafb;color:#0b68ff}.ant-select-item-group{padding:8px 12px;text-transform:uppercase;color:#949ea6;font-size:10px;line-height:16px;font-weight:500}.ant-select-multiple .ant-select-selection-item{background-color:#f3f5f6}.ant-select-multiple .ant-select-selection-item:hover{background-color:#e9edee}.ant-select-multiple .ant-select-selection-item:hover .ant-select-selection-item-remove svg{color:#f52922;fill:#f52922}.ant-select-dropdown-menu-item:hover:not( .ant-select-dropdown-menu-item-disabled){background-color:#f9fafb}.ant-select-dropdown-menu-item-active{background-color:#f9fafb;color:#57616d}.ant-select-dropdown-menu-item-active:not( .ant-select-dropdown-menu-item-disabled){background:#f9fafb;color:#0b68ff}.ant-select-item-option-disabled{opacity:.4}.ant-select-item-option-disabled:hover .ant-select-item-option-content{background-color:#f9fafb;color:#57616d}.ant-select-dropdown-menu-item-selected.ant-select-dropdown-menu-item-selected{background:0 0;color:#57616d}.ant-select-item-option-selected:after{position:absolute;width:24px;height:24px;right:8px;content:url('data:image/svg+xml;base64,PHN2ZyBpZD0iaWNvbnMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0iIzc2ZGMyNSIgdmlld0JveD0iMCAwIDI0IDI0Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPjAxLTAyLWNoZWNrLXM8L3RpdGxlPjxyZWN0IGlkPSJjYW52YXMiIGNsYXNzPSJjbHMtMSIgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0Ii8+PHBhdGggZD0iTTEwLjYxLDE1Ljc0YS43NS43NSwwLDAsMS0uNTMtLjIyTDcsMTIuMzZhLjc1Ljc1LDAsMSwxLDEuMDYtMWwyLjU4LDIuNjFMMTYsOC40OGEuNzcuNzcsMCwwLDEsMS4wNywwLC43NS43NSwwLDAsMSwwLDEuMDZsLTUuODksNkEuNzkuNzksMCwwLDEsMTAuNjEsMTUuNzRaIi8+PC9zdmc+');color:#54cb0b;font-size:20px;z-index:11}.ant-select-item-option-selected>.ant-select-item-option-content{padding-right:32px}.ant-select-dropdown{box-shadow:0 8px 16px rgba(171,178,183,.32)}.ant-select-dropdown .ant-empty{display:flex;flex-direction:column;justify-content:center;align-items:center}.ant-select-dropdown .ant-empty p{margin:0}.ant-select-arrow{background-image:url('data:image/svg+xml;base64,PHN2ZyBpZD0iaWNvbnMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDI0IDI0Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6bm9uZTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPjAxLTAzLWFuZ2xlLWRvd24tczwvdGl0bGU+PHJlY3QgaWQ9ImNhbnZhcyIgY2xhc3M9ImNscy0xIiB3aWR0aD0iMjQiIGhlaWdodD0iMjQiLz48cGF0aCBmaWxsPSIjNmE3NTgwIiBkPSJNMTIsMTQuMzhhLjc5Ljc5LDAsMCwxLS41My0uMjJMOC4yMiwxMC45MWEuNzcuNzcsMCwwLDEsMC0xLjA3Ljc1Ljc1LDAsMCwxLDEuMDYsMEwxMiwxMi41NmwyLjcyLTIuNzJhLjc1Ljc1LDAsMCwxLDEuMDYsMCwuNzcuNzcsMCwwLDEsMCwxLjA3bC0zLjI1LDMuMjVBLjc5Ljc5LDAsMCwxLDEyLDE0LjM4WiIvPjwvc3ZnPg==');width:24px;height:24px;background-position:center;background-repeat:no-repeat;background-size:contain;top:50%;right:8px;transform-origin:50% 25%;display:flex;transform:translateY(-50%);align-items:center;justify-content:center;margin-top:0}.ant-select-arrow .anticon-down{display:none}.ant-select-arrow i{display:none!important}.ant-select-open:not(.ant-select-show-search) .ant-select-arrow{transform:rotateZ(-180deg)}.ant-select-open.ant-select-show-search .ant-select-arrow{background:0 0}.ant-select-dropdown{box-shadow:0 16px 32px 0 rgba(35,41,54,.1);padding:8px}.ant-select-dropdown .ant-select-item-option-content{font-size:13px;line-height:18px;color:#57616d;font-weight:500}.ant-select-dropdown .ant-select-item-option-active{background-color:transparent}.ant-select-dropdown .ant-select-item-option{border-radius:3px;height:32px;display:flex;align-items:center;justify-content:flex-start;padding:0 8px 0 12px}.ant-select-dropdown .ant-select-item-option:hover{background-color:#f9fafb}.ant-select-dropdown .ant-select-item-option:hover .ant-select-item-option-content{color:#0b68ff}.ant-select-dropdown .ant-select-item-option-disabled{opacity:.4}.ant-select-dropdown .ant-select-item-option-disabled:hover{background-color:transparent}.ant-select-dropdown .ant-select-item-option-disabled:hover .ant-select-item-option-content{background-color:transparent;color:#57616d}.ant-select-item-option-state{display:none}.ant-select{color:#57616d;font-size:13px;line-height:18px;font-weight:400}.ant-select.ant-select-single .ant-select-selector{padding:0 12px}.ant-select:hover.error .ant-select-selector{border-color:#f52922}.ant-select-focused .ant-select-selector,.ant-select-selector:active,.ant-select-selector:focus{border-color:#0b68ff!important;box-shadow:inset 0 0 0 1px #0b68ff!important;background:#f4faff!important}.ant-select-disabled .ant-select-selector{border-color:#dbe0e3!important;box-shadow:none!important;background:#f9fafb!important}.ant-select-focused .ant-select-clear{background-color:#f4faff!important}.ant-select .ant-select-clear{width:24px;height:24px;top:9px;right:8px}.ant-select .ant-select-clear svg{fill:#f52922;color:#f52922}.ant-select .ant-select-selector .ant-select-selection-search .ant-select-selection-search-input{left:12px;right:12px}.ant-select-multiple.ant-select-multiple.ant-select-multiple .ant-select-selection-search{left:12px;margin:0;min-width:10px}.ant-select-multiple.ant-select-multiple.ant-select-multiple .ant-select-selection-placeholder{left:12px;right:12px}.ant-select-multiple.ant-select-multiple.ant-select-multiple .ant-select-selection-search-input{margin:0;margin-left:0!important;padding:0}.ant-select-multiple.ant-select-multiple.ant-select-multiple .ant-select-selection-item{padding:0 0 0 8px;border:0}.ant-select-multiple.ant-select-multiple.ant-select-multiple .ant-select-selection-item{margin-left:2px;margin-right:2px}.ant-select-multiple.ant-select-multiple.ant-select-multiple .ant-select-selection-item+.ant-select-selection-search{left:4px}.ant-select-multiple .ant-select-selector{padding:1px 10px 1px 1px}.ant-select-multiple .ant-select-selection-item-remove svg{fill:#f52922;color:#f52922}.ant-select-dropdown-menu-item-group-title{color:#57616d}.ant-select-single .ant-select-selector .ant-select-selection-search{left:10px}.ant-pagination{box-sizing:border-box;margin:0;padding:0;color:#6a7580;font-size:13px;font-variant:tabular-nums;line-height:1.38;list-style:none;font-feature-settings:'tnum'}.ant-pagination ol,.ant-pagination ul{margin:0;padding:0;list-style:none}.ant-pagination::after{display:block;clear:both;height:0;overflow:hidden;visibility:hidden;content:' '}.ant-pagination-total-text{display:inline-block;height:32px;margin-right:8px;line-height:30px;vertical-align:middle}.ant-pagination-item{display:inline-block;min-width:32px;height:32px;margin-right:8px;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,'Noto Sans',sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol','Noto Color Emoji';line-height:30px;text-align:center;vertical-align:middle;list-style:none;background-color:#fff;border:1px solid #dbe0e3;border-radius:3px;outline:0;cursor:pointer;user-select:none}.ant-pagination-item a{display:block;padding:0 6px;color:#6a7580;transition:none}.ant-pagination-item a:hover{text-decoration:none}.ant-pagination-item:hover{border-color:#0b68ff;transition:all .3s}.ant-pagination-item:hover a{color:#0b68ff}.ant-pagination-item:focus-visible{border-color:#0b68ff;transition:all .3s}.ant-pagination-item:focus-visible a{color:#0b68ff}.ant-pagination-item-active{font-weight:500;background:#fff;border-color:#0b68ff}.ant-pagination-item-active a{color:#0b68ff}.ant-pagination-item-active:hover{border-color:#38f}.ant-pagination-item-active:focus-visible{border-color:#38f}.ant-pagination-item-active:hover a{color:#38f}.ant-pagination-item-active:focus-visible a{color:#38f}.ant-pagination-jump-next,.ant-pagination-jump-prev{outline:0}.ant-pagination-jump-next .ant-pagination-item-container,.ant-pagination-jump-prev .ant-pagination-item-container{position:relative}.ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-link-icon,.ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-link-icon{color:#0b68ff;font-size:11px;letter-spacing:-1px;opacity:0;transition:all .2s}.ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-link-icon-svg,.ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-link-icon-svg{top:0;right:0;bottom:0;left:0;margin:auto}.ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-ellipsis,.ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-ellipsis{position:absolute;top:0;right:0;bottom:0;left:0;display:block;margin:auto;color:#b5bdc3;font-family:Arial,Helvetica,sans-serif;letter-spacing:2px;text-align:center;text-indent:.13em;opacity:1;transition:all .2s}.ant-pagination-jump-next:hover .ant-pagination-item-link-icon,.ant-pagination-jump-prev:hover .ant-pagination-item-link-icon{opacity:1}.ant-pagination-jump-next:hover .ant-pagination-item-ellipsis,.ant-pagination-jump-prev:hover .ant-pagination-item-ellipsis{opacity:0}.ant-pagination-jump-next:focus-visible .ant-pagination-item-link-icon,.ant-pagination-jump-prev:focus-visible .ant-pagination-item-link-icon{opacity:1}.ant-pagination-jump-next:focus-visible .ant-pagination-item-ellipsis,.ant-pagination-jump-prev:focus-visible .ant-pagination-item-ellipsis{opacity:0}.ant-pagination-jump-next,.ant-pagination-jump-prev,.ant-pagination-prev{margin-right:8px}.ant-pagination-jump-next,.ant-pagination-jump-prev,.ant-pagination-next,.ant-pagination-prev{display:inline-block;min-width:32px;height:32px;color:#6a7580;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,'Noto Sans',sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol','Noto Color Emoji';line-height:32px;text-align:center;vertical-align:middle;list-style:none;border-radius:3px;cursor:pointer;transition:all .3s}.ant-pagination-next,.ant-pagination-prev{font-family:Arial,Helvetica,sans-serif;outline:0}.ant-pagination-next button,.ant-pagination-prev button{color:#6a7580;cursor:pointer;user-select:none}.ant-pagination-next:hover button,.ant-pagination-prev:hover button{border-color:#38f}.ant-pagination-next .ant-pagination-item-link,.ant-pagination-prev .ant-pagination-item-link{display:block;width:100%;height:100%;padding:0;font-size:12px;text-align:center;background-color:#fff;border:1px solid #dbe0e3;border-radius:3px;outline:0;transition:all .3s}.ant-pagination-next:focus-visible .ant-pagination-item-link,.ant-pagination-prev:focus-visible .ant-pagination-item-link{color:#0b68ff;border-color:#0b68ff}.ant-pagination-next:hover .ant-pagination-item-link,.ant-pagination-prev:hover .ant-pagination-item-link{color:#0b68ff;border-color:#0b68ff}.ant-pagination-disabled,.ant-pagination-disabled:hover{cursor:not-allowed}.ant-pagination-disabled .ant-pagination-item-link,.ant-pagination-disabled:hover .ant-pagination-item-link{color:#b5bdc3;border-color:#dbe0e3;cursor:not-allowed}.ant-pagination-disabled:focus-visible{cursor:not-allowed}.ant-pagination-disabled:focus-visible .ant-pagination-item-link{color:#b5bdc3;border-color:#dbe0e3;cursor:not-allowed}.ant-pagination-slash{margin:0 10px 0 5px}.ant-pagination-options{display:inline-block;margin-left:16px;vertical-align:middle}@media all and (-ms-high-contrast:none){.ant-pagination-options,.ant-pagination-options ::-ms-backdrop{vertical-align:top}}.ant-pagination-options-size-changer.ant-select{display:inline-block;width:auto}.ant-pagination-options-quick-jumper{display:inline-block;height:32px;margin-left:8px;line-height:32px;vertical-align:top}.ant-pagination-options-quick-jumper input{position:relative;display:inline-block;width:100%;min-width:0;padding:4px 15px;color:#6a7580;font-size:13px;line-height:1.38;background-color:#fff;background-image:none;border:1px solid #dbe0e3;border-radius:3px;transition:all .3s;width:50px;height:32px;margin:0 8px}.ant-pagination-options-quick-jumper input::placeholder{color:#b5bdc3;user-select:none}.ant-pagination-options-quick-jumper input:placeholder-shown{text-overflow:ellipsis}.ant-pagination-options-quick-jumper input:hover{border-color:#b5bdc3;border-right-width:1px}.ant-pagination-options-quick-jumper input-focused,.ant-pagination-options-quick-jumper input:focus{border-color:#38f;box-shadow:0 0 0 0 rgba(11,104,255,.2);border-right-width:1px;outline:0}.ant-pagination-options-quick-jumper input-disabled{color:#b5bdc3;background-color:#f9fafb;border-color:#dbe0e3;box-shadow:none;cursor:not-allowed;opacity:1}.ant-pagination-options-quick-jumper input-disabled:hover{border-color:#dbe0e3;border-right-width:1px}.ant-pagination-options-quick-jumper input[disabled]{color:#b5bdc3;background-color:#f9fafb;border-color:#dbe0e3;box-shadow:none;cursor:not-allowed;opacity:1}.ant-pagination-options-quick-jumper input[disabled]:hover{border-color:#dbe0e3;border-right-width:1px}.ant-pagination-options-quick-jumper input-borderless,.ant-pagination-options-quick-jumper input-borderless-disabled,.ant-pagination-options-quick-jumper input-borderless-focused,.ant-pagination-options-quick-jumper input-borderless:focus,.ant-pagination-options-quick-jumper input-borderless:hover,.ant-pagination-options-quick-jumper input-borderless[disabled]{background-color:transparent;border:none;box-shadow:none}textarea.ant-pagination-options-quick-jumper input{max-width:100%;height:auto;min-height:32px;line-height:1.38;vertical-align:bottom;transition:all .3s,height 0s}.ant-pagination-options-quick-jumper input-lg{padding:6px 15px;font-size:13px}.ant-pagination-options-quick-jumper input-sm{padding:1px 7px}.ant-pagination-simple .ant-pagination-next,.ant-pagination-simple .ant-pagination-prev{height:32px;line-height:32px;vertical-align:top}.ant-pagination-simple .ant-pagination-next .ant-pagination-item-link,.ant-pagination-simple .ant-pagination-prev .ant-pagination-item-link{height:32px;background-color:transparent;border:0}.ant-pagination-simple .ant-pagination-next .ant-pagination-item-link::after,.ant-pagination-simple .ant-pagination-prev .ant-pagination-item-link::after{height:32px;line-height:32px}.ant-pagination-simple .ant-pagination-simple-pager{display:inline-block;height:32px;margin-right:8px}.ant-pagination-simple .ant-pagination-simple-pager input{box-sizing:border-box;height:100%;margin-right:8px;padding:0 6px;text-align:center;background-color:#fff;border:1px solid #dbe0e3;border-radius:3px;outline:0;transition:border-color .3s}.ant-pagination-simple .ant-pagination-simple-pager input:hover{border-color:#0b68ff}.ant-pagination-simple .ant-pagination-simple-pager input:focus{border-color:#38f;box-shadow:0 0 0 0 rgba(11,104,255,.2)}.ant-pagination-simple .ant-pagination-simple-pager input[disabled]{color:#b5bdc3;background:#f3f5f6;border-color:#dbe0e3;cursor:not-allowed}.ant-pagination.ant-pagination-mini .ant-pagination-simple-pager,.ant-pagination.ant-pagination-mini .ant-pagination-total-text{height:32px;line-height:32px}.ant-pagination.ant-pagination-mini .ant-pagination-item{min-width:32px;height:32px;margin:0;line-height:30px}.ant-pagination.ant-pagination-mini .ant-pagination-item:not(.ant-pagination-item-active){background:0 0;border-color:transparent}.ant-pagination.ant-pagination-mini .ant-pagination-next,.ant-pagination.ant-pagination-mini .ant-pagination-prev{min-width:32px;height:32px;margin:0;line-height:32px}.ant-pagination.ant-pagination-mini .ant-pagination-next .ant-pagination-item-link,.ant-pagination.ant-pagination-mini .ant-pagination-prev .ant-pagination-item-link{background:0 0;border-color:transparent}.ant-pagination.ant-pagination-mini .ant-pagination-next .ant-pagination-item-link::after,.ant-pagination.ant-pagination-mini .ant-pagination-prev .ant-pagination-item-link::after{height:32px;line-height:32px}.ant-pagination.ant-pagination-mini .ant-pagination-jump-next,.ant-pagination.ant-pagination-mini .ant-pagination-jump-prev{height:32px;margin-right:0;line-height:32px}.ant-pagination.ant-pagination-mini .ant-pagination-options{margin-left:2px}.ant-pagination.ant-pagination-mini .ant-pagination-options-size-changer{top:0}.ant-pagination.ant-pagination-mini .ant-pagination-options-quick-jumper{height:32px;line-height:32px}.ant-pagination.ant-pagination-mini .ant-pagination-options-quick-jumper input{padding:1px 7px;width:44px;height:24px}.ant-pagination.ant-pagination-disabled{cursor:not-allowed}.ant-pagination.ant-pagination-disabled .ant-pagination-item{background:#f3f5f6;border-color:#dbe0e3;cursor:not-allowed}.ant-pagination.ant-pagination-disabled .ant-pagination-item a{color:#b5bdc3;background:0 0;border:none;cursor:not-allowed}.ant-pagination.ant-pagination-disabled .ant-pagination-item-active{background:#e6e6e6}.ant-pagination.ant-pagination-disabled .ant-pagination-item-active a{color:#b5bdc3}.ant-pagination.ant-pagination-disabled .ant-pagination-item-link{color:#b5bdc3;background:#f3f5f6;border-color:#dbe0e3;cursor:not-allowed}.ant-pagination-simple.ant-pagination.ant-pagination-disabled .ant-pagination-item-link{background:0 0}.ant-pagination.ant-pagination-disabled .ant-pagination-item-link-icon{opacity:0}.ant-pagination.ant-pagination-disabled .ant-pagination-item-ellipsis{opacity:1}.ant-pagination.ant-pagination-disabled .ant-pagination-simple-pager{color:#b5bdc3}@media only screen and (max-width:992px){.ant-pagination-item-after-jump-prev,.ant-pagination-item-before-jump-next{display:none}}@media only screen and (max-width:576px){.ant-pagination-options{display:none}}.ant-pagination-rtl .ant-pagination-total-text{margin-right:0;margin-left:8px}.ant-pagination-rtl .ant-pagination-item,.ant-pagination-rtl .ant-pagination-jump-next,.ant-pagination-rtl .ant-pagination-jump-prev,.ant-pagination-rtl .ant-pagination-prev{margin-right:0;margin-left:8px}.ant-pagination-rtl .ant-pagination-slash{margin:0 5px 0 10px}.ant-pagination-rtl .ant-pagination-options{margin-right:16px;margin-left:0}.ant-pagination-rtl .ant-pagination-options .ant-pagination-options-size-changer.ant-select{margin-right:0;margin-left:8px}.ant-pagination-rtl .ant-pagination-options .ant-pagination-options-quick-jumper{margin-left:0}.ant-pagination-rtl.ant-pagination-simple .ant-pagination-simple-pager{margin-right:0;margin-left:8px}.ant-pagination-rtl.ant-pagination-simple .ant-pagination-simple-pager input{margin-right:0;margin-left:8px}.ant-pagination-rtl.ant-pagination.mini .ant-pagination-options{margin-right:2px;margin-left:0}.ant-pagination *{font-family:'Graphik LCG Web',sans-serif}.ant-pagination-jump-next,.ant-pagination-jump-prev,.ant-pagination-prev{margin-right:8px}.ant-pagination-jump-next,.ant-pagination-jump-prev,.ant-pagination-next{margin-left:8px}.ant-pagination-jump-next.ant-pagination-jump-next.ant-pagination-jump-next .ds-button .hover-icon,.ant-pagination-jump-next.ant-pagination-jump-next.ant-pagination-jump-prev .ds-button .hover-icon,.ant-pagination-jump-next.ant-pagination-jump-prev.ant-pagination-jump-next .ds-button .hover-icon,.ant-pagination-jump-next.ant-pagination-jump-prev.ant-pagination-jump-prev .ds-button .hover-icon,.ant-pagination-jump-prev.ant-pagination-jump-next.ant-pagination-jump-next .ds-button .hover-icon,.ant-pagination-jump-prev.ant-pagination-jump-next.ant-pagination-jump-prev .ds-button .hover-icon,.ant-pagination-jump-prev.ant-pagination-jump-prev.ant-pagination-jump-next .ds-button .hover-icon,.ant-pagination-jump-prev.ant-pagination-jump-prev.ant-pagination-jump-prev .ds-button .hover-icon{display:none}.ant-pagination-jump-next.ant-pagination-jump-next.ant-pagination-jump-next .ds-button:hover .default-icon,.ant-pagination-jump-next.ant-pagination-jump-next.ant-pagination-jump-prev .ds-button:hover .default-icon,.ant-pagination-jump-next.ant-pagination-jump-prev.ant-pagination-jump-next .ds-button:hover .default-icon,.ant-pagination-jump-next.ant-pagination-jump-prev.ant-pagination-jump-prev .ds-button:hover .default-icon,.ant-pagination-jump-prev.ant-pagination-jump-next.ant-pagination-jump-next .ds-button:hover .default-icon,.ant-pagination-jump-prev.ant-pagination-jump-next.ant-pagination-jump-prev .ds-button:hover .default-icon,.ant-pagination-jump-prev.ant-pagination-jump-prev.ant-pagination-jump-next .ds-button:hover .default-icon,.ant-pagination-jump-prev.ant-pagination-jump-prev.ant-pagination-jump-prev .ds-button:hover .default-icon{display:none}.ant-pagination-jump-next.ant-pagination-jump-next.ant-pagination-jump-next .ds-button:hover .hover-icon,.ant-pagination-jump-next.ant-pagination-jump-next.ant-pagination-jump-prev .ds-button:hover .hover-icon,.ant-pagination-jump-next.ant-pagination-jump-prev.ant-pagination-jump-next .ds-button:hover .hover-icon,.ant-pagination-jump-next.ant-pagination-jump-prev.ant-pagination-jump-prev .ds-button:hover .hover-icon,.ant-pagination-jump-prev.ant-pagination-jump-next.ant-pagination-jump-next .ds-button:hover .hover-icon,.ant-pagination-jump-prev.ant-pagination-jump-next.ant-pagination-jump-prev .ds-button:hover .hover-icon,.ant-pagination-jump-prev.ant-pagination-jump-prev.ant-pagination-jump-next .ds-button:hover .hover-icon,.ant-pagination-jump-prev.ant-pagination-jump-prev.ant-pagination-jump-prev .ds-button:hover .hover-icon{display:flex}.ant-pagination-next,.ant-pagination-prev{background-size:24px;background-position:center;color:#6a7580}.ant-pagination-next:hover a,.ant-pagination-prev:hover a{border-color:transparent}.ant-pagination-next.ant-pagination-disabled,.ant-pagination-prev.ant-pagination-disabled{opacity:.4}.ant-pagination-next .ant-pagination-item-link,.ant-pagination-prev .ant-pagination-item-link{text-decoration:none}.ant-pagination-next .ant-pagination-item-link,.ant-pagination-prev .ant-pagination-item-link{border:1px solid transparent;background-color:transparent;border-radius:50%}.ant-pagination-next:focus .ant-pagination-item-link,.ant-pagination-next:hover .ant-pagination-item-link,.ant-pagination-prev:focus .ant-pagination-item-link,.ant-pagination-prev:hover .ant-pagination-item-link{text-decoration:none;border-color:transparent}.ant-pagination-next:focus .ant-pagination-item-link,.ant-pagination-prev:focus .ant-pagination-item-link{color:inherit}.ant-pagination-next:hover .ant-pagination-item-link,.ant-pagination-prev:hover .ant-pagination-item-link{color:#0b68ff}.ant-pagination-next.ant-pagination-disabled,.ant-pagination-prev.ant-pagination-disabled{color:#b5bdc3}.ant-pagination-item{border:1px solid transparent;background-color:transparent;border-radius:16px;margin:0 2px}.ant-pagination-item a{color:#57616d}.ant-pagination-item:focus,.ant-pagination-item:hover{border-color:transparent;background-color:rgba(181,189,195,.4)}.ant-pagination-item-active.ant-pagination-item-active{border-color:#57616d;background-color:#57616d}.ant-pagination-item-active.ant-pagination-item-active a{color:#fff}.ant-pagination-item-active.ant-pagination-item-active:focus a,.ant-pagination-item-active.ant-pagination-item-active:hover a{color:#fff}.ant-pagination-item-link i{display:none}.ant-pagination-options-size-changer.ant-select{margin-right:16px;min-width:140px}.ant-pagination-options,.ant-pagination-options-quick-jumper{display:inline-flex;align-items:center;white-space:nowrap}.ant-pagination-options input,.ant-pagination-options-quick-jumper input{margin:0 8px;padding:7px 12px;height:32px}.ant-pagination-options input:focus,.ant-pagination-options-quick-jumper input:focus{box-shadow:inset 0 0 0 1px #0b68ff;border-color:#0b68ff}.ds-table{position:relative}.ds-table .ds-tree-table.ds-tree-table-with-selection thead>tr th:nth-of-type(2){padding-left:0!important}.ds-table .ds-tree-table.ds-tree-table-with-selection tbody>tr.ant-table-row td.ant-table-cell-with-append{padding-left:0!important}.ds-table .ds-tree-table tbody>tr:not(.ant-table-placeholder):not(.ant-table-row-level-0) td{background-color:#fff}.ds-table .ds-tree-table tbody>tr.ant-table-row td{background-color:#fff!important;padding-left:24px!important}.ds-table .ds-tree-table tbody>tr.ant-table-row td.ant-table-cell-with-append{display:flex;align-items:center;justify-content:flex-start}.ds-table .ds-tree-table tbody>tr.ant-table-row:hover td{background-color:#f9fafb!important}.ds-table .ds-tree-table .ant-table-row td:before{display:none!important}.ds-table .virtual-table colgroup{height:0;visibility:hidden;opacity:0}.ds-table .virtual-table .ds-expanded-row{background-color:#f9fafb}.ds-table .virtual-table .ds-expanded-row .ant-table-cell-fix-left,.ds-table .virtual-table .ds-expanded-row .ant-table-cell-fix-right{background-color:#f9fafb}.ds-table .virtual-table .ds-expanded-row:hover{background-color:#f3f5f6}.ds-table .virtual-table .ds-expanded-row:hover .ant-table-cell-fix-left,.ds-table .virtual-table .ds-expanded-row:hover .ant-table-cell-fix-right{background-color:#f3f5f6}.ds-table .virtual-table .ds-expanded-row-first:before{content:'';display:flex;position:absolute;top:0;left:0;width:2px;height:100%;background-color:#949ea6}.ds-table .virtual-table .ds-expanded-row-data{padding-left:48px}.ds-table .virtual-table-row{border-bottom:1px solid #e9edee;transition:background .3s}.ds-table .virtual-table-row .ant-table-cell-fix-left,.ds-table .virtual-table-row .ant-table-cell-fix-right{transition:background .3s;z-index:unset}.ds-table .virtual-table-row:hover,.ds-table .virtual-table-row:hover .ant-table-cell-fix-left,.ds-table .virtual-table-row:hover .ant-table-cell-fix-right{background-color:#f9fafb}.ds-table .virtual-table-cell{padding:16px 24px;display:table-cell}.ds-table.ds-table-rounded .ant-table{border-radius:3px 3px 0 0;overflow:hidden}.ds-table .ant-table-content{overflow:auto!important}.ds-table .ant-table-row-expand-icon-cell{max-width:0!important;min-width:0!important;width:0!important;padding:0!important;overflow:hidden}.ds-table .ant-table-row-expand-icon-cell *{display:none}.ds-table .ant-table-cell:not(.ant-table-selection-column):not(.ds-table-star-column){min-width:72px}.ds-table .ant-table-cell.ds-table-skeleton-cell.ds-table-skeleton-cell{min-width:auto;padding-top:0;padding-bottom:0}.ds-table .ant-table .ant-table-selection-column{padding:0 24px}.ds-table .ant-table .ant-table-selection-column .ds-checkbox{padding:0 4px}.ds-table .ant-table .ant-table-selection-column .ds-checkbox label{padding:0}.ds-table .ant-table-title{border-bottom:0}.ds-table .ds-table-ping-left .ant-table:not(.ant-table-has-fix-left)>.ant-table-container::before{box-shadow:inset 10px 0 8px -8px rgba(157,165,171,.12)}.ds-table .ds-table-ping-right .ant-table:not(.ant-table-has-fix-right)>.ant-table-container::after{box-shadow:inset -10px 0 8px -8px rgba(157,165,171,.12)}.ds-table .ant-table-ping-left .ant-table-cell-fix-left-last:after,.ds-table .ds-table-ping-left .ant-table-cell-fix-left-last:after{opacity:1}.ds-table .ant-table-cell-fix-left-last:after{opacity:0}.ds-table .ant-table-ping-right .ant-table-cell-fix-right-first:after,.ds-table .ds-table-ping-right .ant-table-cell-fix-right-first:after{opacity:1}.ds-table .ant-table-cell-fix-right-first:after{opacity:0}.ds-table .ant-table thead>tr{background-color:#f9fafb}.ds-table .ant-table .ant-table-cell-fix-left-last:after{right:30px}.ds-table .ant-table .ant-table-cell-fix-right-first:after{left:0}.ds-table .ant-table tbody>tr>td,.ds-table .ant-table tfoot>tr>th,.ds-table .ant-table thead>tr>th{padding:16px 24px}.ds-table .ant-table tbody>tr>td.ant-table-cell-fix-left,.ds-table .ant-table tbody>tr>td.ant-table-cell-fix-right,.ds-table .ant-table tfoot>tr>th.ant-table-cell-fix-left,.ds-table .ant-table tfoot>tr>th.ant-table-cell-fix-right,.ds-table .ant-table thead>tr>th.ant-table-cell-fix-left,.ds-table .ant-table thead>tr>th.ant-table-cell-fix-right{display:table-cell}.ds-table .ant-table thead>tr>th{position:relative;background-color:#f9fafb;height:64px;font-weight:500;padding:0 24px;color:#57616d;border-bottom:1px solid #e9edee}.ds-table .ant-table thead>tr>th.ant-table-cell-fix-left,.ds-table .ant-table thead>tr>th.ant-table-cell-fix-right{display:table-cell}.ds-table .ant-table thead>tr>th>div{position:relative}.ds-table .ant-table thead>tr>th .ant-table-selection{display:none}.ds-table .ant-table thead>tr>th.ant-table-cell-fix-left,.ds-table .ant-table thead>tr>th.ant-table-cell-fix-right{z-index:10}.ds-table .ant-table tbody>tr.ant-table-placeholder td{padding:16px 0}.ds-table .ant-table tbody>tr.ant-table-row-selected td{border-bottom-color:#e9edee}.ds-table .ant-table tbody>tr:not(.ant-table-placeholder):not(.ant-table-row-level-0) td{background-color:#f9fafb}.ds-table .ant-table tbody>tr:not(.ant-table-placeholder):not(.ant-table-row-level-0):hover td{background-color:#f3f5f6}.ds-table .ant-table tbody>tr.ds-group-row:hover td{background-color:#fff}.ds-table .ant-table tbody>tr.ant-table-measure-row>td{padding:0 24px}.ds-table .ant-table tbody>tr.ant-table-expanded-row td{padding:24px}.ds-table .ant-table tbody>tr.ant-table-expanded-row td:before{position:absolute;width:2px;height:100%;left:0;top:0;background-color:#6a7580;content:''}.ds-table .ant-table tbody>tr.ant-table-row-level-1 td:first-of-type:before,.ds-table .ant-table tbody>tr.ant-table-row-level-2 td:first-of-type:before{position:absolute;width:2px;height:100%;left:0;top:0;background-color:#6a7580;content:''}.ds-table .ant-table tbody>tr.ant-table-row-level-1 td:first-of-type:not(.ant-table-selection-column){padding-left:48px}.ds-table .ant-table tbody>tr.ant-table-row-level-1 td.ant-table-selection-column+td{padding-left:48px}.ds-table .ant-table tbody>tr.ant-table-row-level-2 td:first-of-type:not(.ant-table-selection-column){padding-left:64px}.ds-table .ant-table tbody>tr.ant-table-row-level-2 td.ant-table-selection-column+td{padding-left:64px}.ds-table .ant-table tbody>tr>td{color:#6a7580;font-weight:400;font-size:13px;line-height:1.38;background-color:#fff}.ds-table .ant-table tbody>tr>td>.ant-select,.ds-table .ant-table tbody>tr>td>input{width:100%}.ds-table .ant-table tbody>tr>td.ant-table-column-sort,.ds-table .ant-table tbody>tr>td.ds-table-active-column{font-weight:500}.ds-table .ant-table-cell-fix-left-last:after{box-shadow:8px 0 12px 0 rgba(35,41,54,.04)}.ds-table .ant-table-cell-fix-right-first:after{transform:rotateZ(180deg);box-shadow:8px 0 12px 0 rgba(35,41,54,.04)}.ds-table.ds-table-cell-size-medium .ant-table-tbody>tr>td,.ds-table.ds-table-cell-size-medium .ant-table-tfoot>tr>th{padding:14px 24px}.ds-table.ds-table-cell-size-small .ant-table-tbody>tr>td,.ds-table.ds-table-cell-size-small .ant-table-tfoot>tr>th{padding:12px 24px}.ds-table .ant-table-column-sorters{display:flex;align-items:center;justify-content:space-between;padding:0}.ds-table .ant-table-column-sorters::after{display:none}.ds-table .ant-table-column-sorter{max-width:24px;min-width:24px;height:100%;display:flex;justify-content:center;align-items:center;margin:0}.ds-table .ant-table-column-sorter-inner{display:none}.ds-table .ant-pagination{width:100%;margin:0;padding:16px 24px;float:none;text-align:right;background-color:#f9fafb}.ds-table .ant-pagination .ant-pagination-total-text{float:left;font-size:13px;line-height:1.39;color:#57616d;font-weight:400;display:flex;align-items:center}.ds-table .ant-pagination .ant-pagination-total-text strong{font-weight:500}.ds-table .ant-pagination .ant-pagination-options{text-align:left}.ds-table .ant-pagination .ant-select{width:auto;min-width:140px}.ant-table{border-radius:0}.ant-table-sticky-scroll{display:none!important}.ant-table table{border-radius:0;background-color:#fff}.ant-table-title{padding:0;border-bottom:1px solid #e9edee}.ant-table-scroll{overflow-x:auto;overflow-y:auto}.ant-table-scroll .ant-table-placeholder{border:0;padding:32px}.ant-table-footer{padding:0;background:0 0;border-radius:0;border:none}.ant-table-footer:before{content:none}.ant-table-tbody>tr.expandable{cursor:pointer}.ant-table tbody>tr>td,.ant-table tfoot>tr>th,.ant-table thead>tr>th{text-overflow:ellipsis}.ant-table tbody>tr>td:last-child,.ant-table tfoot>tr>th:last-child,.ant-table thead>tr>th:last-child{padding-right:24px}.ant-table tbody>tr>td:first-child,.ant-table tfoot>tr>th:first-child,.ant-table thead>tr>th:first-child{padding-left:24px}.ant-table tbody>tr>td:first-child.ant-table-selection-column,.ant-table tfoot>tr>th:first-child.ant-table-selection-column,.ant-table thead>tr>th:first-child.ant-table-selection-column{text-align:center;display:table-cell;justify-content:center;align-items:center}.ant-table tbody>tr>td tfoot>tr>th,.ant-table tfoot>tr>th tfoot>tr>th,.ant-table thead>tr>th tfoot>tr>th{color:#fff;background-color:#f9fafb;font-weight:500}.ant-table tbody>tr>td thead>tr>th,.ant-table tfoot>tr>th thead>tr>th,.ant-table thead>tr>th thead>tr>th{color:#6a7580;font-size:13px;font-weight:500;line-height:1.38}.ant-table tbody>tr>td thead>tr>th>span,.ant-table tfoot>tr>th thead>tr>th>span,.ant-table thead>tr>th thead>tr>th>span{display:flex;align-items:center;justify-content:flex-start;overflow:hidden;width:100%}.ant-table tbody>tr>td thead>tr>th.ant-table-actions,.ant-table tfoot>tr>th thead>tr>th.ant-table-actions,.ant-table thead>tr>th thead>tr>th.ant-table-actions{overflow:visible}.ant-table tbody>tr>td:not(.ant-table-bordered) .ant-table-thead>tr>th,.ant-table tfoot>tr>th:not(.ant-table-bordered) .ant-table-thead>tr>th,.ant-table thead>tr>th:not(.ant-table-bordered) .ant-table-thead>tr>th{border-top:1px solid #e9edee}.ant-table tbody>tr>td .ant-table-selection,.ant-table tfoot>tr>th .ant-table-selection,.ant-table thead>tr>th .ant-table-selection{display:flex;align-items:center;justify-content:center}.ant-table tbody>tr>td .ant-table-selection .ant-table-selection-down,.ant-table tfoot>tr>th .ant-table-selection .ant-table-selection-down,.ant-table thead>tr>th .ant-table-selection .ant-table-selection-down{display:flex;align-items:center}.ant-table tbody>tr>td tr.clickable,.ant-table tfoot>tr>th tr.clickable,.ant-table thead>tr>th tr.clickable{cursor:pointer}.ant-table tbody>tr>td .virtual-table-cell,.ant-table tfoot>tr>th .virtual-table-cell,.ant-table thead>tr>th .virtual-table-cell{padding:0 16px;border-bottom:1px solid #e9edee;display:flex;align-items:center;justify-content:flex-start;flex:1;max-width:100%}.ant-table tbody>tr>td .ant-empty-description,.ant-table tfoot>tr>th .ant-empty-description,.ant-table thead>tr>th .ant-empty-description{color:#6a7580}
|
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-table",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "Table UI Component for the Synerise Design System",
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"description": "[DEPRECATED] Table UI Component for the Synerise Design System — use @synerise/ds-table-new instead",
|
|
5
|
+
"deprecated": "@synerise/ds-table is deprecated and will not be migrated off antd. Use @synerise/ds-table-new instead — see the \"Migrating to @synerise/ds-table-new\" section in this package's README for the prop mapping. Note the parity gaps: GroupedTable/GROUP_BY, rowStar, filters/FilterTrigger, the components override, cellSize, dataSourceFull, skeletonProps, initialWidth and onChange have no equivalent.",
|
|
5
6
|
"license": "ISC",
|
|
6
7
|
"repository": "synerise/synerise-design",
|
|
7
8
|
"main": "dist/index.js",
|
|
@@ -42,33 +43,32 @@
|
|
|
42
43
|
],
|
|
43
44
|
"types": "dist/index.d.ts",
|
|
44
45
|
"dependencies": {
|
|
45
|
-
"@synerise/ds-
|
|
46
|
-
"@synerise/ds-
|
|
47
|
-
"@synerise/ds-button": "^
|
|
48
|
-
"@synerise/ds-
|
|
49
|
-
"@synerise/ds-
|
|
50
|
-
"@synerise/ds-
|
|
51
|
-
"@synerise/ds-
|
|
52
|
-
"@synerise/ds-
|
|
53
|
-
"@synerise/ds-
|
|
54
|
-
"@synerise/ds-input": "^
|
|
55
|
-
"@synerise/ds-input-number": "^
|
|
56
|
-
"@synerise/ds-list-item": "^
|
|
57
|
-
"@synerise/ds-loader": "^
|
|
58
|
-
"@synerise/ds-
|
|
59
|
-
"@synerise/ds-
|
|
60
|
-
"@synerise/ds-
|
|
61
|
-
"@synerise/ds-
|
|
62
|
-
"@synerise/ds-
|
|
63
|
-
"@synerise/ds-
|
|
64
|
-
"@synerise/ds-
|
|
65
|
-
"@synerise/ds-
|
|
66
|
-
"@synerise/ds-
|
|
67
|
-
"@synerise/ds-
|
|
68
|
-
"@synerise/ds-
|
|
69
|
-
"@synerise/ds-
|
|
70
|
-
"@synerise/ds-
|
|
71
|
-
"@synerise/ds-utils": "^1.10.2",
|
|
46
|
+
"@synerise/ds-badge": "^2.0.0",
|
|
47
|
+
"@synerise/ds-button": "^2.0.0",
|
|
48
|
+
"@synerise/ds-button-group": "^2.0.0",
|
|
49
|
+
"@synerise/ds-checkbox": "^2.0.0",
|
|
50
|
+
"@synerise/ds-copy-icon": "^2.0.0",
|
|
51
|
+
"@synerise/ds-dropdown": "^2.0.0",
|
|
52
|
+
"@synerise/ds-flag": "^2.0.0",
|
|
53
|
+
"@synerise/ds-icon": "^2.0.0",
|
|
54
|
+
"@synerise/ds-inline-alert": "^2.0.0",
|
|
55
|
+
"@synerise/ds-input": "^2.0.0",
|
|
56
|
+
"@synerise/ds-input-number": "^2.0.0",
|
|
57
|
+
"@synerise/ds-list-item": "^2.0.0",
|
|
58
|
+
"@synerise/ds-loader": "^2.0.0",
|
|
59
|
+
"@synerise/ds-modal": "^2.0.0",
|
|
60
|
+
"@synerise/ds-pagination": "^2.0.0",
|
|
61
|
+
"@synerise/ds-result": "^2.0.0",
|
|
62
|
+
"@synerise/ds-scrollbar": "^2.0.0",
|
|
63
|
+
"@synerise/ds-search": "^2.0.0",
|
|
64
|
+
"@synerise/ds-select": "^2.0.0",
|
|
65
|
+
"@synerise/ds-skeleton": "^2.0.0",
|
|
66
|
+
"@synerise/ds-status": "^2.0.0",
|
|
67
|
+
"@synerise/ds-tag": "^2.0.0",
|
|
68
|
+
"@synerise/ds-tags": "^2.0.0",
|
|
69
|
+
"@synerise/ds-tooltip": "^2.0.0",
|
|
70
|
+
"@synerise/ds-typography": "^2.0.0",
|
|
71
|
+
"@synerise/ds-utils": "^2.0.0",
|
|
72
72
|
"@types/react-window": "^1.8.8",
|
|
73
73
|
"classnames": "^2.5.1",
|
|
74
74
|
"lodash.compact": "^3.0.1",
|
|
@@ -102,5 +102,5 @@
|
|
|
102
102
|
"styled-components": "^5.3.3",
|
|
103
103
|
"vitest": "4"
|
|
104
104
|
},
|
|
105
|
-
"gitHead": "
|
|
105
|
+
"gitHead": "033854a18f038079e9a16b0ff250f8401a2287c2"
|
|
106
106
|
}
|