@synerise/ds-table 1.11.10 → 1.11.12

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 CHANGED
@@ -3,6 +3,14 @@
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
+ ## [1.11.12](https://github.com/synerise/synerise-design/compare/@synerise/ds-table@1.11.11...@synerise/ds-table@1.11.12) (2026-07-24)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-table
9
+
10
+ ## [1.11.11](https://github.com/synerise/synerise-design/compare/@synerise/ds-table@1.11.10...@synerise/ds-table@1.11.11) (2026-07-23)
11
+
12
+ **Note:** Version bump only for package @synerise/ds-table
13
+
6
14
  ## [1.11.10](https://github.com/synerise/synerise-design/compare/@synerise/ds-table@1.11.9...@synerise/ds-table@1.11.10) (2026-07-16)
7
15
 
8
16
  **Note:** Version bump only for package @synerise/ds-table
package/CLAUDE.md ADDED
@@ -0,0 +1,325 @@
1
+ # Table (`@synerise/ds-table`)
2
+
3
+ > 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
+
5
+ ## Package structure
6
+
7
+ ```
8
+ src/
9
+ Table.tsx — main DSTable component (default export); switches between GroupTable and DefaultTable
10
+ Table.types.ts — all public types (DSTableProps, DSColumnType, RowSelection, RowStar, Filter, Locale, …)
11
+ Table.styles.ts — styled-components for wrapper and header
12
+ DefaultTable/
13
+ DefaultTable.tsx — wraps antd Table; injects sort buttons, row-star column, row-selection column, row tooltips
14
+ GroupTable/
15
+ GroupTable.tsx — antd Table rendered with a custom body that groups rows under collapsible headers
16
+ GroupTable.types.ts — GroupType, GroupByType, GROUP_BY constant
17
+ GroupTableBody/ — renders one expanded/collapsed group with its rows
18
+ GroupTableHeader/ — renders a group's header row
19
+ TreeTable/
20
+ TreeTable.tsx — DSTable wrapper that renders tree-indented rows; hardcoded indent 42 px
21
+ VirtualTable/
22
+ VirtualTable.tsx — react-window FixedSizeList body injected via antd components.body; supports infinite scroll & sticky header
23
+ VirtualTable.types.ts — VirtualTableProps, VirtualTableRef, VirtualColumnType; Props alias is @deprecated
24
+ VirtualTableRow.tsx — renders one virtual row
25
+ constants.ts — HEADER_ROW_HEIGHT=64, EXPANDED_ROW_PROPERTY, LOAD_DATA_OFFSET=800
26
+ TableHeader/
27
+ TableHeader.tsx — title bar: count, select-all checkbox, items menu, filters, search, custom button
28
+ TableHeader.types.ts
29
+ TableLimit/ — shows "X / limit" counter when selection.limit is set
30
+ TableSelection.tsx — select-all / invert checkbox area
31
+ Cell/
32
+ index.ts — re-exports all cell components as TableCell namespace
33
+ Action/ActionCell — flex container for action buttons; gapSize, contentAlign
34
+ AvatarLabel/AvatarLabel — avatar + title + optional labels row
35
+ Copyable/CopyableCell — value with copy-to-clipboard
36
+ Editable/EditableCell — inline text-input cell
37
+ FlagLabel/FlagLabelCell — country flag + label
38
+ IconLabel/IconLabel — icon + label
39
+ IconTooltipCell/ — icon + label + tooltip icon
40
+ InputNumber/InputNumberCell — wraps ds-input-number
41
+ LabelsWithShowMore/ — shows N labels inline, rest in a modal
42
+ Star/StarCell — star toggle cell (standalone; not same as rowStar column)
43
+ StatusLabel/StatusLabel — ds-badge status dot + label
44
+ TagIcon/TagIcon — tag + icon cell
45
+ TagsGroup/TagsGroup — wraps ds-tags with loading/error states
46
+ ColumnSortMenu/
47
+ useSortState.ts — useReducer managing multi-column sort state; exposes SortStateAPI
48
+ columnWithSortButtons.tsx — column decorator that injects sort buttons into column header
49
+ groupedColumnsSort.ts — sort logic for GroupTable rows
50
+ SortRenderer.tsx — renders 'default' | 'string' sort UI
51
+ TitleWithSort.tsx
52
+ FilterTrigger/
53
+ FilterTrigger.tsx — icon-based filter trigger rendered in the title bar right side
54
+ InfiniteScroll/
55
+ InfiniteLoaderItem.tsx — shows loading/error/no-more-data row at the bottom (or top) of VirtualTable
56
+ InfiniteLoaderItem.types.ts — InfiniteScrollProps type
57
+ BackToTopButton.tsx — exported directly; floats over virtual list
58
+ OuterListElement.tsx — outer wrapper for react-window List
59
+ constants.ts — infiniteLoaderItemHeight
60
+ utils.ts
61
+ RowSelection/
62
+ RowSelectionColumn.tsx — single-row checkbox rendered via antd rowSelection.renderCell
63
+ hooks/
64
+ useBulkSelection/ — counts selectable/selected records including children
65
+ useRowKey/ — normalises rowKey string | function
66
+ useRowStar/ — manages starred keys, builds star column definition
67
+ constants/
68
+ Table.constants.ts — SELECTION_ALL, SELECTION_INVERT, ITEM_RENDER_TYPE
69
+ TableSkeleton.constants.tsx — skeleton column/row config for loading state
70
+ utils/
71
+ index.ts — re-exports all utils
72
+ calculateColumnWidths.ts — distributes table width across columns for VirtualTable
73
+ columnWithCellTooltip.tsx — wraps cell render in ds-tooltip when getCellTooltipProps is set
74
+ getChildrenColumnName.ts
75
+ getRecordSelectionStatus.ts
76
+ getSkeletonProps.tsx — builds skeleton columns/dataSource when loading=true
77
+ getValueFromPath.ts
78
+ isGrouped.ts
79
+ isRecordSelectable.ts
80
+ locale.ts — getDefaultLocale, useTableLocale, TableLocaleContext
81
+ style/
82
+ index.less — entry point; imports table.less
83
+ table.less — antd overrides and DS-specific CSS
84
+ modules.d.ts
85
+ ```
86
+
87
+ ## Public exports
88
+
89
+ ```ts
90
+ // from src/index.ts
91
+ export default DSTable // main component
92
+ export { GroupedTable } // alias GroupTable
93
+ export { VirtualTable }
94
+ export { TreeTable }
95
+ export { TableCell } // namespace of all cell components
96
+ export { ItemsMenu } // styled container for bulk-action menu
97
+ export { BackToTopButton } // for use with VirtualTable infinite scroll
98
+ export { GROUP_BY } // { value, ranges, interval, disabled }
99
+
100
+ // Types
101
+ export type {
102
+ VirtualTableProps, VirtualTableRef, VirtualColumnType,
103
+ RowSelection, RowType, SingleColumnSort, OnSortFn,
104
+ Locale, DSColumnType, DSTableProps,
105
+ ScrollProxyType, Selection, SelectionItem, CustomizeScrollBodyInfo,
106
+ }
107
+ ```
108
+
109
+ ### `DSTable` (default export)
110
+
111
+ | Prop | Type | Default | Description |
112
+ |------|------|---------|-------------|
113
+ | `title` | `ReactNode \| (() => ReactNode)` | — | Rendered in the left side of the title bar |
114
+ | `hideTitleBar` | `boolean` | — | Hides the entire title bar |
115
+ | `headerWithBorderTop` | `boolean` | — | Adds a border above the title bar |
116
+ | `loading` | `boolean` | `false` | When true renders skeleton rows instead of data |
117
+ | `skeletonProps` | `{ maxHeight?, headerHeight?, subheaderHeight?, cellHeight? }` | — | Customises the loading skeleton dimensions |
118
+ | `cellSize` | `'medium' \| 'small'` (or any string) | — | Adds `ds-table-cell-size-{value}` CSS class |
119
+ | `roundedHeader` | `boolean` | `false` | Adds `ds-table-rounded` CSS class |
120
+ | `columns` | `DSColumnType<T>[]` | — | Extends antd ColumnType with `sortRender`, `childRender`, `getCellTooltipProps` |
121
+ | `dataSource` | `T[]` | — | Row data |
122
+ | `dataSourceFull` | `T[]` | — | Full unfiltered data for accurate selection counts when `dataSource` is a subset |
123
+ | `dataSourceTotalCount` | `number` | — | Override the total count shown in title bar |
124
+ | `isCounterLoading` | `boolean` | — | Shows a skeleton in place of the item counter |
125
+ | `renderCustomCounter` | `(props: { count: number; content: ReactNode }) => ReactNode` | — | Replaces the default "N items" counter |
126
+ | `selection` | `RowSelection<T>` | — | See RowSelection below |
127
+ | `rowStar` | `RowStar<T>` | — | See RowStar below |
128
+ | `filters` | `Filter[]` | — | Filter trigger buttons rendered on the right of the title bar |
129
+ | `searchComponent` | `ReactNode` | — | Slot on the right side of the title bar |
130
+ | `filterComponent` | `ReactNode` | — | Slot on the right side of the title bar (before searchComponent) |
131
+ | `headerButton` | `ReactNode` | — | Button slot on the right side of the title bar |
132
+ | `itemsMenu` | `string \| ReactNode` | — | Shown in title bar when rows are selected (bulk actions) |
133
+ | `grouped` | `boolean` | — | When true and dataSource contains GroupType records, renders GroupTable |
134
+ | `hideGroupExpander` | `boolean` | — | Hides expand/collapse toggle in GroupTable |
135
+ | `initialGroupsCollapsed` | `boolean` | — | Groups start collapsed in GroupTable |
136
+ | `hideColumnNames` | `boolean` | — | Hides the column header row via CSS |
137
+ | `disableColumnNamesLineBreak` | `boolean` | — | Prevents column header text wrapping |
138
+ | `locale` | `Locale` | (react-intl defaults) | i18n overrides; merged with built-in defaults |
139
+ | `onSort` | `OnSortFn` | — | Called when any sort button is clicked |
140
+ | `renderSelectionTitle` | `(selection?, filters?) => ReactNode` | — | Replaces default selected-count title |
141
+ | `hideTitlePart` | `boolean` | — | Hides the count portion of the title bar (shows skeleton) |
142
+ | `getRowTooltipProps` | `(row: T) => TooltipProps \| false` | — | Wraps entire row in a tooltip |
143
+ | `emptyDataComponent` | `ReactNode` | `ds-result no-results` | Replaces default empty state |
144
+ | `pagination` | antd PaginationProps \| false | — | Pagination config; prev/next buttons use ds-button |
145
+ | + all antd TableProps | (except `title`, `subTitle`, `onSearch`, `itemsMenu`, `search`, `locale`, `columns`, `loading`) | — | Passed through to antd Table |
146
+
147
+ `DSTable.SELECTION_ALL` and `DSTable.SELECTION_INVERT` are string constants attached to the component.
148
+
149
+ ### `DSColumnType<T>`
150
+
151
+ Extends antd `ColumnType<T>`:
152
+
153
+ | Added prop | Type | Description |
154
+ |------------|------|-------------|
155
+ | `fixed` | `'left' \| 'right'` | Overrides antd (removes boolean) |
156
+ | `sortRender` | `'default' \| 'string' \| SortButtonsRenderer<T>` | Controls sort UI; `'default'` = numeric/generic, `'string'` = A-Z/Z-A |
157
+ | `childRender` | `(value, row, index) => ReactNode` | VirtualTable only — alternative render for expanded child rows |
158
+ | `getCellTooltipProps` | `(row: T) => TooltipProps \| false` | Wraps cell content in ds-tooltip |
159
+
160
+ ### `RowSelection<T>`
161
+
162
+ Extends antd `TableRowSelection<T>`:
163
+
164
+ | Prop | Type | Description |
165
+ |------|------|-------------|
166
+ | `selectedRowKeys` | `Key[]` | Required (unlike antd where it's optional) |
167
+ | `onChange` | `(keys: Key[], rows: T[]) => void` | Required |
168
+ | `selections` | `SelectionItem[]` | SELECTION_ALL / SELECTION_INVERT / custom Selection / null |
169
+ | `fixed` | `boolean` | Fixes selection column |
170
+ | `limit` | `number` | Max allowed selection count |
171
+ | `independentSelectionExpandedRows` | `boolean` | Allows selecting parent and child rows independently |
172
+ | `checkRowSelectionStatus` | `(record: T) => { disabled?: boolean; unavailable?: boolean }` | Per-row selection state |
173
+ | `getSelectionTooltipProps` | `(record: T) => TooltipProps \| false` | Per-row checkbox tooltip |
174
+ | `globalSelection` | `{ isSelected: boolean; onChange: (selected: boolean) => void }` | "Select all pages" flag for paginated/infinite tables |
175
+
176
+ ### `RowStar<T>`
177
+
178
+ | Prop | Type | Description |
179
+ |------|------|-------------|
180
+ | `starredRowKeys` | `string[]` | Required — currently starred keys |
181
+ | `onChange` | `(starredRowKeys: string[], starredKey: string, isStarred: boolean) => void` | — |
182
+ | `onClick` | `(e: MouseEvent) => void` | — |
183
+ | `renderCell` | `ColumnType<T>['render']` | Override star column cell renderer |
184
+ | `className` | `string` | — |
185
+ | `disableForExpandedRows` | `boolean` | Hides star on child rows |
186
+
187
+ ### `VirtualTable`
188
+
189
+ `DSTableProps<T>` plus:
190
+
191
+ | Prop | Type | Default | Description |
192
+ |------|------|---------|-------------|
193
+ | `cellHeight` | `number` | `52` | Fixed height of every row in px |
194
+ | `initialWidth` | `number` | `0` | Initial container width before ResizeObserver fires |
195
+ | `scroll` | `{ x?: number; y: number }` | — | `y` is required; sets visible list height |
196
+ | `infiniteScroll` | `InfiniteScrollProps` | — | Enables bidirectional infinite loading |
197
+ | `onRowClick` | `(row: T) => void` | — | Row click handler |
198
+ | `onListRefChange` | `(ref: RefObject<List>) => void` | — | **Deprecated** — fires on every render |
199
+ | `onItemsRendered` | `ListOnItemsRenderedProps => void` | — | react-window callback |
200
+ | `onScrollToRecordIndex` | `(index: number, callback?: () => void) => void` | — | Override scroll-to-item behaviour |
201
+ | `sticky` | `DSTableProps.sticky & { scrollThreshold?, offsetHeader?, getContainer: () => HTMLDivElement }` | — | Sticky header with DS-managed scrollbar |
202
+
203
+ `VirtualTable` accepts a `ref` of type `VirtualTableRef`:
204
+ ```ts
205
+ { virtualListRef, outerListRef, horizontalScrollRef, scrollToTop(), scrollTo(top) }
206
+ ```
207
+
208
+ ### `InfiniteScrollProps`
209
+
210
+ | Prop | Type | Description |
211
+ |------|------|-------------|
212
+ | `hasMore` | `boolean` | More items available below |
213
+ | `isLoading` | `boolean` | Currently fetching |
214
+ | `hasError` | `boolean` | Fetch failed |
215
+ | `nextPage` | `InfiniteScrollState` | State for bottom loader |
216
+ | `prevPage` | `InfiniteScrollState` | State for top loader (prepend) |
217
+ | `maxScroll` | `number` | Max virtual scroll offset for triggering load |
218
+ | `showBackToTopButton` | `boolean` | — |
219
+ | `render` | `(state) => ReactElement` | Custom loader/error/end renderer |
220
+ | `onScrollEndReach` | `() => void` | Triggered near bottom |
221
+ | `onScrollTopReach` | `() => void` | Triggered near top (for bidirectional scroll) |
222
+ | `onRetryButtonClick` | `(position) => void` | — |
223
+ | `onBackToTop` | `() => void` | — |
224
+
225
+ ### `TableCell` namespace
226
+
227
+ Accessed as `import { TableCell } from '@synerise/ds-table'`:
228
+
229
+ | Name | Key props |
230
+ |------|-----------|
231
+ | `ActionCell` | `children`, `gapSize?: number`, `contentAlign?: 'left'\|'right'\|'center'` |
232
+ | `AvatarLabelCell` | `avatar`, `title`, `labels?`, `icon?`, `avatarAction?`, `avatarLink?`, `ellipsis?`, `maxWidth?`, `disabled?` |
233
+ | `CopyableCell` | `value`, `confirmMessage`, `tooltipTimeout` |
234
+ | `EditableCell` | `value?`, `onChange`, `placeholder?` |
235
+ | `FlagLabelCell` | `countryCode`, `label` |
236
+ | `IconLabelCell` | `label?`, `icon?`, `disabled?` |
237
+ | `IconTooltipCell` | `label?`, `icon?`, `tooltipIcon?`, `tooltip?`, `disabled?` |
238
+ | `InputNumberCell` | `inputNumberProps?`, `disabled?` |
239
+ | `LabelsWithShowMore` | `items`, `numberOfVisibleItems`, `labelKey`, `renderItem`, `texts`, `loading?` |
240
+ | `StarCell` | `children`, `active?`, `onClick?`, `starTooltip?` |
241
+ | `StatusLabelCell` | `label`, `status?`, `customColor?`, `disabled?` |
242
+ | `TagIconCell` | `children`, `disabled?` |
243
+ | `TagsGroupCell` | `tagsProps?`, `disabled?`, `isLoading?`, `isError?` |
244
+
245
+ ### `ItemsMenu`
246
+
247
+ Thin styled wrapper (`children: ReactNode`). Renders bulk-action menu items alongside the selection count in the title bar.
248
+
249
+ ### `GroupedTable` (alias: `GroupTable`)
250
+
251
+ Use via `<Table grouped dataSource={groupedData} />` or directly as `<GroupedTable />`.
252
+
253
+ `dataSource` must be `GroupType<T>[]`:
254
+ ```ts
255
+ { column: string; key: string | number; value: string | number | boolean | object; rows: T[]; groupType: GroupByType }
256
+ ```
257
+ `GROUP_BY` constant: `{ value, ranges, interval, disabled }`.
258
+
259
+ Additional props beyond `DSTableProps`: `addItem?`, `hideGroupExpander?`, `initialGroupsCollapsed?`.
260
+
261
+ ## Usage patterns
262
+
263
+ ```tsx
264
+ import Table, { TableCell, VirtualTable, TreeTable, GroupedTable, ItemsMenu } from '@synerise/ds-table';
265
+ import type { DSTableProps, DSColumnType, RowSelection } from '@synerise/ds-table';
266
+
267
+ // Basic table
268
+ const columns: DSColumnType<Row>[] = [
269
+ {
270
+ key: 'name',
271
+ dataIndex: 'name',
272
+ title: 'Name',
273
+ sorter: true,
274
+ sortRender: 'string', // renders A-Z / Z-A buttons
275
+ render: (value, row) => <TableCell.AvatarLabelCell avatar={<Avatar />} title={value} />,
276
+ },
277
+ ];
278
+
279
+ <Table<Row>
280
+ title="Users"
281
+ columns={columns}
282
+ dataSource={rows}
283
+ rowKey="id"
284
+ selection={selection}
285
+ locale={{ pagination: { items: 'users' } }}
286
+ />
287
+
288
+ // Virtual table with infinite scroll
289
+ <VirtualTable<Row>
290
+ ref={tableRef}
291
+ columns={columns}
292
+ dataSource={rows}
293
+ scroll={{ y: 600 }}
294
+ cellHeight={52}
295
+ initialWidth={800}
296
+ infiniteScroll={{
297
+ hasMore: true, isLoading: false, hasError: false,
298
+ onScrollEndReach: fetchNextPage,
299
+ }}
300
+ />
301
+
302
+ // Tree table
303
+ <TreeTable<Row> columns={columns} dataSource={rows} rowKey="id" />
304
+
305
+ // Grouped table
306
+ <Table<GroupType<Row>>
307
+ grouped
308
+ columns={columns}
309
+ dataSource={[{ column: 'status', key: 'active', value: 'Active', rows: [..], groupType: 'value' }]}
310
+ />
311
+ ```
312
+
313
+ ## Styling / Key dependencies / Implementation notes
314
+
315
+ - **Ant Design 4.x** is the rendering engine. `DefaultTable` and `GroupTable` render `antd/lib/table` directly. DSTable wraps DefaultTable/GroupTable.
316
+ - `VirtualTable` replaces antd's body with a `react-window` `FixedSizeList`. All rows must have the same height (`cellHeight`). Expanded rows are flattened into the list array with an `expandedChild` marker property.
317
+ - **Skeleton loading**: when `loading=true`, `getSkeletonProps` replaces `dataSource` with fake rows of `<Skeleton>` cells. The real data is never rendered until `loading` is false.
318
+ - **Sort state** is managed locally via `useSortState` (useReducer). Columns need a unique `key` when `sorter` is set; a dev-mode warning fires otherwise. Multi-column sort requires `sorter: { compare, multiple: <priority> }`.
319
+ - **Selection column** (64 px wide) is prepended by `DefaultTable`/`VirtualTable` via antd's `rowSelection.renderCell`, not as a real column — so it is not included in `columns`.
320
+ - **Row star column** is also prepended (via `useRowStar`) separately from the DS `rowStar` prop. In VirtualTable, selection and star columns are sliced off `mergedColumns` before passing to antd to avoid double-rendering.
321
+ - **`TableLocaleContext`** is provided by DSTable so deeply nested cell components can access locale without prop drilling.
322
+ - **`onListRefChange`** on VirtualTable fires on every render (missing deps array), documented internally as deprecated.
323
+ - **`fixed` in DSColumnType** narrows antd's `boolean | string` to `'left' | 'right'` only — passing `true` (antd shorthand for `'left'`) will cause a TypeScript error.
324
+ - Uses `react-intl` for all UI strings. The component must be wrapped in an `IntlProvider`.
325
+ - The package uses **Jest** (not Vitest) — `"test": "jest"` in package.json.
@@ -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-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: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>*{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>*{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-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-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-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-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-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::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: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[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-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::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: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[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)}.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,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-table",
3
- "version": "1.11.10",
3
+ "version": "1.11.12",
4
4
  "description": "Table UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "synerise/synerise-design",
@@ -17,6 +17,7 @@
17
17
  "files": [
18
18
  "/dist",
19
19
  "CHANGELOG.md",
20
+ "CLAUDE.md",
20
21
  "README.md",
21
22
  "package.json",
22
23
  "LICENSE.md"
@@ -41,33 +42,33 @@
41
42
  ],
42
43
  "types": "dist/index.d.ts",
43
44
  "dependencies": {
44
- "@synerise/ds-alert": "^1.1.61",
45
- "@synerise/ds-badge": "^1.0.57",
46
- "@synerise/ds-button": "^1.5.34",
47
- "@synerise/ds-button-group": "^1.1.59",
48
- "@synerise/ds-checkbox": "^1.2.35",
49
- "@synerise/ds-copy-icon": "^1.2.15",
50
- "@synerise/ds-dropdown": "^1.3.19",
51
- "@synerise/ds-flag": "^1.0.12",
52
- "@synerise/ds-icon": "^1.18.4",
53
- "@synerise/ds-input": "^1.7.12",
54
- "@synerise/ds-input-number": "^1.2.49",
55
- "@synerise/ds-list-item": "^1.6.1",
56
- "@synerise/ds-loader": "^1.0.17",
57
- "@synerise/ds-menu": "^1.4.31",
58
- "@synerise/ds-modal": "^1.6.5",
59
- "@synerise/ds-pagination": "^1.0.70",
60
- "@synerise/ds-result": "^1.0.65",
61
- "@synerise/ds-scrollbar": "^1.5.1",
62
- "@synerise/ds-search": "^1.5.33",
63
- "@synerise/ds-select": "^1.3.33",
64
- "@synerise/ds-skeleton": "^1.0.59",
65
- "@synerise/ds-status": "^1.3.31",
66
- "@synerise/ds-tag": "^1.4.31",
67
- "@synerise/ds-tags": "^1.5.50",
68
- "@synerise/ds-tooltip": "^1.5.3",
69
- "@synerise/ds-typography": "^1.1.26",
70
- "@synerise/ds-utils": "^1.10.1",
45
+ "@synerise/ds-alert": "^1.1.62",
46
+ "@synerise/ds-badge": "^1.0.58",
47
+ "@synerise/ds-button": "^1.5.35",
48
+ "@synerise/ds-button-group": "^1.1.60",
49
+ "@synerise/ds-checkbox": "^1.2.36",
50
+ "@synerise/ds-copy-icon": "^1.2.16",
51
+ "@synerise/ds-dropdown": "^1.3.21",
52
+ "@synerise/ds-flag": "^1.0.13",
53
+ "@synerise/ds-icon": "^1.18.5",
54
+ "@synerise/ds-input": "^1.7.14",
55
+ "@synerise/ds-input-number": "^1.2.51",
56
+ "@synerise/ds-list-item": "^1.6.2",
57
+ "@synerise/ds-loader": "^1.0.18",
58
+ "@synerise/ds-menu": "^1.4.32",
59
+ "@synerise/ds-modal": "^1.6.7",
60
+ "@synerise/ds-pagination": "^1.0.72",
61
+ "@synerise/ds-result": "^1.0.66",
62
+ "@synerise/ds-scrollbar": "^1.5.2",
63
+ "@synerise/ds-search": "^1.5.34",
64
+ "@synerise/ds-select": "^1.4.0",
65
+ "@synerise/ds-skeleton": "^1.0.60",
66
+ "@synerise/ds-status": "^1.3.32",
67
+ "@synerise/ds-tag": "^1.4.32",
68
+ "@synerise/ds-tags": "^1.5.52",
69
+ "@synerise/ds-tooltip": "^1.5.4",
70
+ "@synerise/ds-typography": "^1.1.27",
71
+ "@synerise/ds-utils": "^1.10.2",
71
72
  "@types/react-window": "^1.8.8",
72
73
  "classnames": "^2.5.1",
73
74
  "lodash.compact": "^3.0.1",
@@ -101,5 +102,5 @@
101
102
  "styled-components": "^5.3.3",
102
103
  "vitest": "4"
103
104
  },
104
- "gitHead": "a81ab6519d49a3dea9c0cfebcdc9104cbb4f4226"
105
+ "gitHead": "018414e0d7ffd102a07f8aa35fa2e2d3d4ed19e2"
105
106
  }