@sberbusiness/triplex-next 0.1.9 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/chunks/AlertProcessSpoiler-Dp7FRT9y.js +39 -0
- package/chunks/Card.module-Ddt7TQ9Z.js +17 -0
- package/chunks/DropdownListItem-y6Rvj_dd.js +56 -0
- package/chunks/DropdownMobile.module-DrQkghxs.js +19 -0
- package/chunks/Footer.module-CKfl241m.js +11 -0
- package/chunks/FormFieldInput-apk1b0w6.js +63 -0
- package/chunks/HeaderLayoutSidebar.module-DTXnksBK.js +9 -0
- package/chunks/HeaderTabs.module-DVh6MotJ.js +9 -0
- package/chunks/HeaderTitle.module-DOeVL9zC.js +9 -0
- package/chunks/{ListItemControlsButton-BtMEMrGK.js → ListItemControlsButton-Cn3Vmrsn.js} +8 -8
- package/chunks/ListItemTail.module-BnbT61OM.js +12 -0
- package/chunks/ListMasterFooter.module-C6QFamKQ.js +10 -0
- package/chunks/Overlay.module-BTSQ5G6t.js +18 -0
- package/chunks/Page.module-DfMBQJob.js +16 -0
- package/chunks/TabsExtended.module-okOlTNQG.js +13 -0
- package/chunks/{TabsExtendedUtils-BOHZcNx8.js → TabsExtendedUtils-NCwWiX7O.js} +6 -6
- package/chunks/TooltipDesktop.module-DTbnIWo1.js +19 -0
- package/chunks/UploadZoneInput-R9729LZY.js +33 -0
- package/chunks/utils-B0khB-Lq.js +36 -0
- package/chunks/{vendor-CF2m175I.js → vendor-D-uL_icH.js} +38 -34
- package/components/Alert/AlertContext/AlertContext.js +10 -10
- package/components/Alert/AlertProcess/AlertProcess.js +3 -3
- package/components/Alert/AlertProcess/components/AlertProcessSpoiler.js +2 -2
- package/components/Body/Body.js +6 -6
- package/components/Button/Button.js +95 -10
- package/components/Button/ButtonBase.js +1 -1
- package/components/Button/ButtonDropdown.js +184 -23
- package/components/Button/ButtonDropdownExtended.js +50 -6
- package/components/Button/ButtonIcon.js +2 -2
- package/components/Button/enums.js +5 -4
- package/components/Button/index.js +14 -12
- package/components/Card/CardAction.js +26 -26
- package/components/Card/CardStatic.js +3 -3
- package/components/Card/components/CardContent/CardContent.js +2 -2
- package/components/Card/components/CardContent/components/CardContentBody.js +2 -2
- package/components/Card/components/CardContent/components/CardContentFooter.js +2 -2
- package/components/Card/components/CardContent/components/CardContentHeader.js +2 -2
- package/components/Card/components/CardMedia.js +2 -2
- package/components/Card/utils.js +1 -1
- package/components/Checkbox/Checkbox.js +7 -7
- package/components/Checkbox/CheckboxXGroup.js +11 -11
- package/components/Checkbox/CheckboxYGroup.js +2 -2
- package/components/Col/Col.js +146 -146
- package/components/DesignTokens/DesignTokenUtils.js +2 -2
- package/components/DesignTokens/DesignTokensComponents.js +9 -7
- package/components/DesignTokens/DesignTokensComponentsThemeDark.js +15 -13
- package/components/DesignTokens/components/Button.js +27 -0
- package/components/DesignTokens/components/FormField.js +22 -4
- package/components/DesignTokens/components/Island.js +26 -0
- package/components/DesignTokens/components/index.js +17 -14
- package/components/Dropdown/Dropdown.js +22 -7
- package/components/Dropdown/desktop/DropdownDesktop.js +94 -18
- package/components/Dropdown/desktop/DropdownList.js +65 -94
- package/components/Dropdown/desktop/DropdownListItem.js +2 -2
- package/components/Dropdown/index.js +27 -25
- package/components/Dropdown/mobile/DropdownMobile.js +2 -2
- package/components/Dropdown/mobile/DropdownMobileBody.js +2 -2
- package/components/Dropdown/mobile/DropdownMobileClose.js +2 -2
- package/components/Dropdown/mobile/DropdownMobileFooter.js +2 -2
- package/components/Dropdown/mobile/DropdownMobileHeader.js +2 -2
- package/components/Dropdown/mobile/DropdownMobileInner.js +2 -2
- package/components/Dropdown/mobile/DropdownMobileInput.js +2 -2
- package/components/Dropdown/mobile/DropdownMobileList.js +2 -2
- package/components/Dropdown/mobile/DropdownMobileListItem.js +2 -2
- package/components/Footer/Footer.js +3 -3
- package/components/Footer/components/FooterDescription.js +2 -2
- package/components/Footer/components/FooterDescriptionContent.js +2 -2
- package/components/Footer/components/FooterDescriptionControls.js +2 -2
- package/components/FormField/FormField.js +53 -52
- package/components/FormField/FormFieldContext.js +8 -8
- package/components/FormField/components/FormFieldClear.js +13 -12
- package/components/FormField/components/FormFieldCounter.js +5 -5
- package/components/FormField/components/FormFieldDescription.js +5 -5
- package/components/FormField/components/FormFieldInput.js +4 -3
- package/components/FormField/components/FormFieldLabel.js +32 -31
- package/components/FormField/components/FormFieldMaskedInput.js +102 -92
- package/components/FormField/components/FormFieldPostfix.js +7 -7
- package/components/FormField/components/FormFieldPrefix.js +5 -5
- package/components/FormField/components/FormFieldTarget.js +49 -0
- package/components/FormField/components/FormFieldTextarea.js +25 -24
- package/components/FormField/enums.js +3 -2
- package/components/FormField/index.js +19 -16
- package/components/FormField/types.js +2 -0
- package/components/Header/Header.js +11 -11
- package/components/Header/components/HeaderLayoutSidebar/HeaderLayoutSidebar.js +2 -2
- package/components/Header/components/HeaderLayoutSidebar/HeaderLayoutSidebarContent.js +2 -2
- package/components/Header/components/HeaderLayoutSidebar/HeaderLayoutSidebarSidebar.js +2 -2
- package/components/Header/components/HeaderSubheader/HeaderSubheader.js +6 -6
- package/components/Header/components/HeaderTabs/HeaderTabs.js +2 -2
- package/components/Header/components/HeaderTabs/HeaderTabsContent.js +2 -2
- package/components/Header/components/HeaderTabs/HeaderTabsControls.js +2 -2
- package/components/Header/components/HeaderTitle/HeaderTitle.js +2 -2
- package/components/Header/components/HeaderTitle/HeaderTitleContent.js +2 -2
- package/components/Header/components/HeaderTitle/HeaderTitleControls.js +2 -2
- package/components/Island/Island.js +78 -0
- package/components/Island/components/IslandBody.js +10 -0
- package/components/Island/components/IslandFooter.js +10 -0
- package/components/Island/components/IslandHeader.js +10 -0
- package/components/Island/enums.js +7 -0
- package/components/Island/index.js +9 -0
- package/components/KeyDownListener/ComposedKeyDownListener.js +13 -0
- package/components/KeyDownListener/KeyDownListener.js +27 -0
- package/components/KeyDownListener/index.js +7 -0
- package/components/Link/Link.js +27 -27
- package/components/List/List.js +3 -3
- package/components/List/ListSortable.js +1 -1
- package/components/List/components/ListEmptyState.js +6 -6
- package/components/List/components/ListItem.js +1 -1
- package/components/List/components/ListItemContent.js +7 -7
- package/components/List/components/ListItemControls.js +7 -7
- package/components/List/components/ListItemControlsButton.js +2 -2
- package/components/List/components/ListItemControlsButtonDropdown.js +98 -15
- package/components/List/components/ListItemLoading.js +2 -2
- package/components/List/components/ListItemSelectable.js +9 -9
- package/components/List/components/ListItemTable.js +29 -19
- package/components/List/components/ListItemTailLeft.js +2 -2
- package/components/List/components/ListItemTailRight.js +2 -2
- package/components/List/components/ListSortableItem.js +37 -18
- package/components/List/components/ListSortableItemControls.js +2 -2
- package/components/List/components/ListSortableItemTarget.js +6 -6
- package/components/List/index.js +22 -20
- package/components/ListMaster/ListMaster.js +1 -1
- package/components/ListMaster/components/ListMasterBody.js +1 -1
- package/components/ListMaster/components/ListMasterChipGroup.js +5 -5
- package/components/ListMaster/components/ListMasterFooter.js +2 -2
- package/components/ListMaster/components/ListMasterFooterControls.js +2 -2
- package/components/ListMaster/components/ListMasterFooterDescription.js +2 -2
- package/components/ListMaster/components/ListMasterHeader.js +7 -7
- package/components/ListMaster/components/SelectionControls.js +3 -3
- package/components/Loader/LoaderMiddle/LoaderMiddle.js +7 -7
- package/components/Loader/LoaderSmall/LoaderSmall.js +16 -16
- package/components/LoaderWidget/LoaderWidget.js +9 -9
- package/components/Overlay/Overlay.js +2 -2
- package/components/Overlay/OverlayMask.js +2 -2
- package/components/Overlay/OverlayPanel.js +2 -2
- package/components/Page/Page.js +2 -2
- package/components/Page/components/BodyPage.js +2 -2
- package/components/Page/components/FooterPage.js +2 -2
- package/components/Page/components/HeaderPage.js +2 -2
- package/components/Pagination/components/PaginationExtended.js +3 -3
- package/components/Pagination/components/PaginationNavigationButton.js +6 -6
- package/components/Pagination/components/PaginationNavigationExtended.js +2 -2
- package/components/Pagination/components/PaginationPageButton.js +6 -6
- package/components/Pagination/components/PaginationPageEllipsis.js +2 -2
- package/components/Pagination/components/PaginationSelect.js +12 -12
- package/components/Pagination/utils/paginationUtils.js +10 -10
- package/components/Radio/Radio.js +3 -3
- package/components/Radio/RadioXGroup.js +10 -10
- package/components/Radio/RadioYGroup.js +9 -9
- package/components/Row/Row.js +10 -10
- package/components/SegmentedControl/SegmentedControl.js +64 -7
- package/components/SegmentedControl/SegmentedControlContext.js +13 -0
- package/components/SegmentedControl/SegmentedControlSegment.js +68 -8
- package/components/SegmentedControl/index.js +6 -6
- package/components/SelectExtendedField/SelectExtendedField.js +57 -0
- package/components/SelectExtendedField/components/SelectExtendedFieldDropdown.js +25 -0
- package/components/SelectExtendedField/components/SelectExtendedFieldDropdownDefault.js +86 -0
- package/components/SelectExtendedField/components/SelectExtendedFieldTarget.js +101 -0
- package/components/SelectExtendedField/index.js +9 -0
- package/components/Skeleton/Skeleton.js +10 -10
- package/components/SwipeableArea/SwipeableArea.js +13 -13
- package/components/TabsExtended/TabsExtended.js +7 -7
- package/components/TabsExtended/TabsExtendedUtils.js +1 -1
- package/components/TabsExtended/components/TabsExtendedContent.js +11 -11
- package/components/TabsExtended/components/TabsExtendedDropdownWrapper.js +2 -2
- package/components/TabsExtended/components/TabsExtendedTab.js +2 -2
- package/components/TabsExtended/components/TabsExtendedTabButton.js +2 -2
- package/components/TabsExtended/components/TabsExtendedTabsWrapper.js +7 -7
- package/components/TabsExtended/types.js +2 -0
- package/components/TextField/MaskedField.js +6 -89
- package/components/TextField/TextField.js +6 -89
- package/components/TextField/TextFieldBase.js +30 -89
- package/components/TextField/index.js +4 -3
- package/components/ThemeProvider/ThemeProvider.js +8 -8
- package/components/ThemeProvider/components/ThemeProviderView.js +8 -8
- package/components/Tooltip/components/common/TooltipBody.js +7 -7
- package/components/Tooltip/components/common/TooltipLink.js +10 -10
- package/components/Tooltip/components/common/TooltipXButton.js +1 -1
- package/components/Tooltip/components/desktop/components/TooltipDesktopBase.js +2 -2
- package/components/Tooltip/components/desktop/components/TooltipDesktopTip.js +2 -2
- package/components/Tooltip/components/mobile/TooltipMobile.js +10 -10
- package/components/Typography/Caption.js +15 -15
- package/components/Typography/Text.js +24 -24
- package/components/Typography/Title.js +13 -13
- package/components/Typography/utils.js +1 -1
- package/components/UploadZone/UploadZone.js +109 -7
- package/components/UploadZone/UploadZoneContext.js +11 -0
- package/components/UploadZone/components/UploadZoneInput.js +5 -140
- package/components/UploadZone/index.js +2 -3
- package/components/UploadZone/types.js +2 -0
- package/components/index.js +279 -248
- package/index.d.ts +212 -27
- package/index.js +277 -246
- package/package.json +13 -1
- package/styles/triplex-next.css +354 -333
- package/chunks/AlertProcessSpoiler-BPbAJJFo.js +0 -39
- package/chunks/Card.module-Oqawy8hF.js +0 -17
- package/chunks/DropdownListItem-CW2MmFpw.js +0 -56
- package/chunks/DropdownMobile.module-DyunEp10.js +0 -19
- package/chunks/Footer.module-o57OEPdy.js +0 -11
- package/chunks/FormFieldInput-C2qWOLr3.js +0 -62
- package/chunks/HeaderLayoutSidebar.module-CzpXvDdH.js +0 -9
- package/chunks/HeaderTabs.module-CC0WAcoC.js +0 -9
- package/chunks/HeaderTitle.module-CH7eRK8R.js +0 -9
- package/chunks/ListItemTail.module-BBV_gvLd.js +0 -12
- package/chunks/ListMasterFooter.module-Cw1r4pz-.js +0 -10
- package/chunks/Overlay.module-08zZh8Y9.js +0 -18
- package/chunks/Page.module-Ccvf_vDR.js +0 -16
- package/chunks/TabsExtended.module-yT8L2ZYS.js +0 -13
- package/chunks/TooltipDesktop.module-CvcpQSlC.js +0 -19
- package/chunks/index-CAZEh1iw.js +0 -931
- package/chunks/utils-9a4dp5-W.js +0 -36
package/styles/triplex-next.css
CHANGED
|
@@ -1,333 +1,354 @@
|
|
|
1
|
-
html {--triplex-next-ColorBrand-0-
|
|
2
|
-
--triplex-next-ColorBrand-10-
|
|
3
|
-
--triplex-next-ColorBrand-20-
|
|
4
|
-
--triplex-next-ColorBrand-30-
|
|
5
|
-
--triplex-next-ColorBrand-40-
|
|
6
|
-
--triplex-next-ColorBrand-50-
|
|
7
|
-
--triplex-next-ColorBrand-60-
|
|
8
|
-
--triplex-next-ColorBrand-70-
|
|
9
|
-
--triplex-next-ColorBrand-80-
|
|
10
|
-
--triplex-next-ColorBrand-90-
|
|
11
|
-
--triplex-next-ColorBrand-100-
|
|
12
|
-
--triplex-next-ColorDarkNeutralAlpha-0-
|
|
13
|
-
--triplex-next-ColorDarkNeutralAlpha-10-
|
|
14
|
-
--triplex-next-ColorDarkNeutralAlpha-20-
|
|
15
|
-
--triplex-next-ColorDarkNeutralAlpha-30-
|
|
16
|
-
--triplex-next-ColorDarkNeutralAlpha-40-
|
|
17
|
-
--triplex-next-ColorDarkNeutralAlpha-50-
|
|
18
|
-
--triplex-next-ColorDarkNeutralAlpha-60-
|
|
19
|
-
--triplex-next-ColorDarkNeutralAlpha-70-
|
|
20
|
-
--triplex-next-ColorDarkNeutralAlpha-80-
|
|
21
|
-
--triplex-next-ColorDarkNeutralAlpha-90-
|
|
22
|
-
--triplex-next-ColorDarkNeutralAlpha-100-
|
|
23
|
-
--triplex-next-ColorDarkNeutral-0-
|
|
24
|
-
--triplex-next-ColorDarkNeutral-10-
|
|
25
|
-
--triplex-next-ColorDarkNeutral-20-
|
|
26
|
-
--triplex-next-ColorDarkNeutral-30-
|
|
27
|
-
--triplex-next-ColorDarkNeutral-40-
|
|
28
|
-
--triplex-next-ColorDarkNeutral-50-
|
|
29
|
-
--triplex-next-ColorDarkNeutral-60-
|
|
30
|
-
--triplex-next-ColorDarkNeutral-70-
|
|
31
|
-
--triplex-next-ColorDarkNeutral-80-
|
|
32
|
-
--triplex-next-ColorDarkNeutral-90-
|
|
33
|
-
--triplex-next-ColorDarkNeutral-100-
|
|
34
|
-
--triplex-next-ColorError-0-
|
|
35
|
-
--triplex-next-ColorError-10-
|
|
36
|
-
--triplex-next-ColorError-20-
|
|
37
|
-
--triplex-next-ColorError-30-
|
|
38
|
-
--triplex-next-ColorError-40-
|
|
39
|
-
--triplex-next-ColorError-50-
|
|
40
|
-
--triplex-next-ColorError-60-
|
|
41
|
-
--triplex-next-ColorError-70-
|
|
42
|
-
--triplex-next-ColorError-80-
|
|
43
|
-
--triplex-next-ColorError-90-
|
|
44
|
-
--triplex-next-ColorError-100-
|
|
45
|
-
--triplex-next-ColorInfo-0-
|
|
46
|
-
--triplex-next-ColorInfo-10-
|
|
47
|
-
--triplex-next-ColorInfo-20-
|
|
48
|
-
--triplex-next-ColorInfo-30-
|
|
49
|
-
--triplex-next-ColorInfo-40-
|
|
50
|
-
--triplex-next-ColorInfo-50-
|
|
51
|
-
--triplex-next-ColorInfo-60-
|
|
52
|
-
--triplex-next-ColorInfo-70-
|
|
53
|
-
--triplex-next-ColorInfo-80-
|
|
54
|
-
--triplex-next-ColorInfo-90-
|
|
55
|
-
--triplex-next-ColorInfo-100-
|
|
56
|
-
--triplex-next-ColorNeutralAlpha-0-
|
|
57
|
-
--triplex-next-ColorNeutralAlpha-10-
|
|
58
|
-
--triplex-next-ColorNeutralAlpha-20-
|
|
59
|
-
--triplex-next-ColorNeutralAlpha-30-
|
|
60
|
-
--triplex-next-ColorNeutralAlpha-40-
|
|
61
|
-
--triplex-next-ColorNeutralAlpha-50-
|
|
62
|
-
--triplex-next-ColorNeutralAlpha-60-
|
|
63
|
-
--triplex-next-ColorNeutralAlpha-70-
|
|
64
|
-
--triplex-next-ColorNeutralAlpha-80-
|
|
65
|
-
--triplex-next-ColorNeutralAlpha-90-
|
|
66
|
-
--triplex-next-ColorNeutralAlpha-100-
|
|
67
|
-
--triplex-next-ColorNeutral-0-
|
|
68
|
-
--triplex-next-ColorNeutral-10-
|
|
69
|
-
--triplex-next-ColorNeutral-20-
|
|
70
|
-
--triplex-next-ColorNeutral-30-
|
|
71
|
-
--triplex-next-ColorNeutral-40-
|
|
72
|
-
--triplex-next-ColorNeutral-50-
|
|
73
|
-
--triplex-next-ColorNeutral-60-
|
|
74
|
-
--triplex-next-ColorNeutral-70-
|
|
75
|
-
--triplex-next-ColorNeutral-80-
|
|
76
|
-
--triplex-next-ColorNeutral-90-
|
|
77
|
-
--triplex-next-ColorNeutral-100-
|
|
78
|
-
--triplex-next-ColorSuccess-0-
|
|
79
|
-
--triplex-next-ColorSuccess-10-
|
|
80
|
-
--triplex-next-ColorSuccess-20-
|
|
81
|
-
--triplex-next-ColorSuccess-30-
|
|
82
|
-
--triplex-next-ColorSuccess-40-
|
|
83
|
-
--triplex-next-ColorSuccess-50-
|
|
84
|
-
--triplex-next-ColorSuccess-60-
|
|
85
|
-
--triplex-next-ColorSuccess-70-
|
|
86
|
-
--triplex-next-ColorSuccess-80-
|
|
87
|
-
--triplex-next-ColorSuccess-90-
|
|
88
|
-
--triplex-next-ColorSuccess-100-
|
|
89
|
-
--triplex-next-ColorSystem-0-
|
|
90
|
-
--triplex-next-ColorSystem-10-
|
|
91
|
-
--triplex-next-ColorSystem-20-
|
|
92
|
-
--triplex-next-ColorSystem-30-
|
|
93
|
-
--triplex-next-ColorSystem-40-
|
|
94
|
-
--triplex-next-ColorSystem-50-
|
|
95
|
-
--triplex-next-ColorSystem-60-
|
|
96
|
-
--triplex-next-ColorSystem-70-
|
|
97
|
-
--triplex-next-ColorSystem-80-
|
|
98
|
-
--triplex-next-ColorSystem-90-
|
|
99
|
-
--triplex-next-ColorSystem-100-
|
|
100
|
-
--triplex-next-ColorWarning-0-
|
|
101
|
-
--triplex-next-ColorWarning-10-
|
|
102
|
-
--triplex-next-ColorWarning-20-
|
|
103
|
-
--triplex-next-ColorWarning-30-
|
|
104
|
-
--triplex-next-ColorWarning-40-
|
|
105
|
-
--triplex-next-ColorWarning-50-
|
|
106
|
-
--triplex-next-ColorWarning-60-
|
|
107
|
-
--triplex-next-ColorWarning-70-
|
|
108
|
-
--triplex-next-ColorWarning-80-
|
|
109
|
-
--triplex-next-ColorWarning-90-
|
|
110
|
-
--triplex-next-ColorWarning-100-
|
|
111
|
-
--triplex-next-Button-General_Background_Active-
|
|
112
|
-
--triplex-next-Button-General_Background_Default-
|
|
113
|
-
--triplex-next-Button-General_Background_Disabled-
|
|
114
|
-
--triplex-next-Button-General_Background_Hover-
|
|
115
|
-
--triplex-next-Button-General_Color_Active-
|
|
116
|
-
--triplex-next-Button-General_Color_Default-
|
|
117
|
-
--triplex-next-Button-General_Color_Disabled-
|
|
118
|
-
--triplex-next-Button-General_Color_Hover-
|
|
119
|
-
--triplex-next-Button-General_Shadow_Focus-
|
|
120
|
-
--triplex-next-Button-Secondary_Background_Active-
|
|
121
|
-
--triplex-next-Button-Secondary_Background_Default-
|
|
122
|
-
--triplex-next-Button-Secondary_Background_Disabled-
|
|
123
|
-
--triplex-next-Button-Secondary_Background_Hover-
|
|
124
|
-
--triplex-next-Button-Secondary_Color_Active-
|
|
125
|
-
--triplex-next-Button-Secondary_Color_Default-
|
|
126
|
-
--triplex-next-Button-Secondary_Color_Disabled-
|
|
127
|
-
--triplex-next-Button-Secondary_Color_Hover-
|
|
128
|
-
--triplex-next-Button-Secondary_Shadow_Focus-
|
|
129
|
-
--triplex-next-Button-
|
|
130
|
-
--triplex-next-Button-
|
|
131
|
-
--triplex-next-Button-
|
|
132
|
-
--triplex-next-Button-
|
|
133
|
-
--triplex-next-Button-
|
|
134
|
-
--triplex-next-Button-
|
|
135
|
-
--triplex-next-Button-
|
|
136
|
-
--triplex-next-Button-
|
|
137
|
-
--triplex-next-Button-
|
|
138
|
-
--triplex-next-Button-
|
|
139
|
-
--triplex-next-Button-
|
|
140
|
-
--triplex-next-Button-
|
|
141
|
-
--triplex-next-Button-
|
|
142
|
-
--triplex-next-Button-
|
|
143
|
-
--triplex-next-Button-
|
|
144
|
-
--triplex-next-
|
|
145
|
-
--triplex-next-
|
|
146
|
-
--triplex-next-
|
|
147
|
-
--triplex-next-
|
|
148
|
-
--triplex-next-
|
|
149
|
-
--triplex-next-
|
|
150
|
-
--triplex-next-
|
|
151
|
-
--triplex-next-
|
|
152
|
-
--triplex-next-
|
|
153
|
-
--triplex-next-
|
|
154
|
-
--triplex-next-
|
|
155
|
-
--triplex-next-
|
|
156
|
-
--triplex-next-
|
|
157
|
-
--triplex-next-
|
|
158
|
-
--triplex-next-
|
|
159
|
-
--triplex-next-
|
|
160
|
-
--triplex-next-
|
|
161
|
-
--triplex-next-
|
|
162
|
-
--triplex-next-FormField-
|
|
163
|
-
--triplex-next-FormField-
|
|
164
|
-
--triplex-next-FormField-
|
|
165
|
-
--triplex-next-FormField-
|
|
166
|
-
--triplex-next-FormField-
|
|
167
|
-
--triplex-next-
|
|
168
|
-
--triplex-next-
|
|
169
|
-
--triplex-next-
|
|
170
|
-
--triplex-next-
|
|
171
|
-
--triplex-next-
|
|
172
|
-
--triplex-next-
|
|
173
|
-
--triplex-next-
|
|
174
|
-
--triplex-next-
|
|
175
|
-
--triplex-next-
|
|
176
|
-
--triplex-next-
|
|
177
|
-
--triplex-next-
|
|
178
|
-
--triplex-next-
|
|
179
|
-
--triplex-next-
|
|
180
|
-
--triplex-next-
|
|
181
|
-
--triplex-next-
|
|
182
|
-
--triplex-next-
|
|
183
|
-
--triplex-next-
|
|
184
|
-
--triplex-next-
|
|
185
|
-
--triplex-next-
|
|
186
|
-
--triplex-next-
|
|
187
|
-
--triplex-next-
|
|
188
|
-
--triplex-next-
|
|
189
|
-
--triplex-next-
|
|
190
|
-
--triplex-next-
|
|
191
|
-
--triplex-next-
|
|
192
|
-
--triplex-next-
|
|
193
|
-
--triplex-next-
|
|
194
|
-
--triplex-next-
|
|
195
|
-
--triplex-next-
|
|
196
|
-
--triplex-next-
|
|
197
|
-
--triplex-next-
|
|
198
|
-
--triplex-next-
|
|
199
|
-
--triplex-next-
|
|
200
|
-
--triplex-next-
|
|
201
|
-
--triplex-next-
|
|
202
|
-
--triplex-next-
|
|
203
|
-
--triplex-next-
|
|
204
|
-
--triplex-next-
|
|
205
|
-
--triplex-next-
|
|
206
|
-
--triplex-next-
|
|
207
|
-
--triplex-next-
|
|
208
|
-
--triplex-next-
|
|
209
|
-
--triplex-next-
|
|
210
|
-
--triplex-next-
|
|
211
|
-
--triplex-next-
|
|
212
|
-
--triplex-next-
|
|
213
|
-
--triplex-next-
|
|
214
|
-
--triplex-next-
|
|
215
|
-
--triplex-next-
|
|
216
|
-
--triplex-next-
|
|
217
|
-
--triplex-next-
|
|
218
|
-
--triplex-next-
|
|
219
|
-
--triplex-next-
|
|
220
|
-
--triplex-next-
|
|
221
|
-
--triplex-next-
|
|
222
|
-
--triplex-next-
|
|
223
|
-
--triplex-next-
|
|
224
|
-
--triplex-next-
|
|
225
|
-
--triplex-next-
|
|
226
|
-
--triplex-next-
|
|
227
|
-
--triplex-next-
|
|
228
|
-
--triplex-next-
|
|
229
|
-
--triplex-next-
|
|
230
|
-
--triplex-next-
|
|
231
|
-
--triplex-next-
|
|
232
|
-
--triplex-next-
|
|
233
|
-
--triplex-next-
|
|
234
|
-
--triplex-next-
|
|
235
|
-
--triplex-next-
|
|
236
|
-
--triplex-next-
|
|
237
|
-
--triplex-next-
|
|
238
|
-
--triplex-next-
|
|
239
|
-
--triplex-next-
|
|
240
|
-
--triplex-next-
|
|
241
|
-
--triplex-next-
|
|
242
|
-
--triplex-next-
|
|
243
|
-
--triplex-next-
|
|
244
|
-
--triplex-next-
|
|
245
|
-
--triplex-next-
|
|
246
|
-
--triplex-next-
|
|
247
|
-
--triplex-next-
|
|
248
|
-
--triplex-next-
|
|
249
|
-
--triplex-next-
|
|
250
|
-
--triplex-next-
|
|
251
|
-
--triplex-next-
|
|
252
|
-
--triplex-next-
|
|
253
|
-
--triplex-next-
|
|
254
|
-
--triplex-next-
|
|
255
|
-
--triplex-next-
|
|
256
|
-
--triplex-next-
|
|
257
|
-
--triplex-next-
|
|
258
|
-
--triplex-next-
|
|
259
|
-
--triplex-next-
|
|
260
|
-
--triplex-next-
|
|
261
|
-
--triplex-next-
|
|
262
|
-
--triplex-next-
|
|
263
|
-
--triplex-next-
|
|
264
|
-
--triplex-next-
|
|
265
|
-
--triplex-next-
|
|
266
|
-
--triplex-next-
|
|
267
|
-
--triplex-next-
|
|
268
|
-
--triplex-next-
|
|
269
|
-
--triplex-next-
|
|
270
|
-
--triplex-next-
|
|
271
|
-
--triplex-next-
|
|
272
|
-
--triplex-next-
|
|
273
|
-
--triplex-next-
|
|
274
|
-
--triplex-next-
|
|
275
|
-
--triplex-next-
|
|
276
|
-
--triplex-next-
|
|
277
|
-
--triplex-next-
|
|
278
|
-
--triplex-next-
|
|
279
|
-
--triplex-next-
|
|
280
|
-
--triplex-next-
|
|
281
|
-
--triplex-next-
|
|
282
|
-
--triplex-next-
|
|
283
|
-
--triplex-next-
|
|
284
|
-
--triplex-next-
|
|
285
|
-
--triplex-next-
|
|
286
|
-
--triplex-next-
|
|
287
|
-
--triplex-next-
|
|
288
|
-
--triplex-next-
|
|
289
|
-
--triplex-next-
|
|
290
|
-
--triplex-next-
|
|
291
|
-
--triplex-next-
|
|
292
|
-
--triplex-next-
|
|
293
|
-
--triplex-next-
|
|
294
|
-
--triplex-next-
|
|
295
|
-
--triplex-next-
|
|
296
|
-
--triplex-next-SegmentedControlSegment-
|
|
297
|
-
--triplex-next-SegmentedControlSegment-
|
|
298
|
-
--triplex-next-SegmentedControlSegment-
|
|
299
|
-
--triplex-next-SegmentedControlSegment-
|
|
300
|
-
--triplex-next-SegmentedControlSegment-
|
|
301
|
-
--triplex-next-SegmentedControlSegment-
|
|
302
|
-
--triplex-next-SegmentedControlSegment-
|
|
303
|
-
--triplex-next-SegmentedControlSegment-
|
|
304
|
-
--triplex-next-SegmentedControlSegment-
|
|
305
|
-
--triplex-next-SegmentedControlSegment-
|
|
306
|
-
--triplex-next-SegmentedControlSegment-
|
|
307
|
-
--triplex-next-SegmentedControlSegment-
|
|
308
|
-
--triplex-next-SegmentedControlSegment-
|
|
309
|
-
--triplex-next-SegmentedControlSegment-
|
|
310
|
-
--triplex-next-SegmentedControlSegment-
|
|
311
|
-
--triplex-next-SegmentedControlSegment-
|
|
312
|
-
--triplex-next-SegmentedControlSegment-
|
|
313
|
-
--triplex-next-SegmentedControlSegment-
|
|
314
|
-
--triplex-next-SegmentedControlSegment-
|
|
315
|
-
--triplex-next-SegmentedControlSegment-
|
|
316
|
-
--triplex-next-SegmentedControlSegment-
|
|
317
|
-
--triplex-next-SegmentedControlSegment-
|
|
318
|
-
--triplex-next-SegmentedControlSegment-
|
|
319
|
-
--triplex-next-SegmentedControlSegment-
|
|
320
|
-
--triplex-next-SegmentedControlSegment-
|
|
321
|
-
--triplex-next-SegmentedControlSegment-
|
|
322
|
-
--triplex-next-SegmentedControlSegment-
|
|
323
|
-
--triplex-next-SegmentedControlSegment-
|
|
324
|
-
--triplex-next-SegmentedControlSegment-
|
|
325
|
-
--triplex-next-SegmentedControlSegment-
|
|
326
|
-
--triplex-next-SegmentedControlSegment-
|
|
327
|
-
--triplex-next-SegmentedControlSegment-
|
|
328
|
-
--triplex-next-SegmentedControlSegment-
|
|
329
|
-
--triplex-next-SegmentedControlSegment-
|
|
330
|
-
--triplex-next-SegmentedControlSegment-
|
|
331
|
-
--triplex-next-
|
|
332
|
-
--triplex-next-
|
|
333
|
-
.underline__b00a3818{text-decoration:underline}.strikethrough__4a2f1dd7{text-decoration:line-through}.underlineStrikethrough__1b376390{text-decoration:underline line-through}.typography__825bbcc4.primary__dd5dcce2{color:var(--triplex-next-Typography-Primary_Color-0-1-9)}.typography__825bbcc4.complementary__c3b5581f{color:var(--triplex-Typography-Complementary_Color-0-1-9)}.typography__825bbcc4.secondary__cb4d0ba3{color:var(--triplex-next-Typography-Secondary_Color-0-1-9)}.typography__825bbcc4.tertiary__7ef7ddb0{color:var(--triplex-next-Typography-Tertiary_Color-0-1-9)}.typography__825bbcc4.disabled__f8621368{color:var(--triplex-next-Typography-Disabled_Color-0-1-9)}.typography__825bbcc4.brand__0b4a6f51{color:var(--triplex-next-Typography-Brand_Color-0-1-9);-webkit-user-select:none;user-select:none}.typography__825bbcc4.info__45df571f{color:var(--triplex-next-Typography-Info_Color-0-1-9)}.typography__825bbcc4.success__296a22e8{color:var(--triplex-next-Typography-Success_Color-0-1-9)}.typography__825bbcc4.error__a258f4c3{color:var(--triplex-next-Typography-Error_Color-0-1-9)}.typography__825bbcc4.warning__d380156d{color:var(--triplex-next-Typography-Warning_Color-0-1-9)}.typography__825bbcc4.system__4019dc00{color:var(--triplex-next-Typography-System_Color-0-1-9)}.typography__825bbcc4.compact__500c59af{line-height:calc(16 / 14)}.title__63dd0a64.regular__e92902df{font-family:SBSansDisplay}.title__63dd0a64.semibold__c8b11dd7{font-family:SBSansDisplaySemibold}.title__63dd0a64.medium__3d1223ab{font-family:SBSansDisplayMedium}.title__63dd0a64.bold__a576642e{font-family:SBSansDisplayBold}.h1__0fdb64db,.h2__9b32bfc2,.h3__85d25fbe{margin:0}.h1__0fdb64db{font-size:28px;line-height:36px}.h2__9b32bfc2{font-size:24px;line-height:32px}.h3__85d25fbe{font-size:20px;line-height:28px}.text__e2739459.regular__e92902df{font-family:SBSansText}.text__e2739459.semibold__c8b11dd7{font-family:SBSansTextSemibold}.b1__fb0a3449{font-size:18px;line-height:24px}.b2__ec59cb85{font-size:16px;line-height:20px}.b3__013e436c{font-size:14px;line-height:20px}.b3__013e436c.compact__500c59af{line-height:16px}.b4__719bd6c3{font-size:12px;line-height:16px}.caption__f0dfc92e.regular__e92902df{font-family:SBSansText}.caption__f0dfc92e.semibold__c8b11dd7{font-family:SBSansTextSemibold}.c1__13266d59{font-size:10px;line-height:12px}.c2__29ae0e07{font-size:8px;line-height:10px}.d1__f93c356f{font-size:32px;line-height:40px}.d1__f93c356f.regular__e92902df{font-family:SBSansDisplay}.d1__f93c356f.semibold__c8b11dd7{font-family:SBSansDisplaySemibold}.label__27b58300{display:inline-block;position:relative;font-weight:400;color:var(--triplex-next-Radio-Color_Default-0-1-9);cursor:pointer}.label__27b58300.md__14690406{font-size:14px;line-height:24px;min-height:24px;min-width:24px}.label__27b58300.lg__32ac9eba{font-size:16px;line-height:28px;min-width:28px;min-height:28px}.label__27b58300.nonempty__3f989bd0{padding-left:40px}.label__27b58300.disabled__0e565fa6{color:var(--triplex-next-Radio-Color_Disabled-0-1-9);cursor:default}.radio__6b4e589c{margin:0;opacity:0}.radioIcon__3c1aa124{box-sizing:border-box;background:var(--triplex-next-Radio-Background_Default-0-1-9);border-radius:50%}.radioIcon__3c1aa124:after{content:"";position:absolute;background:var(--triplex-next-Radio-Dot_Default-0-1-9);border-radius:50%;transform:scale(0)}.md__14690406 .radioIcon__3c1aa124:after{width:12px;height:12px;top:6px;left:6px}.lg__32ac9eba .radioIcon__3c1aa124:after{width:14px;height:14px;top:7px;left:7px}.radioIcon__3c1aa124,.radioIcon__3c1aa124:after{pointer-events:none}.radio__6b4e589c,.radioIcon__3c1aa124{position:absolute;left:0}.md__14690406 .radio__6b4e589c,.md__14690406 .radioIcon__3c1aa124{width:24px;height:24px}.lg__32ac9eba .radio__6b4e589c,.lg__32ac9eba .radioIcon__3c1aa124{width:28px;height:28px}.nonempty__3f989bd0 .radio__6b4e589c,.nonempty__3f989bd0 .radioIcon__3c1aa124{top:2px}.radio__6b4e589c:enabled{cursor:pointer}.radio__6b4e589c:checked+.radioIcon__3c1aa124{background:var(--triplex-next-Radio-Background_Checked_Default-0-1-9)}.radio__6b4e589c:checked+.radioIcon__3c1aa124:after{transform:scale(1);transition:transform .2s ease-out}.radio__6b4e589c:hover+.radioIcon__3c1aa124{background-color:var(--triplex-next-Radio-Background_Hover-0-1-9)}.radio__6b4e589c:disabled+.radioIcon__3c1aa124{background:var(--triplex-next-Radio-Background_Disabled-0-1-9)}.radio__6b4e589c:disabled:checked+.radioIcon__3c1aa124{background:var(--triplex-next-Radio-Background_Checked_Disabled-0-1-9)}.radio__6b4e589c:disabled+.radioIcon__3c1aa124:after{background:var(--triplex-next-Radio-Dot_Disabled-0-1-9)}.radio__6b4e589c:focus-visible+.radioIcon__3c1aa124{box-shadow:var(--triplex-next-Radio-BorderColor_Focused-0-1-9)}.radio__6b4e589c:checked:enabled:hover+.radioIcon__3c1aa124{background-color:var(--triplex-next-Radio-Background_Checked_Hover-0-1-9)}.radioXGroup__2239ff37{display:inline-flex;flex-flow:row wrap}.radioXGroup__2239ff37.indent-12__50c5aed5{margin-left:-6px;margin-right:-6px}.radioXGroup__2239ff37.indent-12__50c5aed5 .label__27b58300{margin-left:6px;margin-right:6px}.radioXGroup__2239ff37.indent-16__d700e733{margin-left:-8px;margin-right:-8px}.radioXGroup__2239ff37.indent-16__d700e733 .label__27b58300{margin-left:8px;margin-right:8px}.radioXGroup__2239ff37.indent-20__91cafec7{margin-left:-10px;margin-right:-10px}.radioXGroup__2239ff37.indent-20__91cafec7 .label__27b58300{margin-left:10px;margin-right:10px}.radioXGroup__2239ff37.indent-24__dbaebb70{margin-left:-12px;margin-right:-12px}.radioXGroup__2239ff37.indent-24__dbaebb70 .label__27b58300{margin-left:12px;margin-right:12px}.radioXGroup__2239ff37.indent-28__3b20efd9{margin-left:-14px;margin-right:-14px}.radioXGroup__2239ff37.indent-28__3b20efd9 .label__27b58300{margin-left:14px;margin-right:14px}.radioXGroup__2239ff37.indent-32__3a60f8f2{margin-left:-16px;margin-right:-16px}.radioXGroup__2239ff37.indent-32__3a60f8f2 .label__27b58300{margin-left:16px;margin-right:16px}.radioYGroup__9b959886{display:inline-flex;flex-flow:column wrap}.radioYGroup__9b959886 .label__27b58300+.label__27b58300{margin-top:20px}.loaderSmall__6eaf6ea3{display:flex;justify-content:center;align-items:center}.loaderSmall__6eaf6ea3.sm__55c17c31{width:16px;height:16px;gap:2px}.loaderSmall__6eaf6ea3.sm__55c17c31 .dot__38bdbea6{width:4px;height:4px}.loaderSmall__6eaf6ea3.md__f20e3104{width:24px;height:24px;gap:3px}.loaderSmall__6eaf6ea3.md__f20e3104 .dot__38bdbea6{width:6px;height:6px}.loaderSmall__6eaf6ea3.lg__97f6bf74{width:32px;height:32px;gap:4px}.loaderSmall__6eaf6ea3.lg__97f6bf74 .dot__38bdbea6{width:8px;height:8px}.loaderSmall__6eaf6ea3.neutral__6c5bef76 .dot__38bdbea6{background-color:var(--triplex-next-Loader-Neutral_Background_Default-0-1-9)}.loaderSmall__6eaf6ea3.brand__cf79cbf0 .dot__38bdbea6{background-color:var(--triplex-next-Loader-Brand_Background_Default-0-1-9)}.loaderSmall__6eaf6ea3 .dot__38bdbea6{border-radius:50%}.loaderSmall__6eaf6ea3 .dot1__a0597be9{animation:dotCycleSmall__52bcacfd .9s infinite}.loaderSmall__6eaf6ea3 .dot2__b479eb39{animation:dotCycleSmall__52bcacfd .9s infinite .15s}.loaderSmall__6eaf6ea3 .dot3__8ebf9b39{animation:dotCycleSmall__52bcacfd .9s infinite .3s}@keyframes dotCycleSmall__52bcacfd{0%{opacity:1}33%{opacity:.35}66%{opacity:.7}to{opacity:1}}.loaderMiddle__cae03d27{position:relative;width:40px;height:40px}.loaderMiddle__cae03d27 .dot__38bdbea6{position:absolute;background-color:var(--triplex-next-Loader-Brand_Background_Default-0-1-9);width:12px;height:12px;border-radius:6px}.loaderMiddle__cae03d27 .dot1__a0597be9{top:0;left:0;animation:dotCycleMiddle__92fbd989 3s infinite}.loaderMiddle__cae03d27 .dot2__b479eb39{right:0;top:0;opacity:.7;animation:dotCycleMiddle__92fbd989 3s infinite .74s}.loaderMiddle__cae03d27 .dot3__8ebf9b39{bottom:0;right:0;opacity:.15;animation:dotCycleMiddle__92fbd989 3s infinite 1.5s}.loaderMiddle__cae03d27 .dot4__04664381{bottom:0;left:0;opacity:0;animation:dotCycleMiddle__92fbd989 3s infinite 2.25s}.loaderMiddle__cae03d27 .line__9a2a2df6{background-color:var(--triplex-next-Loader-Brand_Background_Default-0-1-9);width:12px;height:12px;border-radius:6px;position:absolute;top:0;opacity:0;animation:lineCycle__b53ffce3 3s infinite}@keyframes lineCycle__b53ffce3{0%{width:12px;height:12px;left:0;top:0;opacity:1}12.5%{width:100%;height:12px;left:0;top:0;opacity:1}25%{width:12px;height:12px;left:calc(100% - 12px);top:0;opacity:1}37.5%{width:12px;height:100%;left:calc(100% - 12px);top:0;opacity:1}50%{width:12px;height:12px;left:calc(100% - 12px);top:calc(100% - 12px);opacity:1}62.5%{width:100%;height:12px;left:0;top:calc(100% - 12px);opacity:1}75%{width:12px;height:12px;left:0;top:calc(100% - 12px);opacity:1}87.5%{width:12px;height:100%;left:0;top:0;opacity:1}to{width:12px;height:12px;left:0;top:0;opacity:1}}@keyframes dotCycleMiddle__92fbd989{0%{opacity:1}25%{opacity:0}50%{opacity:.15}75%{opacity:.7}to{opacity:1}}.dropdownMobileWrapper__50cfeb39{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1500}.dropdownMobileBackdrop__a14b27da{background:var(--triplex-next-DropdownMobile-Backdrop-0-1-9);position:absolute;opacity:0;transition:opacity .3s ease-in-out;top:0;right:0;bottom:0;left:0}.dropdownMobileBackdrop__a14b27da.closing__d2ed82f7{opacity:0}.dropdownMobileBackdrop__a14b27da.opening__2ddd9d7b,.dropdownMobileBackdrop__a14b27da.opened__816e6479{opacity:var(--triplex-DropdownMobile-Opacity-0-1-9)}.dropdownMobile__b9d33d06{position:absolute;bottom:0;left:0;right:0;transform:translateY(100%);transition:transform .3s ease-in-out;max-height:50vh;display:flex;flex-direction:column;outline:none}.dropdownMobile__b9d33d06.closing__d2ed82f7{transform:translateY(100%)}.dropdownMobile__b9d33d06.opening__2ddd9d7b,.dropdownMobile__b9d33d06.opened__816e6479{transform:translateY(0)}.dropdownMobileHeader__f6e0610c{min-height:16px;padding:16px 40px 16px 16px;background:var(--triplex-next-DropdownMobile-Header_Background-0-1-9);position:relative;flex-shrink:1;border-radius:16px 16px 0 0}.dropdownMobileContent__1dd5363e{background:var(--triplex-next-DropdownMobile-Content_Background-0-1-9);flex-grow:1;overflow:auto}.dropdownMobileFooter__bdfbb8f2{padding:15px 16px 16px;background:var(--triplex-next-DropdownMobile-Footer_Background-0-1-9);border-top:1px solid var(--triplex-next-DropdownMobile-Border_Color-0-1-9);flex-shrink:1}.dropdownMobileListItem__9fb65078{padding:16px}.dropdownMobileListItem__9fb65078.selected__defeaafa{background:var(--triplex-next-DropdownMobileList-Selected_Background-0-1-9)}.dropdownMobileListItem__9fb65078:active{background-color:var(--triplex-next-DropdownMobileList-Active_Background-0-1-9)}button.dropdownMobileClose__5ecc0ab6{position:absolute;top:16px;right:16px}.dropdownMobileBodyOverflow__f550034e{overflow:hidden}.buttonIcon__4ef527a8{position:relative;padding:0;line-height:0;font-size:0;vertical-align:top;background:transparent;border:none;outline:none}.buttonIcon__4ef527a8:enabled{cursor:pointer}.buttonIcon__4ef527a8.circle__2c941d59{border-radius:50%}.buttonIcon__4ef527a8.squircle__9d44984e{border-radius:4px}.buttonIcon__4ef527a8:focus-visible{box-shadow:var(--triplex-next-Button-Icon_Shadow_Focus-0-1-9)}.label__34666a08{display:inline-block;position:relative;font-weight:400;color:var(--triplex-next-Checkbox-Color_Default-0-1-9);cursor:pointer}.label__34666a08.md__8cefa73f{min-width:24px;min-height:24px;font-size:14px;line-height:24px}.label__34666a08.lg__0b892f48{min-width:28px;min-height:28px;font-size:16px;line-height:28px}.label__34666a08.nonempty__fce5439f{padding-left:40px}.label__34666a08.disabled__98fadabc{color:var(--triplex-next-Checkbox-Color_Disabled-0-1-9);cursor:default}.label__34666a08[hidden]{display:none}.checkbox__81d8faba{margin:0;opacity:0}.checkboxIcon__01ab17da{box-sizing:border-box;background-color:var(--triplex-next-Checkbox-Background_Default-0-1-9);border-radius:4px}.checkmarkIcon__7816dfdf{transform:scale(0)}.checkmarkIcon__7816dfdf path{fill:var(--triplex-next-Checkbox-Checkmark_Fill_Default-0-1-9)}.checkboxIcon__01ab17da,.checkmarkIcon__7816dfdf{pointer-events:none}.checkbox__81d8faba,.checkboxIcon__01ab17da,.checkmarkIcon__7816dfdf{position:absolute;left:0}.md__8cefa73f .checkbox__81d8faba,.md__8cefa73f .checkboxIcon__01ab17da,.md__8cefa73f .checkmarkIcon__7816dfdf{width:24px;height:24px}.lg__0b892f48 .checkbox__81d8faba,.lg__0b892f48 .checkboxIcon__01ab17da,.lg__0b892f48 .checkmarkIcon__7816dfdf{width:28px;height:28px}.checkbox__81d8faba:enabled{cursor:pointer}.checkbox__81d8faba:checked+.checkboxIcon__01ab17da{background-color:var(--triplex-next-Checkbox-Background_Checked_Default-0-1-9)}.checkbox__81d8faba:checked~.checkmarkIcon__7816dfdf{transform:scale(1);transition:transform .2s ease-out}.checkbox__81d8faba:disabled+.checkboxIcon__01ab17da{background-color:var(--triplex-next-Checkbox-Background_Disabled-0-1-9)}.checkbox__81d8faba:disabled~.checkmarkIcon__7816dfdf path{fill:var(--triplex-next-Checkbox-Checkmark_Fill_Disabled-0-1-9)}.checkbox__81d8faba:focus-visible+.checkboxIcon__01ab17da{box-shadow:var(--triplex-next-Checkbox-BorderColor_Focus-0-1-9)}.checkbox__81d8faba:checked:enabled:hover+.checkboxIcon__01ab17da{background-color:var(--triplex-next-Checkbox-Background_Checked_Hover-0-1-9)}.checkboxXGroup__ade2adc6{display:inline-flex;flex-flow:row wrap}.checkboxXGroup__ade2adc6.indent-12__9cce943a{margin-left:-6px;margin-right:-6px}.checkboxXGroup__ade2adc6.indent-12__9cce943a .label__34666a08{margin-left:6px;margin-right:6px}.checkboxXGroup__ade2adc6.indent-16__4176b546{margin-left:-8px;margin-right:-8px}.checkboxXGroup__ade2adc6.indent-16__4176b546 .label__34666a08{margin-left:8px;margin-right:8px}.checkboxXGroup__ade2adc6.indent-20__8af05855{margin-left:-10px;margin-right:-10px}.checkboxXGroup__ade2adc6.indent-20__8af05855 .label__34666a08{margin-left:10px;margin-right:10px}.checkboxXGroup__ade2adc6.indent-24__a11df6bd{margin-left:-12px;margin-right:-12px}.checkboxXGroup__ade2adc6.indent-24__a11df6bd .label__34666a08{margin-left:12px;margin-right:12px}.checkboxXGroup__ade2adc6.indent-28__10cbba92{margin-left:-14px;margin-right:-14px}.checkboxXGroup__ade2adc6.indent-28__10cbba92 .label__34666a08{margin-left:14px;margin-right:14px}.checkboxXGroup__ade2adc6.indent-32__9798ba68{margin-left:-16px;margin-right:-16px}.checkboxXGroup__ade2adc6.indent-32__9798ba68 .label__34666a08{margin-left:16px;margin-right:16px}.checkboxYGroup__c411ac05{display:inline-flex;flex-flow:column wrap}.checkboxYGroup__c411ac05 .label__34666a08+.label__34666a08{margin-top:20px}.card__8361137a{display:inline-block;width:100%;box-sizing:border-box;overflow:hidden}.card__8361137a.roundingMD__7c59a695{border-radius:16px}.card__8361137a.roundingSM__e61e7153{border-radius:8px}.card__8361137a.general__df8cbb6d{background:var(--triplex-next-Card-Static_General_Background-0-1-9)}.card__8361137a.secondary__5cdea20f{background:var(--triplex-next-Card-Static_Secondary_Background-0-1-9)}.card__8361137a .cardMedia__90134835{background-size:cover;background-repeat:no-repeat;background-position:center}.card__8361137a .cardContent__4f854c40.paddingMD__bb75c671{padding:23px}.card__8361137a .cardContent__4f854c40.paddingMD__bb75c671:not(:first-child){padding-top:24px}.card__8361137a .cardContent__4f854c40.paddingMD__bb75c671:not(:last-child){padding-bottom:24px}.card__8361137a .cardContent__4f854c40.paddingSM__dd50c1d5{padding:15px}.card__8361137a .cardContent__4f854c40.paddingSM__dd50c1d5:not(:first-child){padding-top:16px}.card__8361137a .cardContent__4f854c40.paddingSM__dd50c1d5:not(:last-child){padding-bottom:16px}.card__8361137a .cardContent__4f854c40 .cardContentHeader__66938b59{margin-bottom:16px}.card__8361137a .cardContent__4f854c40 .cardContentFooter__9d9a63fe{margin-top:16px}.action__a6d9c15c{cursor:pointer;box-shadow:var(--triplex-next-Card-Shadow_Default-0-1-9);transition:background .12s ease,box-shadow .12s ease}.action__a6d9c15c.general__df8cbb6d{background:var(--triplex-next-Card-Action_General_Background-0-1-9)}.action__a6d9c15c.general__df8cbb6d:hover{background:var(--triplex-next-Card-Action_General_Background_Hover-0-1-9);box-shadow:var(--triplex-next-Card-Shadow_Hover-0-1-9)}.action__a6d9c15c.general__df8cbb6d.selected__819ade45{background:var(--triplex-next-Card-Action_General_Background_Selected-0-1-9)}.action__a6d9c15c.general__df8cbb6d.selected__819ade45:hover{background:var(--triplex-next-Card-Action_General_Background_Selected_Hover-0-1-9)}.action__a6d9c15c.secondary__5cdea20f{background:var(--triplex-next-Card-Action_Secondary_Background-0-1-9)}.action__a6d9c15c.secondary__5cdea20f:hover{background:var(--triplex-next-Card-Action_Secondary_Background_Hover-0-1-9);box-shadow:var(--triplex-next-Card-Shadow_Hover-0-1-9)}.action__a6d9c15c.secondary__5cdea20f.selected__819ade45{background:var(--triplex-next-Card-Action_Secondary_Background_Selected-0-1-9)}.action__a6d9c15c.secondary__5cdea20f.selected__819ade45:hover{background:var(--triplex-next-Card-Action_Secondary_Background_Selected_Hover-0-1-9)}.action__a6d9c15c:focus{outline:none}.action__a6d9c15c:focus.focusVisible__1e723a2e{border:1px solid var(--triplex-next-Card-BorderColor_Focus-0-1-9)}.alertContext__518ef46d{display:flex;font-size:12px;line-height:16px}.alertContext__518ef46d>svg{flex-shrink:0}.alertContext__518ef46d .alertContextText__318543c8{margin-left:8px}.alertContext__518ef46d.alertTypeError__5652986a .alertContextText__318543c8{color:var(--triplex-next-AlertContext-Error_Color-0-1-9)}.alertContext__518ef46d.alertTypeInfo__a2c98f46 .alertContextText__318543c8{color:var(--triplex-next-AlertContext-Info_Color-0-1-9)}.alertContext__518ef46d.alertTypeWarning__7b4e967c .alertContextText__318543c8{color:var(--triplex-next-AlertContext-Warning_Color-0-1-9)}.alertContext__518ef46d.alertTypeSystem__ac2cdacd .alertContextText__318543c8{color:var(--triplex-next-AlertContext-System_Color-0-1-9)}.alertProcess__92d09c1c{display:flex;padding:16px;border-radius:8px;position:relative}.alertProcess__92d09c1c.withSpoiler__1aff6a88{min-height:40px}.alertProcess__92d09c1c .themeIcon__83b6510b{padding-top:2px;box-sizing:border-box;height:20px;width:20px}.alertProcess__92d09c1c.alertTypeError__5652986a{background:var(--triplex-next-AlertProcess-Error_Background-0-1-9)}.alertProcess__92d09c1c.alertTypeInfo__a2c98f46{background:var(--triplex-next-AlertProcess-Info_Background-0-1-9)}.alertProcess__92d09c1c.alertTypeWarning__7b4e967c{background:var(--triplex-next-AlertProcess-Warning_Background-0-1-9)}.alertProcess__92d09c1c.alertTypeSystem__ac2cdacd{background:var(--triplex-next-AlertProcess-System_Background-0-1-9)}.alertProcess__92d09c1c.alertTypeFeature__ac1c2d8e{background:var(--triplex-next-AlertProcess-Feature_Background-0-1-9)}.alertProcess__92d09c1c.alertTypeFeature__ac1c2d8e .themeIcon__83b6510b{padding-top:0}.alertProcess__92d09c1c .alertProcessContentBlock__692947b9{flex:1;margin-left:8px}.alertProcess__92d09c1c .alertProcessContentBlock__692947b9:not(:has(+.closeButton__08743ae9)){padding-right:26px}.alertProcess__92d09c1c .alertProcessContentBlock__692947b9 .expandableContent__5897c15a{overflow:hidden;transition:max-height .3s ease-in-out,opacity .3s ease-in-out;max-height:0;opacity:0}.alertProcess__92d09c1c .alertProcessContentBlock__692947b9 .expandableContent__5897c15a.expanded__0e97f0dd{max-height:1000px;opacity:1}.alertProcess__92d09c1c .closeButton__08743ae9{margin-left:10px}.alertProcess__92d09c1c .expandButton__ebf477bb{position:absolute;right:16px;bottom:16px;height:16px;width:16px;transition:transform .3s ease-in-out;display:flex;align-items:center;justify-content:center}.alertProcess__92d09c1c .expandButton__ebf477bb.expanded__0e97f0dd{transform:rotate(180deg)}.dropdownList__3b0fb52d{max-height:196px;padding:4px;overflow:auto}.dropdownListItem__91e7cc83{color:var(--triplex-next-DropdownList-Color-0-1-9);background:var(--triplex-next-DropdownList-Background_Default-0-1-9);position:relative;outline:none;white-space:nowrap}.dropdownListItem__91e7cc83+.dropdownListItem__91e7cc83{margin-top:2px}.dropdownListItem__91e7cc83.active__496ccbd9{background:var(--triplex-next-DropdownList-Background_Active-0-1-9);cursor:pointer}.dropdownListItem__91e7cc83.selected__defeaafa{background:var(--triplex-next-DropdownList-Background_Selected-0-1-9);cursor:default}.dropdownList-sm__8fb246ab{font-size:12px;line-height:16px}.dropdownList-sm__8fb246ab .dropdownListItem__91e7cc83{padding:6px 8px;border-radius:6px}.dropdownList-md__d7b33bcb{font-size:14px;line-height:20px}.dropdownList-md__d7b33bcb .dropdownListItem__91e7cc83{padding:7px 8px;border-radius:8px}.dropdownList-lg__e84b91dd{font-size:16px;line-height:20px}.dropdownList-lg__e84b91dd .dropdownListItem__91e7cc83{padding:14px 8px;border-radius:10px}.formField__622ac953{position:relative;flex-grow:1;background:var(--triplex-next-FormField-Background_Default-0-1-9);box-shadow:var(--triplex-next-FormField-Shadow_Default-0-1-9);transition:background-color .2s ease-in-out,border-color .2s ease-in-out,box-shadow .2s ease-in-out,color .2s ease-in-out}.formField__622ac953:hover{background:var(--triplex-next-FormField-Background_Hover-0-1-9)}.formField__622ac953.disabled__70fb53a5{background:var(--triplex-next-FormField-Background_Disabled-0-1-9)}.formField__622ac953.active__d6ce1717{background:var(--triplex-next-FormField-Background_Active-0-1-9);box-shadow:var(--triplex-next-FormField-Shadow_Active-0-1-9)}.formField__622ac953.active__d6ce1717::placeholder{opacity:1}.formField__622ac953.error__5d88cf62{background:var(--triplex-next-FormField-Background_Error-0-1-9)}.formField__622ac953.error__5d88cf62:hover{background:var(--triplex-next-FormField-Background_Error_Hover-0-1-9)}.formField__622ac953.error__5d88cf62.active__d6ce1717{background:var(--triplex-next-FormField-Background_Error-0-1-9);box-shadow:var(--triplex-next-FormField-Shadow_Error_Active-0-1-9)}.formField__622ac953.size-sm__64b9b1f5{border-radius:6px}.formField__622ac953.size-md__90671c7c{border-radius:8px}.formField__622ac953.size-lg__4e576499{border-radius:10px}.formFieldDescription__a30304e0{padding-top:4px;padding-left:4px;padding-right:4px}.formFieldDescription__a30304e0.withCounter__6ef00bd3{display:flex;justify-content:space-between}.formFieldCounter__3ad41a89{padding-left:4px}.formFieldLabel__5fa04130{position:absolute;overflow:hidden;line-height:0;text-overflow:ellipsis;white-space:nowrap;transition:top .3s ease-out;pointer-events:none}.formFieldLabel__5fa04130.size-sm__64b9b1f5{top:6px}.formFieldLabel__5fa04130.size-md__90671c7c{top:10px}.formFieldLabel__5fa04130.size-lg__4e576499{top:18px}.formFieldLabel__5fa04130.size-lg__4e576499.floating__aed9f33a{top:10px}.formFieldLabelText__aa0cc5c8{display:inline-block;color:var(--triplex-next-FormField-Label_Color_Default-0-1-9);transition-property:font-size,line-height;transition-duration:.3s;transition-timing-function:ease-out}.size-sm__64b9b1f5 .formFieldLabelText__aa0cc5c8{font-size:12px;line-height:16px}.size-md__90671c7c .formFieldLabelText__aa0cc5c8{font-size:14px;line-height:20px}.size-lg__4e576499 .formFieldLabelText__aa0cc5c8{font-size:16px;line-height:20px}.floating__aed9f33a .formFieldLabelText__aa0cc5c8{font-size:12px;line-height:16px}.floating__aed9f33a.size-sm__64b9b1f5 .formFieldLabelText__aa0cc5c8,.floating__aed9f33a.size-md__90671c7c .formFieldLabelText__aa0cc5c8{display:none}.disabled__70fb53a5 .formFieldLabelText__aa0cc5c8{color:var(--triplex-next-FormField-Label_Color_Disabled-0-1-9)}.formFieldClear__f9c1039c{cursor:pointer;height:16px;opacity:0;transition:opacity .3s}.formFieldClear__f9c1039c.shown__5bc8e54c{opacity:1}.formFieldInput__69187c0d{width:100%;box-sizing:border-box;border:none;background:none;-webkit-appearance:none;color:var(--triplex-next-FormField-Input_Color_Default-0-1-9)}.formFieldInput__69187c0d:disabled{color:var(--triplex-next-FormField-Input_Color_Disabled-0-1-9)}.formFieldInput__69187c0d::placeholder{color:var(--triplex-next-FormField-Placeholder_Color-0-1-9);opacity:0;transition:opacity .3s ease-out}.formFieldInput__69187c0d:focus{outline:none}.formFieldInput__69187c0d:focus::placeholder{opacity:1}.formFieldInput__69187c0d:-webkit-autofill{animation-name:autofill-applied-hook__52ccb285;animation-duration:1ms}.formFieldInput__69187c0d:not(:-webkit-autofill){animation-name:autofill-cancelled-hook__0cf4ceaf;animation-duration:1ms}.formFieldInput__69187c0d.size-sm__64b9b1f5{padding-top:6px;padding-bottom:6px;font-size:12px;height:28px;line-height:16px}.formFieldInput__69187c0d.size-md__90671c7c{padding-top:10px;padding-bottom:10px;font-size:14px;height:40px;line-height:20px}.formFieldInput__69187c0d.size-lg__4e576499{padding-top:26px;padding-bottom:10px;height:56px;line-height:20px;font-size:16px}@keyframes autofill-applied-hook__52ccb285{0%{transform:none}}@keyframes autofill-cancelled-hook__0cf4ceaf{0%{transform:none}}.formFieldPostfix__4c829c8f{padding:0 12px 0 4px;position:absolute;right:0;top:0;bottom:0;display:flex;align-items:center;gap:8px}.formFieldPrefix__7c81e8f9{padding:0 8px 0 12px;position:absolute;left:0;top:0;bottom:0;display:flex;align-items:center;gap:4px}.formFieldTextarea__9db62f46{width:100%;box-sizing:border-box;font-size:16px;line-height:20px;height:96px;padding-top:26px;padding-bottom:10px;border:none;background:none;color:var(--triplex-next-FormField-Input_Color_Default-0-1-9);resize:vertical}.formFieldTextarea__9db62f46:focus{outline:none}.formFieldTextarea__9db62f46:disabled{color:var(--triplex-next-FormField-Input_Color_Disabled-0-1-9)}.formFieldTextarea__9db62f46::placeholder{color:var(--triplex-next-FormField-Placeholder_Color-0-1-9)}.list__a395234c{margin:0;padding:0;list-style:none;position:relative}.listItemControls__c3f740a6{display:flex;padding:0 16px 0 4px}.listItemContent__cd9a021b{background:var(--triplex-next-ListItem-Background-0-1-9);padding:12px 16px;min-height:56px;box-sizing:border-box}.listItemContent__cd9a021b.selected__58458537{border-radius:8px 0 0 8px;background:var(--triplex-next-ListItem-Background_Selected-0-1-9)}.listItemControlsButton__7e35e345{font-family:inherit;margin:0;padding:0;background:var(--triplex-next-ListItemControlsButton-Background-0-1-9);border:none;width:80px;display:flex;align-items:center;justify-content:center;flex-direction:column;border-radius:8px;min-height:56px}.listItemControlsButton__7e35e345+.listItemControlsButton__7e35e345,.listItemControlsButton__7e35e345+.listItemControlsButtonDropdown__ee65d3ce{margin-left:4px}.listItemControlsButtonIcon__2136d515{line-height:0}.listItemControlsButton__7e35e345.withText__2ee5de9f .listItemControlsButtonIcon__2136d515{margin-bottom:8px}.listItemControlsButtonLabel__3a98b32b{color:var(--triplex-next-ListItemControlsButton-Color-0-1-9);overflow-wrap:break-word}div.listItemControlsButtonDropdown__ee65d3ce{display:flex}.listItemControlsButtonInner__4a5ac627{display:flex;flex-direction:column;padding:0 4px}.listItemControlsButton__7e35e345.withIcon__733450a7.withText__2ee5de9f .listItemControlsButtonInner__4a5ac627{height:44px;overflow:visible}.buttonDropdownMenuItem__f56dd121{overflow:hidden;text-overflow:ellipsis}.listEmptyState__67249816{padding:80px 16px 16px;text-align:center}.listItemLoading__0805f7b5{height:76px;position:relative}.listItemSelectable__a46d0037{display:flex;align-items:center;background:var(--triplex-next-ListItem-Background-0-1-9);border-radius:8px}.listItemSelectable__a46d0037.selected__58458537{background:var(--triplex-next-ListItem-Background_Selected-0-1-9)}.checkboxWrapper__999756ad{padding:16px 20px 16px 16px;line-height:0}.childrenWrapper__5362acf7{flex-grow:1}.checkboxLabel__7434cdb7{padding:0!important;transform:scale(1.375) translateY(-2px);position:relative}.checkboxLabelClickArea__80fbc36e{position:absolute;top:-2.5px;left:-3.6px;bottom:-5px;right:-3.6px}.listItemTail__ecb924eb{position:absolute;width:16px;top:0;bottom:0;overflow:hidden}.listItemTailLine__53c4c8e5{background:var(--triplex-next-ListMaster-Background-0-1-9);left:8px;position:absolute;width:4px;top:0;bottom:0}.listItemTailTop__4daa4f23{position:absolute;top:0;left:0;right:0}.listItemTailTop__4daa4f23:after{content:"";width:8px;height:8px;position:absolute;top:0;left:12px;border-top-left-radius:8px;box-shadow:-2px -2px 0 2px var(--triplex-next-ListMaster-Background-0-1-9)}.listItemTailTop__4daa4f23:before{content:"";width:8px;height:8px;position:absolute;top:0;left:0;border-top-right-radius:8px;box-shadow:2px -2px 0 2px var(--triplex-next-ListMaster-Background-0-1-9)}.listItemTailBottom__f54f4ff4{position:absolute;bottom:0;left:0;right:0}.listItemTailBottom__f54f4ff4:after{content:"";width:8px;height:8px;position:absolute;bottom:0;left:12px;border-bottom-left-radius:8px;box-shadow:-2px 2px 0 2px var(--triplex-next-ListMaster-Background-0-1-9)}.listItemTailBottom__f54f4ff4:before{content:"";width:8px;height:8px;position:absolute;bottom:0;left:0;border-bottom-right-radius:8px;box-shadow:2px 2px 0 2px var(--triplex-next-ListItem-Tail_Background-0-1-9)}.listItemTailRight__0fb526af{right:-8px}.listItemTailLeft__470d0dd2{left:-8px}.listSortableItemTarget__260f3d00{display:flex;align-items:center;position:relative;padding:12px 16px;border-radius:8px;background:var(--triplex-next-ListItem-Background-0-1-9);touch-action:manipulation;cursor:grab}.listSortableItemTarget__260f3d00:hover{background:var(--triplex-next-ListItem-Background_Selected-0-1-9)}.listSortableItemTarget__260f3d00.dragging__ee9b0408{background:var(--triplex-next-ListItem-Background_Dragging-0-1-9);box-shadow:var(--triplex-next-ListItem-Shadow-0-1-9);cursor:grabbing;z-index:1}.listSortableItemTargetContent__28484ddb{flex:1}.listSortableItemTargetIcon__f79f1f0a{display:block;margin-left:24px}.listSortableItemControls__2f5121cf{display:inline-block}.col-1__62f706e2{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 8.33333333%;max-width:8.33333333%;box-sizing:border-box}.col-2__076107e0{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 16.66666667%;max-width:16.66666667%;box-sizing:border-box}.col-3__e7231e0c{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 25%;max-width:25%;box-sizing:border-box}.col-4__d5852633{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 33.33333333%;max-width:33.33333333%;box-sizing:border-box}.col-5__07def172{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 41.66666667%;max-width:41.66666667%;box-sizing:border-box}.col-6__77e1e687{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 50%;max-width:50%;box-sizing:border-box}.col-7__16f75e62{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 58.33333333%;max-width:58.33333333%;box-sizing:border-box}.col-8__1c2bfaed{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 66.66666667%;max-width:66.66666667%;box-sizing:border-box}.col-9__e60ad945{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 75%;max-width:75%;box-sizing:border-box}.col-10__cd4313ca{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 83.33333333%;max-width:83.33333333%;box-sizing:border-box}.col-11__df963343{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 91.66666667%;max-width:91.66666667%;box-sizing:border-box}.col-12__d8257920{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 100%;max-width:100%;box-sizing:border-box}.offset-0__cc3e2a87{margin-left:0%}.offset-1__49eb5747{margin-left:8.33333333%}.offset-2__a64dc7a9{margin-left:16.66666667%}.offset-3__4d14f764{margin-left:25%}.offset-4__8f684ca0{margin-left:33.33333333%}.offset-5__6116c1ed{margin-left:41.66666667%}.offset-6__8fb1b92c{margin-left:50%}.offset-7__92f623f0{margin-left:58.33333333%}.offset-8__87429873{margin-left:66.66666667%}.offset-9__92ed86d2{margin-left:75%}.offset-10__3ddeb1ae{margin-left:83.33333333%}.offset-11__9dc3d3f0{margin-left:91.66666667%}.d-none__0c2b3753{display:none!important}.d-block__4ba14204{display:block!important}@media (min-width: 576px){.col-sm-1__972be53c{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 8.33333333%;max-width:8.33333333%;box-sizing:border-box}.col-sm-2__4ff1ddf7{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 16.66666667%;max-width:16.66666667%;box-sizing:border-box}.col-sm-3__a13993a7{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 25%;max-width:25%;box-sizing:border-box}.col-sm-4__8552262d{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 33.33333333%;max-width:33.33333333%;box-sizing:border-box}.col-sm-5__441bd81e{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 41.66666667%;max-width:41.66666667%;box-sizing:border-box}.col-sm-6__cac1dec7{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 50%;max-width:50%;box-sizing:border-box}.col-sm-7__6eb36a47{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 58.33333333%;max-width:58.33333333%;box-sizing:border-box}.col-sm-8__a9132ff2{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 66.66666667%;max-width:66.66666667%;box-sizing:border-box}.col-sm-9__f408ff65{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 75%;max-width:75%;box-sizing:border-box}.col-sm-10__40eb6404{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 83.33333333%;max-width:83.33333333%;box-sizing:border-box}.col-sm-11__c7548321{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 91.66666667%;max-width:91.66666667%;box-sizing:border-box}.col-sm-12__9b1a43d0{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 100%;max-width:100%;box-sizing:border-box}.offset-sm-0__a24b151f{margin-left:0%}.offset-sm-1__53c0b9b8{margin-left:8.33333333%}.offset-sm-2__90478b86{margin-left:16.66666667%}.offset-sm-3__b7112ff0{margin-left:25%}.offset-sm-4__b0f1173d{margin-left:33.33333333%}.offset-sm-5__9bf81695{margin-left:41.66666667%}.offset-sm-6__f0465706{margin-left:50%}.offset-sm-7__a8c604f0{margin-left:58.33333333%}.offset-sm-8__c465feae{margin-left:66.66666667%}.offset-sm-9__5af4f608{margin-left:75%}.offset-sm-10__cb90108f{margin-left:83.33333333%}.offset-sm-11__f4740d45{margin-left:91.66666667%}.d-none-sm__91667b08{display:none!important}.d-block-sm__23fa68da{display:block!important}}@media (min-width: 768px){.col-md-1__b15fb277{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 8.33333333%;max-width:8.33333333%;box-sizing:border-box}.col-md-2__a6e2e94c{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 16.66666667%;max-width:16.66666667%;box-sizing:border-box}.col-md-3__288d0159{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 25%;max-width:25%;box-sizing:border-box}.col-md-4__bf6cd3a2{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 33.33333333%;max-width:33.33333333%;box-sizing:border-box}.col-md-5__b13d86f0{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 41.66666667%;max-width:41.66666667%;box-sizing:border-box}.col-md-6__c1450510{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 50%;max-width:50%;box-sizing:border-box}.col-md-7__f5f053e5{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 58.33333333%;max-width:58.33333333%;box-sizing:border-box}.col-md-8__5ea1e181{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 66.66666667%;max-width:66.66666667%;box-sizing:border-box}.col-md-9__f4147e41{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 75%;max-width:75%;box-sizing:border-box}.col-md-10__15d6af27{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 83.33333333%;max-width:83.33333333%;box-sizing:border-box}.col-md-11__ca3a569e{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 91.66666667%;max-width:91.66666667%;box-sizing:border-box}.col-md-12__f9c05c6e{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 100%;max-width:100%;box-sizing:border-box}.offset-md-0__6971eaa7{margin-left:0%}.offset-md-1__bb84daf9{margin-left:8.33333333%}.offset-md-2__342bf558{margin-left:16.66666667%}.offset-md-3__00e175d4{margin-left:25%}.offset-md-4__d8e988a4{margin-left:33.33333333%}.offset-md-5__9e42ce49{margin-left:41.66666667%}.offset-md-6__907b3231{margin-left:50%}.offset-md-7__1c1d6cbc{margin-left:58.33333333%}.offset-md-8__a6cf6eb5{margin-left:66.66666667%}.offset-md-9__b6aa0262{margin-left:75%}.offset-md-10__84928e5c{margin-left:83.33333333%}.offset-md-11__b428d938{margin-left:91.66666667%}.d-none-md__8a935158{display:none!important}.d-block-md__ce62bc58{display:block!important}}@media (min-width: 992px){.col-lg-1__50bb4eea{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 8.33333333%;max-width:8.33333333%;box-sizing:border-box}.col-lg-2__83a2b301{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 16.66666667%;max-width:16.66666667%;box-sizing:border-box}.col-lg-3__34876fbe{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 25%;max-width:25%;box-sizing:border-box}.col-lg-4__aa56af46{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 33.33333333%;max-width:33.33333333%;box-sizing:border-box}.col-lg-5__c4720403{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 41.66666667%;max-width:41.66666667%;box-sizing:border-box}.col-lg-6__88d7491a{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 50%;max-width:50%;box-sizing:border-box}.col-lg-7__1df4e212{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 58.33333333%;max-width:58.33333333%;box-sizing:border-box}.col-lg-8__1835091a{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 66.66666667%;max-width:66.66666667%;box-sizing:border-box}.col-lg-9__3e387d6a{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 75%;max-width:75%;box-sizing:border-box}.col-lg-10__b81dca79{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 83.33333333%;max-width:83.33333333%;box-sizing:border-box}.col-lg-11__b8493752{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 91.66666667%;max-width:91.66666667%;box-sizing:border-box}.col-lg-12__ccdf25b9{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 100%;max-width:100%;box-sizing:border-box}.offset-lg-0__ceb17d1d{margin-left:0%}.offset-lg-1__581d5bfd{margin-left:8.33333333%}.offset-lg-2__28837a22{margin-left:16.66666667%}.offset-lg-3__1a0ed37b{margin-left:25%}.offset-lg-4__139b83fc{margin-left:33.33333333%}.offset-lg-5__e58383c6{margin-left:41.66666667%}.offset-lg-6__c5a933fc{margin-left:50%}.offset-lg-7__604f11a3{margin-left:58.33333333%}.offset-lg-8__70a79b8b{margin-left:66.66666667%}.offset-lg-9__8e41bcd5{margin-left:75%}.offset-lg-10__c72ea756{margin-left:83.33333333%}.offset-lg-11__4eca1e0f{margin-left:91.66666667%}.d-none-lg__70c4325a{display:none!important}.d-block-lg__d3953ff4{display:block!important}}@media (min-width: 1200px){.col-xl-1__c1c08a9f{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 8.33333333%;max-width:8.33333333%;box-sizing:border-box}.col-xl-2__7ca9f02f{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 16.66666667%;max-width:16.66666667%;box-sizing:border-box}.col-xl-3__54959bbe{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 25%;max-width:25%;box-sizing:border-box}.col-xl-4__3ee2de7e{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 33.33333333%;max-width:33.33333333%;box-sizing:border-box}.col-xl-5__d26cf8b0{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 41.66666667%;max-width:41.66666667%;box-sizing:border-box}.col-xl-6__acd2849a{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 50%;max-width:50%;box-sizing:border-box}.col-xl-7__3742f4ff{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 58.33333333%;max-width:58.33333333%;box-sizing:border-box}.col-xl-8__455ba5c9{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 66.66666667%;max-width:66.66666667%;box-sizing:border-box}.col-xl-9__85c0dde9{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 75%;max-width:75%;box-sizing:border-box}.col-xl-10__10a02cbe{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 83.33333333%;max-width:83.33333333%;box-sizing:border-box}.col-xl-11__a64ea1d5{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 91.66666667%;max-width:91.66666667%;box-sizing:border-box}.col-xl-12__6428c81d{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 100%;max-width:100%;box-sizing:border-box}.offset-xl-0__944f14d1{margin-left:0%}.offset-xl-1__a2b885ca{margin-left:8.33333333%}.offset-xl-2__2500c438{margin-left:16.66666667%}.offset-xl-3__f1a8ad48{margin-left:25%}.offset-xl-4__db497588{margin-left:33.33333333%}.offset-xl-5__71a1a7e1{margin-left:41.66666667%}.offset-xl-6__4c7f898c{margin-left:50%}.offset-xl-7__7d82f429{margin-left:58.33333333%}.offset-xl-8__5e35ba82{margin-left:66.66666667%}.offset-xl-9__193f7141{margin-left:75%}.offset-xl-10__b41f7766{margin-left:83.33333333%}.offset-xl-11__05760af8{margin-left:91.66666667%}.d-none-xl__d5c1434d{display:none!important}.d-block-xl__593acc4e{display:block!important}}.link__621098aa{cursor:pointer;position:relative;text-decoration:none;outline:none;color:var(--triplex-next-Link-Text_Color_Default-0-1-9)}.link__621098aa:hover{color:var(--triplex-next-Link-Text_Color_Hover-0-1-9)}.link__621098aa:active{color:var(--triplex-next-Link-Text_Color_Active-0-1-9)}.link__621098aa:focus-visible{box-shadow:var(--triplex-next-Link-BorderColor_Focus-0-1-9)}.wordWithContent__9513f598{white-space:nowrap;display:inline-flex;align-items:center}.before__cf1760a1 :first-child{margin-right:4px}.after__ce461921 :last-child{margin-left:4px}.loaderWidget__06e2bdd8{display:flex;flex-direction:column;align-items:center;justify-content:center;position:absolute;left:0;top:0;right:0;bottom:0;z-index:10100}.loaderWidget__06e2bdd8.loaderSmallBackdrop__b3ad9907{background:var(--triplex-next-LoaderWidget-Small_Backdrop_Default-0-1-9)}.loaderWidget__06e2bdd8.loaderMiddleBackdrop__70035bc7{background:var(--triplex-next-LoaderWidget-Middle_Backdrop_Default-0-1-9)}.loaderWidget__06e2bdd8.loaderMiddleBackdrop__70035bc7 .loaderMiddleBackground__7039e34d{width:64px;height:64px;border-radius:16px;background:var(--triplex-next-LoaderWidget-Middle_Background_Default-0-1-9)}.loaderWidget__06e2bdd8.loaderMiddleBackdrop__70035bc7 .loaderMiddleBackground__7039e34d div{margin:12px}.row__bde127e1{display:flex;flex-wrap:wrap;margin-left:-12px;margin-right:-12px;padding-bottom:16px}.row__bde127e1.noPaddingBottom__b483ef3d,.row__bde127e1:last-child{padding-bottom:0}.tabsExtended__f11b2fe7{position:relative}.tabsExtendedContent__789725e7{display:inline-flex;padding:4px}.tabsExtendedTab__dc4d7d07+.tabsExtendedTab__dc4d7d07,.tabsExtendedDropdown__cca351c7{margin-left:2px}.tabsReal__1d0e755e,.tabsFake__ec42100a{display:flex;box-sizing:border-box;width:100%}.tabsReal__1d0e755e.hidden__b731e74e{visibility:hidden}.tabsReal__1d0e755e .tabsExtendedTab__dc4d7d07.hidden__b731e74e{display:none}.tabsFake__ec42100a{padding:0 2px;position:absolute;left:-10000px;visibility:hidden}.tabsExtendedTabButton__13b6b2e6{font-family:inherit;margin:0;flex-shrink:0;border:1px solid var(--triplex-next-Tabs-Tab_BorderColor_Default-0-1-9);outline:none;background:var(--triplex-next-Tabs-Tab_Background_Default-0-1-9);cursor:pointer;white-space:nowrap;position:relative;overflow:visible}.tabsExtendedTabButton__13b6b2e6.lg__22556a69{border-radius:6px;padding:14px 16px;line-height:20px;font-size:16px}.tabsExtendedTabButton__13b6b2e6.md__8d367fd6{border-radius:4px;padding:6px 16px;line-height:20px;font-size:14px}.tabsExtendedTabButton__13b6b2e6.sm__8cd80f15{border-radius:4px;padding:2px 16px;line-height:16px;font-size:12px}.tabsExtendedTabButton__13b6b2e6::-moz-focus-inner{border:none}.tabsExtendedTabButton__13b6b2e6+.tabsExtendedTabButton__13b6b2e6{margin-left:2px}.tabsExtendedTabButton__13b6b2e6:hover{background:var(--triplex-next-Tabs-Tab_Background_Hover-0-1-9)}.tabsExtendedTabButton__13b6b2e6:focus-visible{border-color:var(--triplex-next-Tabs-Tab_BorderColor_Focus-0-1-9)}.tabsExtendedTabButton__13b6b2e6.selected__068598b3{background:var(--triplex-next-Tabs-Tab_Background_Selected-0-1-9);cursor:default}.swipeableArea__97202a11{position:relative;overflow:hidden}.swipeableArea__97202a11 .content__9a45edf7{position:relative;touch-action:pan-y}.swipeableArea__97202a11 .content__9a45edf7.disableScroll__6b38dbda{touch-action:none}.swipeableArea__97202a11 .content__9a45edf7.disablePointerEvents__59b11212:after{content:"";position:absolute;left:0;right:0;top:0;bottom:0}.swipeableArea__97202a11 .swipeAnimationFinish__cc1291f2{transition:transform .3s ease-in-out,opacity .3s ease-in-out}.swipeableArea__97202a11 .leftContent__fc1ed956,.swipeableArea__97202a11 .rightContent__fc6ddded{position:absolute;top:0;left:0;bottom:0;display:flex}.swipeableArea__97202a11 .rightContent__fc6ddded{left:auto;right:0}.footer__912588b0.sticky__a713729b{z-index:101;position:sticky;bottom:0}.footerDescription__a8ce15db{display:flex;justify-content:space-between;align-items:center}.footerDescriptionContent__99c2683c{flex-grow:1;margin-right:auto}.footerDescriptionControls__c96fdaa2{margin-left:auto;white-space:nowrap;padding-left:24px}@media (max-width: 767px){.footerDescription__a8ce15db{flex-wrap:wrap;align-items:normal}.footerDescriptionContent__99c2683c{width:100%}.footerDescriptionControls__c96fdaa2{padding-left:0;white-space:normal;margin-top:-16px;margin-left:-16px}.footerDescriptionControls__c96fdaa2>button{margin-left:16px;margin-top:16px}.footerDescriptionContent__99c2683c+.footerDescriptionControls__c96fdaa2{margin-top:0}.footer__912588b0{padding:16px 0}}.body__683bacc3{position:relative;padding-bottom:24px;display:flex}.body__683bacc3 .bodyInner__ff109f4c{position:relative;flex-grow:1;width:100%}@media (max-width: 767px){.body__683bacc3{padding:16px 0;overflow-x:auto}}.headerTabs__7ff98c74{display:flex;justify-content:space-between}.headerTabs__7ff98c74 .headerTabsContent__93984371{flex-grow:1}.headerTabs__7ff98c74 .headerTabsControls__d0bd8c04{flex-shrink:0;white-space:nowrap;padding-left:24px}@media (max-width: 767px){.headerTabs__7ff98c74{flex-wrap:wrap}.headerTabs__7ff98c74 .headerTabsContent__93984371{width:100%}.headerTabs__7ff98c74 .headerTabsControls__d0bd8c04{flex-shrink:initial;padding-left:0;white-space:normal;margin-left:-16px}.headerTabs__7ff98c74 .headerTabsControls__d0bd8c04>button{margin-left:16px;margin-top:16px}}.headerTitle__a7fb8648{display:flex;justify-content:space-between}.headerTitle__a7fb8648 .headerTitleControls__872addc7{white-space:nowrap;padding-left:24px}.headerLink__86b695a8+.headerTitle__a7fb8648{padding-top:0}@media (max-width: 767px){.headerTitle__a7fb8648{flex-wrap:wrap}.headerTitle__a7fb8648 .headerTitleContent__ab3f8528{width:100%}.headerTitle__a7fb8648 .headerTitleControls__872addc7{padding-left:0;white-space:normal;margin-left:-16px}.headerTitle__a7fb8648 .headerTitleControls__872addc7>button{margin-left:16px;margin-top:16px}}.headerSubheader__ac4a74d6{padding:24px 0}.headerSubheader__ac4a74d6.withoutPaddings__6a218961{padding:0}.headerLayoutSidebar__d1be617f{display:flex;justify-content:space-between}.headerLayoutSidebarContent__75ac7d90{flex-grow:1;min-width:1px}@media (max-width: 767px){.headerLayoutSidebarSidebar__c2738146{display:none}}.header__3aa9c158.sticky__e4fae9ed{z-index:101;position:sticky;top:0}.page__4c8833bb{height:100%;display:flex;flex-direction:column;max-width:100%;padding:24px;box-sizing:border-box;background-color:var(--triplex-next-Page-Background-0-1-9)}.page__4c8833bb .headerPageBackground__d40cf787{background:var(--triplex-next-HeaderPage-Background-0-1-9);padding:24px;border-radius:24px}.page__4c8833bb .footerPageBackground__67650302{background:var(--triplex-next-FooterPage-Background-0-1-9);padding:24px;border-radius:24px}.page__4c8833bb .headerPageSticky__abe2e032{z-index:101;position:sticky;top:0}.page__4c8833bb .footerPageSticky__f5701d49{z-index:101;position:sticky;bottom:0}.page__4c8833bb .headerPageStuck__c894f89f{border-top-left-radius:0;border-top-right-radius:0}.page__4c8833bb .footerPageStuck__6f1a5db8{border-bottom-left-radius:0;border-bottom-right-radius:0}.observerTarget__c3663236{height:1px;visibility:hidden;pointer-events:none}.headerPage__71edd8ab{padding-bottom:24px}.bodyPage__689e90f3{flex-grow:1}.paginationExtended__52fcbf12{position:relative;padding:24px 0;display:flex;justify-content:center;align-items:center}.paginationNavigationButton__4273ff8c .directionIconNext__3808f3f6{transform:rotate(180deg)}.pageEllipsis__c7b8ba52{display:flex;justify-content:center;align-items:center;height:24px;width:24px;margin:0 4px;border-radius:50%;color:var(--triplex-next-TableBasic-PaginationBasic_Color-0-1-9);cursor:default}.paginationPageButton__00ee00d3{font-size:14px;font-family:inherit;color:var(--triplex-next-Pagination-PageButton_Color-0-1-9);background-color:transparent;display:flex;justify-content:center;align-items:center;height:32px;width:32px;line-height:20px;border:1px solid transparent;border-radius:6px;margin:0 4px;cursor:pointer}.paginationPageButton__00ee00d3:focus-visible{border-color:var(--triplex-next-Pagination-PageButton_BorderColor_Focus-0-1-9);outline:none}.paginationPageButton__00ee00d3:hover{background-color:var(--triplex-next-Pagination-PageButton_Background_Hover-0-1-9)}.paginationPageButton__00ee00d3:active{background-color:var(--triplex-next-Pagination-PageButton_Background_Active-0-1-9);cursor:grabbing}.paginationPageButton__00ee00d3.currentPage__958e7781{background-color:var(--triplex-next-Pagination-PageButton_Background_Selected-0-1-9);cursor:default}.paginationNavigationExtended__ea64060b{display:flex;align-items:center;list-style-type:none;margin:0;padding:0}.paginationSelect__298ede71{position:absolute;left:0;display:flex;align-items:center}.paginationSelect__298ede71 .paginationSelectControl__fd309273{margin-left:8px}.button__fd0b4560{position:relative;margin:0;vertical-align:top;outline:none;font-family:inherit;background-clip:padding-box;cursor:pointer;border:none;font-weight:600;transition:background-color .2s ease-in-out,border-color .2s ease-in-out,box-shadow .2s ease-in-out,color .2s ease-in-out}.button__fd0b4560::-moz-focus-inner{border:none;padding:0}.button__fd0b4560.sm__26f5db5c{border-radius:6px;line-height:16px;font-size:12px}.button__fd0b4560.sm__26f5db5c:not(.icon__e1df547a){height:28px;min-width:58px;padding:0 16px}.button__fd0b4560.sm__26f5db5c.icon__e1df547a{min-height:28px;min-width:28px;padding:4px}.button__fd0b4560.md__6394704e{border-radius:8px;line-height:20px;font-size:14px}.button__fd0b4560.md__6394704e:not(.icon__e1df547a){height:40px;min-width:72px;padding:0 20px}.button__fd0b4560.md__6394704e.icon__e1df547a{min-height:40px;min-width:40px;padding:10px}.button__fd0b4560.lg__2867d917{border-radius:10px;line-height:20px;font-size:16px}.button__fd0b4560.lg__2867d917:not(.icon__e1df547a){height:56px;min-width:84px;padding:0 24px}.button__fd0b4560.lg__2867d917.icon__e1df547a{min-height:56px;min-width:56px;padding:12px}.button__fd0b4560:disabled{cursor:default}.button__fd0b4560:disabled *{pointer-events:none}.button__fd0b4560+.button__fd0b4560:not(.block__0c71d905){margin-left:16px}.button__fd0b4560 .content__66aab861{display:flex;position:relative;justify-content:center;align-items:center;white-space:nowrap}.button__fd0b4560.block__0c71d905{display:block;width:100%}.button__fd0b4560.loading__e0424351{pointer-events:none}.button__fd0b4560.loading__e0424351 .content__66aab861{visibility:hidden}.button__fd0b4560 .loader__2d679f54{position:absolute;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center}.button__fd0b4560 .loader__2d679f54.hidden__8750f8d8{visibility:hidden}.button__fd0b4560.general__af9a12ae{text-transform:none;background:var(--triplex-next-Button-General_Background_Default-0-1-9);color:var(--triplex-next-Button-General_Color_Default-0-1-9)}.button__fd0b4560.general__af9a12ae:hover{background:var(--triplex-next-Button-General_Background_Hover-0-1-9);color:var(--triplex-next-Button-General_Color_Hover-0-1-9)}.button__fd0b4560.general__af9a12ae.expanded__28205dfc,.button__fd0b4560.general__af9a12ae:active{background:var(--triplex-next-Button-General_Background_Active-0-1-9);color:var(--triplex-next-Button-General_Color_Active-0-1-9)}.button__fd0b4560.general__af9a12ae:focus-visible{box-shadow:var(--triplex-next-Button-General_Shadow_Focus-0-1-9)}.button__fd0b4560.general__af9a12ae:disabled{background:var(--triplex-next-Button-General_Background_Disabled-0-1-9);color:var(--triplex-next-Button-General_Color_Disabled-0-1-9)}.button__fd0b4560.secondary__ab14b525{text-transform:none;background:var(--triplex-next-Button-Secondary_Background_Default-0-1-9);color:var(--triplex-next-Button-Secondary_Color_Default-0-1-9)}.button__fd0b4560.secondary__ab14b525:hover{background:var(--triplex-next-Button-Secondary_Background_Hover-0-1-9);color:var(--triplex-next-Button-Secondary_Color_Hover-0-1-9)}.button__fd0b4560.secondary__ab14b525.expanded__28205dfc,.button__fd0b4560.secondary__ab14b525:active{background:var(--triplex-next-Button-Secondary_Background_Active-0-1-9);color:var(--triplex-next-Button-Secondary_Color_Active-0-1-9)}.button__fd0b4560.secondary__ab14b525:focus-visible{box-shadow:var(--triplex-next-Button-Secondary_Shadow_Focus-0-1-9)}.button__fd0b4560.secondary__ab14b525:disabled{background:var(--triplex-next-Button-Secondary_Background_Disabled-0-1-9);color:var(--triplex-next-Button-Secondary_Color_Disabled-0-1-9)}.button__fd0b4560.danger__7c1de1fc{text-transform:none;background:var(--triplex-next-Button-Danger_Background_Default-0-1-9);color:var(--triplex-next-Button-Danger_Color_Default-0-1-9)}.button__fd0b4560.danger__7c1de1fc:hover{background:var(--triplex-next-Button-Danger_Background_Hover-0-1-9);color:var(--triplex-next-Button-Danger_Color_Hover-0-1-9)}.button__fd0b4560.danger__7c1de1fc.expanded__28205dfc,.button__fd0b4560.danger__7c1de1fc:active{background:var(--triplex-next-Button-Danger_Background_Active-0-1-9);color:var(--triplex-next-Button-Danger_Color_Active-0-1-9)}.button__fd0b4560.danger__7c1de1fc:focus-visible{box-shadow:var(--triplex-next-Button-Danger_Shadow_Focus-0-1-9)}.button__fd0b4560.danger__7c1de1fc:disabled{background:var(--triplex-next-Button-Danger_Background_Disabled-0-1-9);color:var(--triplex-next-Button-Danger_Color_Disabled-0-1-9)}.button__fd0b4560.link__8d860367{text-transform:none;background:transparent;color:var(--triplex-next-Button-Link_Color_Default-0-1-9);border-radius:0}.button__fd0b4560.link__8d860367.md__6394704e{height:40px;min-width:0;padding:0 2px}.button__fd0b4560.link__8d860367.sm__26f5db5c{height:28px;min-width:0;padding:0 2px}.button__fd0b4560.link__8d860367.lg__2867d917{height:56px;min-width:0;padding:0 2px}.button__fd0b4560.link__8d860367:hover{color:var(--triplex-next-Button-Link_Color_Hover-0-1-9)}.button__fd0b4560.link__8d860367:active{color:var(--triplex-next-Button-Link_Color_Active-0-1-9)}.button__fd0b4560.link__8d860367:focus-visible{box-shadow:var(--triplex-next-Button-Link_Shadow_Focus-0-1-9)}.button__fd0b4560.link__8d860367:disabled{color:var(--triplex-next-Button-Link_Color_Disabled-0-1-9)}.dropdown__67fdf3ac{position:fixed;z-index:1500;box-sizing:border-box;box-shadow:var(--triplex-next-Dropdown-Shadow-0-1-9);background-color:var(--triplex-next-Dropdown-Background-0-1-9)}.dropdown-sm__8dd18102{border-radius:6px}.dropdown-md__b6ae4c77{border-radius:8px}.dropdown-lg__03c7d4bb{border-radius:10px}.dropdownOverflowHidden__893887fc{overflow:hidden}.buttonDropdownExtended__ba0a98fd{display:inline-block;position:relative;vertical-align:top;line-height:0}.buttonDropdownExtended__ba0a98fd .buttonDropdownExtendedBlock__e94b0f20{padding:4px;margin-top:4px;right:0}.buttonDropdown__f12fc422.block__0c71d905{display:block}.buttonDropdown__f12fc422+.button__fd0b4560:not(.block__0c71d905),.buttonDropdown__f12fc422+.buttonDropdown__f12fc422:not(.block__0c71d905){margin-left:16px}.buttonDropdown__f12fc422 .buttonDropdownTarget__e31554a0 .caretIcon__5e0f1548{position:relative;left:4px;transition:transform .3s ease-in-out}.buttonDropdown__f12fc422 .buttonDropdownTarget__e31554a0.active__527e161d .caretIcon__5e0f1548{transform:rotate(-180deg)}.buttonDropdown__f12fc422 .buttonDropdownMenuItem__6dee6621{overflow:hidden;text-overflow:ellipsis}.formFieldMaskedInputWrapper__a446ae98{position:relative}.formFieldMaskedInputWrapper__a446ae98 .formFieldMaskedInputPlaceholder__863170ea{position:absolute;left:0;top:0}.formFieldMaskedInputWrapper__a446ae98 .formFieldMaskedInputPlaceholder__863170ea::placeholder{opacity:1}.formFieldMaskedInputWrapper__a446ae98.size-sm__64b9b1f5{font-size:12px;line-height:16px}.formFieldMaskedInputWrapper__a446ae98.size-sm__64b9b1f5 .formFieldMaskedInputPlaceholder__863170ea{top:5px;font-size:12px;line-height:16px}.formFieldMaskedInputWrapper__a446ae98.size-md__90671c7c{font-size:14px;line-height:20px}.formFieldMaskedInputWrapper__a446ae98.size-md__90671c7c .formFieldMaskedInputPlaceholder__863170ea{top:9px;font-size:14px;line-height:20px}.formFieldMaskedInputWrapper__a446ae98.size-lg__4e576499{font-size:16px;line-height:20px}.formFieldMaskedInputWrapper__a446ae98.size-lg__4e576499 .formFieldMaskedInputPlaceholder__863170ea{top:25px;font-size:16px;line-height:20px}.formFieldMaskedInputWrapper__a446ae98 .formFieldMaskedInput__4a93c7b3{display:block;position:relative;background:none!important}.listItemTable__29dd5203{margin-bottom:4px}.listItemTable__29dd5203:last-child{margin-bottom:0}.listSortableItem__1dcb979c{position:relative}.listSortableItem__1dcb979c.dragging__ee9b0408{z-index:1}.segmentedControlSegment__2f127d16{display:flex;flex-grow:1;align-items:center;justify-content:center;overflow:hidden;border:1px solid var(--triplex-next-SegmentedControlSegment-BorderColor_Default-0-1-9);outline:none;cursor:pointer}.segmentedControlSegment__2f127d16:disabled{cursor:default}.sm__eeaeb487 .segmentedControlSegment__2f127d16{min-height:20px;padding:2px;font-size:12px;line-height:16px;border-radius:4px}.md__e0ec547a .segmentedControlSegment__2f127d16{min-height:32px;padding:6px;font-size:14px;line-height:20px;border-radius:6px}.lg__29a8566d .segmentedControlSegment__2f127d16{min-height:40px;padding:8px;font-size:16px;line-height:20px;border-radius:8px}.general1__e131024b .segmentedControlSegment__2f127d16{color:var(--triplex-next-SegmentedControlSegment-General_1_Color_Default-0-1-9);background:var(--triplex-next-SegmentedControlSegment-General_1_Background_Default-0-1-9)}.general1__e131024b .segmentedControlSegment__2f127d16:hover{color:var(--triplex-next-SegmentedControlSegment-General_1_Color_Hover-0-1-9);background:var(--triplex-next-SegmentedControlSegment-General_1_Background_Hover-0-1-9)}.general1__e131024b .segmentedControlSegment__2f127d16:disabled{color:var(--triplex-next-SegmentedControlSegment-General_1_Color_Disabled-0-1-9);background:var(--triplex-next-SegmentedControlSegment-General_1_Background_Disabled-0-1-9)}.general1__e131024b .segmentedControlSegment__2f127d16.selected__1f3b91b0{color:var(--triplex-next-SegmentedControlSegment-General_1_Color_Selected_Default-0-1-9);background:var(--triplex-next-SegmentedControlSegment-General_1_Background_Selected_Default-0-1-9)}.general1__e131024b .segmentedControlSegment__2f127d16.selected__1f3b91b0:hover{color:var(--triplex-next-SegmentedControlSegment-General_1_Color_Selected_Hover-0-1-9);background:var(--triplex-next-SegmentedControlSegment-General_1_Background_Selected_Hover-0-1-9)}.general1__e131024b .segmentedControlSegment__2f127d16.selected__1f3b91b0:disabled{color:var(--triplex-next-SegmentedControlSegment-General_1_Color_Selected_Disabled-0-1-9);background:var(--triplex-next-SegmentedControlSegment-General_1_Background_Selected_Disabled-0-1-9)}.general2__f298a47d .segmentedControlSegment__2f127d16{color:var(--triplex-next-SegmentedControlSegment-General_2_Color_Default-0-1-9);background:var(--triplex-next-SegmentedControlSegment-General_2_Background_Default-0-1-9)}.general2__f298a47d .segmentedControlSegment__2f127d16:hover{color:var(--triplex-next-SegmentedControlSegment-General_2_Color_Hover-0-1-9);background:var(--triplex-next-SegmentedControlSegment-General_2_Background_Hover-0-1-9)}.general2__f298a47d .segmentedControlSegment__2f127d16:disabled{color:var(--triplex-next-SegmentedControlSegment-General_2_Color_Disabled-0-1-9);background:var(--triplex-next-SegmentedControlSegment-General_2_Background_Disabled-0-1-9)}.general2__f298a47d .segmentedControlSegment__2f127d16.selected__1f3b91b0{color:var(--triplex-next-SegmentedControlSegment-General_2_Color_Selected_Default-0-1-9);background:var(--triplex-next-SegmentedControlSegment-General_2_Background_Selected_Default-0-1-9)}.general2__f298a47d .segmentedControlSegment__2f127d16.selected__1f3b91b0:hover{color:var(--triplex-next-SegmentedControlSegment-General_2_Color_Selected_Hover-0-1-9);background:var(--triplex-next-SegmentedControlSegment-General_2_Background_Selected_Hover-0-1-9)}.general2__f298a47d .segmentedControlSegment__2f127d16.selected__1f3b91b0:disabled{color:var(--triplex-next-SegmentedControlSegment-General_2_Color_Selected_Disabled-0-1-9);background:var(--triplex-next-SegmentedControlSegment-General_2_Background_Selected_Disabled-0-1-9)}.secondary1__9ed97801 .segmentedControlSegment__2f127d16{color:var(--triplex-next-SegmentedControlSegment-Secondary_1_Color_Default-0-1-9);background:var(--triplex-next-SegmentedControlSegment-Secondary_1_Background_Default-0-1-9)}.secondary1__9ed97801 .segmentedControlSegment__2f127d16:hover{color:var(--triplex-next-SegmentedControlSegment-Secondary_1_Color_Hover-0-1-9);background:var(--triplex-next-SegmentedControlSegment-Secondary_1_Background_Hover-0-1-9)}.secondary1__9ed97801 .segmentedControlSegment__2f127d16:disabled{color:var(--triplex-next-SegmentedControlSegment-Secondary_1_Color_Disabled-0-1-9);background:var(--triplex-next-SegmentedControlSegment-Secondary_1_Background_Disabled-0-1-9)}.secondary1__9ed97801 .segmentedControlSegment__2f127d16.selected__1f3b91b0{color:var(--triplex-next-SegmentedControlSegment-Secondary_1_Color_Selected_Default-0-1-9);background:var(--triplex-next-SegmentedControlSegment-Secondary_1_Background_Selected_Default-0-1-9)}.secondary1__9ed97801 .segmentedControlSegment__2f127d16.selected__1f3b91b0:disabled{color:var(--triplex-next-SegmentedControlSegment-Secondary_1_Color_Selected_Disabled-0-1-9);background:var(--triplex-next-SegmentedControlSegment-Secondary_1_Background_Selected_Disabled-0-1-9)}.secondary2__926993a6 .segmentedControlSegment__2f127d16{color:var(--triplex-next-SegmentedControlSegment-Secondary_2_Color_Default-0-1-9);background:var(--triplex-next-SegmentedControlSegment-Secondary_2_Background_Default-0-1-9)}.secondary2__926993a6 .segmentedControlSegment__2f127d16:hover{color:var(--triplex-next-SegmentedControlSegment-Secondary_2_Color_Hover-0-1-9);background:var(--triplex-next-SegmentedControlSegment-Secondary_2_Background_Hover-0-1-9)}.secondary2__926993a6 .segmentedControlSegment__2f127d16:disabled{color:var(--triplex-next-SegmentedControlSegment-Secondary_2_Color_Disabled-0-1-9);background:var(--triplex-next-SegmentedControlSegment-Secondary_2_Background_Disabled-0-1-9)}.secondary2__926993a6 .segmentedControlSegment__2f127d16.selected__1f3b91b0{color:var(--triplex-next-SegmentedControlSegment-Secondary_2_Color_Selected_Default-0-1-9);background:var(--triplex-next-SegmentedControlSegment-Secondary_2_Background_Selected_Default-0-1-9)}.secondary2__926993a6 .segmentedControlSegment__2f127d16.selected__1f3b91b0:disabled{color:var(--triplex-next-SegmentedControlSegment-Secondary_2_Color_Selected_Disabled-0-1-9);background:var(--triplex-next-SegmentedControlSegment-Secondary_2_Background_Selected_Disabled-0-1-9)}.segmentedControlSegment__2f127d16:focus-visible{border-color:var(--triplex-next-SegmentedControlSegment-BorderColor_Focus-0-1-9)}.content__dff06a16{position:relative;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.segmentedControl__da9a54e5{display:flex;gap:4px}.segmentedControl__da9a54e5.general1__e131024b{background:var(--triplex-next-SegmentedControl-General_1_Background-0-1-9)}.segmentedControl__da9a54e5.secondary1__9ed97801{background:var(--triplex-next-SegmentedControl-Secondary_1_Background-0-1-9)}.segmentedControl__da9a54e5.general2__f298a47d{background:var(--triplex-next-SegmentedControl-General_2_Background-0-1-9)}.segmentedControl__da9a54e5.secondary2__926993a6{background:var(--triplex-next-SegmentedControl-Secondary_2_Background-0-1-9)}.segmentedControl__da9a54e5.sm__eeaeb487{padding:4px}.segmentedControl__da9a54e5.md__e0ec547a{padding:6px}.segmentedControl__da9a54e5.lg__29a8566d{padding:8px}.skeleton__3e42577f{border-radius:16px;flex-grow:1}.skeleton__3e42577f.light__dd0c7ef3{animation:skeleton-light-pulse__70be5729 2s ease-in-out infinite}.skeleton__3e42577f.dark__780d27af{animation:skeleton-dark-pulse__6c3cbf92 2s ease-in-out infinite}@keyframes skeleton-light-pulse__70be5729{0%{background-color:var(--triplex-next-Skeleton-BackgroundColor_Light_Start-0-1-9)}50%{background-color:var(--triplex-next-Skeleton-BackgroundColor_Light_End-0-1-9)}to{background-color:var(--triplex-next-Skeleton-BackgroundColor_Light_Start-0-1-9)}}@keyframes skeleton-dark-pulse__6c3cbf92{0%{background-color:var(--triplex-next-Skeleton-BackgroundColor_Dark_Start-0-1-9)}50%{background-color:var(--triplex-next-Skeleton-BackgroundColor_Dark_End-0-1-9)}to{background-color:var(--triplex-next-Skeleton-BackgroundColor_Dark_Start-0-1-9)}}.tooltipDesktop__f17643f7{display:flex;position:absolute;top:0;left:0;outline:none;pointer-events:auto;z-index:10000}.tooltipDesktop__f17643f7 .tooltipBody__a66b52b9{text-align:left;font-weight:400;font-size:14px;line-height:20px;color:var(--triplex-next-Tooltip-Color-0-1-9)}.tooltipDesktop__f17643f7 .tooltipXButton__d93f48dc{position:absolute;right:8px;top:8px}.tooltipDesktopContent__b2550c9f{position:relative;padding:16px;box-sizing:border-box;overflow-y:auto;background-color:var(--triplex-next-Tooltip-Background-0-1-9);border-radius:8px}.closable__74a52f90 .tooltipDesktopContent__b2550c9f{padding-right:32px}.tooltipSM__6500a46a .tooltipDesktopContent__b2550c9f{width:192px;min-height:52px}.tooltipLG__df082fba .tooltipDesktopContent__b2550c9f{width:384px;min-height:52px}.tooltipOverlay__62edb7df{position:fixed;top:0;bottom:0;right:0;left:0;pointer-events:none;z-index:9999}.tooltipDesktopTip__3fef0f25{width:0;height:0}.tooltipDesktopTip__3fef0f25.down__5f224fa8{border-top:solid var(--triplex-next-Tooltip-Background-0-1-9);border-right:solid transparent;border-left:solid transparent}.tooltipDesktopTip__3fef0f25.up__8fc222c1{border-bottom:solid var(--triplex-next-Tooltip-Background-0-1-9);border-right:solid transparent;border-left:solid transparent}.tooltipDesktopTip__3fef0f25.left__913b4c83{border-right:solid var(--triplex-next-Tooltip-Background-0-1-9);border-top:solid transparent;border-bottom:solid transparent}.tooltipDesktopTip__3fef0f25.right__ec6288b1{border-left:solid var(--triplex-next-Tooltip-Background-0-1-9);border-top:solid transparent;border-bottom:solid transparent}.overlay__fbbee7f1{position:absolute;left:-10000px;visibility:hidden;top:0;bottom:0;overflow:hidden}.overlay__fbbee7f1.fixed__9c69c763{position:fixed}.overlay__fbbee7f1.closing__cb934e86,.overlay__fbbee7f1.opened__8b278851{visibility:visible;left:0;right:0}.overlayPanel__5121ba33{position:absolute;background:var(--triplex-next-Overlay-Panel_Background-0-1-9);overflow:auto;transition:transform .3s ease-in-out}.overlayPanel__5121ba33.bottom__cab80950{left:0;right:0;bottom:0;transform:translateY(100%);box-shadow:0 -13px 17px #00000024}.overlayPanel__5121ba33.left__5390d15f{left:0;top:0;height:100%;transform:translate(-100%);box-shadow:13px 0 17px #00000024}.overlayPanel__5121ba33.right__4cdc916c{right:0;top:0;height:100%;transform:translate(100%);box-shadow:-13px 0 17px #00000024}.overlayPanel__5121ba33.top__0ca45deb{left:0;top:0;right:0;transform:translateY(-100%);box-shadow:0 13px 17px #00000024}.overlayPanel__5121ba33.left__5390d15f.opened__8b278851,.overlayPanel__5121ba33.right__4cdc916c.opened__8b278851{transform:translate(0)}.overlayPanel__5121ba33.top__0ca45deb.opened__8b278851,.overlayPanel__5121ba33.bottom__cab80950.opened__8b278851{transform:translateY(0)}.overlayContent__1727dc30{display:flex;min-height:100%}.overlayMask__f4d21acd{width:100%;bottom:0;left:0;top:0;position:absolute;background:var(--triplex-next-Overlay-Background-0-1-9);opacity:0;transition:opacity .3s ease-in-out}.overlayMask__f4d21acd.overlayOpened__960e6b83{opacity:1}.listMasterFooter__6f9f06ff{padding:16px;background:var(--triplex-next-ListMaster-Footer_Background-0-1-9);color:var(--triplex-next-ListMaster-Footer_Color-0-1-9);display:flex;justify-content:space-between;align-items:center}.listMasterFooter__6f9f06ff.sticky__c6955ea3{position:sticky;bottom:0}.listMasterFooterDescription__859bbb8a{padding-right:16px}.listMasterFooterControls__921c0ac9{white-space:nowrap}.tooltipMobile__5a4b582f .tooltipBody__a66b52b9{text-align:left}.tooltipMobile__5a4b582f .tooltipXButton__d93f48dc{position:absolute;right:16px;top:16px}.tooltipMobileContent__b145fdc1{padding:16px}.headerless__d68fc936 .tooltipMobileContent__b145fdc1{padding-right:40px}.tooltipLink__7f9e1238{font-weight:400;font-size:14px;line-height:20px;text-decoration:none;cursor:pointer;display:block;margin-top:16px}.desktop__558576b3{color:var(--triplex-next-Tooltip-Link_Desktop_Color_Default-0-1-9)}.desktop__558576b3:hover{color:var(--triplex-next-Tooltip-Link_Desktop_Color_Hover-0-1-9)}.desktop__558576b3:active{color:var(--triplex-next-Tooltip-Link_Desktop_Color_Active-0-1-9)}.desktop__558576b3:focus-visible{outline:none;box-shadow:var(--triplex-next-Tooltip-Link_Desktop_Shadow_Focus-0-1-9)}.mobile__4403db34{color:var(--triplex-next-Tooltip-Link_Mobile_Color_Default-0-1-9)}.mobile__4403db34:hover{color:var(--triplex-next-Tooltip-Link_Mobile_Color_Hover-0-1-9)}.mobile__4403db34:active{color:var(--triplex-next-Tooltip-Link_Mobile_Color_Active-0-1-9)}.mobile__4403db34:focus-visible{outline:none;box-shadow:var(--triplex-next-Tooltip-Link_Mobile_Shadow_Focus-0-1-9)}.listMasterChipGroup__39bea492{padding:0 16px}.listMasterHeader__553ede96{padding:12px 16px;background:var(--triplex-next-ListMaster-Header_Background-0-1-9);color:var(--triplex-next-ListMaster-Header_Color-0-1-9)}.listMasterHeader__553ede96.sticky__c6955ea3{position:sticky;top:0;z-index:1}.selectionControls__f44e19a7{display:flex;justify-content:space-between;align-items:center}.uploadZone__47c77f0f{border-radius:8px;position:relative;background:var(--triplex-next-UploadZone-Background_Default-0-1-9)}.uploadZone__47c77f0f:hover{background:var(--triplex-next-UploadZone-Background_Hover-0-1-9)}.uploadZoneDragArea__fadac83d{position:absolute;top:0;right:0;bottom:0;left:0;cursor:pointer;border:1px dashed var(--triplex-next-UploadZone-BorderColor_Default-0-1-9);border-radius:8px;box-sizing:border-box}.uploadZoneContainerDragArea__f27046be{position:absolute;top:0;right:0;bottom:0;left:0;cursor:pointer;border:1px dashed var(--triplex-next-UploadZone-BorderColor_Default-0-1-9);height:100%;background:var(--triplex-next-UploadZone-DragArea_Background-0-1-9);border:1px dashed var(--triplex-next-UploadZone-DragArea_BorderColor-0-1-9);border-radius:8px;box-sizing:border-box}.uploadZoneInput__d897b7cb{display:none}
|
|
1
|
+
html {--triplex-next-ColorBrand-0-1-1-0: #1F3336;
|
|
2
|
+
--triplex-next-ColorBrand-10-1-1-0: #0B3A3C;
|
|
3
|
+
--triplex-next-ColorBrand-20-1-1-0: #006063;
|
|
4
|
+
--triplex-next-ColorBrand-30-1-1-0: #007777;
|
|
5
|
+
--triplex-next-ColorBrand-40-1-1-0: #008985;
|
|
6
|
+
--triplex-next-ColorBrand-50-1-1-0: #21A19A;
|
|
7
|
+
--triplex-next-ColorBrand-60-1-1-0: #19BDB0;
|
|
8
|
+
--triplex-next-ColorBrand-70-1-1-0: #4BD9CF;
|
|
9
|
+
--triplex-next-ColorBrand-80-1-1-0: #71ECDC;
|
|
10
|
+
--triplex-next-ColorBrand-90-1-1-0: #A8F5E9;
|
|
11
|
+
--triplex-next-ColorBrand-100-1-1-0: #E3FFFA;
|
|
12
|
+
--triplex-next-ColorDarkNeutralAlpha-0-1-1-0: rgba(31, 31, 34, 1);
|
|
13
|
+
--triplex-next-ColorDarkNeutralAlpha-10-1-1-0: rgba(31, 31, 34, .95);
|
|
14
|
+
--triplex-next-ColorDarkNeutralAlpha-20-1-1-0: rgba(31, 31, 34, .85);
|
|
15
|
+
--triplex-next-ColorDarkNeutralAlpha-30-1-1-0: rgba(31, 31, 34, .75);
|
|
16
|
+
--triplex-next-ColorDarkNeutralAlpha-40-1-1-0: rgba(31, 31, 34, .65);
|
|
17
|
+
--triplex-next-ColorDarkNeutralAlpha-50-1-1-0: rgba(31, 31, 34, .55);
|
|
18
|
+
--triplex-next-ColorDarkNeutralAlpha-60-1-1-0: rgba(31, 31, 34, .45);
|
|
19
|
+
--triplex-next-ColorDarkNeutralAlpha-70-1-1-0: rgba(31, 31, 34, .35);
|
|
20
|
+
--triplex-next-ColorDarkNeutralAlpha-80-1-1-0: rgba(31, 31, 34, .25);
|
|
21
|
+
--triplex-next-ColorDarkNeutralAlpha-90-1-1-0: rgba(31, 31, 34, .15);
|
|
22
|
+
--triplex-next-ColorDarkNeutralAlpha-100-1-1-0: rgba(31, 31, 34, .05);
|
|
23
|
+
--triplex-next-ColorDarkNeutral-0-1-1-0: #000000;
|
|
24
|
+
--triplex-next-ColorDarkNeutral-10-1-1-0: #171719;
|
|
25
|
+
--triplex-next-ColorDarkNeutral-20-1-1-0: #1B1B1D;
|
|
26
|
+
--triplex-next-ColorDarkNeutral-30-1-1-0: #1F1F22;
|
|
27
|
+
--triplex-next-ColorDarkNeutral-40-1-1-0: #262629;
|
|
28
|
+
--triplex-next-ColorDarkNeutral-50-1-1-0: #2D2D30;
|
|
29
|
+
--triplex-next-ColorDarkNeutral-60-1-1-0: #343437;
|
|
30
|
+
--triplex-next-ColorDarkNeutral-70-1-1-0: #3B3B3E;
|
|
31
|
+
--triplex-next-ColorDarkNeutral-80-1-1-0: #424245;
|
|
32
|
+
--triplex-next-ColorDarkNeutral-90-1-1-0: #49494C;
|
|
33
|
+
--triplex-next-ColorDarkNeutral-100-1-1-0: #4F4F52;
|
|
34
|
+
--triplex-next-ColorError-0-1-1-0: #443139;
|
|
35
|
+
--triplex-next-ColorError-10-1-1-0: #4E3741;
|
|
36
|
+
--triplex-next-ColorError-20-1-1-0: #A90024;
|
|
37
|
+
--triplex-next-ColorError-30-1-1-0: #BD002C;
|
|
38
|
+
--triplex-next-ColorError-40-1-1-0: #D10032;
|
|
39
|
+
--triplex-next-ColorError-50-1-1-0: #E60037;
|
|
40
|
+
--triplex-next-ColorError-60-1-1-0: #F80C45;
|
|
41
|
+
--triplex-next-ColorError-70-1-1-0: #FF5571;
|
|
42
|
+
--triplex-next-ColorError-80-1-1-0: #FFB1C1;
|
|
43
|
+
--triplex-next-ColorError-90-1-1-0: #FCE0E6;
|
|
44
|
+
--triplex-next-ColorError-100-1-1-0: #FFF0F3;
|
|
45
|
+
--triplex-next-ColorInfo-0-1-1-0: #313749;
|
|
46
|
+
--triplex-next-ColorInfo-10-1-1-0: #2E3A52;
|
|
47
|
+
--triplex-next-ColorInfo-20-1-1-0: #0A43B0;
|
|
48
|
+
--triplex-next-ColorInfo-30-1-1-0: #124FC2;
|
|
49
|
+
--triplex-next-ColorInfo-40-1-1-0: #0E57CC;
|
|
50
|
+
--triplex-next-ColorInfo-50-1-1-0: #1371E4;
|
|
51
|
+
--triplex-next-ColorInfo-60-1-1-0: #1297FE;
|
|
52
|
+
--triplex-next-ColorInfo-70-1-1-0: #66BEFF;
|
|
53
|
+
--triplex-next-ColorInfo-80-1-1-0: #8DD2FF;
|
|
54
|
+
--triplex-next-ColorInfo-90-1-1-0: #B8E6FF;
|
|
55
|
+
--triplex-next-ColorInfo-100-1-1-0: #E3F6FF;
|
|
56
|
+
--triplex-next-ColorNeutralAlpha-0-1-1-0: rgba(255, 255, 255, 1);
|
|
57
|
+
--triplex-next-ColorNeutralAlpha-10-1-1-0: rgba(255, 255, 255, .95);
|
|
58
|
+
--triplex-next-ColorNeutralAlpha-20-1-1-0: rgba(255, 255, 255, .85);
|
|
59
|
+
--triplex-next-ColorNeutralAlpha-30-1-1-0: rgba(255, 255, 255, .75);
|
|
60
|
+
--triplex-next-ColorNeutralAlpha-40-1-1-0: rgba(255, 255, 255, .65);
|
|
61
|
+
--triplex-next-ColorNeutralAlpha-50-1-1-0: rgba(255, 255, 255, .55);
|
|
62
|
+
--triplex-next-ColorNeutralAlpha-60-1-1-0: rgba(255, 255, 255, .45);
|
|
63
|
+
--triplex-next-ColorNeutralAlpha-70-1-1-0: rgba(255, 255, 255, .35);
|
|
64
|
+
--triplex-next-ColorNeutralAlpha-80-1-1-0: rgba(255, 255, 255, .25);
|
|
65
|
+
--triplex-next-ColorNeutralAlpha-90-1-1-0: rgba(255, 255, 255, .15);
|
|
66
|
+
--triplex-next-ColorNeutralAlpha-100-1-1-0: rgba(255, 255, 255, .05);
|
|
67
|
+
--triplex-next-ColorNeutral-0-1-1-0: #CBCFD7;
|
|
68
|
+
--triplex-next-ColorNeutral-10-1-1-0: #D1D4DC;
|
|
69
|
+
--triplex-next-ColorNeutral-20-1-1-0: #D6D9E0;
|
|
70
|
+
--triplex-next-ColorNeutral-30-1-1-0: #DCDFE4;
|
|
71
|
+
--triplex-next-ColorNeutral-40-1-1-0: #DFE2E7;
|
|
72
|
+
--triplex-next-ColorNeutral-50-1-1-0: #E3E6EA;
|
|
73
|
+
--triplex-next-ColorNeutral-60-1-1-0: #E7E9EE;
|
|
74
|
+
--triplex-next-ColorNeutral-70-1-1-0: #EAEDF1;
|
|
75
|
+
--triplex-next-ColorNeutral-80-1-1-0: #EEF0F4;
|
|
76
|
+
--triplex-next-ColorNeutral-90-1-1-0: #F2F4F7;
|
|
77
|
+
--triplex-next-ColorNeutral-100-1-1-0: #FFFFFF;
|
|
78
|
+
--triplex-next-ColorSuccess-0-1-1-0: #28433E;
|
|
79
|
+
--triplex-next-ColorSuccess-10-1-1-0: #2A4C45;
|
|
80
|
+
--triplex-next-ColorSuccess-20-1-1-0: #00624C;
|
|
81
|
+
--triplex-next-ColorSuccess-30-1-1-0: #007353;
|
|
82
|
+
--triplex-next-ColorSuccess-40-1-1-0: #008B5C;
|
|
83
|
+
--triplex-next-ColorSuccess-50-1-1-0: #00C075;
|
|
84
|
+
--triplex-next-ColorSuccess-60-1-1-0: #00D67D;
|
|
85
|
+
--triplex-next-ColorSuccess-70-1-1-0: #3AF299;
|
|
86
|
+
--triplex-next-ColorSuccess-80-1-1-0: #8AFFB8;
|
|
87
|
+
--triplex-next-ColorSuccess-90-1-1-0: #B8FFD4;
|
|
88
|
+
--triplex-next-ColorSuccess-100-1-1-0: #E1FFEB;
|
|
89
|
+
--triplex-next-ColorSystem-0-1-1-0: #373C49;
|
|
90
|
+
--triplex-next-ColorSystem-10-1-1-0: #384156;
|
|
91
|
+
--triplex-next-ColorSystem-20-1-1-0: #47526D;
|
|
92
|
+
--triplex-next-ColorSystem-30-1-1-0: #57637F;
|
|
93
|
+
--triplex-next-ColorSystem-40-1-1-0: #697591;
|
|
94
|
+
--triplex-next-ColorSystem-50-1-1-0: #8291B3;
|
|
95
|
+
--triplex-next-ColorSystem-60-1-1-0: #95A3C1;
|
|
96
|
+
--triplex-next-ColorSystem-70-1-1-0: #A9B6D0;
|
|
97
|
+
--triplex-next-ColorSystem-80-1-1-0: #BFCADF;
|
|
98
|
+
--triplex-next-ColorSystem-90-1-1-0: #D6DEED;
|
|
99
|
+
--triplex-next-ColorSystem-100-1-1-0: #EEF3FC;
|
|
100
|
+
--triplex-next-ColorWarning-0-1-1-0: #463734;
|
|
101
|
+
--triplex-next-ColorWarning-10-1-1-0: #4F3E3B;
|
|
102
|
+
--triplex-next-ColorWarning-20-1-1-0: #E03400;
|
|
103
|
+
--triplex-next-ColorWarning-30-1-1-0: #E63D00;
|
|
104
|
+
--triplex-next-ColorWarning-40-1-1-0: #EF4C01;
|
|
105
|
+
--triplex-next-ColorWarning-50-1-1-0: #FD6508;
|
|
106
|
+
--triplex-next-ColorWarning-60-1-1-0: #FF7A17;
|
|
107
|
+
--triplex-next-ColorWarning-70-1-1-0: #FFB13B;
|
|
108
|
+
--triplex-next-ColorWarning-80-1-1-0: #FFD169;
|
|
109
|
+
--triplex-next-ColorWarning-90-1-1-0: #FFE7B1;
|
|
110
|
+
--triplex-next-ColorWarning-100-1-1-0: #FFF4DB;
|
|
111
|
+
--triplex-next-Button-General_Background_Active-1-1-0: #007777;
|
|
112
|
+
--triplex-next-Button-General_Background_Default-1-1-0: #21A19A;
|
|
113
|
+
--triplex-next-Button-General_Background_Disabled-1-1-0: #F2F4F7;
|
|
114
|
+
--triplex-next-Button-General_Background_Hover-1-1-0: #19BDB0;
|
|
115
|
+
--triplex-next-Button-General_Color_Active-1-1-0: rgba(255, 255, 255, 1);
|
|
116
|
+
--triplex-next-Button-General_Color_Default-1-1-0: rgba(255, 255, 255, 1);
|
|
117
|
+
--triplex-next-Button-General_Color_Disabled-1-1-0: rgba(31, 31, 34, .35);
|
|
118
|
+
--triplex-next-Button-General_Color_Hover-1-1-0: rgba(255, 255, 255, 1);
|
|
119
|
+
--triplex-next-Button-General_Shadow_Focus-1-1-0: 0 0 0 1px #FFD169 inset;
|
|
120
|
+
--triplex-next-Button-Secondary_Background_Active-1-1-0: #DCDFE4;
|
|
121
|
+
--triplex-next-Button-Secondary_Background_Default-1-1-0: #F2F4F7;
|
|
122
|
+
--triplex-next-Button-Secondary_Background_Disabled-1-1-0: #F2F4F7;
|
|
123
|
+
--triplex-next-Button-Secondary_Background_Hover-1-1-0: #EAEDF1;
|
|
124
|
+
--triplex-next-Button-Secondary_Color_Active-1-1-0: #007777;
|
|
125
|
+
--triplex-next-Button-Secondary_Color_Default-1-1-0: #008985;
|
|
126
|
+
--triplex-next-Button-Secondary_Color_Disabled-1-1-0: rgba(31, 31, 34, .35);
|
|
127
|
+
--triplex-next-Button-Secondary_Color_Hover-1-1-0: #21A19A;
|
|
128
|
+
--triplex-next-Button-Secondary_Shadow_Focus-1-1-0: 0 0 0 1px #FFD169 inset;
|
|
129
|
+
--triplex-next-Button-SecondaryLight_Background_Active-1-1-0: #DFE2E7;
|
|
130
|
+
--triplex-next-Button-SecondaryLight_Background_Default-1-1-0: #FFFFFF;
|
|
131
|
+
--triplex-next-Button-SecondaryLight_Background_Disabled-1-1-0: #F2F4F7;
|
|
132
|
+
--triplex-next-Button-SecondaryLight_Background_Hover-1-1-0: #EEF0F4;
|
|
133
|
+
--triplex-next-Button-SecondaryLight_Color_Active-1-1-0: #007777;
|
|
134
|
+
--triplex-next-Button-SecondaryLight_Color_Default-1-1-0: #008985;
|
|
135
|
+
--triplex-next-Button-SecondaryLight_Color_Disabled-1-1-0: rgba(31, 31, 34, .35);
|
|
136
|
+
--triplex-next-Button-SecondaryLight_Color_Hover-1-1-0: #21A19A;
|
|
137
|
+
--triplex-next-Button-SecondaryLight_Shadow_Focus-1-1-0: 0 0 0 1px #FFD169 inset;
|
|
138
|
+
--triplex-next-Button-Danger_Background_Active-1-1-0: #BD002C;
|
|
139
|
+
--triplex-next-Button-Danger_Background_Default-1-1-0: #E60037;
|
|
140
|
+
--triplex-next-Button-Danger_Background_Disabled-1-1-0: #F2F4F7;
|
|
141
|
+
--triplex-next-Button-Danger_Background_Hover-1-1-0: #F80C45;
|
|
142
|
+
--triplex-next-Button-Danger_Color_Active-1-1-0: rgba(255, 255, 255, 1);
|
|
143
|
+
--triplex-next-Button-Danger_Color_Default-1-1-0: rgba(255, 255, 255, 1);
|
|
144
|
+
--triplex-next-Button-Danger_Color_Disabled-1-1-0: rgba(31, 31, 34, .35);
|
|
145
|
+
--triplex-next-Button-Danger_Color_Hover-1-1-0: rgba(255, 255, 255, 1);
|
|
146
|
+
--triplex-next-Button-Danger_Shadow_Focus-1-1-0: 0 0 0 1px #FFD169 inset;
|
|
147
|
+
--triplex-next-Button-Icon_Shadow_Focus-1-1-0: 0 0 0 1px #FFD169;
|
|
148
|
+
--triplex-next-Button-Link_Color_Active-1-1-0: #007777;
|
|
149
|
+
--triplex-next-Button-Link_Color_Default-1-1-0: #008985;
|
|
150
|
+
--triplex-next-Button-Link_Color_Disabled-1-1-0: rgba(31, 31, 34, .35);
|
|
151
|
+
--triplex-next-Button-Link_Color_Hover-1-1-0: #21A19A;
|
|
152
|
+
--triplex-next-Button-Link_Shadow_Focus-1-1-0: 0 0 0 1px #FFD169 inset;
|
|
153
|
+
--triplex-next-Checkbox-Background_Checked_Default-1-1-0: #21A19A;
|
|
154
|
+
--triplex-next-Checkbox-Background_Checked_Hover-1-1-0: #007777;
|
|
155
|
+
--triplex-next-Checkbox-Background_Default-1-1-0: #F2F4F7;
|
|
156
|
+
--triplex-next-Checkbox-Background_Disabled-1-1-0: rgba(31, 31, 34, .15);
|
|
157
|
+
--triplex-next-Checkbox-BorderColor_Focus-1-1-0: 0 0 0 1px #FFD169 inset;
|
|
158
|
+
--triplex-next-Checkbox-Checkmark_Fill_Default-1-1-0: rgba(255, 255, 255, 1);
|
|
159
|
+
--triplex-next-Checkbox-Checkmark_Fill_Disabled-1-1-0: rgba(31, 31, 34, .15);
|
|
160
|
+
--triplex-next-Checkbox-Color_Default-1-1-0: rgba(31, 31, 34, 1);
|
|
161
|
+
--triplex-next-Checkbox-Color_Disabled-1-1-0: rgba(31, 31, 34, .35);
|
|
162
|
+
--triplex-next-FormField-Background_Active-1-1-0: #F2F4F7;
|
|
163
|
+
--triplex-next-FormField-Background_Default-1-1-0: #F2F4F7;
|
|
164
|
+
--triplex-next-FormField-Background_Disabled-1-1-0: #F2F4F7;
|
|
165
|
+
--triplex-next-FormField-Background_Error-1-1-0: #FFF0F3;
|
|
166
|
+
--triplex-next-FormField-Background_Error_Hover-1-1-0: #FCE0E6;
|
|
167
|
+
--triplex-next-FormField-Background_Hover-1-1-0: #EAEDF1;
|
|
168
|
+
--triplex-next-FormField-Background_Warning-1-1-0: #FFF4DB;
|
|
169
|
+
--triplex-next-FormField-Background_Warning_Hover-1-1-0: #FFE7B1;
|
|
170
|
+
--triplex-next-FormField-Input_Color_Default-1-1-0: rgba(31, 31, 34, 1);
|
|
171
|
+
--triplex-next-FormField-Input_Color_Disabled-1-1-0: rgba(31, 31, 34, .45);
|
|
172
|
+
--triplex-next-FormField-Target_Color_Default-1-1-0: rgba(31, 31, 34, 1);
|
|
173
|
+
--triplex-next-FormField-Target_Color_Disabled-1-1-0: rgba(31, 31, 34, .45);
|
|
174
|
+
--triplex-next-FormField-Target_PlaceholderColor_Default-1-1-0: rgba(31, 31, 34, .65);
|
|
175
|
+
--triplex-next-FormField-Label_Color_Default-1-1-0: rgba(31, 31, 34, .65);
|
|
176
|
+
--triplex-next-FormField-Label_Color_Disabled-1-1-0: rgba(31, 31, 34, .45);
|
|
177
|
+
--triplex-next-FormField-Shadow_Active-1-1-0: 0 0 0 1px #21A19A inset;
|
|
178
|
+
--triplex-next-FormField-Shadow_Default-1-1-0: none;
|
|
179
|
+
--triplex-next-FormField-Shadow_Error_Active-1-1-0: 0 0 0 1px #E60037 inset;
|
|
180
|
+
--triplex-next-FormField-Shadow_Warning_Active-1-1-0: 0 0 0 1px #FD6508 inset;
|
|
181
|
+
--triplex-next-FormField-Placeholder_Color-1-1-0: rgba(31, 31, 34, .65);
|
|
182
|
+
--triplex-next-Link-BorderColor_Focus-1-1-0: 0 0 0 1px #FFD169 inset;
|
|
183
|
+
--triplex-next-Link-Text_Color_Active-1-1-0: #007777;
|
|
184
|
+
--triplex-next-Link-Text_Color_Default-1-1-0: #008985;
|
|
185
|
+
--triplex-next-Link-Text_Color_Hover-1-1-0: #21A19A;
|
|
186
|
+
--triplex-next-Loader-Neutral_Background_Default-1-1-0: rgba(255, 255, 255, 1);
|
|
187
|
+
--triplex-next-Loader-Brand_Background_Default-1-1-0: #21A19A;
|
|
188
|
+
--triplex-next-LoaderWidget-Small_Backdrop_Default-1-1-0: rgba(255, 255, 255, .8);
|
|
189
|
+
--triplex-next-LoaderWidget-Middle_Backdrop_Default-1-1-0: #FFFFFF;
|
|
190
|
+
--triplex-next-LoaderWidget-Middle_Background_Default-1-1-0: #EEF0F4;
|
|
191
|
+
--triplex-next-Dropdown-Background-1-1-0: #FFFFFF;
|
|
192
|
+
--triplex-next-Dropdown-Shadow-1-1-0: 0px 2px 7px rgba(31, 31, 34, 0.25);
|
|
193
|
+
--triplex-next-DropdownList-Background_Active-1-1-0: #F2F4F7;
|
|
194
|
+
--triplex-next-DropdownList-Background_Default-1-1-0: none;
|
|
195
|
+
--triplex-next-DropdownList-Background_Selected-1-1-0: #DCDFE4;
|
|
196
|
+
--triplex-next-DropdownList-Color-1-1-0: rgba(31, 31, 34, 1);
|
|
197
|
+
--triplex-next-DropdownMobile-Backdrop-1-1-0: rgba(31, 31, 34, .65);
|
|
198
|
+
--triplex-next-DropdownMobile-Border_Color-1-1-0: #D6D9E0;
|
|
199
|
+
--triplex-next-DropdownMobile-Content_Background-1-1-0: #FFFFFF;
|
|
200
|
+
--triplex-next-DropdownMobile-Footer_Background-1-1-0: #FFFFFF;
|
|
201
|
+
--triplex-next-DropdownMobile-Header_Background-1-1-0: #F2F4F7;
|
|
202
|
+
--triplex-next-DropdownMobileList-Active_Background-1-1-0: #F2F4F7;
|
|
203
|
+
--triplex-next-DropdownMobileList-Selected_Background-1-1-0: #DCDFE4;
|
|
204
|
+
--triplex-next-Tabs-Background-1-1-0: #F2F4F7;
|
|
205
|
+
--triplex-next-Tabs-Tab_Background_Default-1-1-0: #F2F4F7;
|
|
206
|
+
--triplex-next-Tabs-Tab_Background_Hover-1-1-0: #DFE2E7;
|
|
207
|
+
--triplex-next-Tabs-Tab_Background_Selected-1-1-0: #FFFFFF;
|
|
208
|
+
--triplex-next-Tabs-Tab_BorderColor_Default-1-1-0: #F2F4F7;
|
|
209
|
+
--triplex-next-Tabs-Tab_BorderColor_Focus-1-1-0: 0 0 0 1px #FFD169 inset;
|
|
210
|
+
--triplex-next-Typography-Primary_Color-1-1-0: rgba(31, 31, 34, 1);
|
|
211
|
+
--triplex-next-Typography-Complementary_Color-1-1-0: rgba(31, 31, 34, .85);
|
|
212
|
+
--triplex-next-Typography-Secondary_Color-1-1-0: rgba(31, 31, 34, .65);
|
|
213
|
+
--triplex-next-Typography-Tertiary_Color-1-1-0: rgba(31, 31, 34, .55);
|
|
214
|
+
--triplex-next-Typography-Disabled_Color-1-1-0: rgba(31, 31, 34, .35);
|
|
215
|
+
--triplex-next-Typography-Brand_Color-1-1-0: #008985;
|
|
216
|
+
--triplex-next-Typography-Info_Color-1-1-0: #0E57CC;
|
|
217
|
+
--triplex-next-Typography-Success_Color-1-1-0: #008B5C;
|
|
218
|
+
--triplex-next-Typography-Error_Color-1-1-0: #D10032;
|
|
219
|
+
--triplex-next-Typography-Warning_Color-1-1-0: #EF4C01;
|
|
220
|
+
--triplex-next-Typography-System_Color-1-1-0: #697591;
|
|
221
|
+
--triplex-next-Tooltip-Background-1-1-0: #1B1B1D;
|
|
222
|
+
--triplex-next-Tooltip-Color-1-1-0: rgba(255, 255, 255, 1);
|
|
223
|
+
--triplex-next-Tooltip-Link_Desktop_Color_Active-1-1-0: #008985;
|
|
224
|
+
--triplex-next-Tooltip-Link_Desktop_Color_Default-1-1-0: #19BDB0;
|
|
225
|
+
--triplex-next-Tooltip-Link_Desktop_Color_Hover-1-1-0: #4BD9CF;
|
|
226
|
+
--triplex-next-Tooltip-Link_Desktop_Shadow_Focus-1-1-0: 0 0 0 1px #FFD169;
|
|
227
|
+
--triplex-next-Tooltip-Link_Mobile_Color_Active-1-1-0: #007777;
|
|
228
|
+
--triplex-next-Tooltip-Link_Mobile_Color_Default-1-1-0: #008985;
|
|
229
|
+
--triplex-next-Tooltip-Link_Mobile_Color_Hover-1-1-0: #21A19A;
|
|
230
|
+
--triplex-next-Tooltip-Link_Mobile_Shadow_Focus-1-1-0: 0 0 0 1px #FFDD64;
|
|
231
|
+
--triplex-next-AlertContext-Error_Color-1-1-0: #D10032;
|
|
232
|
+
--triplex-next-AlertContext-Info_Color-1-1-0: rgba(31, 31, 34, 1);
|
|
233
|
+
--triplex-next-AlertContext-System_Color-1-1-0: rgba(31, 31, 34, 1);
|
|
234
|
+
--triplex-next-AlertContext-Warning_Color-1-1-0: rgba(31, 31, 34, 1);
|
|
235
|
+
--triplex-next-AlertProcess-Info_Background-1-1-0: #E3F6FF;
|
|
236
|
+
--triplex-next-AlertProcess-Warning_Background-1-1-0: #FFF4DB;
|
|
237
|
+
--triplex-next-AlertProcess-Error_Background-1-1-0: #FFF0F3;
|
|
238
|
+
--triplex-next-AlertProcess-System_Background-1-1-0: #EEF3FC;
|
|
239
|
+
--triplex-next-AlertProcess-Feature_Background-1-1-0: #E3FFFA;
|
|
240
|
+
--triplex-next-Overlay-Background-1-1-0: rgba(255, 255, 255, .8);
|
|
241
|
+
--triplex-next-Overlay-Panel_Background-1-1-0: #FFFFFF;
|
|
242
|
+
--triplex-next-ListItem-Background-1-1-0: #FFFFFF;
|
|
243
|
+
--triplex-next-ListItem-Background_Dragging-1-1-0: #FFFFFF;
|
|
244
|
+
--triplex-next-ListItem-Background_Selected-1-1-0: #F2F4F7;
|
|
245
|
+
--triplex-next-ListItem-Shadow-1-1-0: 0 2px 7px rgba(31, 31, 34, 0.25);
|
|
246
|
+
--triplex-next-ListItemControlsButton-Background-1-1-0: #F2F4F7;
|
|
247
|
+
--triplex-next-ListItemControlsButton-Color-1-1-0: #171719;
|
|
248
|
+
--triplex-next-ListMaster-Background-1-1-0: #FFFFFF;
|
|
249
|
+
--triplex-next-ListMaster-Footer_Background-1-1-0: #DCDFE4;
|
|
250
|
+
--triplex-next-ListMaster-Footer_Color-1-1-0: #EAEDF1;
|
|
251
|
+
--triplex-next-ListMaster-Header_Background-1-1-0: #DCDFE4;
|
|
252
|
+
--triplex-next-ListMaster-Header_Color-1-1-0: #EAEDF1;
|
|
253
|
+
--triplex-next-Page-Background-1-1-0: #EAEDF1;
|
|
254
|
+
--triplex-next-Radio-Background_Checked_Default-1-1-0: #21A19A;
|
|
255
|
+
--triplex-next-Radio-Background_Checked_Disabled-1-1-0: rgba(31, 31, 34, .15);
|
|
256
|
+
--triplex-next-Radio-Background_Checked_Hover-1-1-0: #007777;
|
|
257
|
+
--triplex-next-Radio-Background_Default-1-1-0: #F2F4F7;
|
|
258
|
+
--triplex-next-Radio-Background_Disabled-1-1-0: #F2F4F7;
|
|
259
|
+
--triplex-next-Radio-Background_Hover-1-1-0: #19BDB0;
|
|
260
|
+
--triplex-next-Radio-BorderColor_Focused-1-1-0: 0 0 0 1px #FFD169 inset;
|
|
261
|
+
--triplex-next-Radio-Color_Default-1-1-0: rgba(31, 31, 34, 1);
|
|
262
|
+
--triplex-next-Radio-Color_Disabled-1-1-0: rgba(31, 31, 34, .35);
|
|
263
|
+
--triplex-next-Radio-Dot_Default-1-1-0: rgba(255, 255, 255, 1);
|
|
264
|
+
--triplex-next-Radio-Dot_Disabled-1-1-0: rgba(31, 31, 34, .15);
|
|
265
|
+
--triplex-next-UploadZone-Background_Default-1-1-0: #F2F4F7;
|
|
266
|
+
--triplex-next-UploadZone-Background_Hover-1-1-0: #EAEDF1;
|
|
267
|
+
--triplex-next-UploadZone-BorderColor_Default-1-1-0: rgba(31, 31, 34, .45);
|
|
268
|
+
--triplex-next-UploadZone-DragArea_Background-1-1-0: #F2F4F7;
|
|
269
|
+
--triplex-next-UploadZone-DragArea_BorderColor-1-1-0: #21A19A;
|
|
270
|
+
--triplex-next-Pagination-PageButton_Background_Active-1-1-0: #E3E6EA;
|
|
271
|
+
--triplex-next-Pagination-PageButton_Background_Hover-1-1-0: #F2F4F7;
|
|
272
|
+
--triplex-next-Pagination-PageButton_Background_Selected-1-1-0: #E3E6EA;
|
|
273
|
+
--triplex-next-Pagination-PageButton_BorderColor_Focus-1-1-0: #FFD169;
|
|
274
|
+
--triplex-next-Pagination-PageButton_Color-1-1-0: rgba(31, 31, 34, 1);
|
|
275
|
+
--triplex-next-Card-Static_General_Background-1-1-0: #FFFFFF;
|
|
276
|
+
--triplex-next-Card-Static_Secondary_Background-1-1-0: #F2F4F7;
|
|
277
|
+
--triplex-next-Card-Action_General_Background-1-1-0: #FFFFFF;
|
|
278
|
+
--triplex-next-Card-Action_General_Background_Hover-1-1-0: #FFFFFF;
|
|
279
|
+
--triplex-next-Card-Action_General_Background_Selected-1-1-0: #F2F4F7;
|
|
280
|
+
--triplex-next-Card-Action_General_Background_Selected_Hover-1-1-0: #EAEDF1;
|
|
281
|
+
--triplex-next-Card-Action_Secondary_Background-1-1-0: #F2F4F7;
|
|
282
|
+
--triplex-next-Card-Action_Secondary_Background_Hover-1-1-0: #E7E9EE;
|
|
283
|
+
--triplex-next-Card-Action_Secondary_Background_Selected-1-1-0: #DFE2E7;
|
|
284
|
+
--triplex-next-Card-Action_Secondary_Background_Selected_Hover-1-1-0: #DFE2E7;
|
|
285
|
+
--triplex-next-Card-BorderColor_Focus-1-1-0: #FFD169;
|
|
286
|
+
--triplex-next-Card-Shadow_Default-1-1-0: 0 0 7px 0 rgba(31, 31, 34, 0.25);
|
|
287
|
+
--triplex-next-Card-Shadow_Hover-1-1-0: 0 0 14px 0 rgba(31, 31, 34, 0.25);
|
|
288
|
+
--triplex-next-Skeleton-BackgroundColor_Light_Start-1-1-0: #F2F4F7;
|
|
289
|
+
--triplex-next-Skeleton-BackgroundColor_Light_End-1-1-0: #DFE2E7;
|
|
290
|
+
--triplex-next-Skeleton-BackgroundColor_Dark_Start-1-1-0: rgba(31, 31, 34, .05);
|
|
291
|
+
--triplex-next-Skeleton-BackgroundColor_Dark_End-1-1-0: rgba(31, 31, 34, .15);
|
|
292
|
+
--triplex-next-SegmentedControl-General_1_Background-1-1-0: #F2F4F7;
|
|
293
|
+
--triplex-next-SegmentedControl-General_2_Background-1-1-0: #FFFFFF;
|
|
294
|
+
--triplex-next-SegmentedControl-Secondary_1_Background-1-1-0: #F2F4F7;
|
|
295
|
+
--triplex-next-SegmentedControl-Secondary_2_Background-1-1-0: #FFFFFF;
|
|
296
|
+
--triplex-next-SegmentedControlSegment-General_1_Color_Default-1-1-0: rgba(31, 31, 34, .65);
|
|
297
|
+
--triplex-next-SegmentedControlSegment-General_1_Color_Hover-1-1-0: rgba(31, 31, 34, 1);
|
|
298
|
+
--triplex-next-SegmentedControlSegment-General_1_Color_Disabled-1-1-0: rgba(31, 31, 34, .15);
|
|
299
|
+
--triplex-next-SegmentedControlSegment-General_1_Color_Selected_Default-1-1-0: rgba(255, 255, 255, 1);
|
|
300
|
+
--triplex-next-SegmentedControlSegment-General_1_Color_Selected_Hover-1-1-0: rgba(255, 255, 255, 1);
|
|
301
|
+
--triplex-next-SegmentedControlSegment-General_1_Color_Selected_Disabled-1-1-0: rgba(255, 255, 255, .25);
|
|
302
|
+
--triplex-next-SegmentedControlSegment-General_1_Background_Default-1-1-0: #F2F4F7;
|
|
303
|
+
--triplex-next-SegmentedControlSegment-General_1_Background_Hover-1-1-0: #DFE2E7;
|
|
304
|
+
--triplex-next-SegmentedControlSegment-General_1_Background_Disabled-1-1-0: #F2F4F7;
|
|
305
|
+
--triplex-next-SegmentedControlSegment-General_1_Background_Selected_Default-1-1-0: #3B3B3E;
|
|
306
|
+
--triplex-next-SegmentedControlSegment-General_1_Background_Selected_Hover-1-1-0: #49494C;
|
|
307
|
+
--triplex-next-SegmentedControlSegment-General_1_Background_Selected_Disabled-1-1-0: #343437;
|
|
308
|
+
--triplex-next-SegmentedControlSegment-General_2_Color_Default-1-1-0: rgba(31, 31, 34, .65);
|
|
309
|
+
--triplex-next-SegmentedControlSegment-General_2_Color_Hover-1-1-0: rgba(31, 31, 34, 1);
|
|
310
|
+
--triplex-next-SegmentedControlSegment-General_2_Color_Disabled-1-1-0: rgba(31, 31, 34, .15);
|
|
311
|
+
--triplex-next-SegmentedControlSegment-General_2_Color_Selected_Default-1-1-0: rgba(255, 255, 255, 1);
|
|
312
|
+
--triplex-next-SegmentedControlSegment-General_2_Color_Selected_Hover-1-1-0: rgba(255, 255, 255, 1);
|
|
313
|
+
--triplex-next-SegmentedControlSegment-General_2_Color_Selected_Disabled-1-1-0: rgba(255, 255, 255, .25);
|
|
314
|
+
--triplex-next-SegmentedControlSegment-General_2_Background_Default-1-1-0: #FFFFFF;
|
|
315
|
+
--triplex-next-SegmentedControlSegment-General_2_Background_Hover-1-1-0: #EEF0F4;
|
|
316
|
+
--triplex-next-SegmentedControlSegment-General_2_Background_Disabled-1-1-0: #FFFFFF;
|
|
317
|
+
--triplex-next-SegmentedControlSegment-General_2_Background_Selected_Default-1-1-0: #3B3B3E;
|
|
318
|
+
--triplex-next-SegmentedControlSegment-General_2_Background_Selected_Hover-1-1-0: #49494C;
|
|
319
|
+
--triplex-next-SegmentedControlSegment-General_2_Background_Selected_Disabled-1-1-0: #343437;
|
|
320
|
+
--triplex-next-SegmentedControlSegment-Secondary_1_Color_Default-1-1-0: rgba(31, 31, 34, .65);
|
|
321
|
+
--triplex-next-SegmentedControlSegment-Secondary_1_Color_Hover-1-1-0: rgba(31, 31, 34, 1);
|
|
322
|
+
--triplex-next-SegmentedControlSegment-Secondary_1_Color_Disabled-1-1-0: rgba(31, 31, 34, .15);
|
|
323
|
+
--triplex-next-SegmentedControlSegment-Secondary_1_Color_Selected_Default-1-1-0: rgba(31, 31, 34, 1);
|
|
324
|
+
--triplex-next-SegmentedControlSegment-Secondary_1_Color_Selected_Hover-1-1-0: rgba(31, 31, 34, 1);
|
|
325
|
+
--triplex-next-SegmentedControlSegment-Secondary_1_Color_Selected_Disabled-1-1-0: rgba(31, 31, 34, .15);
|
|
326
|
+
--triplex-next-SegmentedControlSegment-Secondary_1_Background_Default-1-1-0: #F2F4F7;
|
|
327
|
+
--triplex-next-SegmentedControlSegment-Secondary_1_Background_Hover-1-1-0: #DFE2E7;
|
|
328
|
+
--triplex-next-SegmentedControlSegment-Secondary_1_Background_Disabled-1-1-0: #F2F4F7;
|
|
329
|
+
--triplex-next-SegmentedControlSegment-Secondary_1_Background_Selected_Default-1-1-0: #FFFFFF;
|
|
330
|
+
--triplex-next-SegmentedControlSegment-Secondary_1_Background_Selected_Hover-1-1-0: #DFE2E7;
|
|
331
|
+
--triplex-next-SegmentedControlSegment-Secondary_1_Background_Selected_Disabled-1-1-0: #FFFFFF;
|
|
332
|
+
--triplex-next-SegmentedControlSegment-Secondary_2_Color_Default-1-1-0: rgba(31, 31, 34, .65);
|
|
333
|
+
--triplex-next-SegmentedControlSegment-Secondary_2_Color_Hover-1-1-0: rgba(31, 31, 34, 1);
|
|
334
|
+
--triplex-next-SegmentedControlSegment-Secondary_2_Color_Disabled-1-1-0: rgba(31, 31, 34, .15);
|
|
335
|
+
--triplex-next-SegmentedControlSegment-Secondary_2_Color_Selected_Default-1-1-0: rgba(31, 31, 34, 1);
|
|
336
|
+
--triplex-next-SegmentedControlSegment-Secondary_2_Color_Selected_Hover-1-1-0: rgba(31, 31, 34, 1);
|
|
337
|
+
--triplex-next-SegmentedControlSegment-Secondary_2_Color_Selected_Disabled-1-1-0: rgba(31, 31, 34, .15);
|
|
338
|
+
--triplex-next-SegmentedControlSegment-Secondary_2_Background_Default-1-1-0: #FFFFFF;
|
|
339
|
+
--triplex-next-SegmentedControlSegment-Secondary_2_Background_Hover-1-1-0: #EEF0F4;
|
|
340
|
+
--triplex-next-SegmentedControlSegment-Secondary_2_Background_Disabled-1-1-0: #FFFFFF;
|
|
341
|
+
--triplex-next-SegmentedControlSegment-Secondary_2_Background_Selected_Default-1-1-0: #E3E6EA;
|
|
342
|
+
--triplex-next-SegmentedControlSegment-Secondary_2_Background_Selected_Hover-1-1-0: #D6D9E0;
|
|
343
|
+
--triplex-next-SegmentedControlSegment-Secondary_2_Background_Selected_Disabled-1-1-0: #F2F4F7;
|
|
344
|
+
--triplex-next-SegmentedControlSegment-BorderColor_Default-1-1-0: transparent;
|
|
345
|
+
--triplex-next-SegmentedControlSegment-BorderColor_Focus-1-1-0: #FFD169;
|
|
346
|
+
--triplex-next-HeaderPage-Background-1-1-0: #FFFFFF;
|
|
347
|
+
--triplex-next-FooterPage-Background-1-1-0: #FFFFFF;
|
|
348
|
+
--triplex-next-Island-Type1_Background-1-1-0: #FFFFFF;
|
|
349
|
+
--triplex-next-Island-Type2_Background-1-1-0: rgba(255, 255, 255, .35);
|
|
350
|
+
--triplex-next-Island-Type3_Background-1-1-0: #F2F4F7;
|
|
351
|
+
--triplex-next-Island-Type1_Shadow-1-1-0: 0 0 0 1px #FFFFFF inset;
|
|
352
|
+
--triplex-next-Island-Type2_Shadow-1-1-0: 0 0 0 1px #FFFFFF inset;
|
|
353
|
+
--triplex-next-Island-Type3_Shadow-1-1-0: 0 0 0 1px #F2F4F7 inset;}
|
|
354
|
+
.underline__f2a38d82{text-decoration:underline}.strikethrough__1df3bc6b{text-decoration:line-through}.underlineStrikethrough__1beb1767{text-decoration:underline line-through}.typography__cbd2707b.primary__05b50598{color:var(--triplex-next-Typography-Primary_Color-1-1-0)}.typography__cbd2707b.complementary__030527d3{color:var(--triplex-Typography-Complementary_Color-1-1-0)}.typography__cbd2707b.secondary__3e82148a{color:var(--triplex-next-Typography-Secondary_Color-1-1-0)}.typography__cbd2707b.tertiary__127ba3d8{color:var(--triplex-next-Typography-Tertiary_Color-1-1-0)}.typography__cbd2707b.disabled__1f871a58{color:var(--triplex-next-Typography-Disabled_Color-1-1-0)}.typography__cbd2707b.brand__a39d762b{color:var(--triplex-next-Typography-Brand_Color-1-1-0);-webkit-user-select:none;user-select:none}.typography__cbd2707b.info__71095f44{color:var(--triplex-next-Typography-Info_Color-1-1-0)}.typography__cbd2707b.success__dc30835a{color:var(--triplex-next-Typography-Success_Color-1-1-0)}.typography__cbd2707b.error__68f78401{color:var(--triplex-next-Typography-Error_Color-1-1-0)}.typography__cbd2707b.warning__c3f794a7{color:var(--triplex-next-Typography-Warning_Color-1-1-0)}.typography__cbd2707b.system__8496bb25{color:var(--triplex-next-Typography-System_Color-1-1-0)}.typography__cbd2707b.compact__c3239e1e{line-height:calc(16 / 14)}.title__850984cd.regular__b1f2b305{font-family:SBSansDisplay}.title__850984cd.semibold__c23bf0b4{font-family:SBSansDisplaySemibold}.title__850984cd.medium__df283fb2{font-family:SBSansDisplayMedium}.title__850984cd.bold__9b12ae0a{font-family:SBSansDisplayBold}.h1__4845788b,.h2__80b774c2,.h3__8f42a1c0{margin:0}.h1__4845788b{font-size:28px;line-height:36px}.h2__80b774c2{font-size:24px;line-height:32px}.h3__8f42a1c0{font-size:20px;line-height:28px}.text__77006390.regular__b1f2b305{font-family:SBSansText}.text__77006390.semibold__c23bf0b4{font-family:SBSansTextSemibold}.b1__cef053ea{font-size:18px;line-height:24px}.b2__5c9700c6{font-size:16px;line-height:20px}.b3__202d1cb8{font-size:14px;line-height:20px}.b3__202d1cb8.compact__c3239e1e{line-height:16px}.b4__bb326c0f{font-size:12px;line-height:16px}.caption__a0232eb3.regular__b1f2b305{font-family:SBSansText}.caption__a0232eb3.semibold__c23bf0b4{font-family:SBSansTextSemibold}.c1__8665eae4{font-size:10px;line-height:12px}.c2__cf697a46{font-size:8px;line-height:10px}.d1__8ff8abd4{font-size:32px;line-height:40px}.d1__8ff8abd4.regular__b1f2b305{font-family:SBSansDisplay}.d1__8ff8abd4.semibold__c23bf0b4{font-family:SBSansDisplaySemibold}.formFieldInput__bb5e3b5a{padding:0;width:100%;box-sizing:border-box;border:none;background:none;-webkit-appearance:none;color:var(--triplex-next-FormField-Input_Color_Default-1-1-0)}.formFieldInput__bb5e3b5a:disabled{color:var(--triplex-next-FormField-Input_Color_Disabled-1-1-0)}.formFieldInput__bb5e3b5a::placeholder{color:var(--triplex-next-FormField-Placeholder_Color-1-1-0);opacity:0;transition:opacity .3s ease-out}.formFieldInput__bb5e3b5a:focus{outline:none}.formFieldInput__bb5e3b5a:focus::placeholder{opacity:1}.formFieldInput__bb5e3b5a:-webkit-autofill{animation-name:autofill-applied-hook__7eaa7b01;animation-duration:1ms}.formFieldInput__bb5e3b5a:not(:-webkit-autofill){animation-name:autofill-cancelled-hook__50e3428d;animation-duration:1ms}.formFieldInput__bb5e3b5a.size-sm__eb9869a4{padding-top:6px;padding-bottom:6px;font-size:12px;height:28px;line-height:16px}.formFieldInput__bb5e3b5a.size-md__450c5a48{padding-top:10px;padding-bottom:10px;font-size:14px;height:40px;line-height:20px}.formFieldInput__bb5e3b5a.size-lg__96a2c9be{padding-top:26px;padding-bottom:10px;height:56px;line-height:20px;font-size:16px}@keyframes autofill-applied-hook__7eaa7b01{0%{transform:none}}@keyframes autofill-cancelled-hook__50e3428d{0%{transform:none}}.formField__9a74ebe8{position:relative;flex-grow:1;background:var(--triplex-next-FormField-Background_Default-1-1-0);box-shadow:var(--triplex-next-FormField-Shadow_Default-1-1-0);transition:background-color .2s ease-in-out,border-color .2s ease-in-out,box-shadow .2s ease-in-out,color .2s ease-in-out}.formField__9a74ebe8:hover{background:var(--triplex-next-FormField-Background_Hover-1-1-0)}.formField__9a74ebe8.disabled__4388a233{background:var(--triplex-next-FormField-Background_Disabled-1-1-0)}.formField__9a74ebe8.active__b089df13{background:var(--triplex-next-FormField-Background_Active-1-1-0);box-shadow:var(--triplex-next-FormField-Shadow_Active-1-1-0)}.formField__9a74ebe8.active__b089df13::placeholder{opacity:1}.formField__9a74ebe8.error__402055fd{background:var(--triplex-next-FormField-Background_Error-1-1-0)}.formField__9a74ebe8.error__402055fd:hover{background:var(--triplex-next-FormField-Background_Error_Hover-1-1-0)}.formField__9a74ebe8.error__402055fd.active__b089df13{background:var(--triplex-next-FormField-Background_Error-1-1-0);box-shadow:var(--triplex-next-FormField-Shadow_Error_Active-1-1-0)}.formField__9a74ebe8.warning__f87ab909{background:var(--triplex-next-FormField-Background_Warning-1-1-0)}.formField__9a74ebe8.warning__f87ab909:hover{background:var(--triplex-next-FormField-Background_Warning_Hover-1-1-0)}.formField__9a74ebe8.warning__f87ab909.active__b089df13{background:var(--triplex-next-FormField-Background_Warning-1-1-0);box-shadow:var(--triplex-next-FormField-Shadow_Warning_Active-1-1-0)}.formField__9a74ebe8.size-sm__eb9869a4{border-radius:6px}.formField__9a74ebe8.size-md__450c5a48{border-radius:8px}.formField__9a74ebe8.size-lg__96a2c9be{border-radius:10px}.formFieldDescription__b55385b5{padding-top:4px;padding-left:4px;padding-right:4px}.formFieldDescription__b55385b5.withCounter__0fcb9498{display:flex;justify-content:space-between}.formFieldLabel__e3f9fe36{position:absolute;overflow:hidden;line-height:0;text-overflow:ellipsis;white-space:nowrap;transition:top .3s ease-out;pointer-events:none}.formFieldLabel__e3f9fe36.size-sm__eb9869a4{top:6px}.formFieldLabel__e3f9fe36.size-md__450c5a48{top:10px}.formFieldLabel__e3f9fe36.size-lg__96a2c9be{top:18px}.formFieldLabel__e3f9fe36.size-lg__96a2c9be.floating__d7dd987e{top:10px}.formFieldLabelText__5500a192{display:inline-block;color:var(--triplex-next-FormField-Label_Color_Default-1-1-0);transition-property:font-size,line-height;transition-duration:.3s;transition-timing-function:ease-out}.size-sm__eb9869a4 .formFieldLabelText__5500a192{font-size:12px;line-height:16px}.size-md__450c5a48 .formFieldLabelText__5500a192{font-size:14px;line-height:20px}.size-lg__96a2c9be .formFieldLabelText__5500a192{font-size:16px;line-height:20px}.floating__d7dd987e .formFieldLabelText__5500a192{font-size:12px;line-height:16px}.floating__d7dd987e.size-sm__eb9869a4 .formFieldLabelText__5500a192,.floating__d7dd987e.size-md__450c5a48 .formFieldLabelText__5500a192{display:none}.disabled__4388a233 .formFieldLabelText__5500a192{color:var(--triplex-next-FormField-Label_Color_Disabled-1-1-0)}.formFieldPostfix__9cba074f{padding:0 12px 0 4px;position:absolute;right:0;top:0;bottom:0;display:flex;align-items:center;gap:8px}.formFieldPrefix__2b743662{padding:0 8px 0 12px;position:absolute;left:0;top:0;bottom:0;display:flex;align-items:center;gap:4px}.formFieldCounter__526f40fd{padding-left:4px}.formFieldMaskedInputWrapper__2c4006d1{position:relative}.formFieldMaskedInputWrapper__2c4006d1 .formFieldMaskedInputPlaceholder__641b6e4d{position:absolute;left:0;top:0}.formFieldMaskedInputWrapper__2c4006d1 .formFieldMaskedInputPlaceholder__641b6e4d::placeholder{opacity:1}.formFieldMaskedInputWrapper__2c4006d1.size-sm__eb9869a4{font-size:12px;line-height:16px}.formFieldMaskedInputWrapper__2c4006d1.size-sm__eb9869a4 .formFieldMaskedInputPlaceholder__641b6e4d{top:5px;font-size:12px;line-height:16px}.formFieldMaskedInputWrapper__2c4006d1.size-md__450c5a48{font-size:14px;line-height:20px}.formFieldMaskedInputWrapper__2c4006d1.size-md__450c5a48 .formFieldMaskedInputPlaceholder__641b6e4d{top:9px;font-size:14px;line-height:20px}.formFieldMaskedInputWrapper__2c4006d1.size-lg__96a2c9be{font-size:16px;line-height:20px}.formFieldMaskedInputWrapper__2c4006d1.size-lg__96a2c9be .formFieldMaskedInputPlaceholder__641b6e4d{top:25px;font-size:16px;line-height:20px}.formFieldMaskedInputWrapper__2c4006d1 .formFieldMaskedInput__70355da8{display:block;position:relative;background:none!important}.label__a228ac39{display:inline-block;position:relative;font-weight:400;color:var(--triplex-next-Radio-Color_Default-1-1-0);cursor:pointer}.label__a228ac39.md__99c5e64f{font-size:14px;line-height:24px;min-height:24px;min-width:24px}.label__a228ac39.lg__9bd8c338{font-size:16px;line-height:28px;min-width:28px;min-height:28px}.label__a228ac39.nonempty__479eb95e{padding-left:40px}.label__a228ac39.disabled__0c07e456{color:var(--triplex-next-Radio-Color_Disabled-1-1-0);cursor:default}.radio__02eaf8bf{margin:0;opacity:0}.radioIcon__7f2be5d4{box-sizing:border-box;background:var(--triplex-next-Radio-Background_Default-1-1-0);border-radius:50%}.radioIcon__7f2be5d4:after{content:"";position:absolute;background:var(--triplex-next-Radio-Dot_Default-1-1-0);border-radius:50%;transform:scale(0)}.md__99c5e64f .radioIcon__7f2be5d4:after{width:12px;height:12px;top:6px;left:6px}.lg__9bd8c338 .radioIcon__7f2be5d4:after{width:14px;height:14px;top:7px;left:7px}.radioIcon__7f2be5d4,.radioIcon__7f2be5d4:after{pointer-events:none}.radio__02eaf8bf,.radioIcon__7f2be5d4{position:absolute;left:0}.md__99c5e64f .radio__02eaf8bf,.md__99c5e64f .radioIcon__7f2be5d4{width:24px;height:24px}.lg__9bd8c338 .radio__02eaf8bf,.lg__9bd8c338 .radioIcon__7f2be5d4{width:28px;height:28px}.nonempty__479eb95e .radio__02eaf8bf,.nonempty__479eb95e .radioIcon__7f2be5d4{top:2px}.radio__02eaf8bf:enabled{cursor:pointer}.radio__02eaf8bf:checked+.radioIcon__7f2be5d4{background:var(--triplex-next-Radio-Background_Checked_Default-1-1-0)}.radio__02eaf8bf:checked+.radioIcon__7f2be5d4:after{transform:scale(1);transition:transform .2s ease-out}.radio__02eaf8bf:hover+.radioIcon__7f2be5d4{background-color:var(--triplex-next-Radio-Background_Hover-1-1-0)}.radio__02eaf8bf:disabled+.radioIcon__7f2be5d4{background:var(--triplex-next-Radio-Background_Disabled-1-1-0)}.radio__02eaf8bf:disabled:checked+.radioIcon__7f2be5d4{background:var(--triplex-next-Radio-Background_Checked_Disabled-1-1-0)}.radio__02eaf8bf:disabled+.radioIcon__7f2be5d4:after{background:var(--triplex-next-Radio-Dot_Disabled-1-1-0)}.radio__02eaf8bf:focus-visible+.radioIcon__7f2be5d4{box-shadow:var(--triplex-next-Radio-BorderColor_Focused-1-1-0)}.radio__02eaf8bf:checked:enabled:hover+.radioIcon__7f2be5d4{background-color:var(--triplex-next-Radio-Background_Checked_Hover-1-1-0)}.radioXGroup__b5727c09{display:inline-flex;flex-flow:row wrap}.radioXGroup__b5727c09.indent-12__e8fd8ebf{margin-left:-6px;margin-right:-6px}.radioXGroup__b5727c09.indent-12__e8fd8ebf .label__a228ac39{margin-left:6px;margin-right:6px}.radioXGroup__b5727c09.indent-16__1a5d9f91{margin-left:-8px;margin-right:-8px}.radioXGroup__b5727c09.indent-16__1a5d9f91 .label__a228ac39{margin-left:8px;margin-right:8px}.radioXGroup__b5727c09.indent-20__b9096aeb{margin-left:-10px;margin-right:-10px}.radioXGroup__b5727c09.indent-20__b9096aeb .label__a228ac39{margin-left:10px;margin-right:10px}.radioXGroup__b5727c09.indent-24__2c389c32{margin-left:-12px;margin-right:-12px}.radioXGroup__b5727c09.indent-24__2c389c32 .label__a228ac39{margin-left:12px;margin-right:12px}.radioXGroup__b5727c09.indent-28__752184a6{margin-left:-14px;margin-right:-14px}.radioXGroup__b5727c09.indent-28__752184a6 .label__a228ac39{margin-left:14px;margin-right:14px}.radioXGroup__b5727c09.indent-32__af1075cf{margin-left:-16px;margin-right:-16px}.radioXGroup__b5727c09.indent-32__af1075cf .label__a228ac39{margin-left:16px;margin-right:16px}.radioYGroup__300812ec{display:inline-flex;flex-flow:column wrap}.radioYGroup__300812ec .label__a228ac39+.label__a228ac39{margin-top:20px}.loaderSmall__7b07a668{display:flex;justify-content:center;align-items:center}.loaderSmall__7b07a668.sm__3dd6c074{width:16px;height:16px;gap:2px}.loaderSmall__7b07a668.sm__3dd6c074 .dot__6011aed6{width:4px;height:4px}.loaderSmall__7b07a668.md__426a1e7f{width:24px;height:24px;gap:3px}.loaderSmall__7b07a668.md__426a1e7f .dot__6011aed6{width:6px;height:6px}.loaderSmall__7b07a668.lg__80287852{width:32px;height:32px;gap:4px}.loaderSmall__7b07a668.lg__80287852 .dot__6011aed6{width:8px;height:8px}.loaderSmall__7b07a668.neutral__13c5b053 .dot__6011aed6{background-color:var(--triplex-next-Loader-Neutral_Background_Default-1-1-0)}.loaderSmall__7b07a668.brand__4d7eeacf .dot__6011aed6{background-color:var(--triplex-next-Loader-Brand_Background_Default-1-1-0)}.loaderSmall__7b07a668 .dot__6011aed6{border-radius:50%}.loaderSmall__7b07a668 .dot1__7e6e5837{animation:dotCycleSmall__10545575 .9s infinite}.loaderSmall__7b07a668 .dot2__9b8c6898{animation:dotCycleSmall__10545575 .9s infinite .15s}.loaderSmall__7b07a668 .dot3__cc2c3aeb{animation:dotCycleSmall__10545575 .9s infinite .3s}@keyframes dotCycleSmall__10545575{0%{opacity:1}33%{opacity:.35}66%{opacity:.7}to{opacity:1}}.loaderMiddle__dc1b379d{position:relative;width:40px;height:40px}.loaderMiddle__dc1b379d .dot__6011aed6{position:absolute;background-color:var(--triplex-next-Loader-Brand_Background_Default-1-1-0);width:12px;height:12px;border-radius:6px}.loaderMiddle__dc1b379d .dot1__7e6e5837{top:0;left:0;animation:dotCycleMiddle__a5552d81 3s infinite}.loaderMiddle__dc1b379d .dot2__9b8c6898{right:0;top:0;opacity:.7;animation:dotCycleMiddle__a5552d81 3s infinite .74s}.loaderMiddle__dc1b379d .dot3__cc2c3aeb{bottom:0;right:0;opacity:.15;animation:dotCycleMiddle__a5552d81 3s infinite 1.5s}.loaderMiddle__dc1b379d .dot4__fab8476f{bottom:0;left:0;opacity:0;animation:dotCycleMiddle__a5552d81 3s infinite 2.25s}.loaderMiddle__dc1b379d .line__294e37ab{background-color:var(--triplex-next-Loader-Brand_Background_Default-1-1-0);width:12px;height:12px;border-radius:6px;position:absolute;top:0;opacity:0;animation:lineCycle__cec1f135 3s infinite}@keyframes lineCycle__cec1f135{0%{width:12px;height:12px;left:0;top:0;opacity:1}12.5%{width:100%;height:12px;left:0;top:0;opacity:1}25%{width:12px;height:12px;left:calc(100% - 12px);top:0;opacity:1}37.5%{width:12px;height:100%;left:calc(100% - 12px);top:0;opacity:1}50%{width:12px;height:12px;left:calc(100% - 12px);top:calc(100% - 12px);opacity:1}62.5%{width:100%;height:12px;left:0;top:calc(100% - 12px);opacity:1}75%{width:12px;height:12px;left:0;top:calc(100% - 12px);opacity:1}87.5%{width:12px;height:100%;left:0;top:0;opacity:1}to{width:12px;height:12px;left:0;top:0;opacity:1}}@keyframes dotCycleMiddle__a5552d81{0%{opacity:1}25%{opacity:0}50%{opacity:.15}75%{opacity:.7}to{opacity:1}}.list__1519f7a4{margin:0;padding:0;list-style:none;position:relative}.listItemControls__406566ec{display:flex;padding:0 16px 0 4px}.listItemContent__1f27a445{background:var(--triplex-next-ListItem-Background-1-1-0);padding:12px 16px;min-height:56px;box-sizing:border-box}.listItemContent__1f27a445.selected__37e09951{border-radius:8px 0 0 8px;background:var(--triplex-next-ListItem-Background_Selected-1-1-0)}.listItemControlsButton__36c16ab0{font-family:inherit;margin:0;padding:0;background:var(--triplex-next-ListItemControlsButton-Background-1-1-0);border:none;width:80px;display:flex;align-items:center;justify-content:center;flex-direction:column;border-radius:8px;min-height:56px}.listItemControlsButton__36c16ab0+.listItemControlsButton__36c16ab0,.listItemControlsButton__36c16ab0+.listItemControlsButtonDropdown__5f40e124{margin-left:4px}.listItemControlsButtonIcon__d7be783f{line-height:0}.listItemControlsButton__36c16ab0.withText__8d59dcad .listItemControlsButtonIcon__d7be783f{margin-bottom:8px}.listItemControlsButtonLabel__fcc92360{color:var(--triplex-next-ListItemControlsButton-Color-1-1-0);overflow-wrap:break-word}div.listItemControlsButtonDropdown__5f40e124{display:flex}.listItemControlsButtonInner__c242fb57{display:flex;flex-direction:column;padding:0 4px}.listItemControlsButton__36c16ab0.withIcon__f870c5b0.withText__8d59dcad .listItemControlsButtonInner__c242fb57{height:44px;overflow:visible}.buttonDropdownMenuItem__19c7ea25{overflow:hidden;text-overflow:ellipsis}.dropdown__639e1fd6{position:fixed;z-index:1500;box-sizing:border-box;box-shadow:var(--triplex-next-Dropdown-Shadow-1-1-0);background-color:var(--triplex-next-Dropdown-Background-1-1-0)}.dropdown-sm__f2e27243{border-radius:6px}.dropdown-md__201788d1{border-radius:8px}.dropdown-lg__3e7a99f1{border-radius:10px}.dropdownOverflowHidden__f1b364cd{overflow:hidden}.dropdownMobileWrapper__678bfe69{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1500}.dropdownMobileBackdrop__7d99504e{background:var(--triplex-next-DropdownMobile-Backdrop-1-1-0);position:absolute;opacity:0;transition:opacity .3s ease-in-out;top:0;right:0;bottom:0;left:0}.dropdownMobileBackdrop__7d99504e.closing__f06243ca{opacity:0}.dropdownMobileBackdrop__7d99504e.opening__f89f7b5d,.dropdownMobileBackdrop__7d99504e.opened__75bbd4ce{opacity:var(--triplex-DropdownMobile-Opacity-1-1-0)}.dropdownMobile__6bed7d81{position:absolute;bottom:0;left:0;right:0;transform:translateY(100%);transition:transform .3s ease-in-out;max-height:50vh;display:flex;flex-direction:column;outline:none}.dropdownMobile__6bed7d81.closing__f06243ca{transform:translateY(100%)}.dropdownMobile__6bed7d81.opening__f89f7b5d,.dropdownMobile__6bed7d81.opened__75bbd4ce{transform:translateY(0)}.dropdownMobileHeader__184224e0{min-height:16px;padding:16px 40px 16px 16px;background:var(--triplex-next-DropdownMobile-Header_Background-1-1-0);position:relative;flex-shrink:1;border-radius:16px 16px 0 0}.dropdownMobileContent__a437c079{background:var(--triplex-next-DropdownMobile-Content_Background-1-1-0);flex-grow:1;overflow:auto}.dropdownMobileFooter__cf899081{padding:15px 16px 16px;background:var(--triplex-next-DropdownMobile-Footer_Background-1-1-0);border-top:1px solid var(--triplex-next-DropdownMobile-Border_Color-1-1-0);flex-shrink:1}.dropdownMobileListItem__d18d9da2{padding:16px}.dropdownMobileListItem__d18d9da2.selected__8d99569f{background:var(--triplex-next-DropdownMobileList-Selected_Background-1-1-0)}.dropdownMobileListItem__d18d9da2:active{background-color:var(--triplex-next-DropdownMobileList-Active_Background-1-1-0)}button.dropdownMobileClose__33e1c9f9{position:absolute;top:16px;right:16px}.dropdownMobileBodyOverflow__ce8eb451{overflow:hidden}.dropdownList__817388c8{max-height:196px;padding:4px;overflow:auto}.dropdownListItem__31a65fb6{color:var(--triplex-next-DropdownList-Color-1-1-0);background:var(--triplex-next-DropdownList-Background_Default-1-1-0);position:relative;outline:none;white-space:nowrap}.dropdownListItem__31a65fb6+.dropdownListItem__31a65fb6{margin-top:2px}.dropdownListItem__31a65fb6.active__89255bda{background:var(--triplex-next-DropdownList-Background_Active-1-1-0);cursor:pointer}.dropdownListItem__31a65fb6.selected__8d99569f{background:var(--triplex-next-DropdownList-Background_Selected-1-1-0);cursor:default}.dropdownList-sm__8dc4ab26{font-size:12px;line-height:16px}.dropdownList-sm__8dc4ab26 .dropdownListItem__31a65fb6{padding:6px 8px;border-radius:6px}.dropdownList-md__7a4175ee{font-size:14px;line-height:20px}.dropdownList-md__7a4175ee .dropdownListItem__31a65fb6{padding:7px 8px;border-radius:8px}.dropdownList-lg__fa5c2095{font-size:16px;line-height:20px}.dropdownList-lg__fa5c2095 .dropdownListItem__31a65fb6{padding:14px 8px;border-radius:10px}.buttonDropdownExtended__015548a1{display:inline-block;position:relative;vertical-align:top;line-height:0}.buttonDropdownExtended__015548a1 .buttonDropdownExtendedBlock__c59ea7ee{padding:4px;margin-top:4px;right:0}.buttonIcon__45287fac{position:relative;padding:0;line-height:0;font-size:0;vertical-align:top;background:transparent;border:none;outline:none}.buttonIcon__45287fac:enabled{cursor:pointer}.buttonIcon__45287fac.circle__f2df5872{border-radius:50%}.buttonIcon__45287fac.squircle__26105e3b{border-radius:4px}.buttonIcon__45287fac:focus-visible{box-shadow:var(--triplex-next-Button-Icon_Shadow_Focus-1-1-0)}.listEmptyState__c2b5fca9{padding:80px 16px 16px;text-align:center}.listItemLoading__fb8975af{height:76px;position:relative}.label__99bd7a25{display:inline-block;position:relative;font-weight:400;color:var(--triplex-next-Checkbox-Color_Default-1-1-0);cursor:pointer}.label__99bd7a25.md__4c90fe0b{min-width:24px;min-height:24px;font-size:14px;line-height:24px}.label__99bd7a25.lg__1454e99e{min-width:28px;min-height:28px;font-size:16px;line-height:28px}.label__99bd7a25.nonempty__076ae936{padding-left:40px}.label__99bd7a25.disabled__baaa34ef{color:var(--triplex-next-Checkbox-Color_Disabled-1-1-0);cursor:default}.label__99bd7a25[hidden]{display:none}.checkbox__99f776ea{margin:0;opacity:0}.checkboxIcon__b8c0c630{box-sizing:border-box;background-color:var(--triplex-next-Checkbox-Background_Default-1-1-0);border-radius:4px}.checkmarkIcon__e2868edc{transform:scale(0)}.checkmarkIcon__e2868edc path{fill:var(--triplex-next-Checkbox-Checkmark_Fill_Default-1-1-0)}.checkboxIcon__b8c0c630,.checkmarkIcon__e2868edc{pointer-events:none}.checkbox__99f776ea,.checkboxIcon__b8c0c630,.checkmarkIcon__e2868edc{position:absolute;left:0}.md__4c90fe0b .checkbox__99f776ea,.md__4c90fe0b .checkboxIcon__b8c0c630,.md__4c90fe0b .checkmarkIcon__e2868edc{width:24px;height:24px}.lg__1454e99e .checkbox__99f776ea,.lg__1454e99e .checkboxIcon__b8c0c630,.lg__1454e99e .checkmarkIcon__e2868edc{width:28px;height:28px}.checkbox__99f776ea:enabled{cursor:pointer}.checkbox__99f776ea:checked+.checkboxIcon__b8c0c630{background-color:var(--triplex-next-Checkbox-Background_Checked_Default-1-1-0)}.checkbox__99f776ea:checked~.checkmarkIcon__e2868edc{transform:scale(1);transition:transform .2s ease-out}.checkbox__99f776ea:disabled+.checkboxIcon__b8c0c630{background-color:var(--triplex-next-Checkbox-Background_Disabled-1-1-0)}.checkbox__99f776ea:disabled~.checkmarkIcon__e2868edc path{fill:var(--triplex-next-Checkbox-Checkmark_Fill_Disabled-1-1-0)}.checkbox__99f776ea:focus-visible+.checkboxIcon__b8c0c630{box-shadow:var(--triplex-next-Checkbox-BorderColor_Focus-1-1-0)}.checkbox__99f776ea:checked:enabled:hover+.checkboxIcon__b8c0c630{background-color:var(--triplex-next-Checkbox-Background_Checked_Hover-1-1-0)}.listItemSelectable__c8b1e8d0{display:flex;align-items:center;background:var(--triplex-next-ListItem-Background-1-1-0);border-radius:8px}.listItemSelectable__c8b1e8d0.selected__37e09951{background:var(--triplex-next-ListItem-Background_Selected-1-1-0)}.checkboxWrapper__8c20181b{padding:16px 20px 16px 16px;line-height:0}.childrenWrapper__adf7ade3{flex-grow:1}.checkboxLabel__30095ca5{padding:0!important;transform:scale(1.375) translateY(-2px);position:relative}.checkboxLabelClickArea__dab7e4a9{position:absolute;top:-2.5px;left:-3.6px;bottom:-5px;right:-3.6px}.swipeableArea__7ca9e38a{position:relative;overflow:hidden}.swipeableArea__7ca9e38a .content__ec0cec24{position:relative;touch-action:pan-y}.swipeableArea__7ca9e38a .content__ec0cec24.disableScroll__34a6790e{touch-action:none}.swipeableArea__7ca9e38a .content__ec0cec24.disablePointerEvents__f7adb882:after{content:"";position:absolute;left:0;right:0;top:0;bottom:0}.swipeableArea__7ca9e38a .swipeAnimationFinish__ccf8e76e{transition:transform .3s ease-in-out,opacity .3s ease-in-out}.swipeableArea__7ca9e38a .leftContent__a29b04f8,.swipeableArea__7ca9e38a .rightContent__076945e1{position:absolute;top:0;left:0;bottom:0;display:flex}.swipeableArea__7ca9e38a .rightContent__076945e1{left:auto;right:0}.listItemTail__d93df2ab{position:absolute;width:16px;top:0;bottom:0;overflow:hidden}.listItemTailLine__aedb86ee{background:var(--triplex-next-ListMaster-Background-1-1-0);left:8px;position:absolute;width:4px;top:0;bottom:0}.listItemTailTop__932876fc{position:absolute;top:0;left:0;right:0}.listItemTailTop__932876fc:after{content:"";width:8px;height:8px;position:absolute;top:0;left:12px;border-top-left-radius:8px;box-shadow:-2px -2px 0 2px var(--triplex-next-ListMaster-Background-1-1-0)}.listItemTailTop__932876fc:before{content:"";width:8px;height:8px;position:absolute;top:0;left:0;border-top-right-radius:8px;box-shadow:2px -2px 0 2px var(--triplex-next-ListMaster-Background-1-1-0)}.listItemTailBottom__48b3ea77{position:absolute;bottom:0;left:0;right:0}.listItemTailBottom__48b3ea77:after{content:"";width:8px;height:8px;position:absolute;bottom:0;left:12px;border-bottom-left-radius:8px;box-shadow:-2px 2px 0 2px var(--triplex-next-ListMaster-Background-1-1-0)}.listItemTailBottom__48b3ea77:before{content:"";width:8px;height:8px;position:absolute;bottom:0;left:0;border-bottom-right-radius:8px;box-shadow:2px 2px 0 2px var(--triplex-next-ListItem-Tail_Background-1-1-0)}.listItemTailRight__70229f90{right:-8px}.listItemTailLeft__c9dc0872{left:-8px}.listItemTable__87c59ce6{margin-bottom:4px}.listItemTable__87c59ce6:last-child{margin-bottom:0}.listSortableItemTarget__41396652{display:flex;align-items:center;position:relative;padding:12px 16px;border-radius:8px;background:var(--triplex-next-ListItem-Background-1-1-0);touch-action:manipulation;cursor:grab}.listSortableItemTarget__41396652:hover{background:var(--triplex-next-ListItem-Background_Selected-1-1-0)}.listSortableItemTarget__41396652.dragging__029d24be{background:var(--triplex-next-ListItem-Background_Dragging-1-1-0);box-shadow:var(--triplex-next-ListItem-Shadow-1-1-0);cursor:grabbing;z-index:1}.listSortableItemTargetContent__05bf5f8a{flex:1}.listSortableItemTargetIcon__4c5f6a0a{display:block;margin-left:24px}.listSortableItem__3690a76a{position:relative}.listSortableItem__3690a76a.dragging__029d24be{z-index:1}.listSortableItemControls__4a786b51{display:inline-block}.formFieldClear__8a344304{cursor:pointer;height:16px;opacity:0;transition:opacity .3s}.formFieldClear__8a344304.shown__db71aebe{opacity:1}.formFieldTarget__31064c39{padding:0;width:100%;box-sizing:border-box;color:var(--triplex-next-FormField-Target_Color_Default-1-1-0)}.formFieldTarget__31064c39.placeholder__6e9df29f{color:var(--triplex-next-FormField-Target_PlaceholderColor_Default-1-1-0)}.formFieldTarget__31064c39.disabled__4388a233{color:var(--triplex-next-FormField-Target_Color_Disabled-1-1-0)}.formFieldTarget__31064c39.size-sm__eb9869a4{padding-top:6px;padding-bottom:6px;font-size:12px;height:28px;line-height:16px}.formFieldTarget__31064c39.size-md__450c5a48{padding-top:10px;padding-bottom:10px;font-size:14px;height:40px;line-height:20px}.formFieldTarget__31064c39.size-lg__96a2c9be{padding-top:26px;padding-bottom:10px;height:56px;line-height:20px;font-size:16px}.formFieldTextarea__777f7b21{width:100%;box-sizing:border-box;font-size:16px;line-height:20px;height:96px;padding-top:26px;padding-bottom:10px;border:none;background:none;color:var(--triplex-next-FormField-Input_Color_Default-1-1-0);resize:vertical}.formFieldTextarea__777f7b21:focus{outline:none}.formFieldTextarea__777f7b21:disabled{color:var(--triplex-next-FormField-Input_Color_Disabled-1-1-0)}.formFieldTextarea__777f7b21::placeholder{color:var(--triplex-next-FormField-Placeholder_Color-1-1-0)}.checkboxXGroup__cb1a05a6{display:inline-flex;flex-flow:row wrap}.checkboxXGroup__cb1a05a6.indent-12__0cb46667{margin-left:-6px;margin-right:-6px}.checkboxXGroup__cb1a05a6.indent-12__0cb46667 .label__99bd7a25{margin-left:6px;margin-right:6px}.checkboxXGroup__cb1a05a6.indent-16__c2c4ea16{margin-left:-8px;margin-right:-8px}.checkboxXGroup__cb1a05a6.indent-16__c2c4ea16 .label__99bd7a25{margin-left:8px;margin-right:8px}.checkboxXGroup__cb1a05a6.indent-20__13e0390f{margin-left:-10px;margin-right:-10px}.checkboxXGroup__cb1a05a6.indent-20__13e0390f .label__99bd7a25{margin-left:10px;margin-right:10px}.checkboxXGroup__cb1a05a6.indent-24__430a9cda{margin-left:-12px;margin-right:-12px}.checkboxXGroup__cb1a05a6.indent-24__430a9cda .label__99bd7a25{margin-left:12px;margin-right:12px}.checkboxXGroup__cb1a05a6.indent-28__8596c03b{margin-left:-14px;margin-right:-14px}.checkboxXGroup__cb1a05a6.indent-28__8596c03b .label__99bd7a25{margin-left:14px;margin-right:14px}.checkboxXGroup__cb1a05a6.indent-32__cb2d894a{margin-left:-16px;margin-right:-16px}.checkboxXGroup__cb1a05a6.indent-32__cb2d894a .label__99bd7a25{margin-left:16px;margin-right:16px}.checkboxYGroup__37929021{display:inline-flex;flex-flow:column wrap}.checkboxYGroup__37929021 .label__99bd7a25+.label__99bd7a25{margin-top:20px}.card__39c1fb26{display:inline-block;width:100%;box-sizing:border-box;overflow:hidden}.card__39c1fb26.roundingMD__092c6922{border-radius:16px}.card__39c1fb26.roundingSM__a137511a{border-radius:8px}.card__39c1fb26.general__d3a83765{background:var(--triplex-next-Card-Static_General_Background-1-1-0)}.card__39c1fb26.secondary__2b7000a4{background:var(--triplex-next-Card-Static_Secondary_Background-1-1-0)}.card__39c1fb26 .cardMedia__c1f9c663{background-size:cover;background-repeat:no-repeat;background-position:center}.card__39c1fb26 .cardContent__a10eda82.paddingMD__410c54bc{padding:23px}.card__39c1fb26 .cardContent__a10eda82.paddingMD__410c54bc:not(:first-child){padding-top:24px}.card__39c1fb26 .cardContent__a10eda82.paddingMD__410c54bc:not(:last-child){padding-bottom:24px}.card__39c1fb26 .cardContent__a10eda82.paddingSM__20b0be20{padding:15px}.card__39c1fb26 .cardContent__a10eda82.paddingSM__20b0be20:not(:first-child){padding-top:16px}.card__39c1fb26 .cardContent__a10eda82.paddingSM__20b0be20:not(:last-child){padding-bottom:16px}.card__39c1fb26 .cardContent__a10eda82 .cardContentHeader__9227bfad{margin-bottom:16px}.card__39c1fb26 .cardContent__a10eda82 .cardContentFooter__f33b6c31{margin-top:16px}.action__6afb3582{cursor:pointer;box-shadow:var(--triplex-next-Card-Shadow_Default-1-1-0);transition:background .12s ease,box-shadow .12s ease}.action__6afb3582.general__d3a83765{background:var(--triplex-next-Card-Action_General_Background-1-1-0)}.action__6afb3582.general__d3a83765:hover{background:var(--triplex-next-Card-Action_General_Background_Hover-1-1-0);box-shadow:var(--triplex-next-Card-Shadow_Hover-1-1-0)}.action__6afb3582.general__d3a83765.selected__368fb28b{background:var(--triplex-next-Card-Action_General_Background_Selected-1-1-0)}.action__6afb3582.general__d3a83765.selected__368fb28b:hover{background:var(--triplex-next-Card-Action_General_Background_Selected_Hover-1-1-0)}.action__6afb3582.secondary__2b7000a4{background:var(--triplex-next-Card-Action_Secondary_Background-1-1-0)}.action__6afb3582.secondary__2b7000a4:hover{background:var(--triplex-next-Card-Action_Secondary_Background_Hover-1-1-0);box-shadow:var(--triplex-next-Card-Shadow_Hover-1-1-0)}.action__6afb3582.secondary__2b7000a4.selected__368fb28b{background:var(--triplex-next-Card-Action_Secondary_Background_Selected-1-1-0)}.action__6afb3582.secondary__2b7000a4.selected__368fb28b:hover{background:var(--triplex-next-Card-Action_Secondary_Background_Selected_Hover-1-1-0)}.action__6afb3582:focus{outline:none}.action__6afb3582:focus.focusVisible__3b81cf1c{border:1px solid var(--triplex-next-Card-BorderColor_Focus-1-1-0)}.alertContext__afadde77{display:flex;font-size:12px;line-height:16px}.alertContext__afadde77>svg{flex-shrink:0}.alertContext__afadde77 .alertContextText__9688d2fb{margin-left:8px}.alertContext__afadde77.alertTypeError__21ee01db .alertContextText__9688d2fb{color:var(--triplex-next-AlertContext-Error_Color-1-1-0)}.alertContext__afadde77.alertTypeInfo__562cff29 .alertContextText__9688d2fb{color:var(--triplex-next-AlertContext-Info_Color-1-1-0)}.alertContext__afadde77.alertTypeWarning__cc78b22b .alertContextText__9688d2fb{color:var(--triplex-next-AlertContext-Warning_Color-1-1-0)}.alertContext__afadde77.alertTypeSystem__686ce089 .alertContextText__9688d2fb{color:var(--triplex-next-AlertContext-System_Color-1-1-0)}.alertProcess__8e64c532{display:flex;padding:16px;border-radius:8px;position:relative}.alertProcess__8e64c532.withSpoiler__410d9bfa{min-height:40px}.alertProcess__8e64c532 .themeIcon__400809fe{padding-top:2px;box-sizing:border-box;height:20px;width:20px}.alertProcess__8e64c532.alertTypeError__21ee01db{background:var(--triplex-next-AlertProcess-Error_Background-1-1-0)}.alertProcess__8e64c532.alertTypeInfo__562cff29{background:var(--triplex-next-AlertProcess-Info_Background-1-1-0)}.alertProcess__8e64c532.alertTypeWarning__cc78b22b{background:var(--triplex-next-AlertProcess-Warning_Background-1-1-0)}.alertProcess__8e64c532.alertTypeSystem__686ce089{background:var(--triplex-next-AlertProcess-System_Background-1-1-0)}.alertProcess__8e64c532.alertTypeFeature__bec6165d{background:var(--triplex-next-AlertProcess-Feature_Background-1-1-0)}.alertProcess__8e64c532.alertTypeFeature__bec6165d .themeIcon__400809fe{padding-top:0}.alertProcess__8e64c532 .alertProcessContentBlock__edb939a3{flex:1;margin-left:8px}.alertProcess__8e64c532 .alertProcessContentBlock__edb939a3:not(:has(+.closeButton__867687a3)){padding-right:26px}.alertProcess__8e64c532 .alertProcessContentBlock__edb939a3 .expandableContent__3e24f529{overflow:hidden;transition:max-height .3s ease-in-out,opacity .3s ease-in-out;max-height:0;opacity:0}.alertProcess__8e64c532 .alertProcessContentBlock__edb939a3 .expandableContent__3e24f529.expanded__8612010f{max-height:1000px;opacity:1}.alertProcess__8e64c532 .closeButton__867687a3{margin-left:10px}.alertProcess__8e64c532 .expandButton__fae2a366{position:absolute;right:16px;bottom:16px;height:16px;width:16px;transition:transform .3s ease-in-out;display:flex;align-items:center;justify-content:center}.alertProcess__8e64c532 .expandButton__fae2a366.expanded__8612010f{transform:rotate(180deg)}.button__5a77b748.general__9c32ef5c{text-transform:none;background:var(--triplex-next-Button-General_Background_Default-1-1-0);color:var(--triplex-next-Button-General_Color_Default-1-1-0)}.button__5a77b748.general__9c32ef5c:hover{background:var(--triplex-next-Button-General_Background_Hover-1-1-0);color:var(--triplex-next-Button-General_Color_Hover-1-1-0)}.button__5a77b748.general__9c32ef5c.expanded__ca1182dd,.button__5a77b748.general__9c32ef5c:active{background:var(--triplex-next-Button-General_Background_Active-1-1-0);color:var(--triplex-next-Button-General_Color_Active-1-1-0)}.button__5a77b748.general__9c32ef5c:focus-visible{box-shadow:var(--triplex-next-Button-General_Shadow_Focus-1-1-0)}.button__5a77b748.general__9c32ef5c:disabled{background:var(--triplex-next-Button-General_Background_Disabled-1-1-0);color:var(--triplex-next-Button-General_Color_Disabled-1-1-0)}.button__5a77b748.secondary__2d95d7d5{text-transform:none;background:var(--triplex-next-Button-Secondary_Background_Default-1-1-0);color:var(--triplex-next-Button-Secondary_Color_Default-1-1-0)}.button__5a77b748.secondary__2d95d7d5:hover{background:var(--triplex-next-Button-Secondary_Background_Hover-1-1-0);color:var(--triplex-next-Button-Secondary_Color_Hover-1-1-0)}.button__5a77b748.secondary__2d95d7d5.expanded__ca1182dd,.button__5a77b748.secondary__2d95d7d5:active{background:var(--triplex-next-Button-Secondary_Background_Active-1-1-0);color:var(--triplex-next-Button-Secondary_Color_Active-1-1-0)}.button__5a77b748.secondary__2d95d7d5:focus-visible{box-shadow:var(--triplex-next-Button-Secondary_Shadow_Focus-1-1-0)}.button__5a77b748.secondary__2d95d7d5:disabled{background:var(--triplex-next-Button-Secondary_Background_Disabled-1-1-0);color:var(--triplex-next-Button-Secondary_Color_Disabled-1-1-0)}.button__5a77b748.secondaryLight__85baabf7{text-transform:none;background:var(--triplex-next-Button-SecondaryLight_Background_Default-1-1-0);color:var(--triplex-next-Button-SecondaryLight_Color_Default-1-1-0)}.button__5a77b748.secondaryLight__85baabf7:hover{background:var(--triplex-next-Button-SecondaryLight_Background_Hover-1-1-0);color:var(--triplex-next-Button-SecondaryLight_Color_Hover-1-1-0)}.button__5a77b748.secondaryLight__85baabf7.expanded__ca1182dd,.button__5a77b748.secondaryLight__85baabf7:active{background:var(--triplex-next-Button-SecondaryLight_Background_Active-1-1-0);color:var(--triplex-next-Button-SecondaryLight_Color_Active-1-1-0)}.button__5a77b748.secondaryLight__85baabf7:focus-visible{box-shadow:var(--triplex-next-Button-SecondaryLight_Shadow_Focus-1-1-0)}.button__5a77b748.secondaryLight__85baabf7:disabled{background:var(--triplex-next-Button-SecondaryLight_Background_Disabled-1-1-0);color:var(--triplex-next-Button-SecondaryLight_Color_Disabled-1-1-0)}.button__5a77b748.danger__d7381d83{text-transform:none;background:var(--triplex-next-Button-Danger_Background_Default-1-1-0);color:var(--triplex-next-Button-Danger_Color_Default-1-1-0)}.button__5a77b748.danger__d7381d83:hover{background:var(--triplex-next-Button-Danger_Background_Hover-1-1-0);color:var(--triplex-next-Button-Danger_Color_Hover-1-1-0)}.button__5a77b748.danger__d7381d83.expanded__ca1182dd,.button__5a77b748.danger__d7381d83:active{background:var(--triplex-next-Button-Danger_Background_Active-1-1-0);color:var(--triplex-next-Button-Danger_Color_Active-1-1-0)}.button__5a77b748.danger__d7381d83:focus-visible{box-shadow:var(--triplex-next-Button-Danger_Shadow_Focus-1-1-0)}.button__5a77b748.danger__d7381d83:disabled{background:var(--triplex-next-Button-Danger_Background_Disabled-1-1-0);color:var(--triplex-next-Button-Danger_Color_Disabled-1-1-0)}.button__5a77b748.link__fa06516f{text-transform:none;background:transparent;color:var(--triplex-next-Button-Link_Color_Default-1-1-0);border-radius:0}.button__5a77b748.link__fa06516f.md__0dbdfe5e{height:40px;min-width:0;padding:0 2px}.button__5a77b748.link__fa06516f.sm__5ef4f406{height:28px;min-width:0;padding:0 2px}.button__5a77b748.link__fa06516f.lg__7146f580{height:56px;min-width:0;padding:0 2px}.button__5a77b748.link__fa06516f:hover{color:var(--triplex-next-Button-Link_Color_Hover-1-1-0)}.button__5a77b748.link__fa06516f:active{color:var(--triplex-next-Button-Link_Color_Active-1-1-0)}.button__5a77b748.link__fa06516f:focus-visible{box-shadow:var(--triplex-next-Button-Link_Shadow_Focus-1-1-0)}.button__5a77b748.link__fa06516f:disabled{color:var(--triplex-next-Button-Link_Color_Disabled-1-1-0)}.button__5a77b748{position:relative;margin:0;vertical-align:top;outline:none;font-family:inherit;background-clip:padding-box;cursor:pointer;border:none;font-weight:600;transition:background-color .2s ease-in-out,border-color .2s ease-in-out,box-shadow .2s ease-in-out,color .2s ease-in-out}.button__5a77b748::-moz-focus-inner{border:none;padding:0}.button__5a77b748.sm__5ef4f406{border-radius:6px;line-height:16px;font-size:12px}.button__5a77b748.sm__5ef4f406:not(.icon__bd8debbd){height:28px;min-width:58px;padding:0 16px}.button__5a77b748.sm__5ef4f406.icon__bd8debbd{min-height:28px;min-width:28px;padding:4px}.button__5a77b748.md__0dbdfe5e{border-radius:8px;line-height:20px;font-size:14px}.button__5a77b748.md__0dbdfe5e:not(.icon__bd8debbd){height:40px;min-width:72px;padding:0 20px}.button__5a77b748.md__0dbdfe5e.icon__bd8debbd{min-height:40px;min-width:40px;padding:10px}.button__5a77b748.lg__7146f580{border-radius:10px;line-height:20px;font-size:16px}.button__5a77b748.lg__7146f580:not(.icon__bd8debbd){height:56px;min-width:84px;padding:0 24px}.button__5a77b748.lg__7146f580.icon__bd8debbd{min-height:56px;min-width:56px;padding:12px}.button__5a77b748:disabled{cursor:default}.button__5a77b748:disabled *{pointer-events:none}.button__5a77b748+.button__5a77b748:not(.block__64ed43ef){margin-left:16px}.button__5a77b748 .content__db7f6cf0{display:flex;position:relative;justify-content:center;align-items:center;white-space:nowrap}.button__5a77b748.block__64ed43ef{display:block;width:100%}.button__5a77b748.loading__a831dcc2{pointer-events:none}.button__5a77b748.loading__a831dcc2 .content__db7f6cf0{visibility:hidden}.button__5a77b748 .loader__3bfd1b31{position:absolute;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center}.button__5a77b748 .loader__3bfd1b31.hidden__4f055ac6{visibility:hidden}.buttonDropdown__ffa6ca0e.block__64ed43ef{display:block}.buttonDropdown__ffa6ca0e+.button__5a77b748:not(.block__64ed43ef),.buttonDropdown__ffa6ca0e+.buttonDropdown__ffa6ca0e:not(.block__64ed43ef){margin-left:16px}.buttonDropdown__ffa6ca0e .buttonDropdownTarget__bc0d87b0 .caretIcon__a81e06f0{position:relative;left:4px;transition:transform .3s ease-in-out}.buttonDropdown__ffa6ca0e .buttonDropdownTarget__bc0d87b0.active__99cc088e .caretIcon__a81e06f0{transform:rotate(-180deg)}.buttonDropdown__ffa6ca0e .buttonDropdownMenuItem__fbe01200{overflow:hidden;text-overflow:ellipsis}.col-1__e2a93fe1{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 8.33333333%;max-width:8.33333333%;box-sizing:border-box}.col-2__349101f0{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 16.66666667%;max-width:16.66666667%;box-sizing:border-box}.col-3__8d4e03c3{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 25%;max-width:25%;box-sizing:border-box}.col-4__e69c8704{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 33.33333333%;max-width:33.33333333%;box-sizing:border-box}.col-5__9936ae5f{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 41.66666667%;max-width:41.66666667%;box-sizing:border-box}.col-6__7a04a062{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 50%;max-width:50%;box-sizing:border-box}.col-7__0f19f471{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 58.33333333%;max-width:58.33333333%;box-sizing:border-box}.col-8__e032b1b1{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 66.66666667%;max-width:66.66666667%;box-sizing:border-box}.col-9__553fe7c1{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 75%;max-width:75%;box-sizing:border-box}.col-10__55399f0c{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 83.33333333%;max-width:83.33333333%;box-sizing:border-box}.col-11__b4fd783f{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 91.66666667%;max-width:91.66666667%;box-sizing:border-box}.col-12__ae67e130{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 100%;max-width:100%;box-sizing:border-box}.offset-0__29d550d2{margin-left:0%}.offset-1__cb2b3ed7{margin-left:8.33333333%}.offset-2__11c60daf{margin-left:16.66666667%}.offset-3__fd3eb3fd{margin-left:25%}.offset-4__f5951685{margin-left:33.33333333%}.offset-5__de75d356{margin-left:41.66666667%}.offset-6__4e404775{margin-left:50%}.offset-7__32bbbd81{margin-left:58.33333333%}.offset-8__90b11d83{margin-left:66.66666667%}.offset-9__cffe03bf{margin-left:75%}.offset-10__ba390f9f{margin-left:83.33333333%}.offset-11__576cc691{margin-left:91.66666667%}.d-none__0b369c17{display:none!important}.d-block__02dfa295{display:block!important}@media (min-width: 576px){.col-sm-1__a20d9b21{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 8.33333333%;max-width:8.33333333%;box-sizing:border-box}.col-sm-2__2a587a8d{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 16.66666667%;max-width:16.66666667%;box-sizing:border-box}.col-sm-3__6bb29197{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 25%;max-width:25%;box-sizing:border-box}.col-sm-4__6ba6ee28{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 33.33333333%;max-width:33.33333333%;box-sizing:border-box}.col-sm-5__c7ada4db{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 41.66666667%;max-width:41.66666667%;box-sizing:border-box}.col-sm-6__b27f3459{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 50%;max-width:50%;box-sizing:border-box}.col-sm-7__dbfaa0fc{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 58.33333333%;max-width:58.33333333%;box-sizing:border-box}.col-sm-8__b55ba5d1{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 66.66666667%;max-width:66.66666667%;box-sizing:border-box}.col-sm-9__a3cd52a1{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 75%;max-width:75%;box-sizing:border-box}.col-sm-10__94843c7b{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 83.33333333%;max-width:83.33333333%;box-sizing:border-box}.col-sm-11__1092c0b8{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 91.66666667%;max-width:91.66666667%;box-sizing:border-box}.col-sm-12__9142c24b{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 100%;max-width:100%;box-sizing:border-box}.offset-sm-0__9365552e{margin-left:0%}.offset-sm-1__2838304f{margin-left:8.33333333%}.offset-sm-2__531123f2{margin-left:16.66666667%}.offset-sm-3__a1652a83{margin-left:25%}.offset-sm-4__e04ea999{margin-left:33.33333333%}.offset-sm-5__0dca3665{margin-left:41.66666667%}.offset-sm-6__78554fe1{margin-left:50%}.offset-sm-7__06c97113{margin-left:58.33333333%}.offset-sm-8__815e1940{margin-left:66.66666667%}.offset-sm-9__ec5124a5{margin-left:75%}.offset-sm-10__0bc9af36{margin-left:83.33333333%}.offset-sm-11__124280b8{margin-left:91.66666667%}.d-none-sm__334703c1{display:none!important}.d-block-sm__4ca1bef7{display:block!important}}@media (min-width: 768px){.col-md-1__12bc9564{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 8.33333333%;max-width:8.33333333%;box-sizing:border-box}.col-md-2__4427b47b{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 16.66666667%;max-width:16.66666667%;box-sizing:border-box}.col-md-3__f2de0dab{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 25%;max-width:25%;box-sizing:border-box}.col-md-4__db0661e7{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 33.33333333%;max-width:33.33333333%;box-sizing:border-box}.col-md-5__71740f34{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 41.66666667%;max-width:41.66666667%;box-sizing:border-box}.col-md-6__2a3813d0{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 50%;max-width:50%;box-sizing:border-box}.col-md-7__8cbbe94f{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 58.33333333%;max-width:58.33333333%;box-sizing:border-box}.col-md-8__296e8248{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 66.66666667%;max-width:66.66666667%;box-sizing:border-box}.col-md-9__92761e03{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 75%;max-width:75%;box-sizing:border-box}.col-md-10__4956e3fb{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 83.33333333%;max-width:83.33333333%;box-sizing:border-box}.col-md-11__4f16db13{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 91.66666667%;max-width:91.66666667%;box-sizing:border-box}.col-md-12__a43244b2{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 100%;max-width:100%;box-sizing:border-box}.offset-md-0__db2ccc63{margin-left:0%}.offset-md-1__47887c89{margin-left:8.33333333%}.offset-md-2__6ba1d4ec{margin-left:16.66666667%}.offset-md-3__be5cf9b9{margin-left:25%}.offset-md-4__102baac6{margin-left:33.33333333%}.offset-md-5__6a94c490{margin-left:41.66666667%}.offset-md-6__8377b273{margin-left:50%}.offset-md-7__a847a91f{margin-left:58.33333333%}.offset-md-8__a0a70f21{margin-left:66.66666667%}.offset-md-9__2f7c2ae5{margin-left:75%}.offset-md-10__7ce3395f{margin-left:83.33333333%}.offset-md-11__e8a87831{margin-left:91.66666667%}.d-none-md__76b22eb6{display:none!important}.d-block-md__ff159344{display:block!important}}@media (min-width: 992px){.col-lg-1__c64f51bb{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 8.33333333%;max-width:8.33333333%;box-sizing:border-box}.col-lg-2__46c05c7a{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 16.66666667%;max-width:16.66666667%;box-sizing:border-box}.col-lg-3__0548fb4a{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 25%;max-width:25%;box-sizing:border-box}.col-lg-4__b01fc8fe{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 33.33333333%;max-width:33.33333333%;box-sizing:border-box}.col-lg-5__c98161de{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 41.66666667%;max-width:41.66666667%;box-sizing:border-box}.col-lg-6__d2db2ce1{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 50%;max-width:50%;box-sizing:border-box}.col-lg-7__7319fd9f{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 58.33333333%;max-width:58.33333333%;box-sizing:border-box}.col-lg-8__0d108c6f{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 66.66666667%;max-width:66.66666667%;box-sizing:border-box}.col-lg-9__57b65a12{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 75%;max-width:75%;box-sizing:border-box}.col-lg-10__92b3b2b9{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 83.33333333%;max-width:83.33333333%;box-sizing:border-box}.col-lg-11__e2b08f5f{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 91.66666667%;max-width:91.66666667%;box-sizing:border-box}.col-lg-12__d9ecb239{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 100%;max-width:100%;box-sizing:border-box}.offset-lg-0__befd488e{margin-left:0%}.offset-lg-1__b7a0c715{margin-left:8.33333333%}.offset-lg-2__f415c054{margin-left:16.66666667%}.offset-lg-3__27313ada{margin-left:25%}.offset-lg-4__3f74174f{margin-left:33.33333333%}.offset-lg-5__8cc84a15{margin-left:41.66666667%}.offset-lg-6__4ccd1890{margin-left:50%}.offset-lg-7__23965fd6{margin-left:58.33333333%}.offset-lg-8__0ff2849a{margin-left:66.66666667%}.offset-lg-9__f608dc8b{margin-left:75%}.offset-lg-10__ec8f1b0f{margin-left:83.33333333%}.offset-lg-11__f6bee9d8{margin-left:91.66666667%}.d-none-lg__03186d10{display:none!important}.d-block-lg__7947d1a5{display:block!important}}@media (min-width: 1200px){.col-xl-1__e46fdc4f{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 8.33333333%;max-width:8.33333333%;box-sizing:border-box}.col-xl-2__d2442c1c{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 16.66666667%;max-width:16.66666667%;box-sizing:border-box}.col-xl-3__cb031e61{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 25%;max-width:25%;box-sizing:border-box}.col-xl-4__9461508b{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 33.33333333%;max-width:33.33333333%;box-sizing:border-box}.col-xl-5__8cde8329{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 41.66666667%;max-width:41.66666667%;box-sizing:border-box}.col-xl-6__224f3d77{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 50%;max-width:50%;box-sizing:border-box}.col-xl-7__2312ecca{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 58.33333333%;max-width:58.33333333%;box-sizing:border-box}.col-xl-8__c31714ea{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 66.66666667%;max-width:66.66666667%;box-sizing:border-box}.col-xl-9__0e84f02c{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 75%;max-width:75%;box-sizing:border-box}.col-xl-10__52b1f87e{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 83.33333333%;max-width:83.33333333%;box-sizing:border-box}.col-xl-11__37efadbd{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 91.66666667%;max-width:91.66666667%;box-sizing:border-box}.col-xl-12__ba05ce75{position:relative;width:100%;padding-right:12px;padding-left:12px;flex:0 0 100%;max-width:100%;box-sizing:border-box}.offset-xl-0__2f7f1f56{margin-left:0%}.offset-xl-1__483f45cd{margin-left:8.33333333%}.offset-xl-2__76d96d60{margin-left:16.66666667%}.offset-xl-3__99b1a651{margin-left:25%}.offset-xl-4__1be45289{margin-left:33.33333333%}.offset-xl-5__76a228ac{margin-left:41.66666667%}.offset-xl-6__cef88791{margin-left:50%}.offset-xl-7__b5016cf5{margin-left:58.33333333%}.offset-xl-8__4e92e053{margin-left:66.66666667%}.offset-xl-9__3eec6520{margin-left:75%}.offset-xl-10__7dadc7a6{margin-left:83.33333333%}.offset-xl-11__e158fb6e{margin-left:91.66666667%}.d-none-xl__757de9da{display:none!important}.d-block-xl__f6caf1e5{display:block!important}}.link__8ae01d44{cursor:pointer;position:relative;text-decoration:none;outline:none;color:var(--triplex-next-Link-Text_Color_Default-1-1-0)}.link__8ae01d44:hover{color:var(--triplex-next-Link-Text_Color_Hover-1-1-0)}.link__8ae01d44:active{color:var(--triplex-next-Link-Text_Color_Active-1-1-0)}.link__8ae01d44:focus-visible{box-shadow:var(--triplex-next-Link-BorderColor_Focus-1-1-0)}.wordWithContent__e4673da0{white-space:nowrap;display:inline-flex;align-items:center}.before__abf13a3f :first-child{margin-right:4px}.after__002e23fa :last-child{margin-left:4px}.loaderWidget__4d30c4af{display:flex;flex-direction:column;align-items:center;justify-content:center;position:absolute;left:0;top:0;right:0;bottom:0;z-index:10100}.loaderWidget__4d30c4af.loaderSmallBackdrop__c0e368fa{background:var(--triplex-next-LoaderWidget-Small_Backdrop_Default-1-1-0)}.loaderWidget__4d30c4af.loaderMiddleBackdrop__75e3aea9{background:var(--triplex-next-LoaderWidget-Middle_Backdrop_Default-1-1-0)}.loaderWidget__4d30c4af.loaderMiddleBackdrop__75e3aea9 .loaderMiddleBackground__b36674e6{width:64px;height:64px;border-radius:16px;background:var(--triplex-next-LoaderWidget-Middle_Background_Default-1-1-0)}.loaderWidget__4d30c4af.loaderMiddleBackdrop__75e3aea9 .loaderMiddleBackground__b36674e6 div{margin:12px}.row__e936ac25{display:flex;flex-wrap:wrap;margin-left:-12px;margin-right:-12px;padding-bottom:16px}.row__e936ac25.noPaddingBottom__af38257c,.row__e936ac25:last-child{padding-bottom:0}.tabsExtended__684cf259{position:relative}.tabsExtendedContent__5c27ffbb{display:inline-flex;padding:4px}.tabsExtendedTab__e71498e8+.tabsExtendedTab__e71498e8,.tabsExtendedDropdown__ddd6fda6{margin-left:2px}.tabsReal__00b3527a,.tabsFake__d85bf3ff{display:flex;box-sizing:border-box;width:100%}.tabsReal__00b3527a.hidden__4d9d4166{visibility:hidden}.tabsReal__00b3527a .tabsExtendedTab__e71498e8.hidden__4d9d4166{display:none}.tabsFake__d85bf3ff{padding:0 2px;position:absolute;left:-10000px;visibility:hidden}.tabsExtendedTabButton__699df4a7{font-family:inherit;margin:0;flex-shrink:0;border:1px solid var(--triplex-next-Tabs-Tab_BorderColor_Default-1-1-0);outline:none;background:var(--triplex-next-Tabs-Tab_Background_Default-1-1-0);cursor:pointer;white-space:nowrap;position:relative;overflow:visible}.tabsExtendedTabButton__699df4a7.lg__5ac6590c{border-radius:6px;padding:14px 16px;line-height:20px;font-size:16px}.tabsExtendedTabButton__699df4a7.md__e073d814{border-radius:4px;padding:6px 16px;line-height:20px;font-size:14px}.tabsExtendedTabButton__699df4a7.sm__aec1686c{border-radius:4px;padding:2px 16px;line-height:16px;font-size:12px}.tabsExtendedTabButton__699df4a7::-moz-focus-inner{border:none}.tabsExtendedTabButton__699df4a7+.tabsExtendedTabButton__699df4a7{margin-left:2px}.tabsExtendedTabButton__699df4a7:hover{background:var(--triplex-next-Tabs-Tab_Background_Hover-1-1-0)}.tabsExtendedTabButton__699df4a7:focus-visible{border-color:var(--triplex-next-Tabs-Tab_BorderColor_Focus-1-1-0)}.tabsExtendedTabButton__699df4a7.selected__06c3a67b{background:var(--triplex-next-Tabs-Tab_Background_Selected-1-1-0);cursor:default}.footer__bf2ab7aa.sticky__9eafa932{z-index:101;position:sticky;bottom:0}.footerDescription__39648b61{display:flex;justify-content:space-between;align-items:center}.footerDescriptionContent__19a2d759{flex-grow:1;margin-right:auto}.footerDescriptionControls__2419c078{margin-left:auto;white-space:nowrap;padding-left:24px}@media (max-width: 767px){.footerDescription__39648b61{flex-wrap:wrap;align-items:normal}.footerDescriptionContent__19a2d759{width:100%}.footerDescriptionControls__2419c078{padding-left:0;white-space:normal;margin-top:-16px;margin-left:-16px}.footerDescriptionControls__2419c078>button{margin-left:16px;margin-top:16px}.footerDescriptionContent__19a2d759+.footerDescriptionControls__2419c078{margin-top:0}.footer__bf2ab7aa{padding:16px 0}}.body__c40b4d76{position:relative;padding-bottom:24px;display:flex}.body__c40b4d76 .bodyInner__f6413115{position:relative;flex-grow:1;width:100%}@media (max-width: 767px){.body__c40b4d76{padding:16px 0;overflow-x:auto}}.headerTabs__a36edc06{display:flex;justify-content:space-between}.headerTabs__a36edc06 .headerTabsContent__14317d3b{flex-grow:1}.headerTabs__a36edc06 .headerTabsControls__b31b2182{flex-shrink:0;white-space:nowrap;padding-left:24px}@media (max-width: 767px){.headerTabs__a36edc06{flex-wrap:wrap}.headerTabs__a36edc06 .headerTabsContent__14317d3b{width:100%}.headerTabs__a36edc06 .headerTabsControls__b31b2182{flex-shrink:initial;padding-left:0;white-space:normal;margin-left:-16px}.headerTabs__a36edc06 .headerTabsControls__b31b2182>button{margin-left:16px;margin-top:16px}}.headerTitle__50e86bb7{display:flex;justify-content:space-between}.headerTitle__50e86bb7 .headerTitleControls__ab00cf26{white-space:nowrap;padding-left:24px}.headerLink__a0407999+.headerTitle__50e86bb7{padding-top:0}@media (max-width: 767px){.headerTitle__50e86bb7{flex-wrap:wrap}.headerTitle__50e86bb7 .headerTitleContent__aedeb78e{width:100%}.headerTitle__50e86bb7 .headerTitleControls__ab00cf26{padding-left:0;white-space:normal;margin-left:-16px}.headerTitle__50e86bb7 .headerTitleControls__ab00cf26>button{margin-left:16px;margin-top:16px}}.headerSubheader__5d1f0b19{padding:24px 0}.headerSubheader__5d1f0b19.withoutPaddings__fd37f046{padding:0}.headerLayoutSidebar__b8c618af{display:flex;justify-content:space-between}.headerLayoutSidebarContent__7c268fdc{flex-grow:1;min-width:1px}@media (max-width: 767px){.headerLayoutSidebarSidebar__239bb135{display:none}}.header__720bdaac.sticky__0fbfe909{z-index:101;position:sticky;top:0}.page__b2d8d5e9{height:100%;display:flex;flex-direction:column;max-width:100%;padding:24px;box-sizing:border-box;background-color:var(--triplex-next-Page-Background-1-1-0)}.page__b2d8d5e9 .headerPageBackground__5ff7e097{background:var(--triplex-next-HeaderPage-Background-1-1-0);padding:24px;border-radius:24px}.page__b2d8d5e9 .footerPageBackground__4f961f2f{background:var(--triplex-next-FooterPage-Background-1-1-0);padding:24px;border-radius:24px}.page__b2d8d5e9 .headerPageSticky__7c1a09df{z-index:101;position:sticky;top:0}.page__b2d8d5e9 .footerPageSticky__c6bd7124{z-index:101;position:sticky;bottom:0}.page__b2d8d5e9 .headerPageStuck__29b30583{border-top-left-radius:0;border-top-right-radius:0}.page__b2d8d5e9 .footerPageStuck__3a6eddc6{border-bottom-left-radius:0;border-bottom-right-radius:0}.observerTarget__71b4d10d{height:1px;visibility:hidden;pointer-events:none}.headerPage__a957ec72{padding-bottom:24px}.bodyPage__dedc7826{flex-grow:1}.paginationExtended__93fa2f4b{position:relative;padding:24px 0;display:flex;justify-content:center;align-items:center}.paginationNavigationButton__aefd53cb .directionIconNext__d0331238{transform:rotate(180deg)}.pageEllipsis__8ba3bc74{display:flex;justify-content:center;align-items:center;height:28px;width:28px;border-radius:50%;color:var(--triplex-next-TableBasic-PaginationBasic_Color-1-1-0);cursor:default}.paginationPageButton__eaddcd68{font-size:14px;font-family:inherit;color:var(--triplex-next-Pagination-PageButton_Color-1-1-0);background-color:transparent;display:flex;justify-content:center;align-items:center;height:28px;width:28px;line-height:20px;border:1px solid transparent;border-radius:6px;cursor:pointer}.paginationPageButton__eaddcd68:focus-visible{border-color:var(--triplex-next-Pagination-PageButton_BorderColor_Focus-1-1-0);outline:none}.paginationPageButton__eaddcd68:hover{background-color:var(--triplex-next-Pagination-PageButton_Background_Hover-1-1-0)}.paginationPageButton__eaddcd68:active{background-color:var(--triplex-next-Pagination-PageButton_Background_Active-1-1-0);cursor:grabbing}.paginationPageButton__eaddcd68.currentPage__2c5e95c4{background-color:var(--triplex-next-Pagination-PageButton_Background_Selected-1-1-0);cursor:default}.paginationNavigationExtended__fc2d372a{display:flex;align-items:center;gap:4px;list-style-type:none;margin:0;padding:0}.paginationSelect__47a62f36{position:absolute;left:0;display:flex;align-items:center}.paginationSelect__47a62f36 .paginationSelectControl__353ad334{margin-left:8px}.skeleton__0b233ebf{border-radius:16px;flex-grow:1}.skeleton__0b233ebf.light__e8316726{animation:skeleton-light-pulse__b84d3909 2s ease-in-out infinite}.skeleton__0b233ebf.dark__43e5d3b3{animation:skeleton-dark-pulse__59b0871e 2s ease-in-out infinite}@keyframes skeleton-light-pulse__b84d3909{0%{background-color:var(--triplex-next-Skeleton-BackgroundColor_Light_Start-1-1-0)}50%{background-color:var(--triplex-next-Skeleton-BackgroundColor_Light_End-1-1-0)}to{background-color:var(--triplex-next-Skeleton-BackgroundColor_Light_Start-1-1-0)}}@keyframes skeleton-dark-pulse__59b0871e{0%{background-color:var(--triplex-next-Skeleton-BackgroundColor_Dark_Start-1-1-0)}50%{background-color:var(--triplex-next-Skeleton-BackgroundColor_Dark_End-1-1-0)}to{background-color:var(--triplex-next-Skeleton-BackgroundColor_Dark_Start-1-1-0)}}.segmentedControlSegment__82f9193f{display:flex;flex-grow:1;align-items:center;justify-content:center;overflow:hidden;border:1px solid var(--triplex-next-SegmentedControlSegment-BorderColor_Default-1-1-0);outline:none;cursor:pointer}.segmentedControlSegment__82f9193f:disabled{cursor:default}.sm__217a3473 .segmentedControlSegment__82f9193f{min-height:20px;padding:2px;font-size:12px;line-height:16px;border-radius:4px}.md__9618954e .segmentedControlSegment__82f9193f{min-height:32px;padding:6px;font-size:14px;line-height:20px;border-radius:6px}.lg__f75cc505 .segmentedControlSegment__82f9193f{min-height:40px;padding:8px;font-size:16px;line-height:20px;border-radius:8px}.general1__1fa4e819 .segmentedControlSegment__82f9193f{color:var(--triplex-next-SegmentedControlSegment-General_1_Color_Default-1-1-0);background:var(--triplex-next-SegmentedControlSegment-General_1_Background_Default-1-1-0)}.general1__1fa4e819 .segmentedControlSegment__82f9193f:hover{color:var(--triplex-next-SegmentedControlSegment-General_1_Color_Hover-1-1-0);background:var(--triplex-next-SegmentedControlSegment-General_1_Background_Hover-1-1-0)}.general1__1fa4e819 .segmentedControlSegment__82f9193f:disabled{color:var(--triplex-next-SegmentedControlSegment-General_1_Color_Disabled-1-1-0);background:var(--triplex-next-SegmentedControlSegment-General_1_Background_Disabled-1-1-0)}.general1__1fa4e819 .segmentedControlSegment__82f9193f.selected__ded48ae3{color:var(--triplex-next-SegmentedControlSegment-General_1_Color_Selected_Default-1-1-0);background:var(--triplex-next-SegmentedControlSegment-General_1_Background_Selected_Default-1-1-0)}.general1__1fa4e819 .segmentedControlSegment__82f9193f.selected__ded48ae3:hover{color:var(--triplex-next-SegmentedControlSegment-General_1_Color_Selected_Hover-1-1-0);background:var(--triplex-next-SegmentedControlSegment-General_1_Background_Selected_Hover-1-1-0)}.general1__1fa4e819 .segmentedControlSegment__82f9193f.selected__ded48ae3:disabled{color:var(--triplex-next-SegmentedControlSegment-General_1_Color_Selected_Disabled-1-1-0);background:var(--triplex-next-SegmentedControlSegment-General_1_Background_Selected_Disabled-1-1-0)}.general2__92d13ed6 .segmentedControlSegment__82f9193f{color:var(--triplex-next-SegmentedControlSegment-General_2_Color_Default-1-1-0);background:var(--triplex-next-SegmentedControlSegment-General_2_Background_Default-1-1-0)}.general2__92d13ed6 .segmentedControlSegment__82f9193f:hover{color:var(--triplex-next-SegmentedControlSegment-General_2_Color_Hover-1-1-0);background:var(--triplex-next-SegmentedControlSegment-General_2_Background_Hover-1-1-0)}.general2__92d13ed6 .segmentedControlSegment__82f9193f:disabled{color:var(--triplex-next-SegmentedControlSegment-General_2_Color_Disabled-1-1-0);background:var(--triplex-next-SegmentedControlSegment-General_2_Background_Disabled-1-1-0)}.general2__92d13ed6 .segmentedControlSegment__82f9193f.selected__ded48ae3{color:var(--triplex-next-SegmentedControlSegment-General_2_Color_Selected_Default-1-1-0);background:var(--triplex-next-SegmentedControlSegment-General_2_Background_Selected_Default-1-1-0)}.general2__92d13ed6 .segmentedControlSegment__82f9193f.selected__ded48ae3:hover{color:var(--triplex-next-SegmentedControlSegment-General_2_Color_Selected_Hover-1-1-0);background:var(--triplex-next-SegmentedControlSegment-General_2_Background_Selected_Hover-1-1-0)}.general2__92d13ed6 .segmentedControlSegment__82f9193f.selected__ded48ae3:disabled{color:var(--triplex-next-SegmentedControlSegment-General_2_Color_Selected_Disabled-1-1-0);background:var(--triplex-next-SegmentedControlSegment-General_2_Background_Selected_Disabled-1-1-0)}.secondary1__e1e701c0 .segmentedControlSegment__82f9193f{color:var(--triplex-next-SegmentedControlSegment-Secondary_1_Color_Default-1-1-0);background:var(--triplex-next-SegmentedControlSegment-Secondary_1_Background_Default-1-1-0)}.secondary1__e1e701c0 .segmentedControlSegment__82f9193f:hover{color:var(--triplex-next-SegmentedControlSegment-Secondary_1_Color_Hover-1-1-0);background:var(--triplex-next-SegmentedControlSegment-Secondary_1_Background_Hover-1-1-0)}.secondary1__e1e701c0 .segmentedControlSegment__82f9193f:disabled{color:var(--triplex-next-SegmentedControlSegment-Secondary_1_Color_Disabled-1-1-0);background:var(--triplex-next-SegmentedControlSegment-Secondary_1_Background_Disabled-1-1-0)}.secondary1__e1e701c0 .segmentedControlSegment__82f9193f.selected__ded48ae3{color:var(--triplex-next-SegmentedControlSegment-Secondary_1_Color_Selected_Default-1-1-0);background:var(--triplex-next-SegmentedControlSegment-Secondary_1_Background_Selected_Default-1-1-0)}.secondary1__e1e701c0 .segmentedControlSegment__82f9193f.selected__ded48ae3:disabled{color:var(--triplex-next-SegmentedControlSegment-Secondary_1_Color_Selected_Disabled-1-1-0);background:var(--triplex-next-SegmentedControlSegment-Secondary_1_Background_Selected_Disabled-1-1-0)}.secondary2__18395e7d .segmentedControlSegment__82f9193f{color:var(--triplex-next-SegmentedControlSegment-Secondary_2_Color_Default-1-1-0);background:var(--triplex-next-SegmentedControlSegment-Secondary_2_Background_Default-1-1-0)}.secondary2__18395e7d .segmentedControlSegment__82f9193f:hover{color:var(--triplex-next-SegmentedControlSegment-Secondary_2_Color_Hover-1-1-0);background:var(--triplex-next-SegmentedControlSegment-Secondary_2_Background_Hover-1-1-0)}.secondary2__18395e7d .segmentedControlSegment__82f9193f:disabled{color:var(--triplex-next-SegmentedControlSegment-Secondary_2_Color_Disabled-1-1-0);background:var(--triplex-next-SegmentedControlSegment-Secondary_2_Background_Disabled-1-1-0)}.secondary2__18395e7d .segmentedControlSegment__82f9193f.selected__ded48ae3{color:var(--triplex-next-SegmentedControlSegment-Secondary_2_Color_Selected_Default-1-1-0);background:var(--triplex-next-SegmentedControlSegment-Secondary_2_Background_Selected_Default-1-1-0)}.secondary2__18395e7d .segmentedControlSegment__82f9193f.selected__ded48ae3:disabled{color:var(--triplex-next-SegmentedControlSegment-Secondary_2_Color_Selected_Disabled-1-1-0);background:var(--triplex-next-SegmentedControlSegment-Secondary_2_Background_Selected_Disabled-1-1-0)}.segmentedControlSegment__82f9193f:focus-visible{border-color:var(--triplex-next-SegmentedControlSegment-BorderColor_Focus-1-1-0)}.content__0dbe8ef6{position:relative;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.segmentedControl__e439d7f9{display:flex;gap:4px}.segmentedControl__e439d7f9.general1__1fa4e819{background:var(--triplex-next-SegmentedControl-General_1_Background-1-1-0)}.segmentedControl__e439d7f9.secondary1__e1e701c0{background:var(--triplex-next-SegmentedControl-Secondary_1_Background-1-1-0)}.segmentedControl__e439d7f9.general2__92d13ed6{background:var(--triplex-next-SegmentedControl-General_2_Background-1-1-0)}.segmentedControl__e439d7f9.secondary2__18395e7d{background:var(--triplex-next-SegmentedControl-Secondary_2_Background-1-1-0)}.segmentedControl__e439d7f9.sm__217a3473{padding:4px}.segmentedControl__e439d7f9.md__9618954e{padding:6px}.segmentedControl__e439d7f9.lg__f75cc505{padding:8px}.selectExtendedFieldTarget__dc3507f6{position:relative;box-sizing:border-box;align-items:center;outline:none;display:flex;justify-content:space-between;cursor:pointer}.selectExtendedFieldTarget__dc3507f6 .caretIcon__302a605b{transition:transform .3s ease;transform:rotate(0)}.selectExtendedFieldTarget__dc3507f6.selectOpened__322f7e0c .caretIcon__302a605b{transform:rotate(180deg)}.selectExtendedFieldTarget__dc3507f6.loading__7f9a42cf,.selectExtendedFieldTarget__dc3507f6.disabled__0fe33e7f{-webkit-user-select:none;user-select:none;pointer-events:none}.SelectExtendedField__e1c16bd5,.islandBody__1b57a1d8,.islandHeader__624c8291,.islandFooter__d3cbfc45{position:relative}.island__11bd9177.type1__9ebb4b7e{background-color:var(--triplex-next-Island-Type1_Background-1-1-0);box-shadow:var(--triplex-next-Island-Type1_Shadow-1-1-0)}.island__11bd9177.type2__bf920478{background-color:var(--triplex-next-Island-Type2_Background-1-1-0);box-shadow:var(--triplex-next-Island-Type2_Shadow-1-1-0)}.island__11bd9177.type3__9e85c601{background-color:var(--triplex-next-Island-Type3_Background-1-1-0);box-shadow:var(--triplex-next-Island-Type3_Shadow-1-1-0)}.island__11bd9177.borderRadiusMD__e4cf1d9e{border-radius:16px}.island__11bd9177.borderRadiusSM__a7b0f3fe{border-radius:8px}.island__11bd9177.paddingLG__3cc7414c{padding:24px}.island__11bd9177.paddingMD__38ce4dd2{padding:16px}.island__11bd9177.paddingSM__23930864{padding:0}.island__11bd9177 .islandHeader__624c8291+.islandBody__1b57a1d8,.island__11bd9177 .islandHeader__624c8291+.islandFooter__d3cbfc45,.island__11bd9177 .islandBody__1b57a1d8+.islandFooter__d3cbfc45{margin-top:16px}.tooltipDesktop__af6baa69{display:flex;position:absolute;top:0;left:0;outline:none;pointer-events:auto;z-index:10000}.tooltipDesktop__af6baa69 .tooltipBody__46422487{text-align:left;font-weight:400;font-size:14px;line-height:20px;color:var(--triplex-next-Tooltip-Color-1-1-0)}.tooltipDesktop__af6baa69 .tooltipXButton__5ccd4e98{position:absolute;right:8px;top:8px}.tooltipDesktopContent__5b0d5293{position:relative;padding:16px;box-sizing:border-box;overflow-y:auto;background-color:var(--triplex-next-Tooltip-Background-1-1-0);border-radius:8px}.closable__20e3c88b .tooltipDesktopContent__5b0d5293{padding-right:32px}.tooltipSM__876ecfcc .tooltipDesktopContent__5b0d5293{width:192px;min-height:52px}.tooltipLG__9267197c .tooltipDesktopContent__5b0d5293{width:384px;min-height:52px}.tooltipOverlay__1bd5cdbf{position:fixed;top:0;bottom:0;right:0;left:0;pointer-events:none;z-index:9999}.tooltipDesktopTip__871ab998{width:0;height:0}.tooltipDesktopTip__871ab998.down__521823e5{border-top:solid var(--triplex-next-Tooltip-Background-1-1-0);border-right:solid transparent;border-left:solid transparent}.tooltipDesktopTip__871ab998.up__8048226c{border-bottom:solid var(--triplex-next-Tooltip-Background-1-1-0);border-right:solid transparent;border-left:solid transparent}.tooltipDesktopTip__871ab998.left__bb76289f{border-right:solid var(--triplex-next-Tooltip-Background-1-1-0);border-top:solid transparent;border-bottom:solid transparent}.tooltipDesktopTip__871ab998.right__ec6887f3{border-left:solid var(--triplex-next-Tooltip-Background-1-1-0);border-top:solid transparent;border-bottom:solid transparent}.overlay__3c48d3e6{position:absolute;left:-10000px;visibility:hidden;top:0;bottom:0;overflow:hidden}.overlay__3c48d3e6.fixed__a0d9dc48{position:fixed}.overlay__3c48d3e6.closing__040635ba,.overlay__3c48d3e6.opened__498bbc1a{visibility:visible;left:0;right:0}.overlayPanel__c52a54d9{position:absolute;background:var(--triplex-next-Overlay-Panel_Background-1-1-0);overflow:auto;transition:transform .3s ease-in-out}.overlayPanel__c52a54d9.bottom__fcdec415{left:0;right:0;bottom:0;transform:translateY(100%);box-shadow:0 -13px 17px #00000024}.overlayPanel__c52a54d9.left__7a67d9c4{left:0;top:0;height:100%;transform:translate(-100%);box-shadow:13px 0 17px #00000024}.overlayPanel__c52a54d9.right__140450a4{right:0;top:0;height:100%;transform:translate(100%);box-shadow:-13px 0 17px #00000024}.overlayPanel__c52a54d9.top__3dd51b7a{left:0;top:0;right:0;transform:translateY(-100%);box-shadow:0 13px 17px #00000024}.overlayPanel__c52a54d9.left__7a67d9c4.opened__498bbc1a,.overlayPanel__c52a54d9.right__140450a4.opened__498bbc1a{transform:translate(0)}.overlayPanel__c52a54d9.top__3dd51b7a.opened__498bbc1a,.overlayPanel__c52a54d9.bottom__fcdec415.opened__498bbc1a{transform:translateY(0)}.overlayContent__0d3e9a27{display:flex;min-height:100%}.overlayMask__b5a8fb36{width:100%;bottom:0;left:0;top:0;position:absolute;background:var(--triplex-next-Overlay-Background-1-1-0);opacity:0;transition:opacity .3s ease-in-out}.overlayMask__b5a8fb36.overlayOpened__7085715f{opacity:1}.listMasterFooter__7aeea717{padding:16px;background:var(--triplex-next-ListMaster-Footer_Background-1-1-0);color:var(--triplex-next-ListMaster-Footer_Color-1-1-0);display:flex;justify-content:space-between;align-items:center}.listMasterFooter__7aeea717.sticky__23534040{position:sticky;bottom:0}.listMasterFooterDescription__a09cd7bc{padding-right:16px}.listMasterFooterControls__710275e6{white-space:nowrap}.tooltipMobile__bf2a5b68 .tooltipBody__46422487{text-align:left}.tooltipMobile__bf2a5b68 .tooltipXButton__5ccd4e98{position:absolute;right:16px;top:16px}.tooltipMobileContent__fc5d1607{padding:16px}.headerless__9af8f435 .tooltipMobileContent__fc5d1607{padding-right:40px}.tooltipLink__4dd334d4{font-weight:400;font-size:14px;line-height:20px;text-decoration:none;cursor:pointer;display:block;margin-top:16px}.desktop__d5f381d9{color:var(--triplex-next-Tooltip-Link_Desktop_Color_Default-1-1-0)}.desktop__d5f381d9:hover{color:var(--triplex-next-Tooltip-Link_Desktop_Color_Hover-1-1-0)}.desktop__d5f381d9:active{color:var(--triplex-next-Tooltip-Link_Desktop_Color_Active-1-1-0)}.desktop__d5f381d9:focus-visible{outline:none;box-shadow:var(--triplex-next-Tooltip-Link_Desktop_Shadow_Focus-1-1-0)}.mobile__76847c64{color:var(--triplex-next-Tooltip-Link_Mobile_Color_Default-1-1-0)}.mobile__76847c64:hover{color:var(--triplex-next-Tooltip-Link_Mobile_Color_Hover-1-1-0)}.mobile__76847c64:active{color:var(--triplex-next-Tooltip-Link_Mobile_Color_Active-1-1-0)}.mobile__76847c64:focus-visible{outline:none;box-shadow:var(--triplex-next-Tooltip-Link_Mobile_Shadow_Focus-1-1-0)}.listMasterChipGroup__203c6a15{padding:0 16px}.listMasterHeader__46999099{padding:12px 16px;background:var(--triplex-next-ListMaster-Header_Background-1-1-0);color:var(--triplex-next-ListMaster-Header_Color-1-1-0)}.listMasterHeader__46999099.sticky__23534040{position:sticky;top:0;z-index:1}.selectionControls__1a46756e{display:flex;justify-content:space-between;align-items:center}.uploadZone__7ef466bf{border-radius:8px;position:relative;background:var(--triplex-next-UploadZone-Background_Default-1-1-0)}.uploadZone__7ef466bf:hover{background:var(--triplex-next-UploadZone-Background_Hover-1-1-0)}.uploadZoneDragArea__6231c055{position:absolute;top:0;right:0;bottom:0;left:0;cursor:pointer;border:1px dashed var(--triplex-next-UploadZone-BorderColor_Default-1-1-0);border-radius:8px;box-sizing:border-box}.uploadZoneContainerDragArea__a8a3ff63{position:absolute;top:0;right:0;bottom:0;left:0;cursor:pointer;border:1px dashed var(--triplex-next-UploadZone-BorderColor_Default-1-1-0);height:100%;background:var(--triplex-next-UploadZone-DragArea_Background-1-1-0);border:1px dashed var(--triplex-next-UploadZone-DragArea_BorderColor-1-1-0);border-radius:8px;box-sizing:border-box}.uploadZoneInput__0b13730b{display:none}
|