cozy-ui 131.1.0-beta.9 → 131.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/dist/cozy-ui.min.css +2 -0
- package/dist/cozy-ui.utils.min.css +1 -0
- package/package.json +6 -2
- package/react/Accordion/Readme.md +35 -0
- package/react/AccordionActions/index.js +3 -0
- package/react/AccordionDetails/index.js +3 -0
- package/react/AccordionSummary/AccordionExpandIcon.jsx +8 -0
- package/react/AccordionSummary/index.js +10 -0
- package/react/ActionsBar/Readme.md +54 -0
- package/react/ActionsBar/ResponsiveAction.jsx +67 -0
- package/react/ActionsBar/index.jsx +217 -0
- package/react/ActionsBar/locales/en.json +4 -0
- package/react/ActionsBar/locales/fr.json +4 -0
- package/react/ActionsBar/locales/ru.json +4 -0
- package/react/ActionsBar/locales/vi.json +4 -0
- package/react/ActionsBar/locales/withActionsLocales.jsx +14 -0
- package/react/ActionsMenu/Actions/addToFavorites.js +66 -0
- package/react/ActionsMenu/Actions/call.js +34 -0
- package/react/ActionsMenu/Actions/copyToClipboard.js +55 -0
- package/react/ActionsMenu/Actions/divider.js +12 -0
- package/react/ActionsMenu/Actions/download.js +48 -0
- package/react/ActionsMenu/Actions/editAttribute.js +41 -0
- package/react/ActionsMenu/Actions/emailTo.js +34 -0
- package/react/ActionsMenu/Actions/helpers.js +242 -0
- package/react/ActionsMenu/Actions/helpers.spec.js +80 -0
- package/react/ActionsMenu/Actions/index.js +15 -0
- package/react/ActionsMenu/Actions/locales/en.json +29 -0
- package/react/ActionsMenu/Actions/locales/fr.json +29 -0
- package/react/ActionsMenu/Actions/locales/ru.json +29 -0
- package/react/ActionsMenu/Actions/locales/vi.json +29 -0
- package/react/ActionsMenu/Actions/locales/withActionsLocales.jsx +16 -0
- package/react/ActionsMenu/Actions/makeAction.jsx +42 -0
- package/react/ActionsMenu/Actions/modify.js +45 -0
- package/react/ActionsMenu/Actions/others.jsx +12 -0
- package/react/ActionsMenu/Actions/print.js +77 -0
- package/react/ActionsMenu/Actions/removeFromFavorites.js +66 -0
- package/react/ActionsMenu/Actions/smsTo.js +34 -0
- package/react/ActionsMenu/Actions/viewInContacts.js +44 -0
- package/react/ActionsMenu/Actions/viewInDrive.js +53 -0
- package/react/ActionsMenu/ActionsItems.jsx +85 -0
- package/react/ActionsMenu/ActionsMenuButton.jsx +45 -0
- package/react/ActionsMenu/ActionsMenuItem.jsx +40 -0
- package/react/ActionsMenu/ActionsMenuMobileHeader.jsx +31 -0
- package/react/ActionsMenu/ActionsMenuWrapper.jsx +82 -0
- package/react/ActionsMenu/Readme.md +254 -0
- package/react/ActionsMenu/index.jsx +97 -0
- package/react/Alert/Readme.md +150 -0
- package/react/Alert/index.jsx +146 -0
- package/react/AlertTitle/index.jsx +3 -0
- package/react/AppBar/index.js +3 -0
- package/react/AppIcon/Readme.md +96 -0
- package/react/AppIcon/index.jsx +169 -0
- package/react/AppIcon/styles.styl +37 -0
- package/react/AppLinker/Readme.md +32 -0
- package/react/AppLinker/__snapshots__/index.spec.jsx.snap +13 -0
- package/react/AppLinker/index.jsx +107 -0
- package/react/AppLinker/index.spec.jsx +60 -0
- package/react/AppLinker/native.config.js +1 -0
- package/react/AppLinker/native.js +55 -0
- package/react/AppLinker/native.spec.js +120 -0
- package/react/AppSections/Readme.md +41 -0
- package/react/AppSections/Sections.jsx +286 -0
- package/react/AppSections/Sections.styl +4 -0
- package/react/AppSections/__snapshots__/search.spec.js.snap +972 -0
- package/react/AppSections/_mockApps.js +197 -0
- package/react/AppSections/categories.js +138 -0
- package/react/AppSections/categories.spec.js +289 -0
- package/react/AppSections/components/AppsSection.jsx +81 -0
- package/react/AppSections/components/AppsSection.spec.jsx +58 -0
- package/react/AppSections/components/AppsSection.styl +7 -0
- package/react/AppSections/components/DropdownFilter.jsx +49 -0
- package/react/AppSections/components/DropdownFilter.styl +14 -0
- package/react/AppSections/constants.js +9 -0
- package/react/AppSections/generateI18nConfig.ts +23 -0
- package/react/AppSections/helpers.js +16 -0
- package/react/AppSections/helpers.spec.js +39 -0
- package/react/AppSections/index.jsx +3 -0
- package/react/AppSections/index.spec.jsx +137 -0
- package/react/AppSections/locales/en.json +37 -0
- package/react/AppSections/locales/fr.json +37 -0
- package/react/AppSections/locales/ru.json +37 -0
- package/react/AppSections/locales/vi.json +37 -0
- package/react/AppSections/search.js +104 -0
- package/react/AppSections/search.spec.js +158 -0
- package/react/AppTile/AppTile.spec.jsx +119 -0
- package/react/AppTile/Readme.md +24 -0
- package/react/AppTile/helpers.js +25 -0
- package/react/AppTile/index.jsx +139 -0
- package/react/AppTile/locales/en.json +9 -0
- package/react/AppTile/locales/fr.json +9 -0
- package/react/AppTile/locales/ru.json +9 -0
- package/react/AppTile/locales/vi.json +9 -0
- package/react/AppTile/styles.styl +27 -0
- package/react/AppTitle/Readme.md +21 -0
- package/react/AppTitle/index.jsx +125 -0
- package/react/AppTitle/styles.styl +19 -0
- package/react/Avatar/Readme.md +93 -0
- package/react/Avatar/helpers.js +60 -0
- package/react/Avatar/index.jsx +77 -0
- package/react/AvatarGroup/index.js +39 -0
- package/react/Backdrop/index.js +30 -0
- package/react/Badge/Readme.md +82 -0
- package/react/Badge/index.jsx +76 -0
- package/react/Banner/Readme.md +48 -0
- package/react/Banner/index.jsx +104 -0
- package/react/Banner/index.spec.jsx +20 -0
- package/react/Banner/styles.styl +35 -0
- package/react/BarButton/Readme.md +50 -0
- package/react/BarButton/index.jsx +69 -0
- package/react/BarButton/styles.styl +19 -0
- package/react/BarContextProvider/index.jsx +40 -0
- package/react/BarContextProvider/index.spec.jsx +176 -0
- package/react/BarTitle/Readme.md +36 -0
- package/react/BarTitle/index.jsx +26 -0
- package/react/BarTitle/styles.styl +8 -0
- package/react/BottomNavigation/index.js +3 -0
- package/react/BottomNavigationAction/index.js +3 -0
- package/react/BottomSheet/BackdropOrFragment.jsx +17 -0
- package/react/BottomSheet/BottomSheet.jsx +454 -0
- package/react/BottomSheet/BottomSheetHeader.jsx +20 -0
- package/react/BottomSheet/BottomSheetItem.jsx +37 -0
- package/react/BottomSheet/BottomSheetTitle.jsx +54 -0
- package/react/BottomSheet/README.md +289 -0
- package/react/BottomSheet/constants.js +1 -0
- package/react/BottomSheet/helpers.js +159 -0
- package/react/BottomSheet/helpers.spec.js +557 -0
- package/react/BottomSheet/index.jsx +4 -0
- package/react/BottomSheet/styles.styl +15 -0
- package/react/Box/index.js +3 -0
- package/react/Breadcrumbs/Readme.md +13 -0
- package/react/Breadcrumbs/index.js +3 -0
- package/react/Button/index.js +3 -0
- package/react/ButtonBase/index.js +3 -0
- package/react/Buttons/Readme.md +308 -0
- package/react/Buttons/index.jsx +126 -0
- package/react/Card/Readme.md +42 -0
- package/react/Card/index.jsx +35 -0
- package/react/Card/styles.styl +8 -0
- package/react/CardActionArea/index.js +3 -0
- package/react/CardActions/index.js +3 -0
- package/react/CardContent/index.js +3 -0
- package/react/CardHeader/index.js +3 -0
- package/react/CardMedia/index.js +3 -0
- package/react/Checkbox/Readme.md +66 -0
- package/react/Checkbox/index.jsx +119 -0
- package/react/Checkbox/styles.styl +27 -0
- package/react/Chips/Readme.md +169 -0
- package/react/Chips/index.jsx +35 -0
- package/react/CipherIcon/Readme.md +14 -0
- package/react/CipherIcon/index.jsx +46 -0
- package/react/CipherIcon/index.spec.jsx +51 -0
- package/react/Circle/Readme.md +41 -0
- package/react/Circle/index.jsx +47 -0
- package/react/Circle/styles.styl +7 -0
- package/react/CircleButton/Readme.md +128 -0
- package/react/CircleButton/helpers.js +16 -0
- package/react/CircleButton/helpers.spec.js +61 -0
- package/react/CircleButton/index.jsx +96 -0
- package/react/CircularChart/CircularChartProgress.jsx +59 -0
- package/react/CircularChart/CircularProgressWithBackground.jsx +43 -0
- package/react/CircularChart/Readme.md +130 -0
- package/react/CircularChart/helper.spec.ts +97 -0
- package/react/CircularChart/helpers.ts +46 -0
- package/react/CircularChart/index.jsx +75 -0
- package/react/CircularProgress/index.js +3 -0
- package/react/ClickAwayListener/index.js +3 -0
- package/react/Collapse/index.js +3 -0
- package/react/ContactPicker/Readme.md +26 -0
- package/react/ContactPicker/index.jsx +87 -0
- package/react/ContactPicker/index.spec.jsx +60 -0
- package/react/ContactPicker/styles.styl +5 -0
- package/react/Contacts/AddModal/ContactAddressDialog/helpers.js +22 -0
- package/react/Contacts/AddModal/ContactAddressDialog/helpers.spec.js +64 -0
- package/react/Contacts/AddModal/ContactAddressDialog/index.jsx +84 -0
- package/react/Contacts/AddModal/ContactAddressDialog/locales/en.json +25 -0
- package/react/Contacts/AddModal/ContactAddressDialog/locales/fr.json +25 -0
- package/react/Contacts/AddModal/ContactAddressDialog/locales/index.jsx +11 -0
- package/react/Contacts/AddModal/ContactAddressDialog/locales/ru.json +25 -0
- package/react/Contacts/AddModal/ContactAddressDialog/locales/vi.json +25 -0
- package/react/Contacts/AddModal/ContactForm/FieldInput.jsx +123 -0
- package/react/Contacts/AddModal/ContactForm/FieldInputAccordion.jsx +57 -0
- package/react/Contacts/AddModal/ContactForm/FieldInputArray.jsx +80 -0
- package/react/Contacts/AddModal/ContactForm/FieldInputLayout.jsx +76 -0
- package/react/Contacts/AddModal/ContactForm/FieldInputWrapper.jsx +43 -0
- package/react/Contacts/AddModal/ContactForm/HasValueCondition.jsx +31 -0
- package/react/Contacts/AddModal/ContactForm/HasValueCondition.spec.jsx +79 -0
- package/react/Contacts/AddModal/ContactForm/RelatedContactList.jsx +37 -0
- package/react/Contacts/AddModal/ContactForm/TextFieldCustomLabelSelect.jsx +78 -0
- package/react/Contacts/AddModal/ContactForm/TextFieldSelect.jsx +39 -0
- package/react/Contacts/AddModal/ContactForm/__snapshots__/HasValueCondition.spec.jsx.snap +33 -0
- package/react/Contacts/AddModal/ContactForm/contactToFormValues.js +109 -0
- package/react/Contacts/AddModal/ContactForm/contactToFormValues.spec.js +133 -0
- package/react/Contacts/AddModal/ContactForm/fieldsConfig.jsx +357 -0
- package/react/Contacts/AddModal/ContactForm/formValuesToContact.js +111 -0
- package/react/Contacts/AddModal/ContactForm/formValuesToContact.spec.js +557 -0
- package/react/Contacts/AddModal/ContactForm/helpers.js +393 -0
- package/react/Contacts/AddModal/ContactForm/helpers.spec.js +391 -0
- package/react/Contacts/AddModal/ContactForm/index.jsx +138 -0
- package/react/Contacts/AddModal/ContactForm/index.spec.jsx +301 -0
- package/react/Contacts/AddModal/ContactForm/locales/en.json +75 -0
- package/react/Contacts/AddModal/ContactForm/locales/fr.json +75 -0
- package/react/Contacts/AddModal/ContactForm/locales/index.jsx +11 -0
- package/react/Contacts/AddModal/ContactForm/locales/ru.json +75 -0
- package/react/Contacts/AddModal/ContactForm/locales/vi.json +75 -0
- package/react/Contacts/AddModal/ContactForm/styles.styl +2 -0
- package/react/Contacts/AddModal/CustomLabelDialog/index.jsx +108 -0
- package/react/Contacts/AddModal/CustomLabelDialog/locales/en.json +15 -0
- package/react/Contacts/AddModal/CustomLabelDialog/locales/fr.json +15 -0
- package/react/Contacts/AddModal/CustomLabelDialog/locales/index.jsx +11 -0
- package/react/Contacts/AddModal/CustomLabelDialog/locales/ru.json +15 -0
- package/react/Contacts/AddModal/CustomLabelDialog/locales/vi.json +15 -0
- package/react/Contacts/AddModal/Readme.md +55 -0
- package/react/Contacts/AddModal/index.jsx +85 -0
- package/react/Contacts/AddModal/locales/en.json +13 -0
- package/react/Contacts/AddModal/locales/fr.json +13 -0
- package/react/Contacts/AddModal/locales/index.jsx +11 -0
- package/react/Contacts/AddModal/locales/ru.json +13 -0
- package/react/Contacts/AddModal/locales/vi.json +13 -0
- package/react/Contacts/AddModal/mocks.js +299 -0
- package/react/Contacts/AddModal/types.js +102 -0
- package/react/Contacts/GroupsSelect/GroupCreation.jsx +95 -0
- package/react/Contacts/GroupsSelect/GroupsSelect.jsx +159 -0
- package/react/Contacts/GroupsSelect/GroupsSelect.spec.jsx +248 -0
- package/react/Contacts/GroupsSelect/GroupsSelectProvider.jsx +39 -0
- package/react/Contacts/GroupsSelect/Readme.md +1 -0
- package/react/Contacts/GroupsSelect/SelectBox/Control.jsx +36 -0
- package/react/Contacts/GroupsSelect/SelectBox/EditGroupName.jsx +52 -0
- package/react/Contacts/GroupsSelect/SelectBox/Menu.jsx +26 -0
- package/react/Contacts/GroupsSelect/SelectBox/Option.jsx +67 -0
- package/react/Contacts/GroupsSelect/SelectBox/SelectContainer.jsx +15 -0
- package/react/Contacts/GroupsSelect/SelectBox/styles.styl +2 -0
- package/react/Contacts/GroupsSelect/helpers.js +25 -0
- package/react/Contacts/GroupsSelect/locales/en.json +21 -0
- package/react/Contacts/GroupsSelect/locales/fr.json +21 -0
- package/react/Contacts/GroupsSelect/locales/index.jsx +11 -0
- package/react/Contacts/GroupsSelect/locales/ru.json +21 -0
- package/react/Contacts/GroupsSelect/locales/vi.json +21 -0
- package/react/Contacts/GroupsSelect/styles.styl +48 -0
- package/react/Contacts/GroupsSelect/useGroupSelect.jsx +88 -0
- package/react/Contacts/Header/GroupsSelection.jsx +74 -0
- package/react/Contacts/Header/ImportDropdown.jsx +78 -0
- package/react/Contacts/Header/Readme.md +38 -0
- package/react/Contacts/Header/SearchInput.jsx +19 -0
- package/react/Contacts/Header/index.jsx +79 -0
- package/react/Contacts/Header/locales/en.json +15 -0
- package/react/Contacts/Header/locales/fr.json +15 -0
- package/react/Contacts/Header/locales/index.jsx +11 -0
- package/react/Contacts/Header/locales/ru.json +15 -0
- package/react/Contacts/Header/locales/vi.json +15 -0
- package/react/Contacts/Readme.md +1 -0
- package/react/ContactsList/ContactCell.jsx +22 -0
- package/react/ContactsList/ContactRow.jsx +46 -0
- package/react/ContactsList/ContactRow.spec.js +75 -0
- package/react/ContactsList/Contacts/ContactCozy.jsx +22 -0
- package/react/ContactsList/Contacts/ContactEmail.jsx +22 -0
- package/react/ContactsList/Contacts/ContactIdentity.jsx +57 -0
- package/react/ContactsList/Contacts/ContactName.jsx +44 -0
- package/react/ContactsList/Contacts/ContactPhone.jsx +23 -0
- package/react/ContactsList/ContactsList.jsx +51 -0
- package/react/ContactsList/Readme.md +47 -0
- package/react/ContactsList/_mockContacts.json +2494 -0
- package/react/ContactsList/helpers.js +132 -0
- package/react/ContactsList/helpers.spec.js +150 -0
- package/react/ContactsList/index.js +3 -0
- package/react/ContactsList/locales/en.json +5 -0
- package/react/ContactsList/locales/fr.json +5 -0
- package/react/ContactsList/locales/ru.json +5 -0
- package/react/ContactsList/locales/vi.json +5 -0
- package/react/ContactsList/locales/withContactsListLocales.jsx +14 -0
- package/react/ContactsList/styles.styl +35 -0
- package/react/ContactsListModal/AddContact/AddContactActions.jsx +15 -0
- package/react/ContactsListModal/AddContact/AddContactContent.jsx +59 -0
- package/react/ContactsListModal/AddContact/AddContactDialog.jsx +38 -0
- package/react/ContactsListModal/AddContact/AddContactTitle.jsx +9 -0
- package/react/ContactsListModal/AddContact/helpers.js +18 -0
- package/react/ContactsListModal/AddContact/helpers.spec.js +74 -0
- package/react/ContactsListModal/AddContact/styles.styl +2 -0
- package/react/ContactsListModal/ContactsListContent.jsx +75 -0
- package/react/ContactsListModal/ContactsListModal.jsx +143 -0
- package/react/ContactsListModal/ContactsListModalWithQuery.jsx +27 -0
- package/react/ContactsListModal/EmptyMessage.jsx +18 -0
- package/react/ContactsListModal/MobileHeader.jsx +49 -0
- package/react/ContactsListModal/Readme.md +45 -0
- package/react/ContactsListModal/index.jsx +28 -0
- package/react/ContactsListModal/locales/en.json +11 -0
- package/react/ContactsListModal/locales/fr.json +11 -0
- package/react/ContactsListModal/locales/ru.json +11 -0
- package/react/ContactsListModal/locales/vi.json +11 -0
- package/react/ContactsListModal/mockClient.jsx +47 -0
- package/react/ContactsListModal/queries.js +12 -0
- package/react/ContactsListModal/styles.styl +12 -0
- package/react/ContactsListModal/withContactsListLocales.jsx +10 -0
- package/react/Container/index.js +3 -0
- package/react/Counter/Readme.md +21 -0
- package/react/Counter/index.jsx +18 -0
- package/react/CozyDialogs/ConfirmDialog.jsx +84 -0
- package/react/CozyDialogs/Dialog.jsx +83 -0
- package/react/CozyDialogs/DialogBackButton.jsx +34 -0
- package/react/CozyDialogs/DialogCloseButton.jsx +34 -0
- package/react/CozyDialogs/DialogTransition.jsx +21 -0
- package/react/CozyDialogs/FixedActionsDialog.jsx +74 -0
- package/react/CozyDialogs/FixedDialog.jsx +73 -0
- package/react/CozyDialogs/IllustrationDialog.jsx +92 -0
- package/react/CozyDialogs/PermissionDialog.jsx +86 -0
- package/react/CozyDialogs/Readme.md +495 -0
- package/react/CozyDialogs/SpecificDialogs/AllowLocationDialog.jsx +72 -0
- package/react/CozyDialogs/SpecificDialogs/AuthentificationDialog.jsx +115 -0
- package/react/CozyDialogs/SpecificDialogs/InstallFlagshipAppDialog.jsx +79 -0
- package/react/CozyDialogs/SpecificDialogs/Readme.md +130 -0
- package/react/CozyDialogs/SpecificDialogs/ShortcutDialog.jsx +120 -0
- package/react/CozyDialogs/SpecificDialogs/helpers/shortcuts.js +63 -0
- package/react/CozyDialogs/SpecificDialogs/icons/CozyLocation.jsx +42 -0
- package/react/CozyDialogs/SpecificDialogs/icons/QRCodeInstallFlagshipAppDialog.png +0 -0
- package/react/CozyDialogs/SpecificDialogs/icons/appstore.png +0 -0
- package/react/CozyDialogs/SpecificDialogs/icons/playstore.png +0 -0
- package/react/CozyDialogs/SpecificDialogs/index.jsx +4 -0
- package/react/CozyDialogs/SpecificDialogs/locales/en.json +41 -0
- package/react/CozyDialogs/SpecificDialogs/locales/fr.json +41 -0
- package/react/CozyDialogs/SpecificDialogs/locales/ru.json +41 -0
- package/react/CozyDialogs/SpecificDialogs/locales/vi.json +41 -0
- package/react/CozyDialogs/SpecificDialogs/withSpecificDialogsLocales.jsx +14 -0
- package/react/CozyDialogs/TopAnchoredDialog.jsx +25 -0
- package/react/CozyDialogs/background.png +0 -0
- package/react/CozyDialogs/dialogPropTypes.js +14 -0
- package/react/CozyDialogs/e2e.js +20 -0
- package/react/CozyDialogs/index.jsx +17 -0
- package/react/CozyDialogs/locales.js +22 -0
- package/react/CozyDialogs/styles.styl +19 -0
- package/react/CozyDialogs/testing.js +39 -0
- package/react/CozyDialogs/testing.spec.jsx +117 -0
- package/react/CozyDialogs/useCozyDialog.js +142 -0
- package/react/CssBaseline/index.js +3 -0
- package/react/DateMonthPicker/Readme.md +63 -0
- package/react/DateMonthPicker/index.jsx +106 -0
- package/react/DateMonthPicker/index.spec.jsx +47 -0
- package/react/DateMonthPicker/styles.styl +72 -0
- package/react/DatePicker/Readme.md +218 -0
- package/react/DatePicker/helpers.js +16 -0
- package/react/DatePicker/helpers.spec.js +71 -0
- package/react/DatePicker/index.jsx +289 -0
- package/react/DatePicker/locales/en.json +8 -0
- package/react/DatePicker/locales/fr.json +8 -0
- package/react/DatePicker/locales/ru.json +8 -0
- package/react/DatePicker/locales/vi.json +8 -0
- package/react/DatePicker/locales/withOwnLocales.jsx +14 -0
- package/react/Dialog/DialogActions.jsx +3 -0
- package/react/Dialog/DialogContent.jsx +3 -0
- package/react/Dialog/DialogContentText.jsx +3 -0
- package/react/Dialog/DialogEffects.spec.tsx +430 -0
- package/react/Dialog/DialogEffects.ts +208 -0
- package/react/Dialog/DialogTitle.jsx +3 -0
- package/react/Dialog/Readme.md +141 -0
- package/react/Dialog/index.jsx +30 -0
- package/react/DialogActions/index.js +3 -0
- package/react/DialogContent/index.js +3 -0
- package/react/DialogContentText/index.js +3 -0
- package/react/DialogTitle/index.js +3 -0
- package/react/Divider/Readme.md +45 -0
- package/react/Divider/TextDivider/index.jsx +33 -0
- package/react/Divider/TextDivider/styles.styl +26 -0
- package/react/Divider/index.jsx +55 -0
- package/react/Drawer/index.js +3 -0
- package/react/DropdownButton/Readme.md +77 -0
- package/react/DropdownButton/index.jsx +85 -0
- package/react/DropdownText/Readme.md +95 -0
- package/react/DropdownText/index.jsx +109 -0
- package/react/EditBadge/EditMenu.jsx +102 -0
- package/react/EditBadge/Readme.md +22 -0
- package/react/EditBadge/StatusWrapper.jsx +32 -0
- package/react/EditBadge/helpers.js +102 -0
- package/react/EditBadge/index.jsx +81 -0
- package/react/EditBadge/locales/en.json +18 -0
- package/react/EditBadge/locales/fr.json +18 -0
- package/react/EditBadge/locales/index.js +11 -0
- package/react/EditBadge/locales/ru.json +18 -0
- package/react/EditBadge/locales/vi.json +18 -0
- package/react/Empty/Readme.md +68 -0
- package/react/Empty/index.jsx +104 -0
- package/react/Empty/styles.styl +22 -0
- package/react/Fab/ExtendableFab.jsx +31 -0
- package/react/Fab/Readme.md +119 -0
- package/react/Fab/index.js +8 -0
- package/react/Fade/index.js +3 -0
- package/react/Field/Readme.md +357 -0
- package/react/Field/index.jsx +316 -0
- package/react/Field/index.spec.js +59 -0
- package/react/Field/styles.styl +41 -0
- package/react/Figure/Figure.jsx +112 -0
- package/react/Figure/Figure.md +19 -0
- package/react/Figure/Figure.spec.jsx +57 -0
- package/react/Figure/Figure.styl +47 -0
- package/react/Figure/FigureBlock.jsx +52 -0
- package/react/Figure/FigureBlock.md +31 -0
- package/react/Figure/FigureBlock.styl +12 -0
- package/react/Figure/__snapshots__/Figure.spec.jsx.snap +449 -0
- package/react/Figure/index.js +2 -0
- package/react/FileImageLoader/Readme.md +112 -0
- package/react/FileImageLoader/checkImageSource.js +29 -0
- package/react/FileImageLoader/index.jsx +185 -0
- package/react/FileImageLoader/index.spec.jsx +176 -0
- package/react/FileInput/Readme.md +50 -0
- package/react/FileInput/index.jsx +72 -0
- package/react/FileInput/index.spec.jsx +63 -0
- package/react/FileInput/styles.styl +2 -0
- package/react/FilePath/Readme.md +5 -0
- package/react/FilePath/index.jsx +12 -0
- package/react/FilePath/styles.styl +9 -0
- package/react/FilePathLink/Readme.md +5 -0
- package/react/FilePathLink/index.jsx +12 -0
- package/react/FilePicker/FilePickerBody.jsx +111 -0
- package/react/FilePicker/FilePickerBodyItem.jsx +126 -0
- package/react/FilePicker/FilePickerBodyItem.spec.jsx +164 -0
- package/react/FilePicker/FilePickerBreadcrumb.jsx +54 -0
- package/react/FilePicker/FilePickerFooter.jsx +41 -0
- package/react/FilePicker/FilePickerFooter.spec.jsx +41 -0
- package/react/FilePicker/FilePickerHeader.jsx +89 -0
- package/react/FilePicker/Readme.md +50 -0
- package/react/FilePicker/index.jsx +93 -0
- package/react/FilePicker/locales/en.json +8 -0
- package/react/FilePicker/locales/fr.json +8 -0
- package/react/FilePicker/locales/ru.json +8 -0
- package/react/FilePicker/locales/vi.json +8 -0
- package/react/FilePicker/queries.js +37 -0
- package/react/FilePicker/styles.styl +18 -0
- package/react/Filename/Readme.md +27 -0
- package/react/Filename/index.jsx +93 -0
- package/react/Filename/styles.styl +3 -0
- package/react/FilledInput/index.js +3 -0
- package/react/FormControl/index.js +3 -0
- package/react/FormControlLabel/index.js +3 -0
- package/react/FormGroup/index.js +3 -0
- package/react/FormHelperText/index.js +3 -0
- package/react/FormLabel/index.js +3 -0
- package/react/GhostFileBadge/Readme.md +15 -0
- package/react/GhostFileBadge/index.jsx +32 -0
- package/react/Grid/Readme.md +65 -0
- package/react/Grid/index.js +3 -0
- package/react/GridList/Virtualized/Dnd/GridItem.jsx +86 -0
- package/react/GridList/Virtualized/Dnd/index.jsx +59 -0
- package/react/GridList/Virtualized/Dnd/virtuosoComponents.jsx +36 -0
- package/react/GridList/Virtualized/index.jsx +21 -0
- package/react/GridList/index.js +3 -0
- package/react/GridListTile/index.js +3 -0
- package/react/GridListTileBar/index.js +3 -0
- package/react/Grow/index.js +3 -0
- package/react/Hero/Readme.md +52 -0
- package/react/Hero/index.jsx +35 -0
- package/react/Hero/styles.styl +51 -0
- package/react/Hidden/index.js +3 -0
- package/react/HistoryRow/Readme.md +60 -0
- package/react/HistoryRow/index.jsx +78 -0
- package/react/HistoryRow/styles.styl +45 -0
- package/react/I18n/index.js +25 -0
- package/react/I18n/withLocales.js +14 -0
- package/react/Icon/Readme.md +1052 -1
- package/react/IconButton/Readme.md +87 -0
- package/react/IconButton/index.jsx +51 -0
- package/react/IconStack/Readme.md +35 -0
- package/react/IconStack/index.jsx +53 -0
- package/react/IconStack/styles.styl +10 -0
- package/react/Icons/Account.jsx +12 -0
- package/react/Icons/Accounts.jsx +12 -0
- package/react/Icons/Album.jsx +12 -0
- package/react/Icons/AlbumAdd.jsx +12 -0
- package/react/Icons/AlbumRemove.jsx +12 -0
- package/react/Icons/Answer.jsx +12 -0
- package/react/Icons/Apple.jsx +15 -0
- package/react/Icons/Apps.jsx +17 -0
- package/react/Icons/Archive.jsx +12 -0
- package/react/Icons/ArrowUp.jsx +12 -0
- package/react/Icons/AssignAdmin.jsx +22 -0
- package/react/Icons/AssignModerator.jsx +13 -0
- package/react/Icons/Assistant.jsx +16 -0
- package/react/Icons/Attachment.jsx +12 -0
- package/react/Icons/Attention.jsx +12 -0
- package/react/Icons/Bank.jsx +12 -0
- package/react/Icons/BankAccounts.jsx +16 -0
- package/react/Icons/BankCheck.jsx +16 -0
- package/react/Icons/BankGroups.jsx +16 -0
- package/react/Icons/BankOperations.jsx +12 -0
- package/react/Icons/BankRecurrence.jsx +13 -0
- package/react/Icons/Banking.jsx +12 -0
- package/react/Icons/BankingAdd.jsx +12 -0
- package/react/Icons/Bell.jsx +12 -0
- package/react/Icons/Benefit.jsx +12 -0
- package/react/Icons/Bike.jsx +12 -0
- package/react/Icons/Bill.jsx +12 -0
- package/react/Icons/BillPermissions.jsx +13 -0
- package/react/Icons/Bottom.jsx +12 -0
- package/react/Icons/BottomSelect.jsx +12 -0
- package/react/Icons/BrowserBrave.jsx +15 -0
- package/react/Icons/BrowserChrome.jsx +15 -0
- package/react/Icons/BrowserDuckduckgo.jsx +15 -0
- package/react/Icons/BrowserEdge.jsx +15 -0
- package/react/Icons/BrowserEdgeChromium.jsx +15 -0
- package/react/Icons/BrowserFirefox.jsx +15 -0
- package/react/Icons/BrowserIe.jsx +15 -0
- package/react/Icons/BrowserOpera.jsx +15 -0
- package/react/Icons/BrowserSafari.jsx +15 -0
- package/react/Icons/BugReport.jsx +12 -0
- package/react/Icons/Burger.jsx +12 -0
- package/react/Icons/Bus.jsx +13 -0
- package/react/Icons/Calendar.jsx +12 -0
- package/react/Icons/CalendarPermissions.jsx +12 -0
- package/react/Icons/Camera.jsx +12 -0
- package/react/Icons/Car.jsx +13 -0
- package/react/Icons/CarbonCopy.jsx +15 -0
- package/react/Icons/Carpooling.jsx +17 -0
- package/react/Icons/Categories.jsx +12 -0
- package/react/Icons/Category.jsx +12 -0
- package/react/Icons/Certified.jsx +13 -0
- package/react/Icons/CertifiedPermissions.jsx +13 -0
- package/react/Icons/Chat.jsx +76 -0
- package/react/Icons/ChatText.jsx +73 -0
- package/react/Icons/Check.jsx +12 -0
- package/react/Icons/CheckCircle.jsx +12 -0
- package/react/Icons/CheckList.jsx +12 -0
- package/react/Icons/CheckSquare.jsx +16 -0
- package/react/Icons/CheckWhite.jsx +15 -0
- package/react/Icons/Checkbox.jsx +12 -0
- package/react/Icons/Chess.jsx +12 -0
- package/react/Icons/Child.jsx +13 -0
- package/react/Icons/CircleFilled.jsx +12 -0
- package/react/Icons/Clock.jsx +12 -0
- package/react/Icons/ClockOutline.jsx +12 -0
- package/react/Icons/Cloud.jsx +12 -0
- package/react/Icons/Cloud2.jsx +29 -0
- package/react/Icons/CloudBroken.jsx +12 -0
- package/react/Icons/CloudHappy.jsx +15 -0
- package/react/Icons/CloudPlusOutlined.jsx +12 -0
- package/react/Icons/CloudRainbow.jsx +63 -0
- package/react/Icons/CloudSync.jsx +21 -0
- package/react/Icons/CloudSync2.jsx +23 -0
- package/react/Icons/Cocktail.jsx +12 -0
- package/react/Icons/Collect.jsx +15 -0
- package/react/Icons/Comment.jsx +12 -0
- package/react/Icons/Company.jsx +12 -0
- package/react/Icons/Compare.jsx +12 -0
- package/react/Icons/Compass.jsx +12 -0
- package/react/Icons/ConnectedClients.jsx +12 -0
- package/react/Icons/Connector.jsx +12 -0
- package/react/Icons/Consumption.jsx +13 -0
- package/react/Icons/Contacts.jsx +102 -0
- package/react/Icons/ContactsAccounts.jsx +12 -0
- package/react/Icons/ContactsGroups.jsx +12 -0
- package/react/Icons/ContactsText.jsx +133 -0
- package/react/Icons/Contract.jsx +12 -0
- package/react/Icons/ContractPermissions.jsx +12 -0
- package/react/Icons/Contrast.jsx +12 -0
- package/react/Icons/Copy.jsx +12 -0
- package/react/Icons/Cozy.jsx +16 -0
- package/react/Icons/CozyAuthentification.jsx +12 -0
- package/react/Icons/CozyCircle.jsx +16 -0
- package/react/Icons/CozyLaugh.jsx +15 -0
- package/react/Icons/CozyLock.jsx +16 -0
- package/react/Icons/CozyLogo.jsx +18 -0
- package/react/Icons/CozyRelease.jsx +22 -0
- package/react/Icons/CozyText.jsx +12 -0
- package/react/Icons/CozyUpgrade.jsx +55 -0
- package/react/Icons/Credit.jsx +18 -0
- package/react/Icons/CreditCard.jsx +12 -0
- package/react/Icons/CreditCardAdd.jsx +12 -0
- package/react/Icons/CreditCardLarge.jsx +12 -0
- package/react/Icons/Crop.jsx +12 -0
- package/react/Icons/Cross.jsx +12 -0
- package/react/Icons/CrossCircle.jsx +15 -0
- package/react/Icons/CrossCircleOutline.jsx +16 -0
- package/react/Icons/CrossMedium.jsx +12 -0
- package/react/Icons/CrossSmall.jsx +12 -0
- package/react/Icons/CrossWhite.jsx +16 -0
- package/react/Icons/Cube.jsx +12 -0
- package/react/Icons/Dash.jsx +12 -0
- package/react/Icons/DashWhite.jsx +12 -0
- package/react/Icons/Dashboard.jsx +12 -0
- package/react/Icons/DataControl.jsx +14 -0
- package/react/Icons/Debit.jsx +12 -0
- package/react/Icons/DesktopDownload.jsx +13 -0
- package/react/Icons/DeviceBrowser.jsx +12 -0
- package/react/Icons/DeviceLaptop.jsx +12 -0
- package/react/Icons/DevicePhone.jsx +12 -0
- package/react/Icons/DeviceTablet.jsx +12 -0
- package/react/Icons/Devices.jsx +12 -0
- package/react/Icons/Discuss.jsx +16 -0
- package/react/Icons/Dots.jsx +12 -0
- package/react/Icons/DotsWhite.jsx +16 -0
- package/react/Icons/Down.jsx +12 -0
- package/react/Icons/Download.jsx +12 -0
- package/react/Icons/DrawingArrowUp.jsx +12 -0
- package/react/Icons/Drive.jsx +69 -0
- package/react/Icons/DriveText.jsx +88 -0
- package/react/Icons/Dropdown.jsx +12 -0
- package/react/Icons/DropdownClose.jsx +12 -0
- package/react/Icons/DropdownOpen.jsx +12 -0
- package/react/Icons/Dropup.jsx +12 -0
- package/react/Icons/Ecolyo.jsx +28 -0
- package/react/Icons/ElectricBike.jsx +12 -0
- package/react/Icons/ElectricCar.jsx +13 -0
- package/react/Icons/ElectricScooter.jsx +13 -0
- package/react/Icons/Email.jsx +12 -0
- package/react/Icons/EmailNotification.jsx +12 -0
- package/react/Icons/EmailOpen.jsx +55 -0
- package/react/Icons/Energy.jsx +12 -0
- package/react/Icons/Energybreakdown.jsx +12 -0
- package/react/Icons/Eu.jsx +15 -0
- package/react/Icons/Euro.jsx +12 -0
- package/react/Icons/Exchange.jsx +12 -0
- package/react/Icons/Eye.jsx +12 -0
- package/react/Icons/EyeClosed.jsx +12 -0
- package/react/Icons/FaceId.jsx +12 -0
- package/react/Icons/Fallback.jsx +20 -0
- package/react/Icons/Family.jsx +12 -0
- package/react/Icons/File.jsx +12 -0
- package/react/Icons/FileAdd.jsx +12 -0
- package/react/Icons/FileDuotone.jsx +30 -0
- package/react/Icons/FileNew.jsx +12 -0
- package/react/Icons/FileNone.jsx +18 -0
- package/react/Icons/FileOutline.jsx +12 -0
- package/react/Icons/FileTypeAudio.jsx +20 -0
- package/react/Icons/FileTypeBankingAccount.jsx +26 -0
- package/react/Icons/FileTypeBin.jsx +20 -0
- package/react/Icons/FileTypeCode.jsx +20 -0
- package/react/Icons/FileTypeFiles.jsx +26 -0
- package/react/Icons/FileTypeFolder.jsx +32 -0
- package/react/Icons/FileTypeImage.jsx +25 -0
- package/react/Icons/FileTypeNote.jsx +20 -0
- package/react/Icons/FileTypePdf.jsx +20 -0
- package/react/Icons/FileTypeServer.jsx +51 -0
- package/react/Icons/FileTypeSheet.jsx +26 -0
- package/react/Icons/FileTypeSlide.jsx +26 -0
- package/react/Icons/FileTypeText.jsx +20 -0
- package/react/Icons/FileTypeVideo.jsx +20 -0
- package/react/Icons/FileTypeZip.jsx +20 -0
- package/react/Icons/Files.jsx +41 -0
- package/react/Icons/FilesPen.jsx +21 -0
- package/react/Icons/FilesVersions.jsx +21 -0
- package/react/Icons/Filter.jsx +16 -0
- package/react/Icons/Fingerprint.jsx +12 -0
- package/react/Icons/Fitness.jsx +12 -0
- package/react/Icons/Flag.jsx +12 -0
- package/react/Icons/FlagOutlined.jsx +12 -0
- package/react/Icons/FlashAuto.jsx +12 -0
- package/react/Icons/Flashlight.jsx +13 -0
- package/react/Icons/Folder.jsx +12 -0
- package/react/Icons/FolderAdd.jsx +12 -0
- package/react/Icons/FolderMoveto.jsx +12 -0
- package/react/Icons/FolderOpen.jsx +12 -0
- package/react/Icons/Forbidden.jsx +12 -0
- package/react/Icons/ForbiddenSign.jsx +63 -0
- package/react/Icons/FromUser.jsx +13 -0
- package/react/Icons/Gear.jsx +12 -0
- package/react/Icons/Globe.jsx +12 -0
- package/react/Icons/Google.jsx +29 -0
- package/react/Icons/Gouv.jsx +29 -0
- package/react/Icons/GraphCircle.jsx +12 -0
- package/react/Icons/Grid.jsx +12 -0
- package/react/Icons/GroupList.jsx +12 -0
- package/react/Icons/Groups.jsx +12 -0
- package/react/Icons/Growth.jsx +12 -0
- package/react/Icons/Hand.jsx +12 -0
- package/react/Icons/Heart.jsx +12 -0
- package/react/Icons/Help.jsx +12 -0
- package/react/Icons/HelpOutlined.jsx +12 -0
- package/react/Icons/History.jsx +12 -0
- package/react/Icons/Home.jsx +12 -0
- package/react/Icons/HomePermissions.jsx +13 -0
- package/react/Icons/Hourglass.jsx +12 -0
- package/react/Icons/IconCheckAnimated.jsx +29 -0
- package/react/Icons/IconCrossAnimated.jsx +44 -0
- package/react/Icons/Identities.jsx +12 -0
- package/react/Icons/Image.jsx +12 -0
- package/react/Icons/Info.jsx +12 -0
- package/react/Icons/InfoOutlined.jsx +12 -0
- package/react/Icons/Justice.jsx +12 -0
- package/react/Icons/Key.jsx +12 -0
- package/react/Icons/Key2.jsx +23 -0
- package/react/Icons/Keychain.jsx +12 -0
- package/react/Icons/Konnectors.jsx +12 -0
- package/react/Icons/KonnectorsResult.jsx +12 -0
- package/react/Icons/Label.jsx +12 -0
- package/react/Icons/LabelOutlined.jsx +12 -0
- package/react/Icons/Laptop.jsx +12 -0
- package/react/Icons/Laudry.jsx +13 -0
- package/react/Icons/Left.jsx +12 -0
- package/react/Icons/Library.jsx +13 -0
- package/react/Icons/Lightbulb.jsx +12 -0
- package/react/Icons/Lightning.jsx +12 -0
- package/react/Icons/Link.jsx +12 -0
- package/react/Icons/LinkOut.jsx +12 -0
- package/react/Icons/List.jsx +12 -0
- package/react/Icons/ListMin.jsx +12 -0
- package/react/Icons/Location.jsx +13 -0
- package/react/Icons/LocationPermissions.jsx +12 -0
- package/react/Icons/Lock.jsx +12 -0
- package/react/Icons/LockScreen.jsx +12 -0
- package/react/Icons/Logout.jsx +12 -0
- package/react/Icons/LogoutLarge.jsx +12 -0
- package/react/Icons/MagicTrick.jsx +12 -0
- package/react/Icons/Magnet.jsx +15 -0
- package/react/Icons/Magnifier.jsx +12 -0
- package/react/Icons/Mail.jsx +67 -0
- package/react/Icons/MailText.jsx +73 -0
- package/react/Icons/Matrix.jsx +12 -0
- package/react/Icons/Merge.jsx +12 -0
- package/react/Icons/Moped.jsx +13 -0
- package/react/Icons/Mosaic.jsx +16 -0
- package/react/Icons/MosaicMin.jsx +12 -0
- package/react/Icons/Motorcycle.jsx +12 -0
- package/react/Icons/Mountain.jsx +12 -0
- package/react/Icons/Movement.jsx +12 -0
- package/react/Icons/MovementIn.jsx +12 -0
- package/react/Icons/MovementOut.jsx +12 -0
- package/react/Icons/Moveto.jsx +12 -0
- package/react/Icons/MultiFiles.jsx +12 -0
- package/react/Icons/Music.jsx +12 -0
- package/react/Icons/New.jsx +12 -0
- package/react/Icons/Next.jsx +12 -0
- package/react/Icons/Note.jsx +13 -0
- package/react/Icons/Notes.jsx +69 -0
- package/react/Icons/NotesText.jsx +88 -0
- package/react/Icons/NotificationEmail.jsx +12 -0
- package/react/Icons/Notifications.jsx +12 -0
- package/react/Icons/Number.jsx +12 -0
- package/react/Icons/Offline.jsx +12 -0
- package/react/Icons/Online.jsx +12 -0
- package/react/Icons/OnlyOffice.jsx +71 -0
- package/react/Icons/Openapp.jsx +12 -0
- package/react/Icons/Openwith.jsx +12 -0
- package/react/Icons/Opinions.jsx +12 -0
- package/react/Icons/Palette.jsx +13 -0
- package/react/Icons/Paper.jsx +14 -0
- package/react/Icons/Paperplane.jsx +12 -0
- package/react/Icons/Papers.jsx +66 -0
- package/react/Icons/Pass.jsx +65 -0
- package/react/Icons/PassText.jsx +15 -0
- package/react/Icons/Password.jsx +12 -0
- package/react/Icons/Passwords.jsx +12 -0
- package/react/Icons/Pen.jsx +12 -0
- package/react/Icons/People.jsx +12 -0
- package/react/Icons/Peoples.jsx +12 -0
- package/react/Icons/Percent.jsx +12 -0
- package/react/Icons/PercentCircle.jsx +12 -0
- package/react/Icons/Permissions.jsx +12 -0
- package/react/Icons/PersonAdd.jsx +12 -0
- package/react/Icons/PersonalData.jsx +12 -0
- package/react/Icons/Phone.jsx +12 -0
- package/react/Icons/PhoneDownload.jsx +13 -0
- package/react/Icons/PhoneUpload.jsx +12 -0
- package/react/Icons/Photos.jsx +104 -0
- package/react/Icons/PhotosAlbum.jsx +12 -0
- package/react/Icons/PhotosSettings.jsx +16 -0
- package/react/Icons/PhotosText.jsx +103 -0
- package/react/Icons/PieChart.jsx +12 -0
- package/react/Icons/Pin.jsx +12 -0
- package/react/Icons/Plane.jsx +12 -0
- package/react/Icons/Plus.jsx +12 -0
- package/react/Icons/PlusSmall.jsx +12 -0
- package/react/Icons/PopInside.jsx +12 -0
- package/react/Icons/Previous.jsx +12 -0
- package/react/Icons/Printer.jsx +13 -0
- package/react/Icons/Profile.jsx +16 -0
- package/react/Icons/Qualify.jsx +12 -0
- package/react/Icons/RadioChecked.jsx +13 -0
- package/react/Icons/RadioUnchecked.jsx +12 -0
- package/react/Icons/Refresh.jsx +12 -0
- package/react/Icons/Relationship.jsx +14 -0
- package/react/Icons/Remboursement.jsx +12 -0
- package/react/Icons/Rename.jsx +12 -0
- package/react/Icons/Repare.jsx +12 -0
- package/react/Icons/Reply.jsx +12 -0
- package/react/Icons/Restaurant.jsx +12 -0
- package/react/Icons/Restore.jsx +12 -0
- package/react/Icons/RestoreStraight.jsx +12 -0
- package/react/Icons/Right.jsx +12 -0
- package/react/Icons/Rise.jsx +12 -0
- package/react/Icons/RotateLeft.jsx +12 -0
- package/react/Icons/RotateRight.jsx +12 -0
- package/react/Icons/SadCozy.jsx +15 -0
- package/react/Icons/Safe.jsx +12 -0
- package/react/Icons/SafePermissions.jsx +16 -0
- package/react/Icons/School.jsx +12 -0
- package/react/Icons/Scooter.jsx +13 -0
- package/react/Icons/Security.jsx +12 -0
- package/react/Icons/SelectAll.jsx +12 -0
- package/react/Icons/Server.jsx +12 -0
- package/react/Icons/Setting.jsx +12 -0
- package/react/Icons/Settings.jsx +16 -0
- package/react/Icons/Share.jsx +12 -0
- package/react/Icons/ShareCircle.jsx +15 -0
- package/react/Icons/ShareGrey08.jsx +15 -0
- package/react/Icons/ShareIos.jsx +15 -0
- package/react/Icons/Sharings.jsx +12 -0
- package/react/Icons/Shield.jsx +12 -0
- package/react/Icons/Shop.jsx +12 -0
- package/react/Icons/Sinister.jsx +12 -0
- package/react/Icons/Sound.jsx +12 -0
- package/react/Icons/Spinner.jsx +12 -0
- package/react/Icons/SportBag.jsx +16 -0
- package/react/Icons/Stack.jsx +12 -0
- package/react/Icons/Star.jsx +12 -0
- package/react/Icons/StarOutline.jsx +12 -0
- package/react/Icons/Stats.jsx +12 -0
- package/react/Icons/Stop.jsx +12 -0
- package/react/Icons/Store.jsx +67 -0
- package/react/Icons/StoreText.jsx +88 -0
- package/react/Icons/Subway.jsx +12 -0
- package/react/Icons/Support.jsx +12 -0
- package/react/Icons/Swap.jsx +12 -0
- package/react/Icons/Sync.jsx +12 -0
- package/react/Icons/SyncCozy.jsx +16 -0
- package/react/Icons/Tab.jsx +12 -0
- package/react/Icons/Tag.jsx +13 -0
- package/react/Icons/Tags.jsx +17 -0
- package/react/Icons/Target.jsx +12 -0
- package/react/Icons/Task.jsx +12 -0
- package/react/Icons/TaskToEffectuate.jsx +17 -0
- package/react/Icons/Team.jsx +13 -0
- package/react/Icons/Telecom.jsx +13 -0
- package/react/Icons/Telephone.jsx +12 -0
- package/react/Icons/Text.jsx +12 -0
- package/react/Icons/TextInfo.jsx +12 -0
- package/react/Icons/ToTheCloud.jsx +12 -0
- package/react/Icons/Top.jsx +12 -0
- package/react/Icons/TopSelect.jsx +12 -0
- package/react/Icons/Train.jsx +13 -0
- package/react/Icons/Tram.jsx +12 -0
- package/react/Icons/Trash.jsx +12 -0
- package/react/Icons/TrashDuotone.jsx +12 -0
- package/react/Icons/Triggers.jsx +12 -0
- package/react/Icons/Trophy.jsx +12 -0
- package/react/Icons/TwakeText.jsx +14 -0
- package/react/Icons/TwakeWorkplace.jsx +75 -0
- package/react/Icons/Uncloud.jsx +12 -0
- package/react/Icons/Unknow.jsx +12 -0
- package/react/Icons/Unlink.jsx +12 -0
- package/react/Icons/Unlock.jsx +12 -0
- package/react/Icons/Up.jsx +12 -0
- package/react/Icons/Upload.jsx +12 -0
- package/react/Icons/Versioning.jsx +12 -0
- package/react/Icons/Videos.jsx +12 -0
- package/react/Icons/Walk.jsx +12 -0
- package/react/Icons/Wallet.jsx +12 -0
- package/react/Icons/WalletAdd.jsx +15 -0
- package/react/Icons/WalletNew.jsx +15 -0
- package/react/Icons/Warn.jsx +13 -0
- package/react/Icons/Warning.jsx +12 -0
- package/react/Icons/WarningCircle.jsx +12 -0
- package/react/Icons/Water.jsx +12 -0
- package/react/Icons/Work.jsx +12 -0
- package/react/Icons/WorkplaceText.jsx +15 -0
- package/react/Icons/WrenchCircle.jsx +21 -0
- package/react/InfosBadge/Readme.md +14 -0
- package/react/InfosBadge/index.jsx +31 -0
- package/react/Input/index.js +3 -0
- package/react/InputAdornment/index.js +3 -0
- package/react/InputBase/index.js +3 -0
- package/react/InputGroup/Readme.md +110 -0
- package/react/InputGroup/index.jsx +68 -0
- package/react/InputGroup/styles.styl +27 -0
- package/react/InputLabel/index.js +3 -0
- package/react/IntentDialogOpener/IntentDialogOpener.jsx +109 -0
- package/react/IntentDialogOpener/IntentDialogOpener.md +25 -0
- package/react/IntentDialogOpener/index.js +1 -0
- package/react/IntentHeader/index.jsx +34 -0
- package/react/IntentHeader/styles.styl +25 -0
- package/react/IntentIframe/IntentIframe.jsx +110 -0
- package/react/IntentIframe/Readme.md +80 -0
- package/react/IntentIframe/index.js +1 -0
- package/react/IntentIframe/styles.styl +21 -0
- package/react/IntentWrapper/index.jsx +42 -0
- package/react/IntentWrapper/styles.styl +14 -0
- package/react/Label/Readme.md +38 -0
- package/react/Label/index.jsx +41 -0
- package/react/Label/styles.styl +7 -0
- package/react/Labs/CollectionField/Readme.md +41 -0
- package/react/Labs/CollectionField/index.jsx +140 -0
- package/react/Labs/CollectionField/styles.styl +15 -0
- package/react/Labs/ExperimentalDialog/index.jsx +31 -0
- package/react/Labs/IconGrid/Readme.md +18 -0
- package/react/Labs/IconGrid/index.jsx +9 -0
- package/react/Labs/IconGrid/styles.styl +5 -0
- package/react/Labs/PasswordInput/Readme.md +44 -0
- package/react/Labs/PasswordInput/helpers.js +66 -0
- package/react/Labs/PasswordInput/helpers.spec.js +27 -0
- package/react/Labs/PasswordInput/index.jsx +81 -0
- package/react/Labs/PasswordInput/styles.styl +49 -0
- package/react/Labs/Readme.md +4 -0
- package/react/Labs/index.jsx +0 -0
- package/react/Layout/Layout.jsx +109 -0
- package/react/Layout/Layout.md +204 -0
- package/react/Layout/index.js +1 -0
- package/react/Layout/styles.styl +10 -0
- package/react/LinearProgress/index.js +3 -0
- package/react/Link/index.js +3 -0
- package/react/List/Readme.md +280 -0
- package/react/List/index.js +11 -0
- package/react/ListItem/ExpandedAttributes/ExpandedAttribute.jsx +39 -0
- package/react/ListItem/ExpandedAttributes/helpers.js +214 -0
- package/react/ListItem/ExpandedAttributes/helpers.spec.js +175 -0
- package/react/ListItem/ExpandedAttributes/index.jsx +61 -0
- package/react/ListItem/ListItemBase/Renaming/RenameDialog.jsx +37 -0
- package/react/ListItem/ListItemBase/Renaming/RenameInput.jsx +134 -0
- package/react/ListItem/ListItemBase/Renaming/helpers.js +35 -0
- package/react/ListItem/ListItemBase/index.jsx +115 -0
- package/react/ListItem/ListItemByDoc/index.jsx +103 -0
- package/react/ListItem/ListItemContact/helpers.js +23 -0
- package/react/ListItem/ListItemContact/helpers.spec.js +35 -0
- package/react/ListItem/ListItemContact/index.jsx +68 -0
- package/react/ListItem/ListItemContact/useActions.jsx +17 -0
- package/react/ListItem/ListItemFile/ExpirationAnnotation.jsx +39 -0
- package/react/ListItem/ListItemFile/ItemIcon.jsx +49 -0
- package/react/ListItem/ListItemFile/PrimaryText.jsx +39 -0
- package/react/ListItem/ListItemFile/SecondaryText.jsx +36 -0
- package/react/ListItem/ListItemFile/index.jsx +75 -0
- package/react/ListItem/Readme.md +211 -0
- package/react/ListItem/hoc/withListItemLocales.jsx +14 -0
- package/react/ListItem/index.js +129 -0
- package/react/ListItem/locales/en.json +75 -0
- package/react/ListItem/locales/fr.json +75 -0
- package/react/ListItem/locales/ru.json +75 -0
- package/react/ListItem/locales/vi.json +75 -0
- package/react/ListItemAvatar/index.js +3 -0
- package/react/ListItemIcon/index.js +26 -0
- package/react/ListItemSecondaryAction/index.js +3 -0
- package/react/ListItemText/Readme.md +28 -0
- package/react/ListItemText/index.jsx +90 -0
- package/react/ListSubheader/Readme.md +34 -0
- package/react/ListSubheader/index.js +44 -0
- package/react/LoadMore/Readme.md +37 -0
- package/react/LoadMore/index.jsx +62 -0
- package/react/Markdown/Readme.md +71 -0
- package/react/Markdown/index.jsx +32 -0
- package/react/Menu/Readme.md +114 -0
- package/react/Menu/index.js +3 -0
- package/react/MenuItem/index.js +22 -0
- package/react/MenuList/index.js +3 -0
- package/react/MidEllipsis/Readme.md +11 -0
- package/react/MidEllipsis/index.jsx +51 -0
- package/react/MobileStepper/Readme.md +43 -0
- package/react/MobileStepper/index.js +3 -0
- package/react/Modal/index.js +3 -0
- package/react/MuiCozyTheme/Divider/index.jsx +16 -0
- package/react/MuiCozyTheme/List/index.jsx +16 -0
- package/react/MuiCozyTheme/ListItem/index.jsx +16 -0
- package/react/MuiCozyTheme/ListItemIcon/index.jsx +16 -0
- package/react/MuiCozyTheme/ListItemSecondaryAction/index.jsx +16 -0
- package/react/MuiCozyTheme/Readme.md +10 -0
- package/react/MuiCozyTheme/helpers.js +216 -0
- package/react/MuiCozyTheme/index.jsx +23 -0
- package/react/MuiCozyTheme/makePalette.js +197 -0
- package/react/MuiCozyTheme/makeTheme.jsx +66 -0
- package/react/MuiCozyTheme/makeTypography.js +78 -0
- package/react/MuiCozyTheme/overrides/makeDarkInvertedOverrides.js +5 -0
- package/react/MuiCozyTheme/overrides/makeDarkNormalOverrides.js +5 -0
- package/react/MuiCozyTheme/overrides/makeLightInvertedOverrides.js +65 -0
- package/react/MuiCozyTheme/overrides/makeLightNormalOverrides.js +1256 -0
- package/react/MuiCozyTheme/theme.jsx +30 -0
- package/react/MuiTabs/Readme.md +40 -0
- package/react/MuiTabs/index.jsx +17 -0
- package/react/NativeSelect/index.js +3 -0
- package/react/Nav/index.jsx +163 -0
- package/react/Nav/locales/en.json +6 -0
- package/react/Nav/locales/fr.json +6 -0
- package/react/Nav/locales/ru.json +6 -0
- package/react/Nav/locales/vi.json +6 -0
- package/react/Nav/locales/withNavLocales.jsx +14 -0
- package/react/Nav/styles.styl +27 -0
- package/react/NavigationList/Readme.md +148 -0
- package/react/NavigationList/index.jsx +53 -0
- package/react/NavigationList/styles.styl +2 -0
- package/react/NestedSelect/BottomSheet.jsx +48 -0
- package/react/NestedSelect/ItemRow.jsx +96 -0
- package/react/NestedSelect/Modal.jsx +63 -0
- package/react/NestedSelect/NestedSelect.jsx +276 -0
- package/react/NestedSelect/NestedSelect.md +220 -0
- package/react/NestedSelect/NestedSelect.spec.jsx +199 -0
- package/react/NestedSelect/NestedSelectResponsive.jsx +15 -0
- package/react/NestedSelect/helpers.js +35 -0
- package/react/NestedSelect/helpers.spec.js +36 -0
- package/react/NestedSelect/index.jsx +4 -0
- package/react/NestedSelect/styles.styl +20 -0
- package/react/NestedSelect/testing.js +3 -0
- package/react/NoSsr/index.js +3 -0
- package/react/OrderedList/Readme.md +9 -0
- package/react/OrderedList/index.jsx +19 -0
- package/react/OrderedList/styles.styl +19 -0
- package/react/OutlinedInput/index.js +3 -0
- package/react/Page/Readme.md +15 -0
- package/react/Page/index.jsx +111 -0
- package/react/Page/keyboard.js +104 -0
- package/react/Page/styles.styl +9 -0
- package/react/Panel/index.jsx +12 -0
- package/react/Panel/styles.styl +10 -0
- package/react/Paper/Readme.md +54 -0
- package/react/Paper/index.js +3 -0
- package/react/PasswordExample/Readme.md +13 -0
- package/react/PasswordExample/index.jsx +82 -0
- package/react/PasswordExample/styles.styl +7 -0
- package/react/PasswordField/Readme.md +8 -0
- package/react/PasswordField/index.jsx +56 -0
- package/react/PasswordField/locales/en.json +6 -0
- package/react/PasswordField/locales/fr.json +6 -0
- package/react/PasswordField/locales/ru.json +6 -0
- package/react/PasswordField/locales/vi.json +6 -0
- package/react/Paywall/MaxAccountsByKonnectorPaywall.jsx +32 -0
- package/react/Paywall/MaxAccountsPaywall.jsx +27 -0
- package/react/Paywall/MaxDaysToCapturePaywall.jsx +27 -0
- package/react/Paywall/MaxPapersPaywall.jsx +29 -0
- package/react/Paywall/OnlyOfficePaywall.jsx +24 -0
- package/react/Paywall/PasswordSharingPaywall.jsx +20 -0
- package/react/Paywall/Paywall.jsx +124 -0
- package/react/Paywall/Paywall.spec.jsx +230 -0
- package/react/Paywall/QuotaPaywall.jsx +18 -0
- package/react/Paywall/Readme.md +137 -0
- package/react/Paywall/helpers.js +22 -0
- package/react/Paywall/howto.md +28 -0
- package/react/Paywall/index.jsx +7 -0
- package/react/Paywall/locales/en.json +95 -0
- package/react/Paywall/locales/fr.json +95 -0
- package/react/Paywall/locales/ru.json +95 -0
- package/react/Paywall/locales/vi.json +95 -0
- package/react/Paywall/locales/withPaywallLocales.jsx +14 -0
- package/react/PieChart/Readme.md +53 -0
- package/react/PieChart/index.jsx +141 -0
- package/react/PieChart/index.spec.jsx +123 -0
- package/react/PointerAlert/Readme.md +167 -0
- package/react/PointerAlert/index.jsx +113 -0
- package/react/Popover/index.js +3 -0
- package/react/Popper/index.js +3 -0
- package/react/Popper/testing.js +21 -0
- package/react/Popup/Readme.md +22 -0
- package/react/Popup/index.jsx +154 -0
- package/react/Popup/index.spec.jsx +105 -0
- package/react/PopupOpener/Readme.md +8 -0
- package/react/PopupOpener/index.jsx +56 -0
- package/react/Portal/index.jsx +8 -0
- package/react/Progress/Readme.md +31 -0
- package/react/Progress/index.js +2 -0
- package/react/ProgressionBanner/Readme.md +30 -0
- package/react/ProgressionBanner/index.jsx +68 -0
- package/react/QualificationGrid/Readme.md +25 -0
- package/react/QualificationGrid/helpers.js +7 -0
- package/react/QualificationGrid/index.jsx +87 -0
- package/react/QualificationGrid/locales/en.json +15 -0
- package/react/QualificationGrid/locales/fr.json +15 -0
- package/react/QualificationGrid/locales/ru.json +15 -0
- package/react/QualificationGrid/locales/vi.json +15 -0
- package/react/QualificationGrid/locales/withLocales.jsx +14 -0
- package/react/QualificationIcon/Readme.md +14 -0
- package/react/QualificationIcon/index.jsx +105 -0
- package/react/QualificationItem/Readme.md +8 -0
- package/react/QualificationItem/index.jsx +64 -0
- package/react/QualificationModal/Readme.md +28 -0
- package/react/QualificationModal/helpers.js +63 -0
- package/react/QualificationModal/helpers.spec.js +61 -0
- package/react/QualificationModal/index.jsx +71 -0
- package/react/QualificationModal/locales/en.json +6 -0
- package/react/QualificationModal/locales/fr.json +6 -0
- package/react/QualificationModal/locales/index.jsx +11 -0
- package/react/QualificationModal/locales/ru.json +6 -0
- package/react/QualificationModal/locales/vi.json +6 -0
- package/react/RadioGroup/index.js +3 -0
- package/react/Radios/Readme.md +125 -0
- package/react/Radios/index.jsx +22 -0
- package/react/RootRef/index.js +3 -0
- package/react/ScopedCssBaseline/index.js +3 -0
- package/react/SearchBar/Readme.md +87 -0
- package/react/SearchBar/index.jsx +298 -0
- package/react/SearchBar/locales/en.json +5 -0
- package/react/SearchBar/locales/fr.json +5 -0
- package/react/SearchBar/locales/ru.json +5 -0
- package/react/SearchBar/locales/vi.json +5 -0
- package/react/SearchBar/locales/withOnlyLocales.jsx +14 -0
- package/react/Select/index.js +3 -0
- package/react/SelectBox/ControlDefault.jsx +25 -0
- package/react/SelectBox/Readme.md +382 -0
- package/react/SelectBox/SelectBox.jsx +369 -0
- package/react/SelectBox/SelectBoxWithFixedOptions.jsx +54 -0
- package/react/SelectBox/index.jsx +13 -0
- package/react/SelectBox/styles.styl +98 -0
- package/react/SelectionBar/Readme.md +86 -0
- package/react/SelectionBar/SelectionBarAction.jsx +71 -0
- package/react/SelectionBar/SelectionBarMore.jsx +75 -0
- package/react/SelectionBar/helpers.js +22 -0
- package/react/SelectionBar/helpers.spec.js +54 -0
- package/react/SelectionBar/index.jsx +178 -0
- package/react/SelectionBar/styles.styl +6 -0
- package/react/SelectionBar/useMaxActions.jsx +36 -0
- package/react/ShortcutTile/index.tsx +61 -0
- package/react/Sidebar/Readme.md +65 -0
- package/react/Sidebar/index.jsx +41 -0
- package/react/Sidebar/styles.styl +4 -0
- package/react/Skeleton/index.js +3 -0
- package/react/Skeletons/ListItemSkeleton.jsx +42 -0
- package/react/Skeletons/ListSkeleton.jsx +39 -0
- package/react/Skeletons/Readme.md +50 -0
- package/react/Skeletons/index.js +2 -0
- package/react/Slide/index.js +3 -0
- package/react/Slider/index.js +3 -0
- package/react/Snackbar/Readme.md +86 -0
- package/react/Snackbar/index.jsx +25 -0
- package/react/SnackbarContent/index.js +3 -0
- package/react/Spinner/Readme.md +68 -0
- package/react/Spinner/index.jsx +76 -0
- package/react/Spinner/styles.styl +32 -0
- package/react/SquareAppIcon/Readme.md +185 -0
- package/react/SquareAppIcon/SquareAppIcon.spec.js +88 -0
- package/react/SquareAppIcon/__snapshots__/SquareAppIcon.spec.js.snap +474 -0
- package/react/SquareAppIcon/constants.json +6 -0
- package/react/SquareAppIcon/index.jsx +289 -0
- package/react/SquareAppIcon/styles.styl +141 -0
- package/react/Stack/Readme.md +67 -0
- package/react/Stack/index.jsx +27 -0
- package/react/Stack/styles.styl +6 -0
- package/react/Step/index.js +3 -0
- package/react/StepButton/index.js +3 -0
- package/react/StepConnector/index.js +3 -0
- package/react/StepContent/index.js +3 -0
- package/react/StepIcon/index.js +3 -0
- package/react/StepLabel/index.js +3 -0
- package/react/Stepper/Readme.md +50 -0
- package/react/Stepper/index.jsx +4 -0
- package/react/Stepper/testing.jsx +43 -0
- package/react/Storage/Readme.md +46 -0
- package/react/Storage/StorageButton.jsx +34 -0
- package/react/Storage/StorageProgress.jsx +52 -0
- package/react/Storage/index.jsx +41 -0
- package/react/Storage/locales/en.json +7 -0
- package/react/Storage/locales/fr.json +7 -0
- package/react/Storage/locales/index.jsx +11 -0
- package/react/Storage/locales/ru.json +7 -0
- package/react/Storage/locales/vi.json +7 -0
- package/react/SvgIcon/index.js +3 -0
- package/react/SwipeableDrawer/index.js +3 -0
- package/react/Switch/Readme.md +121 -0
- package/react/Switch/index.jsx +19 -0
- package/react/Tab/index.js +3 -0
- package/react/Table/Readme.md +130 -0
- package/react/Table/Virtualized/Cell.jsx +69 -0
- package/react/Table/Virtualized/Dnd/CustomDrag/CustomDragLayer.jsx +45 -0
- package/react/Table/Virtualized/Dnd/CustomDrag/DragPreview.jsx +43 -0
- package/react/Table/Virtualized/Dnd/CustomDrag/DragPreviewWrapper.jsx +52 -0
- package/react/Table/Virtualized/Dnd/DnDConfigWrapper.jsx +48 -0
- package/react/Table/Virtualized/Dnd/TableRow.jsx +100 -0
- package/react/Table/Virtualized/Dnd/index.jsx +35 -0
- package/react/Table/Virtualized/Dnd/virtuosoComponents.jsx +25 -0
- package/react/Table/Virtualized/FixedHeaderContent.jsx +64 -0
- package/react/Table/Virtualized/HeadCell.jsx +53 -0
- package/react/Table/Virtualized/RowContent.jsx +52 -0
- package/react/Table/Virtualized/TableRow.jsx +20 -0
- package/react/Table/Virtualized/helpers.js +43 -0
- package/react/Table/Virtualized/helpers.spec.js +108 -0
- package/react/Table/Virtualized/index.jsx +151 -0
- package/react/Table/Virtualized/virtuosoComponents.jsx +35 -0
- package/react/Table/index.js +3 -0
- package/react/TableBody/index.js +3 -0
- package/react/TableCell/index.js +3 -0
- package/react/TableContainer/index.js +19 -0
- package/react/TableFooter/index.js +3 -0
- package/react/TableHead/index.js +3 -0
- package/react/TablePagination/index.js +3 -0
- package/react/TableRow/index.js +18 -0
- package/react/TableSortLabel/index.js +3 -0
- package/react/Tabs/Readme.md +100 -0
- package/react/Tabs/index.jsx +46 -0
- package/react/TextField/MobileSelect.jsx +168 -0
- package/react/TextField/Readme.md +264 -0
- package/react/TextField/helpers.js +23 -0
- package/react/TextField/index.jsx +54 -0
- package/react/Textarea/Readme.md +58 -0
- package/react/Textarea/index.jsx +58 -0
- package/react/Textarea/styles.styl +13 -0
- package/react/TextareaAutosize/index.js +3 -0
- package/react/Thumbnail/Readme.md +31 -0
- package/react/Thumbnail/Thumbnail.styl +51 -0
- package/react/Thumbnail/index.jsx +41 -0
- package/react/Tile/index.jsx +98 -0
- package/react/Tile/styles.styl +122 -0
- package/react/Timeline/index.js +3 -0
- package/react/TimelineConnector/index.js +3 -0
- package/react/TimelineContent/index.js +3 -0
- package/react/TimelineDot/index.js +3 -0
- package/react/TimelineItem/index.js +3 -0
- package/react/TimelineOppositeContent/index.js +3 -0
- package/react/TimelineSeparator/index.js +3 -0
- package/react/Toggle/index.jsx +50 -0
- package/react/Toggle/styles.styl +39 -0
- package/react/ToggleButton/Readme.md +60 -0
- package/react/ToggleButton/index.js +26 -0
- package/react/ToggleButtonGroup/Readme.md +90 -0
- package/react/ToggleButtonGroup/index.js +3 -0
- package/react/Toolbar/index.js +3 -0
- package/react/Tooltip/Readme.md +30 -0
- package/react/Tooltip/index.jsx +7 -0
- package/react/Typography/Readme.md +44 -0
- package/react/Typography/index.jsx +25 -0
- package/react/UnorderedList/Readme.md +9 -0
- package/react/UnorderedList/index.jsx +19 -0
- package/react/UnorderedList/styles.styl +22 -0
- package/react/UploadQueue/FileUploadProgress.jsx +49 -0
- package/react/UploadQueue/Item.jsx +99 -0
- package/react/UploadQueue/Pending.jsx +12 -0
- package/react/UploadQueue/Readme.md +95 -0
- package/react/UploadQueue/RemainingTime.jsx +26 -0
- package/react/UploadQueue/helpers.js +3 -0
- package/react/UploadQueue/index.jsx +160 -0
- package/react/UploadQueue/index.spec.jsx +162 -0
- package/react/UploadQueue/locales/en.json +10 -0
- package/react/UploadQueue/locales/es.json +10 -0
- package/react/UploadQueue/locales/fr.json +10 -0
- package/react/UploadQueue/locales/ru.json +10 -0
- package/react/UploadQueue/locales/vi.json +10 -0
- package/react/UploadQueue/styles.styl +155 -0
- package/react/UploadQueue/useStatusIcon.js +31 -0
- package/react/Wizard/Readme.md +86 -0
- package/react/Wizard/index.jsx +182 -0
- package/react/Wizard/styles.styl +98 -0
- package/react/Zoom/index.js +3 -0
- package/react/deprecated/ActionMenu/ActionMenuEffects.ts +51 -0
- package/react/deprecated/ActionMenu/ActionMenuHeader.jsx +18 -0
- package/react/deprecated/ActionMenu/ActionMenuItem.jsx +46 -0
- package/react/deprecated/ActionMenu/ActionMenuItemWrapper.jsx +83 -0
- package/react/deprecated/ActionMenu/ActionMenuRadio.jsx +8 -0
- package/react/deprecated/ActionMenu/ActionMenuWithClose.jsx +31 -0
- package/react/deprecated/ActionMenu/ActionMenuWrapper.jsx +42 -0
- package/react/deprecated/ActionMenu/Actions/ActionsItems.jsx +46 -0
- package/react/deprecated/ActionMenu/Actions/call.js +29 -0
- package/react/deprecated/ActionMenu/Actions/emailTo.js +29 -0
- package/react/deprecated/ActionMenu/Actions/helpers.js +63 -0
- package/react/deprecated/ActionMenu/Actions/helpers.spec.js +36 -0
- package/react/deprecated/ActionMenu/Actions/hr.js +10 -0
- package/react/deprecated/ActionMenu/Actions/index.js +7 -0
- package/react/deprecated/ActionMenu/Actions/locales/en.json +8 -0
- package/react/deprecated/ActionMenu/Actions/locales/fr.json +8 -0
- package/react/deprecated/ActionMenu/Actions/locales/ru.json +8 -0
- package/react/deprecated/ActionMenu/Actions/locales/vi.json +8 -0
- package/react/deprecated/ActionMenu/Actions/locales/withActionsLocales.jsx +14 -0
- package/react/deprecated/ActionMenu/Actions/modify.js +41 -0
- package/react/deprecated/ActionMenu/Actions/smsTo.js +29 -0
- package/react/deprecated/ActionMenu/Actions/viewInContacts.js +41 -0
- package/react/deprecated/ActionMenu/NotInlineWrapper.jsx +57 -0
- package/react/deprecated/ActionMenu/Readme.md +180 -0
- package/react/deprecated/ActionMenu/index.jsx +134 -0
- package/react/deprecated/ActionMenu/styles.styl +17 -0
- package/react/deprecated/Alerter/Alert.jsx +116 -0
- package/react/deprecated/Alerter/Readme.md +74 -0
- package/react/deprecated/Alerter/index.jsx +146 -0
- package/react/deprecated/Alerter/styles.styl +37 -0
- package/react/deprecated/BottomDrawer/Readme.md +34 -0
- package/react/deprecated/BottomDrawer/index.jsx +157 -0
- package/react/deprecated/BottomDrawer/styles.styl +18 -0
- package/react/deprecated/Button/Readme.md +240 -0
- package/react/deprecated/Button/index.jsx +180 -0
- package/react/deprecated/Button/styles.styl +85 -0
- package/react/deprecated/ButtonAction/index.jsx +78 -0
- package/react/deprecated/ButtonAction/styles.styl +22 -0
- package/react/deprecated/Chip/Readme.md +161 -0
- package/react/deprecated/Chip/index.jsx +88 -0
- package/react/deprecated/Chip/styles.styl +58 -0
- package/react/deprecated/CompositeRow/Readme.md +102 -0
- package/react/deprecated/CompositeRow/index.jsx +92 -0
- package/react/deprecated/CompositeRow/styles.styl +17 -0
- package/react/deprecated/GridItem/Readme.md +25 -0
- package/react/deprecated/GridItem/index.jsx +25 -0
- package/react/deprecated/GridItem/styles.styl +8 -0
- package/react/deprecated/Infos/Readme.md +37 -0
- package/react/deprecated/Infos/index.jsx +125 -0
- package/react/deprecated/Infos/styles.styl +32 -0
- package/react/deprecated/InfosCarrousel/Readme.md +64 -0
- package/react/deprecated/InfosCarrousel/index.jsx +109 -0
- package/react/deprecated/InfosCarrousel/styles.styl +31 -0
- package/react/deprecated/InlineCard/Readme.md +8 -0
- package/react/deprecated/InlineCard/index.jsx +21 -0
- package/react/deprecated/InlineCard/styles.styl +7 -0
- package/react/deprecated/IntentModal/IntentModal.jsx +98 -0
- package/react/deprecated/IntentModal/IntentModal.md +26 -0
- package/react/deprecated/IntentModal/index.js +1 -0
- package/react/deprecated/IntentModal/styles.styl +23 -0
- package/react/deprecated/IntentOpener/IntentOpener.jsx +95 -0
- package/react/deprecated/IntentOpener/IntentOpener.md +16 -0
- package/react/deprecated/IntentOpener/index.js +1 -0
- package/react/deprecated/Media/Media.jsx +43 -0
- package/react/deprecated/Media/Readme.md +71 -0
- package/react/deprecated/Media/index.js +1 -0
- package/react/deprecated/Media/styles.styl +16 -0
- package/react/deprecated/Menus/Readme.md +25 -0
- package/react/deprecated/Menus/index.js +125 -0
- package/react/deprecated/Modal/AnimatedContentHeader.jsx +9 -0
- package/react/deprecated/Modal/ModalBackButton.jsx +37 -0
- package/react/deprecated/Modal/ModalButtons.jsx +51 -0
- package/react/deprecated/Modal/ModalContent.jsx +122 -0
- package/react/deprecated/Modal/ModalCross.jsx +33 -0
- package/react/deprecated/Modal/ModalEffects.ts +63 -0
- package/react/deprecated/Modal/ModalFooter.jsx +10 -0
- package/react/deprecated/Modal/ModalHeader.jsx +53 -0
- package/react/deprecated/Modal/ModalSection.jsx +18 -0
- package/react/deprecated/Modal/Readme.md +485 -0
- package/react/deprecated/Modal/index.jsx +317 -0
- package/react/deprecated/Modal/styles.styl +114 -0
- package/react/deprecated/NarrowContent/Readme.md +23 -0
- package/react/deprecated/NarrowContent/index.jsx +12 -0
- package/react/deprecated/NarrowContent/styles.styl +2 -0
- package/react/deprecated/Overlay/Readme.md +30 -0
- package/react/deprecated/Overlay/index.jsx +79 -0
- package/react/deprecated/Overlay/styles.styl +4 -0
- package/react/deprecated/PercentageBar/Readme.md +18 -0
- package/react/deprecated/PercentageBar/index.jsx +21 -0
- package/react/deprecated/PercentageBar/styles.styl +11 -0
- package/react/deprecated/PercentageLine/PercentageLine.styl +4 -0
- package/react/deprecated/PercentageLine/Readme.md +9 -0
- package/react/deprecated/PercentageLine/index.jsx +32 -0
- package/react/deprecated/PushClientButton/Readme.md +40 -0
- package/react/deprecated/PushClientButton/index.jsx +46 -0
- package/react/deprecated/PushClientButton/index.spec.jsx +25 -0
- package/react/deprecated/PushClientButton/styles.styl +4 -0
- package/react/deprecated/QuotaAlert/Readme.md +40 -0
- package/react/deprecated/QuotaAlert/index.jsx +18 -0
- package/react/deprecated/Radio/Readme.md +127 -0
- package/react/deprecated/Radio/index.jsx +89 -0
- package/react/deprecated/Radio/index.spec.jsx +173 -0
- package/react/deprecated/Radio/styles.styl +4 -0
- package/react/deprecated/RaisedList/README.md +20 -0
- package/react/deprecated/RaisedList/index.js +21 -0
- package/react/deprecated/Table/Readme.md +32 -0
- package/react/deprecated/Table/index.jsx +61 -0
- package/react/deprecated/Table/styles.styl +22 -0
- package/react/deprecated/ViewStack/ModalStack.jsx +43 -0
- package/react/deprecated/ViewStack/Readme.md +10 -0
- package/react/deprecated/ViewStack/ViewStack.jsx +41 -0
- package/react/deprecated/ViewStack/context.js +4 -0
- package/react/deprecated/ViewStack/example.jsx +41 -0
- package/react/deprecated/ViewStack/hooks.js +30 -0
- package/react/deprecated/ViewStack/index.js +3 -0
- package/react/deprecated/readme.md +1 -0
- package/react/helpers/acceptedTypes.js +50 -0
- package/react/helpers/acceptedTypes.spec.js +86 -0
- package/react/helpers/appDataset.js +46 -0
- package/react/helpers/appDataset.spec.js +73 -0
- package/react/helpers/breakpoints.js +35 -0
- package/react/helpers/createDepreciationLogger.js +10 -0
- package/react/helpers/createDepreciationLogger.spec.js +21 -0
- package/react/helpers/getRandomUUID.js +28 -0
- package/react/helpers/getRandomUUID.spec.js +9 -0
- package/react/helpers/getSafeArea.ts +15 -0
- package/react/helpers/isTesting.js +2 -0
- package/react/helpers/migrateProps.jsx +89 -0
- package/react/helpers/ref.js +11 -0
- package/react/helpers/ref.spec.js +28 -0
- package/react/helpers/useProgression.jsx +30 -0
- package/react/helpers/withBreakpoints.jsx +81 -0
- package/react/helpers/withOffline.jsx +33 -0
- package/react/helpers/withState.jsx +43 -0
- package/react/hooks/useBreakpoints.md +12 -0
- package/react/hooks/useBrowserOffline.js +34 -0
- package/react/hooks/useBrowserOffline.md +9 -0
- package/react/hooks/useBrowserOffline.spec.js +93 -0
- package/react/hooks/useClientErrors.jsx +140 -0
- package/react/hooks/useClientErrors.spec.jsx +94 -0
- package/react/hooks/useConfirmExit/Readme.md +38 -0
- package/react/hooks/useConfirmExit/index.jsx +176 -0
- package/react/hooks/useConfirmExit/index.spec.js +186 -0
- package/react/hooks/useConfirmExit/locales/en.json +8 -0
- package/react/hooks/useConfirmExit/locales/fr.json +8 -0
- package/react/hooks/useConfirmExit/locales/ru.json +8 -0
- package/react/hooks/useConfirmExit/locales/vi.json +8 -0
- package/react/hooks/useCycle.jsx +37 -0
- package/react/hooks/useCycle.md +27 -0
- package/react/hooks/useCycle.spec.jsx +58 -0
- package/react/hooks/useEventListener.js +17 -0
- package/react/hooks/useEventListener.md +13 -0
- package/react/hooks/useEventListener.spec.js +72 -0
- package/react/hooks/useMediaQuery.js +6 -0
- package/react/hooks/usePeriodicRender.js +23 -0
- package/react/hooks/usePeriodicRender.md +17 -0
- package/react/hooks/usePeriodicRender.spec.js +70 -0
- package/react/hooks/useRealtime.js +51 -0
- package/react/hooks/useRealtime.spec.js +42 -0
- package/react/hooks/useScroll.jsx +44 -0
- package/react/hooks/useScroll.md +34 -0
- package/react/hooks/useScroll.spec.jsx +57 -0
- package/react/hooks/useSetFlagshipUi/helpers.js +152 -0
- package/react/hooks/useSetFlagshipUi/useSetFlagshipUI.spec.ts +295 -0
- package/react/hooks/useSetFlagshipUi/useSetFlagshipUI.ts +58 -0
- package/react/index.js +141 -0
- package/react/jestLib/I18n.js +13 -0
- package/react/legacy/Avatar/Readme.md +52 -0
- package/react/legacy/Avatar/helpers.js +17 -0
- package/react/legacy/Avatar/index.jsx +77 -0
- package/react/legacy/Avatar/styles.styl +49 -0
- package/react/legacy/Breadcrumbs/Readme.md +86 -0
- package/react/legacy/Breadcrumbs/index.jsx +93 -0
- package/react/legacy/Breadcrumbs/styles.styl +23 -0
- package/react/legacy/Input/Readme.md +91 -0
- package/react/legacy/Input/index.jsx +78 -0
- package/react/legacy/Input/styles.styl +16 -0
- package/react/legacy/readme.md +1 -0
- package/react/mocks/apps.js +151 -0
- package/react/palette.js +49 -0
- package/react/providers/Alert/Readme.md +69 -0
- package/react/providers/Alert/helpers.js +13 -0
- package/react/providers/Alert/index.jsx +84 -0
- package/react/providers/Breakpoints/Readme.md +64 -0
- package/react/providers/Breakpoints/index.jsx +58 -0
- package/react/providers/Breakpoints/useIframeConnection.jsx +31 -0
- package/react/providers/Breakpoints/useIframeToSendWidth.jsx +33 -0
- package/react/providers/Breakpoints/useParentBreakpoints.jsx +36 -0
- package/react/providers/ConfirmDialog/Readme.md +35 -0
- package/react/providers/ConfirmDialog/index.jsx +60 -0
- package/react/providers/CozyTheme/CozyThemeWithQuery.jsx +25 -0
- package/react/providers/CozyTheme/DumbCozyTheme.jsx +65 -0
- package/react/providers/CozyTheme/Readme.md +88 -0
- package/react/providers/CozyTheme/index.jsx +59 -0
- package/react/providers/CozyTheme/queries.js +14 -0
- package/react/providers/DemoProvider.jsx +43 -0
- package/react/providers/Encrypted/index.jsx +25 -0
- package/react/providers/I18n/createUseI18n.jsx +32 -0
- package/react/providers/I18n/format.jsx +62 -0
- package/react/providers/I18n/format.spec.jsx +73 -0
- package/react/providers/I18n/helpers.js +33 -0
- package/react/providers/I18n/index.jsx +107 -0
- package/react/providers/I18n/index.spec.jsx +135 -0
- package/react/providers/I18n/translate.jsx +28 -0
- package/react/providers/I18n/translation.jsx +42 -0
- package/react/providers/I18n/useExtendI18n.jsx +37 -0
- package/react/providers/I18n/withLocales.jsx +47 -0
- package/react/providers/I18n/withLocales.spec.jsx +58 -0
- package/react/providers/I18n/withOnlyLocales.jsx +38 -0
- package/react/providers/Intent/index.jsx +83 -0
- package/react/providers/Readme.md +1 -0
- package/react/providers/Selection/Readme.md +28 -0
- package/react/providers/Selection/index.jsx +84 -0
- package/react/styles/index.js +1 -0
- package/react/utils/Dnd/CustomDrag/CustomDragLayer.jsx +45 -0
- package/react/utils/Dnd/CustomDrag/DragPreview.jsx +43 -0
- package/react/utils/Dnd/CustomDrag/DragPreviewWrapper.jsx +52 -0
- package/react/utils/Dnd/DnDConfigWrapper.jsx +48 -0
- package/react/utils/color.js +30 -0
- package/react/utils/color.spec.js +8 -0
- package/react/utils/dom.jsx +10 -0
- package/react/utils/index.js +1 -0
- package/react/utils/react.js +48 -0
- package/scripts/screenshots/fetchAllComponents.js +114 -0
- package/scripts/screenshots/helpers.js +39 -0
- package/scripts/screenshots/parser.js +61 -0
- package/scripts/screenshots/prepares.js +58 -0
- package/scripts/screenshots/screenshotComponent.js +68 -0
- package/scripts/screenshots/screenshotKSSStyleguide.js +60 -0
- package/scripts/screenshots/screenshotReactStyleguide.js +74 -0
- package/stylus/cozy-ui/build.styl +16 -0
- package/transpiled/react/Accordion/index.d.ts +2 -0
- package/transpiled/react/Accordion/index.js +2 -0
- package/transpiled/react/AccordionActions/index.d.ts +2 -0
- package/transpiled/react/AccordionActions/index.js +2 -0
- package/transpiled/react/AccordionDetails/index.d.ts +2 -0
- package/transpiled/react/AccordionDetails/index.js +2 -0
- package/transpiled/react/AccordionSummary/AccordionExpandIcon.d.ts +2 -0
- package/transpiled/react/AccordionSummary/AccordionExpandIcon.js +12 -0
- package/transpiled/react/AccordionSummary/index.d.ts +2 -0
- package/transpiled/react/AccordionSummary/index.js +7 -0
- package/transpiled/react/ActionsBar/ResponsiveAction.d.ts +3 -0
- package/transpiled/react/ActionsBar/ResponsiveAction.js +62 -0
- package/transpiled/react/ActionsBar/index.d.ts +2 -0
- package/transpiled/react/ActionsBar/index.js +221 -0
- package/transpiled/react/ActionsBar/locales/withActionsLocales.d.ts +12 -0
- package/transpiled/react/ActionsBar/locales/withActionsLocales.js +24 -0
- package/transpiled/react/ActionsMenu/Actions/addToFavorites.d.ts +14 -0
- package/transpiled/react/ActionsMenu/Actions/addToFavorites.js +144 -0
- package/transpiled/react/ActionsMenu/Actions/call.d.ts +9 -0
- package/transpiled/react/ActionsMenu/Actions/call.js +35 -0
- package/transpiled/react/ActionsMenu/Actions/copyToClipboard.d.ts +12 -0
- package/transpiled/react/ActionsMenu/Actions/copyToClipboard.js +91 -0
- package/transpiled/react/ActionsMenu/Actions/divider.d.ts +5 -0
- package/transpiled/react/ActionsMenu/Actions/divider.js +13 -0
- package/transpiled/react/ActionsMenu/Actions/download.d.ts +15 -0
- package/transpiled/react/ActionsMenu/Actions/download.js +51 -0
- package/transpiled/react/ActionsMenu/Actions/editAttribute.d.ts +11 -0
- package/transpiled/react/ActionsMenu/Actions/editAttribute.js +40 -0
- package/transpiled/react/ActionsMenu/Actions/emailTo.d.ts +9 -0
- package/transpiled/react/ActionsMenu/Actions/emailTo.js +35 -0
- package/transpiled/react/ActionsMenu/Actions/helpers.d.ts +8 -0
- package/transpiled/react/ActionsMenu/Actions/helpers.js +478 -0
- package/transpiled/react/ActionsMenu/Actions/helpers.spec.d.ts +1 -0
- package/transpiled/react/ActionsMenu/Actions/index.d.ts +15 -0
- package/transpiled/react/ActionsMenu/Actions/index.js +15 -0
- package/transpiled/react/ActionsMenu/Actions/locales/withActionsLocales.d.ts +17 -0
- package/transpiled/react/ActionsMenu/Actions/locales/withActionsLocales.js +130 -0
- package/transpiled/react/ActionsMenu/Actions/makeAction.d.ts +17 -0
- package/transpiled/react/ActionsMenu/Actions/makeAction.js +45 -0
- package/transpiled/react/ActionsMenu/Actions/modify.d.ts +11 -0
- package/transpiled/react/ActionsMenu/Actions/modify.js +42 -0
- package/transpiled/react/ActionsMenu/Actions/others.d.ts +6 -0
- package/transpiled/react/ActionsMenu/Actions/others.js +12 -0
- package/transpiled/react/ActionsMenu/Actions/print.d.ts +14 -0
- package/transpiled/react/ActionsMenu/Actions/print.js +144 -0
- package/transpiled/react/ActionsMenu/Actions/removeFromFavorites.d.ts +14 -0
- package/transpiled/react/ActionsMenu/Actions/removeFromFavorites.js +144 -0
- package/transpiled/react/ActionsMenu/Actions/smsTo.d.ts +9 -0
- package/transpiled/react/ActionsMenu/Actions/smsTo.js +35 -0
- package/transpiled/react/ActionsMenu/Actions/viewInContacts.d.ts +11 -0
- package/transpiled/react/ActionsMenu/Actions/viewInContacts.js +42 -0
- package/transpiled/react/ActionsMenu/Actions/viewInDrive.d.ts +11 -0
- package/transpiled/react/ActionsMenu/Actions/viewInDrive.js +50 -0
- package/transpiled/react/ActionsMenu/ActionsItems.d.ts +11 -0
- package/transpiled/react/ActionsMenu/ActionsItems.js +81 -0
- package/transpiled/react/ActionsMenu/ActionsMenuButton.d.ts +5 -0
- package/transpiled/react/ActionsMenu/ActionsMenuButton.js +49 -0
- package/transpiled/react/ActionsMenu/ActionsMenuItem.d.ts +3 -0
- package/transpiled/react/ActionsMenu/ActionsMenuItem.js +37 -0
- package/transpiled/react/ActionsMenu/ActionsMenuMobileHeader.d.ts +3 -0
- package/transpiled/react/ActionsMenu/ActionsMenuMobileHeader.js +31 -0
- package/transpiled/react/ActionsMenu/ActionsMenuWrapper.d.ts +15 -0
- package/transpiled/react/ActionsMenu/ActionsMenuWrapper.js +81 -0
- package/transpiled/react/ActionsMenu/index.d.ts +3 -0
- package/transpiled/react/ActionsMenu/index.js +94 -0
- package/transpiled/react/Alert/index.d.ts +54 -0
- package/transpiled/react/Alert/index.js +138 -0
- package/transpiled/react/AlertTitle/index.d.ts +2 -0
- package/transpiled/react/AlertTitle/index.js +2 -0
- package/transpiled/react/AppBar/index.d.ts +2 -0
- package/transpiled/react/AppBar/index.js +2 -0
- package/transpiled/react/AppIcon/index.d.ts +50 -0
- package/transpiled/react/AppIcon/index.js +234 -0
- package/transpiled/react/AppLinker/index.d.ts +35 -0
- package/transpiled/react/AppLinker/index.js +122 -0
- package/transpiled/react/AppLinker/index.spec.d.ts +1 -0
- package/transpiled/react/AppLinker/native.config.d.ts +1 -0
- package/transpiled/react/AppLinker/native.config.js +1 -0
- package/transpiled/react/AppLinker/native.d.ts +6 -0
- package/transpiled/react/AppLinker/native.js +61 -0
- package/transpiled/react/AppLinker/native.spec.d.ts +1 -0
- package/transpiled/react/AppSections/Sections.d.ts +48 -0
- package/transpiled/react/AppSections/Sections.js +420 -0
- package/transpiled/react/AppSections/_mockApps.d.ts +242 -0
- package/transpiled/react/AppSections/_mockApps.js +202 -0
- package/transpiled/react/AppSections/categories.d.ts +7 -0
- package/transpiled/react/AppSections/categories.js +173 -0
- package/transpiled/react/AppSections/categories.spec.d.ts +1 -0
- package/transpiled/react/AppSections/components/AppsSection.d.ts +20 -0
- package/transpiled/react/AppSections/components/AppsSection.js +89 -0
- package/transpiled/react/AppSections/components/AppsSection.spec.d.ts +1 -0
- package/transpiled/react/AppSections/components/DropdownFilter.d.ts +17 -0
- package/transpiled/react/AppSections/components/DropdownFilter.js +77 -0
- package/transpiled/react/AppSections/constants.d.ts +8 -0
- package/transpiled/react/AppSections/constants.js +8 -0
- package/transpiled/react/AppSections/generateI18nConfig.d.ts +4 -0
- package/transpiled/react/AppSections/generateI18nConfig.js +25 -0
- package/transpiled/react/AppSections/helpers.d.ts +2 -0
- package/transpiled/react/AppSections/helpers.js +12 -0
- package/transpiled/react/AppSections/helpers.spec.d.ts +1 -0
- package/transpiled/react/AppSections/index.d.ts +3 -0
- package/transpiled/react/AppSections/index.js +3 -0
- package/transpiled/react/AppSections/index.spec.d.ts +1 -0
- package/transpiled/react/AppSections/search.d.ts +3 -0
- package/transpiled/react/AppSections/search.js +141 -0
- package/transpiled/react/AppSections/search.spec.d.ts +1 -0
- package/transpiled/react/AppTile/AppTile.spec.d.ts +1 -0
- package/transpiled/react/AppTile/helpers.d.ts +9 -0
- package/transpiled/react/AppTile/helpers.js +22 -0
- package/transpiled/react/AppTile/index.d.ts +33 -0
- package/transpiled/react/AppTile/index.js +141 -0
- package/transpiled/react/AppTitle/index.d.ts +20 -0
- package/transpiled/react/AppTitle/index.js +118 -0
- package/transpiled/react/Avatar/helpers.d.ts +34 -0
- package/transpiled/react/Avatar/helpers.js +49 -0
- package/transpiled/react/Avatar/index.d.ts +27 -0
- package/transpiled/react/Avatar/index.js +79 -0
- package/transpiled/react/AvatarGroup/index.d.ts +17 -0
- package/transpiled/react/AvatarGroup/index.js +48 -0
- package/transpiled/react/Backdrop/index.d.ts +11 -0
- package/transpiled/react/Backdrop/index.js +31 -0
- package/transpiled/react/Badge/index.d.ts +38 -0
- package/transpiled/react/Badge/index.js +68 -0
- package/transpiled/react/Banner/index.d.ts +28 -0
- package/transpiled/react/Banner/index.js +99 -0
- package/transpiled/react/Banner/index.spec.d.ts +1 -0
- package/transpiled/react/BarButton/index.d.ts +17 -0
- package/transpiled/react/BarButton/index.js +116 -0
- package/transpiled/react/BarContextProvider/index.d.ts +10 -0
- package/transpiled/react/BarContextProvider/index.js +32 -0
- package/transpiled/react/BarContextProvider/index.spec.d.ts +1 -0
- package/transpiled/react/BarTitle/index.d.ts +15 -0
- package/transpiled/react/BarTitle/index.js +27 -0
- package/transpiled/react/BottomNavigation/index.d.ts +2 -0
- package/transpiled/react/BottomNavigation/index.js +2 -0
- package/transpiled/react/BottomNavigationAction/index.d.ts +2 -0
- package/transpiled/react/BottomNavigationAction/index.js +2 -0
- package/transpiled/react/BottomSheet/BackdropOrFragment.d.ts +6 -0
- package/transpiled/react/BottomSheet/BackdropOrFragment.js +16 -0
- package/transpiled/react/BottomSheet/BottomSheet.d.ts +8 -0
- package/transpiled/react/BottomSheet/BottomSheet.js +450 -0
- package/transpiled/react/BottomSheet/BottomSheetHeader.d.ts +9 -0
- package/transpiled/react/BottomSheet/BottomSheetHeader.js +18 -0
- package/transpiled/react/BottomSheet/BottomSheetItem.d.ts +3 -0
- package/transpiled/react/BottomSheet/BottomSheetItem.js +35 -0
- package/transpiled/react/BottomSheet/BottomSheetTitle.d.ts +3 -0
- package/transpiled/react/BottomSheet/BottomSheetTitle.js +46 -0
- package/transpiled/react/BottomSheet/constants.d.ts +1 -0
- package/transpiled/react/BottomSheet/constants.js +1 -0
- package/transpiled/react/BottomSheet/helpers.d.ts +46 -0
- package/transpiled/react/BottomSheet/helpers.js +133 -0
- package/transpiled/react/BottomSheet/helpers.spec.d.ts +1 -0
- package/transpiled/react/BottomSheet/index.d.ts +4 -0
- package/transpiled/react/BottomSheet/index.js +4 -0
- package/transpiled/react/Box/index.d.ts +2 -0
- package/transpiled/react/Box/index.js +2 -0
- package/transpiled/react/Breadcrumbs/index.d.ts +2 -0
- package/transpiled/react/Breadcrumbs/index.js +2 -0
- package/transpiled/react/Button/index.d.ts +2 -0
- package/transpiled/react/Button/index.js +2 -0
- package/transpiled/react/ButtonBase/index.d.ts +2 -0
- package/transpiled/react/ButtonBase/index.js +2 -0
- package/transpiled/react/Buttons/index.d.ts +3 -0
- package/transpiled/react/Buttons/index.js +104 -0
- package/transpiled/react/Card/index.d.ts +19 -0
- package/transpiled/react/Card/index.js +58 -0
- package/transpiled/react/CardActionArea/index.d.ts +2 -0
- package/transpiled/react/CardActionArea/index.js +2 -0
- package/transpiled/react/CardActions/index.d.ts +2 -0
- package/transpiled/react/CardActions/index.js +2 -0
- package/transpiled/react/CardContent/index.d.ts +2 -0
- package/transpiled/react/CardContent/index.js +2 -0
- package/transpiled/react/CardHeader/index.d.ts +2 -0
- package/transpiled/react/CardHeader/index.js +2 -0
- package/transpiled/react/CardMedia/index.d.ts +2 -0
- package/transpiled/react/CardMedia/index.js +2 -0
- package/transpiled/react/Checkbox/index.d.ts +41 -0
- package/transpiled/react/Checkbox/index.js +107 -0
- package/transpiled/react/Chips/index.d.ts +3 -0
- package/transpiled/react/Chips/index.js +35 -0
- package/transpiled/react/CipherIcon/index.d.ts +2 -0
- package/transpiled/react/CipherIcon/index.js +78 -0
- package/transpiled/react/CipherIcon/index.spec.d.ts +1 -0
- package/transpiled/react/Circle/index.d.ts +24 -0
- package/transpiled/react/Circle/index.js +50 -0
- package/transpiled/react/CircleButton/helpers.d.ts +10 -0
- package/transpiled/react/CircleButton/helpers.js +26 -0
- package/transpiled/react/CircleButton/helpers.spec.d.ts +1 -0
- package/transpiled/react/CircleButton/index.d.ts +21 -0
- package/transpiled/react/CircleButton/index.js +116 -0
- package/transpiled/react/CircularChart/CircularChartProgress.d.ts +3 -0
- package/transpiled/react/CircularChart/CircularChartProgress.js +68 -0
- package/transpiled/react/CircularChart/CircularProgressWithBackground.d.ts +3 -0
- package/transpiled/react/CircularChart/CircularProgressWithBackground.js +44 -0
- package/transpiled/react/CircularChart/helpers.d.ts +1 -0
- package/transpiled/react/CircularChart/helpers.js +43 -0
- package/transpiled/react/CircularChart/index.d.ts +3 -0
- package/transpiled/react/CircularChart/index.js +59 -0
- package/transpiled/react/CircularProgress/index.d.ts +2 -0
- package/transpiled/react/CircularProgress/index.js +2 -0
- package/transpiled/react/ClickAwayListener/index.d.ts +2 -0
- package/transpiled/react/ClickAwayListener/index.js +2 -0
- package/transpiled/react/Collapse/index.d.ts +2 -0
- package/transpiled/react/Collapse/index.js +2 -0
- package/transpiled/react/ContactPicker/index.d.ts +21 -0
- package/transpiled/react/ContactPicker/index.js +111 -0
- package/transpiled/react/ContactPicker/index.spec.d.ts +1 -0
- package/transpiled/react/Contacts/AddModal/ContactAddressDialog/helpers.d.ts +4 -0
- package/transpiled/react/Contacts/AddModal/ContactAddressDialog/helpers.js +20 -0
- package/transpiled/react/Contacts/AddModal/ContactAddressDialog/helpers.spec.d.ts +1 -0
- package/transpiled/react/Contacts/AddModal/ContactAddressDialog/index.d.ts +39 -0
- package/transpiled/react/Contacts/AddModal/ContactAddressDialog/index.js +87 -0
- package/transpiled/react/Contacts/AddModal/ContactAddressDialog/locales/index.d.ts +10 -0
- package/transpiled/react/Contacts/AddModal/ContactAddressDialog/locales/index.js +106 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/FieldInput.d.ts +39 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/FieldInput.js +135 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/FieldInputAccordion.d.ts +12 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/FieldInputAccordion.js +69 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/FieldInputArray.d.ts +14 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/FieldInputArray.js +82 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/FieldInputLayout.d.ts +22 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/FieldInputLayout.js +80 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/FieldInputWrapper.d.ts +19 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/FieldInputWrapper.js +34 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/HasValueCondition.d.ts +18 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/HasValueCondition.js +32 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/HasValueCondition.spec.d.ts +1 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/RelatedContactList.d.ts +15 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/RelatedContactList.js +39 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/TextFieldCustomLabelSelect.d.ts +9 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/TextFieldCustomLabelSelect.js +81 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/TextFieldSelect.d.ts +5 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/TextFieldSelect.js +42 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/contactToFormValues.d.ts +6 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/contactToFormValues.js +105 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/contactToFormValues.spec.d.ts +1 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/fieldsConfig.d.ts +4 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/fieldsConfig.js +291 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/formValuesToContact.d.ts +7 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/formValuesToContact.js +99 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/formValuesToContact.spec.d.ts +1 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/helpers.d.ts +35 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/helpers.js +398 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/helpers.spec.d.ts +1 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/index.d.ts +17 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/index.js +150 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/index.spec.d.ts +1 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/locales/index.d.ts +10 -0
- package/transpiled/react/Contacts/AddModal/ContactForm/locales/index.js +306 -0
- package/transpiled/react/Contacts/AddModal/CustomLabelDialog/index.d.ts +22 -0
- package/transpiled/react/Contacts/AddModal/CustomLabelDialog/index.js +113 -0
- package/transpiled/react/Contacts/AddModal/CustomLabelDialog/locales/index.d.ts +10 -0
- package/transpiled/react/Contacts/AddModal/CustomLabelDialog/locales/index.js +66 -0
- package/transpiled/react/Contacts/AddModal/index.d.ts +8 -0
- package/transpiled/react/Contacts/AddModal/index.js +111 -0
- package/transpiled/react/Contacts/AddModal/locales/index.d.ts +10 -0
- package/transpiled/react/Contacts/AddModal/locales/index.js +58 -0
- package/transpiled/react/Contacts/AddModal/mocks.d.ts +300 -0
- package/transpiled/react/Contacts/AddModal/mocks.js +256 -0
- package/transpiled/react/Contacts/AddModal/types.d.ts +188 -0
- package/transpiled/react/Contacts/AddModal/types.js +94 -0
- package/transpiled/react/Contacts/GroupsSelect/GroupCreation.d.ts +3 -0
- package/transpiled/react/Contacts/GroupsSelect/GroupCreation.js +137 -0
- package/transpiled/react/Contacts/GroupsSelect/GroupsSelect.d.ts +56 -0
- package/transpiled/react/Contacts/GroupsSelect/GroupsSelect.js +181 -0
- package/transpiled/react/Contacts/GroupsSelect/GroupsSelect.spec.d.ts +22 -0
- package/transpiled/react/Contacts/GroupsSelect/GroupsSelectProvider.d.ts +5 -0
- package/transpiled/react/Contacts/GroupsSelect/GroupsSelectProvider.js +38 -0
- package/transpiled/react/Contacts/GroupsSelect/SelectBox/Control.d.ts +14 -0
- package/transpiled/react/Contacts/GroupsSelect/SelectBox/Control.js +37 -0
- package/transpiled/react/Contacts/GroupsSelect/SelectBox/EditGroupName.d.ts +7 -0
- package/transpiled/react/Contacts/GroupsSelect/SelectBox/EditGroupName.js +71 -0
- package/transpiled/react/Contacts/GroupsSelect/SelectBox/Menu.d.ts +7 -0
- package/transpiled/react/Contacts/GroupsSelect/SelectBox/Menu.js +34 -0
- package/transpiled/react/Contacts/GroupsSelect/SelectBox/Option.d.ts +18 -0
- package/transpiled/react/Contacts/GroupsSelect/SelectBox/Option.js +66 -0
- package/transpiled/react/Contacts/GroupsSelect/SelectBox/SelectContainer.d.ts +2 -0
- package/transpiled/react/Contacts/GroupsSelect/SelectBox/SelectContainer.js +12 -0
- package/transpiled/react/Contacts/GroupsSelect/helpers.d.ts +9 -0
- package/transpiled/react/Contacts/GroupsSelect/helpers.js +30 -0
- package/transpiled/react/Contacts/GroupsSelect/locales/index.d.ts +10 -0
- package/transpiled/react/Contacts/GroupsSelect/locales/index.js +90 -0
- package/transpiled/react/Contacts/GroupsSelect/useGroupSelect.d.ts +11 -0
- package/transpiled/react/Contacts/GroupsSelect/useGroupSelect.js +179 -0
- package/transpiled/react/Contacts/Header/GroupsSelection.d.ts +7 -0
- package/transpiled/react/Contacts/Header/GroupsSelection.js +84 -0
- package/transpiled/react/Contacts/Header/ImportDropdown.d.ts +4 -0
- package/transpiled/react/Contacts/Header/ImportDropdown.js +88 -0
- package/transpiled/react/Contacts/Header/SearchInput.d.ts +4 -0
- package/transpiled/react/Contacts/Header/SearchInput.js +24 -0
- package/transpiled/react/Contacts/Header/index.d.ts +26 -0
- package/transpiled/react/Contacts/Header/index.js +72 -0
- package/transpiled/react/Contacts/Header/locales/index.d.ts +10 -0
- package/transpiled/react/Contacts/Header/locales/index.js +66 -0
- package/transpiled/react/ContactsList/ContactCell.d.ts +8 -0
- package/transpiled/react/ContactsList/ContactCell.js +32 -0
- package/transpiled/react/ContactsList/ContactRow.d.ts +16 -0
- package/transpiled/react/ContactsList/ContactRow.js +62 -0
- package/transpiled/react/ContactsList/ContactRow.spec.d.ts +1 -0
- package/transpiled/react/ContactsList/Contacts/ContactCozy.d.ts +14 -0
- package/transpiled/react/ContactsList/Contacts/ContactCozy.js +31 -0
- package/transpiled/react/ContactsList/Contacts/ContactEmail.d.ts +14 -0
- package/transpiled/react/ContactsList/Contacts/ContactEmail.js +31 -0
- package/transpiled/react/ContactsList/Contacts/ContactIdentity.d.ts +10 -0
- package/transpiled/react/ContactsList/Contacts/ContactIdentity.js +67 -0
- package/transpiled/react/ContactsList/Contacts/ContactName.d.ts +10 -0
- package/transpiled/react/ContactsList/Contacts/ContactName.js +34 -0
- package/transpiled/react/ContactsList/Contacts/ContactPhone.d.ts +14 -0
- package/transpiled/react/ContactsList/Contacts/ContactPhone.js +31 -0
- package/transpiled/react/ContactsList/ContactsList.d.ts +2 -0
- package/transpiled/react/ContactsList/ContactsList.js +51 -0
- package/transpiled/react/ContactsList/helpers.d.ts +9 -0
- package/transpiled/react/ContactsList/helpers.js +130 -0
- package/transpiled/react/ContactsList/helpers.spec.d.ts +1 -0
- package/transpiled/react/ContactsList/index.d.ts +2 -0
- package/transpiled/react/ContactsList/index.js +2 -0
- package/transpiled/react/ContactsList/locales/withContactsListLocales.d.ts +12 -0
- package/transpiled/react/ContactsList/locales/withContactsListLocales.js +28 -0
- package/transpiled/react/ContactsListModal/AddContact/AddContactActions.d.ts +2 -0
- package/transpiled/react/ContactsListModal/AddContact/AddContactActions.js +19 -0
- package/transpiled/react/ContactsListModal/AddContact/AddContactContent.d.ts +2 -0
- package/transpiled/react/ContactsListModal/AddContact/AddContactContent.js +65 -0
- package/transpiled/react/ContactsListModal/AddContact/AddContactDialog.d.ts +6 -0
- package/transpiled/react/ContactsListModal/AddContact/AddContactDialog.js +42 -0
- package/transpiled/react/ContactsListModal/AddContact/AddContactTitle.d.ts +2 -0
- package/transpiled/react/ContactsListModal/AddContact/AddContactTitle.js +9 -0
- package/transpiled/react/ContactsListModal/AddContact/helpers.d.ts +6 -0
- package/transpiled/react/ContactsListModal/AddContact/helpers.js +48 -0
- package/transpiled/react/ContactsListModal/AddContact/helpers.spec.d.ts +1 -0
- package/transpiled/react/ContactsListModal/ContactsListContent.d.ts +2 -0
- package/transpiled/react/ContactsListModal/ContactsListContent.js +72 -0
- package/transpiled/react/ContactsListModal/ContactsListModal.d.ts +20 -0
- package/transpiled/react/ContactsListModal/ContactsListModal.js +144 -0
- package/transpiled/react/ContactsListModal/ContactsListModalWithQuery.d.ts +12 -0
- package/transpiled/react/ContactsListModal/ContactsListModalWithQuery.js +29 -0
- package/transpiled/react/ContactsListModal/EmptyMessage.d.ts +2 -0
- package/transpiled/react/ContactsListModal/EmptyMessage.js +19 -0
- package/transpiled/react/ContactsListModal/MobileHeader.d.ts +16 -0
- package/transpiled/react/ContactsListModal/MobileHeader.js +49 -0
- package/transpiled/react/ContactsListModal/index.d.ts +2 -0
- package/transpiled/react/ContactsListModal/index.js +39 -0
- package/transpiled/react/ContactsListModal/mockClient.d.ts +3 -0
- package/transpiled/react/ContactsListModal/mockClient.js +1998 -0
- package/transpiled/react/ContactsListModal/queries.d.ts +7 -0
- package/transpiled/react/ContactsListModal/queries.js +14 -0
- package/transpiled/react/ContactsListModal/withContactsListLocales.d.ts +7 -0
- package/transpiled/react/ContactsListModal/withContactsListLocales.js +28 -0
- package/transpiled/react/Container/index.d.ts +2 -0
- package/transpiled/react/Container/index.js +2 -0
- package/transpiled/react/Counter/index.d.ts +18 -0
- package/transpiled/react/Counter/index.js +18 -0
- package/transpiled/react/CozyDialogs/ConfirmDialog.d.ts +9 -0
- package/transpiled/react/CozyDialogs/ConfirmDialog.js +64 -0
- package/transpiled/react/CozyDialogs/Dialog.d.ts +6 -0
- package/transpiled/react/CozyDialogs/Dialog.js +53 -0
- package/transpiled/react/CozyDialogs/DialogBackButton.d.ts +11 -0
- package/transpiled/react/CozyDialogs/DialogBackButton.js +40 -0
- package/transpiled/react/CozyDialogs/DialogCloseButton.d.ts +11 -0
- package/transpiled/react/CozyDialogs/DialogCloseButton.js +40 -0
- package/transpiled/react/CozyDialogs/DialogTransition.d.ts +3 -0
- package/transpiled/react/CozyDialogs/DialogTransition.js +24 -0
- package/transpiled/react/CozyDialogs/FixedActionsDialog.d.ts +6 -0
- package/transpiled/react/CozyDialogs/FixedActionsDialog.js +59 -0
- package/transpiled/react/CozyDialogs/FixedDialog.d.ts +6 -0
- package/transpiled/react/CozyDialogs/FixedDialog.js +49 -0
- package/transpiled/react/CozyDialogs/IllustrationDialog.d.ts +6 -0
- package/transpiled/react/CozyDialogs/IllustrationDialog.js +64 -0
- package/transpiled/react/CozyDialogs/PermissionDialog.d.ts +25 -0
- package/transpiled/react/CozyDialogs/PermissionDialog.js +80 -0
- package/transpiled/react/CozyDialogs/SpecificDialogs/AllowLocationDialog.d.ts +2 -0
- package/transpiled/react/CozyDialogs/SpecificDialogs/AllowLocationDialog.js +73 -0
- package/transpiled/react/CozyDialogs/SpecificDialogs/AuthentificationDialog.d.ts +2 -0
- package/transpiled/react/CozyDialogs/SpecificDialogs/AuthentificationDialog.js +113 -0
- package/transpiled/react/CozyDialogs/SpecificDialogs/InstallFlagshipAppDialog.d.ts +2 -0
- package/transpiled/react/CozyDialogs/SpecificDialogs/InstallFlagshipAppDialog.js +80 -0
- package/transpiled/react/CozyDialogs/SpecificDialogs/ShortcutDialog.d.ts +2 -0
- package/transpiled/react/CozyDialogs/SpecificDialogs/ShortcutDialog.js +114 -0
- package/transpiled/react/CozyDialogs/SpecificDialogs/helpers/shortcuts.d.ts +13 -0
- package/transpiled/react/CozyDialogs/SpecificDialogs/helpers/shortcuts.js +91 -0
- package/transpiled/react/CozyDialogs/SpecificDialogs/icons/CozyLocation.d.ts +2 -0
- package/transpiled/react/CozyDialogs/SpecificDialogs/icons/CozyLocation.js +41 -0
- package/transpiled/react/CozyDialogs/SpecificDialogs/icons/QRCodeInstallFlagshipAppDialog.png +0 -0
- package/transpiled/react/CozyDialogs/SpecificDialogs/icons/appstore.png +0 -0
- package/transpiled/react/CozyDialogs/SpecificDialogs/icons/playstore.png +0 -0
- package/transpiled/react/CozyDialogs/SpecificDialogs/index.d.ts +4 -0
- package/transpiled/react/CozyDialogs/SpecificDialogs/index.js +4 -0
- package/transpiled/react/CozyDialogs/SpecificDialogs/withSpecificDialogsLocales.d.ts +12 -0
- package/transpiled/react/CozyDialogs/SpecificDialogs/withSpecificDialogsLocales.js +172 -0
- package/transpiled/react/CozyDialogs/TopAnchoredDialog.d.ts +18 -0
- package/transpiled/react/CozyDialogs/TopAnchoredDialog.js +23 -0
- package/transpiled/react/CozyDialogs/background.png +0 -0
- package/transpiled/react/CozyDialogs/dialogPropTypes.d.ts +14 -0
- package/transpiled/react/CozyDialogs/dialogPropTypes.js +13 -0
- package/transpiled/react/CozyDialogs/e2e.d.ts +2 -0
- package/transpiled/react/CozyDialogs/e2e.js +65 -0
- package/transpiled/react/CozyDialogs/index.d.ts +11 -0
- package/transpiled/react/CozyDialogs/index.js +11 -0
- package/transpiled/react/CozyDialogs/locales.d.ts +31 -0
- package/transpiled/react/CozyDialogs/locales.js +22 -0
- package/transpiled/react/CozyDialogs/testing.d.ts +5 -0
- package/transpiled/react/CozyDialogs/testing.js +35 -0
- package/transpiled/react/CozyDialogs/testing.spec.d.ts +1 -0
- package/transpiled/react/CozyDialogs/useCozyDialog.d.ts +15 -0
- package/transpiled/react/CozyDialogs/useCozyDialog.js +141 -0
- package/transpiled/react/CssBaseline/index.d.ts +2 -0
- package/transpiled/react/CssBaseline/index.js +2 -0
- package/transpiled/react/DateMonthPicker/index.d.ts +13 -0
- package/transpiled/react/DateMonthPicker/index.js +119 -0
- package/transpiled/react/DateMonthPicker/index.spec.d.ts +1 -0
- package/transpiled/react/DatePicker/helpers.d.ts +5 -0
- package/transpiled/react/DatePicker/helpers.js +19 -0
- package/transpiled/react/DatePicker/helpers.spec.d.ts +1 -0
- package/transpiled/react/DatePicker/index.d.ts +2 -0
- package/transpiled/react/DatePicker/index.js +331 -0
- package/transpiled/react/DatePicker/locales/withOwnLocales.d.ts +12 -0
- package/transpiled/react/DatePicker/locales/withOwnLocales.js +40 -0
- package/transpiled/react/Dialog/DialogActions.d.ts +2 -0
- package/transpiled/react/Dialog/DialogActions.js +2 -0
- package/transpiled/react/Dialog/DialogContent.d.ts +2 -0
- package/transpiled/react/Dialog/DialogContent.js +2 -0
- package/transpiled/react/Dialog/DialogContentText.d.ts +2 -0
- package/transpiled/react/Dialog/DialogContentText.js +2 -0
- package/transpiled/react/Dialog/DialogEffects.d.ts +36 -0
- package/transpiled/react/Dialog/DialogEffects.js +145 -0
- package/transpiled/react/Dialog/DialogTitle.d.ts +2 -0
- package/transpiled/react/Dialog/DialogTitle.js +2 -0
- package/transpiled/react/Dialog/index.d.ts +14 -0
- package/transpiled/react/Dialog/index.js +31 -0
- package/transpiled/react/DialogActions/index.d.ts +2 -0
- package/transpiled/react/DialogActions/index.js +2 -0
- package/transpiled/react/DialogContent/index.d.ts +2 -0
- package/transpiled/react/DialogContent/index.js +2 -0
- package/transpiled/react/DialogContentText/index.d.ts +2 -0
- package/transpiled/react/DialogContentText/index.js +2 -0
- package/transpiled/react/DialogTitle/index.d.ts +2 -0
- package/transpiled/react/DialogTitle/index.js +2 -0
- package/transpiled/react/Divider/TextDivider/index.d.ts +18 -0
- package/transpiled/react/Divider/TextDivider/index.js +36 -0
- package/transpiled/react/Divider/index.d.ts +8 -0
- package/transpiled/react/Divider/index.js +55 -0
- package/transpiled/react/Drawer/index.d.ts +2 -0
- package/transpiled/react/Drawer/index.js +2 -0
- package/transpiled/react/DropdownButton/index.d.ts +3 -0
- package/transpiled/react/DropdownButton/index.js +84 -0
- package/transpiled/react/DropdownText/index.d.ts +3 -0
- package/transpiled/react/DropdownText/index.js +122 -0
- package/transpiled/react/EditBadge/EditMenu.d.ts +11 -0
- package/transpiled/react/EditBadge/EditMenu.js +93 -0
- package/transpiled/react/EditBadge/StatusWrapper.d.ts +9 -0
- package/transpiled/react/EditBadge/StatusWrapper.js +44 -0
- package/transpiled/react/EditBadge/helpers.d.ts +20 -0
- package/transpiled/react/EditBadge/helpers.js +153 -0
- package/transpiled/react/EditBadge/index.d.ts +23 -0
- package/transpiled/react/EditBadge/index.js +89 -0
- package/transpiled/react/EditBadge/locales/index.d.ts +10 -0
- package/transpiled/react/EditBadge/locales/index.js +78 -0
- package/transpiled/react/Empty/index.d.ts +38 -0
- package/transpiled/react/Empty/index.js +85 -0
- package/transpiled/react/Fab/ExtendableFab.d.ts +3 -0
- package/transpiled/react/Fab/ExtendableFab.js +32 -0
- package/transpiled/react/Fab/index.d.ts +3 -0
- package/transpiled/react/Fab/index.js +6 -0
- package/transpiled/react/Fade/index.d.ts +2 -0
- package/transpiled/react/Fade/index.js +2 -0
- package/transpiled/react/Field/index.d.ts +53 -0
- package/transpiled/react/Field/index.js +269 -0
- package/transpiled/react/Field/index.spec.d.ts +1 -0
- package/transpiled/react/Figure/Figure.d.ts +18 -0
- package/transpiled/react/Figure/Figure.js +98 -0
- package/transpiled/react/Figure/Figure.spec.d.ts +1 -0
- package/transpiled/react/Figure/FigureBlock.d.ts +26 -0
- package/transpiled/react/Figure/FigureBlock.js +54 -0
- package/transpiled/react/Figure/index.d.ts +2 -0
- package/transpiled/react/Figure/index.js +2 -0
- package/transpiled/react/FileImageLoader/checkImageSource.d.ts +1 -0
- package/transpiled/react/FileImageLoader/checkImageSource.js +49 -0
- package/transpiled/react/FileImageLoader/index.d.ts +45 -0
- package/transpiled/react/FileImageLoader/index.js +368 -0
- package/transpiled/react/FileImageLoader/index.spec.d.ts +1 -0
- package/transpiled/react/FileInput/index.d.ts +29 -0
- package/transpiled/react/FileInput/index.js +68 -0
- package/transpiled/react/FileInput/index.spec.d.ts +1 -0
- package/transpiled/react/FilePath/index.d.ts +5 -0
- package/transpiled/react/FilePath/index.js +15 -0
- package/transpiled/react/FilePathLink/index.d.ts +5 -0
- package/transpiled/react/FilePathLink/index.js +18 -0
- package/transpiled/react/FilePicker/FilePickerBody.d.ts +19 -0
- package/transpiled/react/FilePicker/FilePickerBody.js +85 -0
- package/transpiled/react/FilePicker/FilePickerBodyItem.d.ts +22 -0
- package/transpiled/react/FilePicker/FilePickerBodyItem.js +105 -0
- package/transpiled/react/FilePicker/FilePickerBodyItem.spec.d.ts +1 -0
- package/transpiled/react/FilePicker/FilePickerBreadcrumb.d.ts +13 -0
- package/transpiled/react/FilePicker/FilePickerBreadcrumb.js +52 -0
- package/transpiled/react/FilePicker/FilePickerFooter.d.ts +15 -0
- package/transpiled/react/FilePicker/FilePickerFooter.js +71 -0
- package/transpiled/react/FilePicker/FilePickerFooter.spec.d.ts +1 -0
- package/transpiled/react/FilePicker/FilePickerHeader.d.ts +14 -0
- package/transpiled/react/FilePicker/FilePickerHeader.js +81 -0
- package/transpiled/react/FilePicker/index.d.ts +22 -0
- package/transpiled/react/FilePicker/index.js +98 -0
- package/transpiled/react/FilePicker/queries.d.ts +14 -0
- package/transpiled/react/FilePicker/queries.js +45 -0
- package/transpiled/react/Filename/index.d.ts +26 -0
- package/transpiled/react/Filename/index.js +85 -0
- package/transpiled/react/FilledInput/index.d.ts +2 -0
- package/transpiled/react/FilledInput/index.js +2 -0
- package/transpiled/react/FormControl/index.d.ts +2 -0
- package/transpiled/react/FormControl/index.js +2 -0
- package/transpiled/react/FormControlLabel/index.d.ts +2 -0
- package/transpiled/react/FormControlLabel/index.js +2 -0
- package/transpiled/react/FormGroup/index.d.ts +2 -0
- package/transpiled/react/FormGroup/index.js +2 -0
- package/transpiled/react/FormHelperText/index.d.ts +2 -0
- package/transpiled/react/FormHelperText/index.js +2 -0
- package/transpiled/react/FormLabel/index.d.ts +2 -0
- package/transpiled/react/FormLabel/index.js +2 -0
- package/transpiled/react/GhostFileBadge/index.d.ts +9 -0
- package/transpiled/react/GhostFileBadge/index.js +41 -0
- package/transpiled/react/Grid/index.d.ts +2 -0
- package/transpiled/react/Grid/index.js +2 -0
- package/transpiled/react/GridList/Virtualized/Dnd/GridItem.d.ts +7 -0
- package/transpiled/react/GridList/Virtualized/Dnd/GridItem.js +139 -0
- package/transpiled/react/GridList/Virtualized/Dnd/index.d.ts +11 -0
- package/transpiled/react/GridList/Virtualized/Dnd/index.js +55 -0
- package/transpiled/react/GridList/Virtualized/Dnd/virtuosoComponents.d.ts +9 -0
- package/transpiled/react/GridList/Virtualized/Dnd/virtuosoComponents.js +45 -0
- package/transpiled/react/GridList/Virtualized/index.d.ts +3 -0
- package/transpiled/react/GridList/Virtualized/index.js +24 -0
- package/transpiled/react/GridList/index.d.ts +2 -0
- package/transpiled/react/GridList/index.js +2 -0
- package/transpiled/react/GridListTile/index.d.ts +2 -0
- package/transpiled/react/GridListTile/index.js +2 -0
- package/transpiled/react/GridListTileBar/index.d.ts +2 -0
- package/transpiled/react/GridListTileBar/index.js +2 -0
- package/transpiled/react/Grow/index.d.ts +2 -0
- package/transpiled/react/Grow/index.js +2 -0
- package/transpiled/react/Hero/index.d.ts +48 -0
- package/transpiled/react/Hero/index.js +59 -0
- package/transpiled/react/Hidden/index.d.ts +2 -0
- package/transpiled/react/Hidden/index.js +2 -0
- package/transpiled/react/HistoryRow/index.d.ts +24 -0
- package/transpiled/react/HistoryRow/index.js +88 -0
- package/transpiled/react/I18n/index.d.ts +3 -0
- package/transpiled/react/I18n/index.js +16 -0
- package/transpiled/react/I18n/withLocales.d.ts +2 -0
- package/transpiled/react/I18n/withLocales.js +10 -0
- package/transpiled/react/Icon/Sprite.d.ts +2 -0
- package/transpiled/react/Icon/Sprite.js +16 -0
- package/transpiled/react/Icon/icons-sprite.d.ts +2 -0
- package/transpiled/react/Icon/icons-sprite.js +3 -0
- package/transpiled/react/Icon/index.d.ts +23 -0
- package/transpiled/react/Icon/index.js +116 -0
- package/transpiled/react/IconButton/index.d.ts +46 -0
- package/transpiled/react/IconButton/index.js +43 -0
- package/transpiled/react/IconStack/index.d.ts +2 -0
- package/transpiled/react/IconStack/index.js +46 -0
- package/transpiled/react/Icons/Account.d.ts +2 -0
- package/transpiled/react/Icons/Account.js +13 -0
- package/transpiled/react/Icons/Accounts.d.ts +2 -0
- package/transpiled/react/Icons/Accounts.js +13 -0
- package/transpiled/react/Icons/Album.d.ts +2 -0
- package/transpiled/react/Icons/Album.js +13 -0
- package/transpiled/react/Icons/AlbumAdd.d.ts +2 -0
- package/transpiled/react/Icons/AlbumAdd.js +13 -0
- package/transpiled/react/Icons/AlbumRemove.d.ts +2 -0
- package/transpiled/react/Icons/AlbumRemove.js +13 -0
- package/transpiled/react/Icons/Answer.d.ts +2 -0
- package/transpiled/react/Icons/Answer.js +13 -0
- package/transpiled/react/Icons/Apple.d.ts +2 -0
- package/transpiled/react/Icons/Apple.js +14 -0
- package/transpiled/react/Icons/Apps.d.ts +2 -0
- package/transpiled/react/Icons/Apps.js +17 -0
- package/transpiled/react/Icons/Archive.d.ts +2 -0
- package/transpiled/react/Icons/Archive.js +13 -0
- package/transpiled/react/Icons/ArrowUp.d.ts +2 -0
- package/transpiled/react/Icons/ArrowUp.js +13 -0
- package/transpiled/react/Icons/AssignAdmin.d.ts +2 -0
- package/transpiled/react/Icons/AssignAdmin.js +18 -0
- package/transpiled/react/Icons/AssignModerator.d.ts +2 -0
- package/transpiled/react/Icons/AssignModerator.js +12 -0
- package/transpiled/react/Icons/Assistant.d.ts +2 -0
- package/transpiled/react/Icons/Assistant.js +15 -0
- package/transpiled/react/Icons/Attachment.d.ts +2 -0
- package/transpiled/react/Icons/Attachment.js +13 -0
- package/transpiled/react/Icons/Attention.d.ts +2 -0
- package/transpiled/react/Icons/Attention.js +13 -0
- package/transpiled/react/Icons/Bank.d.ts +2 -0
- package/transpiled/react/Icons/Bank.js +13 -0
- package/transpiled/react/Icons/BankAccounts.d.ts +2 -0
- package/transpiled/react/Icons/BankAccounts.js +15 -0
- package/transpiled/react/Icons/BankCheck.d.ts +2 -0
- package/transpiled/react/Icons/BankCheck.js +15 -0
- package/transpiled/react/Icons/BankGroups.d.ts +2 -0
- package/transpiled/react/Icons/BankGroups.js +15 -0
- package/transpiled/react/Icons/BankOperations.d.ts +2 -0
- package/transpiled/react/Icons/BankOperations.js +13 -0
- package/transpiled/react/Icons/BankRecurrence.d.ts +2 -0
- package/transpiled/react/Icons/BankRecurrence.js +15 -0
- package/transpiled/react/Icons/Banking.d.ts +2 -0
- package/transpiled/react/Icons/Banking.js +13 -0
- package/transpiled/react/Icons/BankingAdd.d.ts +2 -0
- package/transpiled/react/Icons/BankingAdd.js +13 -0
- package/transpiled/react/Icons/Bell.d.ts +2 -0
- package/transpiled/react/Icons/Bell.js +13 -0
- package/transpiled/react/Icons/Benefit.d.ts +2 -0
- package/transpiled/react/Icons/Benefit.js +13 -0
- package/transpiled/react/Icons/Bike.d.ts +2 -0
- package/transpiled/react/Icons/Bike.js +13 -0
- package/transpiled/react/Icons/Bill.d.ts +2 -0
- package/transpiled/react/Icons/Bill.js +13 -0
- package/transpiled/react/Icons/BillPermissions.d.ts +2 -0
- package/transpiled/react/Icons/BillPermissions.js +15 -0
- package/transpiled/react/Icons/Bottom.d.ts +2 -0
- package/transpiled/react/Icons/Bottom.js +13 -0
- package/transpiled/react/Icons/BottomSelect.d.ts +2 -0
- package/transpiled/react/Icons/BottomSelect.js +13 -0
- package/transpiled/react/Icons/BrowserBrave.d.ts +2 -0
- package/transpiled/react/Icons/BrowserBrave.js +14 -0
- package/transpiled/react/Icons/BrowserChrome.d.ts +2 -0
- package/transpiled/react/Icons/BrowserChrome.js +14 -0
- package/transpiled/react/Icons/BrowserDuckduckgo.d.ts +2 -0
- package/transpiled/react/Icons/BrowserDuckduckgo.js +14 -0
- package/transpiled/react/Icons/BrowserEdge.d.ts +2 -0
- package/transpiled/react/Icons/BrowserEdge.js +18 -0
- package/transpiled/react/Icons/BrowserEdgeChromium.d.ts +2 -0
- package/transpiled/react/Icons/BrowserEdgeChromium.js +14 -0
- package/transpiled/react/Icons/BrowserFirefox.d.ts +2 -0
- package/transpiled/react/Icons/BrowserFirefox.js +14 -0
- package/transpiled/react/Icons/BrowserIe.d.ts +2 -0
- package/transpiled/react/Icons/BrowserIe.js +14 -0
- package/transpiled/react/Icons/BrowserOpera.d.ts +2 -0
- package/transpiled/react/Icons/BrowserOpera.js +14 -0
- package/transpiled/react/Icons/BrowserSafari.d.ts +2 -0
- package/transpiled/react/Icons/BrowserSafari.js +14 -0
- package/transpiled/react/Icons/BugReport.d.ts +2 -0
- package/transpiled/react/Icons/BugReport.js +13 -0
- package/transpiled/react/Icons/Burger.d.ts +2 -0
- package/transpiled/react/Icons/Burger.js +13 -0
- package/transpiled/react/Icons/Bus.d.ts +2 -0
- package/transpiled/react/Icons/Bus.js +15 -0
- package/transpiled/react/Icons/Calendar.d.ts +2 -0
- package/transpiled/react/Icons/Calendar.js +13 -0
- package/transpiled/react/Icons/CalendarPermissions.d.ts +2 -0
- package/transpiled/react/Icons/CalendarPermissions.js +13 -0
- package/transpiled/react/Icons/Camera.d.ts +2 -0
- package/transpiled/react/Icons/Camera.js +13 -0
- package/transpiled/react/Icons/Car.d.ts +2 -0
- package/transpiled/react/Icons/Car.js +15 -0
- package/transpiled/react/Icons/CarbonCopy.d.ts +2 -0
- package/transpiled/react/Icons/CarbonCopy.js +14 -0
- package/transpiled/react/Icons/Carpooling.d.ts +2 -0
- package/transpiled/react/Icons/Carpooling.js +17 -0
- package/transpiled/react/Icons/Categories.d.ts +2 -0
- package/transpiled/react/Icons/Categories.js +13 -0
- package/transpiled/react/Icons/Category.d.ts +2 -0
- package/transpiled/react/Icons/Category.js +13 -0
- package/transpiled/react/Icons/Certified.d.ts +2 -0
- package/transpiled/react/Icons/Certified.js +15 -0
- package/transpiled/react/Icons/CertifiedPermissions.d.ts +2 -0
- package/transpiled/react/Icons/CertifiedPermissions.js +15 -0
- package/transpiled/react/Icons/Chat.d.ts +2 -0
- package/transpiled/react/Icons/Chat.js +75 -0
- package/transpiled/react/Icons/ChatText.d.ts +2 -0
- package/transpiled/react/Icons/ChatText.js +72 -0
- package/transpiled/react/Icons/Check.d.ts +2 -0
- package/transpiled/react/Icons/Check.js +13 -0
- package/transpiled/react/Icons/CheckCircle.d.ts +2 -0
- package/transpiled/react/Icons/CheckCircle.js +13 -0
- package/transpiled/react/Icons/CheckList.d.ts +2 -0
- package/transpiled/react/Icons/CheckList.js +13 -0
- package/transpiled/react/Icons/CheckSquare.d.ts +2 -0
- package/transpiled/react/Icons/CheckSquare.js +15 -0
- package/transpiled/react/Icons/CheckWhite.d.ts +2 -0
- package/transpiled/react/Icons/CheckWhite.js +15 -0
- package/transpiled/react/Icons/Checkbox.d.ts +2 -0
- package/transpiled/react/Icons/Checkbox.js +13 -0
- package/transpiled/react/Icons/Chess.d.ts +2 -0
- package/transpiled/react/Icons/Chess.js +13 -0
- package/transpiled/react/Icons/Child.d.ts +2 -0
- package/transpiled/react/Icons/Child.js +15 -0
- package/transpiled/react/Icons/CircleFilled.d.ts +2 -0
- package/transpiled/react/Icons/CircleFilled.js +13 -0
- package/transpiled/react/Icons/Clock.d.ts +2 -0
- package/transpiled/react/Icons/Clock.js +13 -0
- package/transpiled/react/Icons/ClockOutline.d.ts +2 -0
- package/transpiled/react/Icons/ClockOutline.js +13 -0
- package/transpiled/react/Icons/Cloud.d.ts +2 -0
- package/transpiled/react/Icons/Cloud.js +13 -0
- package/transpiled/react/Icons/Cloud2.d.ts +2 -0
- package/transpiled/react/Icons/Cloud2.js +27 -0
- package/transpiled/react/Icons/CloudBroken.d.ts +2 -0
- package/transpiled/react/Icons/CloudBroken.js +13 -0
- package/transpiled/react/Icons/CloudHappy.d.ts +2 -0
- package/transpiled/react/Icons/CloudHappy.js +14 -0
- package/transpiled/react/Icons/CloudPlusOutlined.d.ts +2 -0
- package/transpiled/react/Icons/CloudPlusOutlined.js +13 -0
- package/transpiled/react/Icons/CloudRainbow.d.ts +2 -0
- package/transpiled/react/Icons/CloudRainbow.js +66 -0
- package/transpiled/react/Icons/CloudSync.d.ts +2 -0
- package/transpiled/react/Icons/CloudSync.js +20 -0
- package/transpiled/react/Icons/CloudSync2.d.ts +2 -0
- package/transpiled/react/Icons/CloudSync2.js +22 -0
- package/transpiled/react/Icons/Cocktail.d.ts +2 -0
- package/transpiled/react/Icons/Cocktail.js +13 -0
- package/transpiled/react/Icons/Collect.d.ts +2 -0
- package/transpiled/react/Icons/Collect.js +14 -0
- package/transpiled/react/Icons/Comment.d.ts +2 -0
- package/transpiled/react/Icons/Comment.js +13 -0
- package/transpiled/react/Icons/Company.d.ts +2 -0
- package/transpiled/react/Icons/Company.js +13 -0
- package/transpiled/react/Icons/Compare.d.ts +2 -0
- package/transpiled/react/Icons/Compare.js +13 -0
- package/transpiled/react/Icons/Compass.d.ts +2 -0
- package/transpiled/react/Icons/Compass.js +13 -0
- package/transpiled/react/Icons/ConnectedClients.d.ts +2 -0
- package/transpiled/react/Icons/ConnectedClients.js +13 -0
- package/transpiled/react/Icons/Connector.d.ts +2 -0
- package/transpiled/react/Icons/Connector.js +13 -0
- package/transpiled/react/Icons/Consumption.d.ts +2 -0
- package/transpiled/react/Icons/Consumption.js +15 -0
- package/transpiled/react/Icons/Contacts.d.ts +2 -0
- package/transpiled/react/Icons/Contacts.js +109 -0
- package/transpiled/react/Icons/ContactsAccounts.d.ts +2 -0
- package/transpiled/react/Icons/ContactsAccounts.js +13 -0
- package/transpiled/react/Icons/ContactsGroups.d.ts +2 -0
- package/transpiled/react/Icons/ContactsGroups.js +13 -0
- package/transpiled/react/Icons/ContactsText.d.ts +2 -0
- package/transpiled/react/Icons/ContactsText.js +132 -0
- package/transpiled/react/Icons/Contract.d.ts +2 -0
- package/transpiled/react/Icons/Contract.js +13 -0
- package/transpiled/react/Icons/ContractPermissions.d.ts +2 -0
- package/transpiled/react/Icons/ContractPermissions.js +13 -0
- package/transpiled/react/Icons/Contrast.d.ts +2 -0
- package/transpiled/react/Icons/Contrast.js +13 -0
- package/transpiled/react/Icons/Copy.d.ts +2 -0
- package/transpiled/react/Icons/Copy.js +13 -0
- package/transpiled/react/Icons/Cozy.d.ts +2 -0
- package/transpiled/react/Icons/Cozy.js +15 -0
- package/transpiled/react/Icons/CozyAuthentification.d.ts +2 -0
- package/transpiled/react/Icons/CozyAuthentification.js +13 -0
- package/transpiled/react/Icons/CozyCircle.d.ts +2 -0
- package/transpiled/react/Icons/CozyCircle.js +15 -0
- package/transpiled/react/Icons/CozyLaugh.d.ts +2 -0
- package/transpiled/react/Icons/CozyLaugh.js +14 -0
- package/transpiled/react/Icons/CozyLock.d.ts +2 -0
- package/transpiled/react/Icons/CozyLock.js +15 -0
- package/transpiled/react/Icons/CozyLogo.d.ts +2 -0
- package/transpiled/react/Icons/CozyLogo.js +19 -0
- package/transpiled/react/Icons/CozyRelease.d.ts +2 -0
- package/transpiled/react/Icons/CozyRelease.js +20 -0
- package/transpiled/react/Icons/CozyText.d.ts +2 -0
- package/transpiled/react/Icons/CozyText.js +13 -0
- package/transpiled/react/Icons/CozyUpgrade.d.ts +2 -0
- package/transpiled/react/Icons/CozyUpgrade.js +45 -0
- package/transpiled/react/Icons/Credit.d.ts +2 -0
- package/transpiled/react/Icons/Credit.js +18 -0
- package/transpiled/react/Icons/CreditCard.d.ts +2 -0
- package/transpiled/react/Icons/CreditCard.js +13 -0
- package/transpiled/react/Icons/CreditCardAdd.d.ts +2 -0
- package/transpiled/react/Icons/CreditCardAdd.js +13 -0
- package/transpiled/react/Icons/CreditCardLarge.d.ts +2 -0
- package/transpiled/react/Icons/CreditCardLarge.js +13 -0
- package/transpiled/react/Icons/Crop.d.ts +2 -0
- package/transpiled/react/Icons/Crop.js +13 -0
- package/transpiled/react/Icons/Cross.d.ts +2 -0
- package/transpiled/react/Icons/Cross.js +13 -0
- package/transpiled/react/Icons/CrossCircle.d.ts +2 -0
- package/transpiled/react/Icons/CrossCircle.js +14 -0
- package/transpiled/react/Icons/CrossCircleOutline.d.ts +2 -0
- package/transpiled/react/Icons/CrossCircleOutline.js +15 -0
- package/transpiled/react/Icons/CrossMedium.d.ts +2 -0
- package/transpiled/react/Icons/CrossMedium.js +13 -0
- package/transpiled/react/Icons/CrossSmall.d.ts +2 -0
- package/transpiled/react/Icons/CrossSmall.js +13 -0
- package/transpiled/react/Icons/CrossWhite.d.ts +2 -0
- package/transpiled/react/Icons/CrossWhite.js +15 -0
- package/transpiled/react/Icons/Cube.d.ts +5 -0
- package/transpiled/react/Icons/Cube.js +20 -0
- package/transpiled/react/Icons/Dash.d.ts +2 -0
- package/transpiled/react/Icons/Dash.js +13 -0
- package/transpiled/react/Icons/DashWhite.d.ts +2 -0
- package/transpiled/react/Icons/DashWhite.js +15 -0
- package/transpiled/react/Icons/Dashboard.d.ts +2 -0
- package/transpiled/react/Icons/Dashboard.js +13 -0
- package/transpiled/react/Icons/DataControl.d.ts +2 -0
- package/transpiled/react/Icons/DataControl.js +17 -0
- package/transpiled/react/Icons/Debit.d.ts +2 -0
- package/transpiled/react/Icons/Debit.js +13 -0
- package/transpiled/react/Icons/DesktopDownload.d.ts +2 -0
- package/transpiled/react/Icons/DesktopDownload.js +15 -0
- package/transpiled/react/Icons/DeviceBrowser.d.ts +2 -0
- package/transpiled/react/Icons/DeviceBrowser.js +13 -0
- package/transpiled/react/Icons/DeviceLaptop.d.ts +2 -0
- package/transpiled/react/Icons/DeviceLaptop.js +13 -0
- package/transpiled/react/Icons/DevicePhone.d.ts +2 -0
- package/transpiled/react/Icons/DevicePhone.js +13 -0
- package/transpiled/react/Icons/DeviceTablet.d.ts +2 -0
- package/transpiled/react/Icons/DeviceTablet.js +13 -0
- package/transpiled/react/Icons/Devices.d.ts +2 -0
- package/transpiled/react/Icons/Devices.js +13 -0
- package/transpiled/react/Icons/Discuss.d.ts +2 -0
- package/transpiled/react/Icons/Discuss.js +15 -0
- package/transpiled/react/Icons/Dots.d.ts +2 -0
- package/transpiled/react/Icons/Dots.js +13 -0
- package/transpiled/react/Icons/DotsWhite.d.ts +2 -0
- package/transpiled/react/Icons/DotsWhite.js +15 -0
- package/transpiled/react/Icons/Down.d.ts +2 -0
- package/transpiled/react/Icons/Down.js +13 -0
- package/transpiled/react/Icons/Download.d.ts +2 -0
- package/transpiled/react/Icons/Download.js +13 -0
- package/transpiled/react/Icons/DrawingArrowUp.d.ts +2 -0
- package/transpiled/react/Icons/DrawingArrowUp.js +13 -0
- package/transpiled/react/Icons/Drive.d.ts +2 -0
- package/transpiled/react/Icons/Drive.js +72 -0
- package/transpiled/react/Icons/DriveText.d.ts +2 -0
- package/transpiled/react/Icons/DriveText.js +87 -0
- package/transpiled/react/Icons/Dropdown.d.ts +2 -0
- package/transpiled/react/Icons/Dropdown.js +13 -0
- package/transpiled/react/Icons/DropdownClose.d.ts +2 -0
- package/transpiled/react/Icons/DropdownClose.js +13 -0
- package/transpiled/react/Icons/DropdownOpen.d.ts +2 -0
- package/transpiled/react/Icons/DropdownOpen.js +13 -0
- package/transpiled/react/Icons/Dropup.d.ts +2 -0
- package/transpiled/react/Icons/Dropup.js +13 -0
- package/transpiled/react/Icons/Ecolyo.d.ts +2 -0
- package/transpiled/react/Icons/Ecolyo.js +27 -0
- package/transpiled/react/Icons/ElectricBike.d.ts +2 -0
- package/transpiled/react/Icons/ElectricBike.js +13 -0
- package/transpiled/react/Icons/ElectricCar.d.ts +2 -0
- package/transpiled/react/Icons/ElectricCar.js +15 -0
- package/transpiled/react/Icons/ElectricScooter.d.ts +2 -0
- package/transpiled/react/Icons/ElectricScooter.js +15 -0
- package/transpiled/react/Icons/Email.d.ts +2 -0
- package/transpiled/react/Icons/Email.js +13 -0
- package/transpiled/react/Icons/EmailNotification.d.ts +2 -0
- package/transpiled/react/Icons/EmailNotification.js +13 -0
- package/transpiled/react/Icons/EmailOpen.d.ts +2 -0
- package/transpiled/react/Icons/EmailOpen.js +53 -0
- package/transpiled/react/Icons/Energy.d.ts +2 -0
- package/transpiled/react/Icons/Energy.js +13 -0
- package/transpiled/react/Icons/Energybreakdown.d.ts +2 -0
- package/transpiled/react/Icons/Energybreakdown.js +13 -0
- package/transpiled/react/Icons/Eu.d.ts +2 -0
- package/transpiled/react/Icons/Eu.js +14 -0
- package/transpiled/react/Icons/Euro.d.ts +2 -0
- package/transpiled/react/Icons/Euro.js +13 -0
- package/transpiled/react/Icons/Exchange.d.ts +2 -0
- package/transpiled/react/Icons/Exchange.js +13 -0
- package/transpiled/react/Icons/Eye.d.ts +2 -0
- package/transpiled/react/Icons/Eye.js +13 -0
- package/transpiled/react/Icons/EyeClosed.d.ts +2 -0
- package/transpiled/react/Icons/EyeClosed.js +13 -0
- package/transpiled/react/Icons/FaceId.d.ts +2 -0
- package/transpiled/react/Icons/FaceId.js +13 -0
- package/transpiled/react/Icons/Fallback.d.ts +2 -0
- package/transpiled/react/Icons/Fallback.js +18 -0
- package/transpiled/react/Icons/Family.d.ts +2 -0
- package/transpiled/react/Icons/Family.js +13 -0
- package/transpiled/react/Icons/File.d.ts +2 -0
- package/transpiled/react/Icons/File.js +13 -0
- package/transpiled/react/Icons/FileAdd.d.ts +2 -0
- package/transpiled/react/Icons/FileAdd.js +13 -0
- package/transpiled/react/Icons/FileDuotone.d.ts +2 -0
- package/transpiled/react/Icons/FileDuotone.js +29 -0
- package/transpiled/react/Icons/FileNew.d.ts +2 -0
- package/transpiled/react/Icons/FileNew.js +13 -0
- package/transpiled/react/Icons/FileNone.d.ts +2 -0
- package/transpiled/react/Icons/FileNone.js +17 -0
- package/transpiled/react/Icons/FileOutline.d.ts +2 -0
- package/transpiled/react/Icons/FileOutline.js +13 -0
- package/transpiled/react/Icons/FileTypeAudio.d.ts +2 -0
- package/transpiled/react/Icons/FileTypeAudio.js +19 -0
- package/transpiled/react/Icons/FileTypeBankingAccount.d.ts +2 -0
- package/transpiled/react/Icons/FileTypeBankingAccount.js +24 -0
- package/transpiled/react/Icons/FileTypeBin.d.ts +2 -0
- package/transpiled/react/Icons/FileTypeBin.js +19 -0
- package/transpiled/react/Icons/FileTypeCode.d.ts +2 -0
- package/transpiled/react/Icons/FileTypeCode.js +19 -0
- package/transpiled/react/Icons/FileTypeFiles.d.ts +2 -0
- package/transpiled/react/Icons/FileTypeFiles.js +24 -0
- package/transpiled/react/Icons/FileTypeFolder.d.ts +2 -0
- package/transpiled/react/Icons/FileTypeFolder.js +36 -0
- package/transpiled/react/Icons/FileTypeImage.d.ts +2 -0
- package/transpiled/react/Icons/FileTypeImage.js +27 -0
- package/transpiled/react/Icons/FileTypeNote.d.ts +2 -0
- package/transpiled/react/Icons/FileTypeNote.js +19 -0
- package/transpiled/react/Icons/FileTypePdf.d.ts +2 -0
- package/transpiled/react/Icons/FileTypePdf.js +19 -0
- package/transpiled/react/Icons/FileTypeServer.d.ts +2 -0
- package/transpiled/react/Icons/FileTypeServer.js +60 -0
- package/transpiled/react/Icons/FileTypeSheet.d.ts +2 -0
- package/transpiled/react/Icons/FileTypeSheet.js +24 -0
- package/transpiled/react/Icons/FileTypeSlide.d.ts +2 -0
- package/transpiled/react/Icons/FileTypeSlide.js +24 -0
- package/transpiled/react/Icons/FileTypeText.d.ts +2 -0
- package/transpiled/react/Icons/FileTypeText.js +19 -0
- package/transpiled/react/Icons/FileTypeVideo.d.ts +2 -0
- package/transpiled/react/Icons/FileTypeVideo.js +19 -0
- package/transpiled/react/Icons/FileTypeZip.d.ts +2 -0
- package/transpiled/react/Icons/FileTypeZip.js +19 -0
- package/transpiled/react/Icons/Files.d.ts +2 -0
- package/transpiled/react/Icons/Files.js +44 -0
- package/transpiled/react/Icons/FilesPen.d.ts +2 -0
- package/transpiled/react/Icons/FilesPen.js +19 -0
- package/transpiled/react/Icons/FilesVersions.d.ts +2 -0
- package/transpiled/react/Icons/FilesVersions.js +19 -0
- package/transpiled/react/Icons/Filter.d.ts +2 -0
- package/transpiled/react/Icons/Filter.js +15 -0
- package/transpiled/react/Icons/Fingerprint.d.ts +2 -0
- package/transpiled/react/Icons/Fingerprint.js +13 -0
- package/transpiled/react/Icons/Fitness.d.ts +2 -0
- package/transpiled/react/Icons/Fitness.js +13 -0
- package/transpiled/react/Icons/Flag.d.ts +2 -0
- package/transpiled/react/Icons/Flag.js +13 -0
- package/transpiled/react/Icons/FlagOutlined.d.ts +2 -0
- package/transpiled/react/Icons/FlagOutlined.js +13 -0
- package/transpiled/react/Icons/FlashAuto.d.ts +2 -0
- package/transpiled/react/Icons/FlashAuto.js +13 -0
- package/transpiled/react/Icons/Flashlight.d.ts +2 -0
- package/transpiled/react/Icons/Flashlight.js +15 -0
- package/transpiled/react/Icons/Folder.d.ts +2 -0
- package/transpiled/react/Icons/Folder.js +13 -0
- package/transpiled/react/Icons/FolderAdd.d.ts +2 -0
- package/transpiled/react/Icons/FolderAdd.js +13 -0
- package/transpiled/react/Icons/FolderMoveto.d.ts +2 -0
- package/transpiled/react/Icons/FolderMoveto.js +13 -0
- package/transpiled/react/Icons/FolderOpen.d.ts +2 -0
- package/transpiled/react/Icons/FolderOpen.js +13 -0
- package/transpiled/react/Icons/Forbidden.d.ts +2 -0
- package/transpiled/react/Icons/Forbidden.js +13 -0
- package/transpiled/react/Icons/ForbiddenSign.d.ts +2 -0
- package/transpiled/react/Icons/ForbiddenSign.js +61 -0
- package/transpiled/react/Icons/FromUser.d.ts +2 -0
- package/transpiled/react/Icons/FromUser.js +15 -0
- package/transpiled/react/Icons/Gear.d.ts +2 -0
- package/transpiled/react/Icons/Gear.js +13 -0
- package/transpiled/react/Icons/Globe.d.ts +2 -0
- package/transpiled/react/Icons/Globe.js +13 -0
- package/transpiled/react/Icons/Google.d.ts +2 -0
- package/transpiled/react/Icons/Google.js +26 -0
- package/transpiled/react/Icons/Gouv.d.ts +2 -0
- package/transpiled/react/Icons/Gouv.js +27 -0
- package/transpiled/react/Icons/GraphCircle.d.ts +2 -0
- package/transpiled/react/Icons/GraphCircle.js +13 -0
- package/transpiled/react/Icons/Grid.d.ts +2 -0
- package/transpiled/react/Icons/Grid.js +13 -0
- package/transpiled/react/Icons/GroupList.d.ts +2 -0
- package/transpiled/react/Icons/GroupList.js +13 -0
- package/transpiled/react/Icons/Groups.d.ts +2 -0
- package/transpiled/react/Icons/Groups.js +13 -0
- package/transpiled/react/Icons/Growth.d.ts +2 -0
- package/transpiled/react/Icons/Growth.js +13 -0
- package/transpiled/react/Icons/Hand.d.ts +2 -0
- package/transpiled/react/Icons/Hand.js +13 -0
- package/transpiled/react/Icons/Heart.d.ts +2 -0
- package/transpiled/react/Icons/Heart.js +13 -0
- package/transpiled/react/Icons/Help.d.ts +2 -0
- package/transpiled/react/Icons/Help.js +13 -0
- package/transpiled/react/Icons/HelpOutlined.d.ts +2 -0
- package/transpiled/react/Icons/HelpOutlined.js +13 -0
- package/transpiled/react/Icons/History.d.ts +2 -0
- package/transpiled/react/Icons/History.js +13 -0
- package/transpiled/react/Icons/Home.d.ts +2 -0
- package/transpiled/react/Icons/Home.js +13 -0
- package/transpiled/react/Icons/HomePermissions.d.ts +2 -0
- package/transpiled/react/Icons/HomePermissions.js +15 -0
- package/transpiled/react/Icons/Hourglass.d.ts +2 -0
- package/transpiled/react/Icons/Hourglass.js +13 -0
- package/transpiled/react/Icons/IconCheckAnimated.d.ts +2 -0
- package/transpiled/react/Icons/IconCheckAnimated.js +24 -0
- package/transpiled/react/Icons/IconCrossAnimated.d.ts +2 -0
- package/transpiled/react/Icons/IconCrossAnimated.js +38 -0
- package/transpiled/react/Icons/Identities.d.ts +2 -0
- package/transpiled/react/Icons/Identities.js +13 -0
- package/transpiled/react/Icons/Image.d.ts +2 -0
- package/transpiled/react/Icons/Image.js +13 -0
- package/transpiled/react/Icons/Info.d.ts +2 -0
- package/transpiled/react/Icons/Info.js +13 -0
- package/transpiled/react/Icons/InfoOutlined.d.ts +2 -0
- package/transpiled/react/Icons/InfoOutlined.js +13 -0
- package/transpiled/react/Icons/Justice.d.ts +2 -0
- package/transpiled/react/Icons/Justice.js +13 -0
- package/transpiled/react/Icons/Key.d.ts +2 -0
- package/transpiled/react/Icons/Key.js +13 -0
- package/transpiled/react/Icons/Key2.d.ts +2 -0
- package/transpiled/react/Icons/Key2.js +21 -0
- package/transpiled/react/Icons/Keychain.d.ts +2 -0
- package/transpiled/react/Icons/Keychain.js +13 -0
- package/transpiled/react/Icons/Konnectors.d.ts +2 -0
- package/transpiled/react/Icons/Konnectors.js +13 -0
- package/transpiled/react/Icons/KonnectorsResult.d.ts +2 -0
- package/transpiled/react/Icons/KonnectorsResult.js +13 -0
- package/transpiled/react/Icons/Label.d.ts +2 -0
- package/transpiled/react/Icons/Label.js +13 -0
- package/transpiled/react/Icons/LabelOutlined.d.ts +2 -0
- package/transpiled/react/Icons/LabelOutlined.js +13 -0
- package/transpiled/react/Icons/Laptop.d.ts +2 -0
- package/transpiled/react/Icons/Laptop.js +13 -0
- package/transpiled/react/Icons/Laudry.d.ts +2 -0
- package/transpiled/react/Icons/Laudry.js +15 -0
- package/transpiled/react/Icons/Left.d.ts +2 -0
- package/transpiled/react/Icons/Left.js +13 -0
- package/transpiled/react/Icons/Library.d.ts +2 -0
- package/transpiled/react/Icons/Library.js +15 -0
- package/transpiled/react/Icons/Lightbulb.d.ts +2 -0
- package/transpiled/react/Icons/Lightbulb.js +13 -0
- package/transpiled/react/Icons/Lightning.d.ts +2 -0
- package/transpiled/react/Icons/Lightning.js +13 -0
- package/transpiled/react/Icons/Link.d.ts +2 -0
- package/transpiled/react/Icons/Link.js +13 -0
- package/transpiled/react/Icons/LinkOut.d.ts +2 -0
- package/transpiled/react/Icons/LinkOut.js +13 -0
- package/transpiled/react/Icons/List.d.ts +2 -0
- package/transpiled/react/Icons/List.js +13 -0
- package/transpiled/react/Icons/ListMin.d.ts +2 -0
- package/transpiled/react/Icons/ListMin.js +13 -0
- package/transpiled/react/Icons/Location.d.ts +2 -0
- package/transpiled/react/Icons/Location.js +15 -0
- package/transpiled/react/Icons/LocationPermissions.d.ts +2 -0
- package/transpiled/react/Icons/LocationPermissions.js +13 -0
- package/transpiled/react/Icons/Lock.d.ts +2 -0
- package/transpiled/react/Icons/Lock.js +13 -0
- package/transpiled/react/Icons/LockScreen.d.ts +2 -0
- package/transpiled/react/Icons/LockScreen.js +13 -0
- package/transpiled/react/Icons/Logout.d.ts +2 -0
- package/transpiled/react/Icons/Logout.js +13 -0
- package/transpiled/react/Icons/LogoutLarge.d.ts +2 -0
- package/transpiled/react/Icons/LogoutLarge.js +13 -0
- package/transpiled/react/Icons/MagicTrick.d.ts +2 -0
- package/transpiled/react/Icons/MagicTrick.js +13 -0
- package/transpiled/react/Icons/Magnet.d.ts +2 -0
- package/transpiled/react/Icons/Magnet.js +14 -0
- package/transpiled/react/Icons/Magnifier.d.ts +2 -0
- package/transpiled/react/Icons/Magnifier.js +13 -0
- package/transpiled/react/Icons/Mail.d.ts +2 -0
- package/transpiled/react/Icons/Mail.js +67 -0
- package/transpiled/react/Icons/MailText.d.ts +2 -0
- package/transpiled/react/Icons/MailText.js +72 -0
- package/transpiled/react/Icons/Matrix.d.ts +2 -0
- package/transpiled/react/Icons/Matrix.js +13 -0
- package/transpiled/react/Icons/Merge.d.ts +2 -0
- package/transpiled/react/Icons/Merge.js +13 -0
- package/transpiled/react/Icons/Moped.d.ts +2 -0
- package/transpiled/react/Icons/Moped.js +15 -0
- package/transpiled/react/Icons/Mosaic.d.ts +2 -0
- package/transpiled/react/Icons/Mosaic.js +15 -0
- package/transpiled/react/Icons/MosaicMin.d.ts +2 -0
- package/transpiled/react/Icons/MosaicMin.js +13 -0
- package/transpiled/react/Icons/Motorcycle.d.ts +2 -0
- package/transpiled/react/Icons/Motorcycle.js +13 -0
- package/transpiled/react/Icons/Mountain.d.ts +2 -0
- package/transpiled/react/Icons/Mountain.js +13 -0
- package/transpiled/react/Icons/Movement.d.ts +2 -0
- package/transpiled/react/Icons/Movement.js +13 -0
- package/transpiled/react/Icons/MovementIn.d.ts +2 -0
- package/transpiled/react/Icons/MovementIn.js +13 -0
- package/transpiled/react/Icons/MovementOut.d.ts +2 -0
- package/transpiled/react/Icons/MovementOut.js +13 -0
- package/transpiled/react/Icons/Moveto.d.ts +2 -0
- package/transpiled/react/Icons/Moveto.js +13 -0
- package/transpiled/react/Icons/MultiFiles.d.ts +2 -0
- package/transpiled/react/Icons/MultiFiles.js +13 -0
- package/transpiled/react/Icons/Music.d.ts +2 -0
- package/transpiled/react/Icons/Music.js +13 -0
- package/transpiled/react/Icons/New.d.ts +2 -0
- package/transpiled/react/Icons/New.js +13 -0
- package/transpiled/react/Icons/Next.d.ts +2 -0
- package/transpiled/react/Icons/Next.js +13 -0
- package/transpiled/react/Icons/Note.d.ts +2 -0
- package/transpiled/react/Icons/Note.js +15 -0
- package/transpiled/react/Icons/Notes.d.ts +2 -0
- package/transpiled/react/Icons/Notes.js +70 -0
- package/transpiled/react/Icons/NotesText.d.ts +2 -0
- package/transpiled/react/Icons/NotesText.js +87 -0
- package/transpiled/react/Icons/NotificationEmail.d.ts +2 -0
- package/transpiled/react/Icons/NotificationEmail.js +13 -0
- package/transpiled/react/Icons/Notifications.d.ts +2 -0
- package/transpiled/react/Icons/Notifications.js +13 -0
- package/transpiled/react/Icons/Number.d.ts +2 -0
- package/transpiled/react/Icons/Number.js +13 -0
- package/transpiled/react/Icons/Offline.d.ts +2 -0
- package/transpiled/react/Icons/Offline.js +13 -0
- package/transpiled/react/Icons/Online.d.ts +2 -0
- package/transpiled/react/Icons/Online.js +13 -0
- package/transpiled/react/Icons/OnlyOffice.d.ts +2 -0
- package/transpiled/react/Icons/OnlyOffice.js +67 -0
- package/transpiled/react/Icons/Openapp.d.ts +2 -0
- package/transpiled/react/Icons/Openapp.js +13 -0
- package/transpiled/react/Icons/Openwith.d.ts +2 -0
- package/transpiled/react/Icons/Openwith.js +13 -0
- package/transpiled/react/Icons/Opinions.d.ts +2 -0
- package/transpiled/react/Icons/Opinions.js +13 -0
- package/transpiled/react/Icons/Palette.d.ts +2 -0
- package/transpiled/react/Icons/Palette.js +15 -0
- package/transpiled/react/Icons/Paper.d.ts +2 -0
- package/transpiled/react/Icons/Paper.js +17 -0
- package/transpiled/react/Icons/Paperplane.d.ts +2 -0
- package/transpiled/react/Icons/Paperplane.js +13 -0
- package/transpiled/react/Icons/Papers.d.ts +2 -0
- package/transpiled/react/Icons/Papers.js +72 -0
- package/transpiled/react/Icons/Pass.d.ts +2 -0
- package/transpiled/react/Icons/Pass.js +66 -0
- package/transpiled/react/Icons/PassText.d.ts +2 -0
- package/transpiled/react/Icons/PassText.js +15 -0
- package/transpiled/react/Icons/Password.d.ts +2 -0
- package/transpiled/react/Icons/Password.js +13 -0
- package/transpiled/react/Icons/Passwords.d.ts +2 -0
- package/transpiled/react/Icons/Passwords.js +13 -0
- package/transpiled/react/Icons/Pen.d.ts +2 -0
- package/transpiled/react/Icons/Pen.js +13 -0
- package/transpiled/react/Icons/People.d.ts +2 -0
- package/transpiled/react/Icons/People.js +13 -0
- package/transpiled/react/Icons/Peoples.d.ts +2 -0
- package/transpiled/react/Icons/Peoples.js +13 -0
- package/transpiled/react/Icons/Percent.d.ts +2 -0
- package/transpiled/react/Icons/Percent.js +13 -0
- package/transpiled/react/Icons/PercentCircle.d.ts +2 -0
- package/transpiled/react/Icons/PercentCircle.js +13 -0
- package/transpiled/react/Icons/Permissions.d.ts +2 -0
- package/transpiled/react/Icons/Permissions.js +13 -0
- package/transpiled/react/Icons/PersonAdd.d.ts +2 -0
- package/transpiled/react/Icons/PersonAdd.js +13 -0
- package/transpiled/react/Icons/PersonalData.d.ts +2 -0
- package/transpiled/react/Icons/PersonalData.js +13 -0
- package/transpiled/react/Icons/Phone.d.ts +2 -0
- package/transpiled/react/Icons/Phone.js +13 -0
- package/transpiled/react/Icons/PhoneDownload.d.ts +2 -0
- package/transpiled/react/Icons/PhoneDownload.js +15 -0
- package/transpiled/react/Icons/PhoneUpload.d.ts +2 -0
- package/transpiled/react/Icons/PhoneUpload.js +13 -0
- package/transpiled/react/Icons/Photos.d.ts +2 -0
- package/transpiled/react/Icons/Photos.js +112 -0
- package/transpiled/react/Icons/PhotosAlbum.d.ts +2 -0
- package/transpiled/react/Icons/PhotosAlbum.js +13 -0
- package/transpiled/react/Icons/PhotosSettings.d.ts +2 -0
- package/transpiled/react/Icons/PhotosSettings.js +15 -0
- package/transpiled/react/Icons/PhotosText.d.ts +2 -0
- package/transpiled/react/Icons/PhotosText.js +108 -0
- package/transpiled/react/Icons/PieChart.d.ts +2 -0
- package/transpiled/react/Icons/PieChart.js +13 -0
- package/transpiled/react/Icons/Pin.d.ts +2 -0
- package/transpiled/react/Icons/Pin.js +13 -0
- package/transpiled/react/Icons/Plane.d.ts +2 -0
- package/transpiled/react/Icons/Plane.js +13 -0
- package/transpiled/react/Icons/Plus.d.ts +2 -0
- package/transpiled/react/Icons/Plus.js +13 -0
- package/transpiled/react/Icons/PlusSmall.d.ts +2 -0
- package/transpiled/react/Icons/PlusSmall.js +13 -0
- package/transpiled/react/Icons/PopInside.d.ts +2 -0
- package/transpiled/react/Icons/PopInside.js +13 -0
- package/transpiled/react/Icons/Previous.d.ts +2 -0
- package/transpiled/react/Icons/Previous.js +13 -0
- package/transpiled/react/Icons/Printer.d.ts +2 -0
- package/transpiled/react/Icons/Printer.js +15 -0
- package/transpiled/react/Icons/Profile.d.ts +2 -0
- package/transpiled/react/Icons/Profile.js +15 -0
- package/transpiled/react/Icons/Qualify.d.ts +2 -0
- package/transpiled/react/Icons/Qualify.js +13 -0
- package/transpiled/react/Icons/RadioChecked.d.ts +2 -0
- package/transpiled/react/Icons/RadioChecked.js +15 -0
- package/transpiled/react/Icons/RadioUnchecked.d.ts +2 -0
- package/transpiled/react/Icons/RadioUnchecked.js +13 -0
- package/transpiled/react/Icons/Refresh.d.ts +2 -0
- package/transpiled/react/Icons/Refresh.js +13 -0
- package/transpiled/react/Icons/Relationship.d.ts +2 -0
- package/transpiled/react/Icons/Relationship.js +17 -0
- package/transpiled/react/Icons/Remboursement.d.ts +2 -0
- package/transpiled/react/Icons/Remboursement.js +13 -0
- package/transpiled/react/Icons/Rename.d.ts +2 -0
- package/transpiled/react/Icons/Rename.js +13 -0
- package/transpiled/react/Icons/Repare.d.ts +2 -0
- package/transpiled/react/Icons/Repare.js +13 -0
- package/transpiled/react/Icons/Reply.d.ts +2 -0
- package/transpiled/react/Icons/Reply.js +13 -0
- package/transpiled/react/Icons/Restaurant.d.ts +2 -0
- package/transpiled/react/Icons/Restaurant.js +13 -0
- package/transpiled/react/Icons/Restore.d.ts +2 -0
- package/transpiled/react/Icons/Restore.js +13 -0
- package/transpiled/react/Icons/RestoreStraight.d.ts +2 -0
- package/transpiled/react/Icons/RestoreStraight.js +13 -0
- package/transpiled/react/Icons/Right.d.ts +2 -0
- package/transpiled/react/Icons/Right.js +13 -0
- package/transpiled/react/Icons/Rise.d.ts +2 -0
- package/transpiled/react/Icons/Rise.js +13 -0
- package/transpiled/react/Icons/RotateLeft.d.ts +2 -0
- package/transpiled/react/Icons/RotateLeft.js +13 -0
- package/transpiled/react/Icons/RotateRight.d.ts +2 -0
- package/transpiled/react/Icons/RotateRight.js +13 -0
- package/transpiled/react/Icons/SadCozy.d.ts +2 -0
- package/transpiled/react/Icons/SadCozy.js +14 -0
- package/transpiled/react/Icons/Safe.d.ts +2 -0
- package/transpiled/react/Icons/Safe.js +13 -0
- package/transpiled/react/Icons/SafePermissions.d.ts +2 -0
- package/transpiled/react/Icons/SafePermissions.js +15 -0
- package/transpiled/react/Icons/School.d.ts +2 -0
- package/transpiled/react/Icons/School.js +13 -0
- package/transpiled/react/Icons/Scooter.d.ts +2 -0
- package/transpiled/react/Icons/Scooter.js +15 -0
- package/transpiled/react/Icons/Security.d.ts +2 -0
- package/transpiled/react/Icons/Security.js +13 -0
- package/transpiled/react/Icons/SelectAll.d.ts +2 -0
- package/transpiled/react/Icons/SelectAll.js +13 -0
- package/transpiled/react/Icons/Server.d.ts +2 -0
- package/transpiled/react/Icons/Server.js +13 -0
- package/transpiled/react/Icons/Setting.d.ts +2 -0
- package/transpiled/react/Icons/Setting.js +13 -0
- package/transpiled/react/Icons/Settings.d.ts +2 -0
- package/transpiled/react/Icons/Settings.js +15 -0
- package/transpiled/react/Icons/Share.d.ts +2 -0
- package/transpiled/react/Icons/Share.js +13 -0
- package/transpiled/react/Icons/ShareCircle.d.ts +2 -0
- package/transpiled/react/Icons/ShareCircle.js +14 -0
- package/transpiled/react/Icons/ShareGrey08.d.ts +2 -0
- package/transpiled/react/Icons/ShareGrey08.js +18 -0
- package/transpiled/react/Icons/ShareIos.d.ts +2 -0
- package/transpiled/react/Icons/ShareIos.js +14 -0
- package/transpiled/react/Icons/Sharings.d.ts +2 -0
- package/transpiled/react/Icons/Sharings.js +13 -0
- package/transpiled/react/Icons/Shield.d.ts +2 -0
- package/transpiled/react/Icons/Shield.js +13 -0
- package/transpiled/react/Icons/Shop.d.ts +2 -0
- package/transpiled/react/Icons/Shop.js +13 -0
- package/transpiled/react/Icons/Sinister.d.ts +2 -0
- package/transpiled/react/Icons/Sinister.js +13 -0
- package/transpiled/react/Icons/Sound.d.ts +2 -0
- package/transpiled/react/Icons/Sound.js +13 -0
- package/transpiled/react/Icons/Spinner.d.ts +2 -0
- package/transpiled/react/Icons/Spinner.js +16 -0
- package/transpiled/react/Icons/SportBag.d.ts +2 -0
- package/transpiled/react/Icons/SportBag.js +15 -0
- package/transpiled/react/Icons/Stack.d.ts +2 -0
- package/transpiled/react/Icons/Stack.js +13 -0
- package/transpiled/react/Icons/Star.d.ts +2 -0
- package/transpiled/react/Icons/Star.js +13 -0
- package/transpiled/react/Icons/StarOutline.d.ts +2 -0
- package/transpiled/react/Icons/StarOutline.js +13 -0
- package/transpiled/react/Icons/Stats.d.ts +2 -0
- package/transpiled/react/Icons/Stats.js +13 -0
- package/transpiled/react/Icons/Stop.d.ts +2 -0
- package/transpiled/react/Icons/Stop.js +13 -0
- package/transpiled/react/Icons/Store.d.ts +2 -0
- package/transpiled/react/Icons/Store.js +68 -0
- package/transpiled/react/Icons/StoreText.d.ts +2 -0
- package/transpiled/react/Icons/StoreText.js +92 -0
- package/transpiled/react/Icons/Subway.d.ts +2 -0
- package/transpiled/react/Icons/Subway.js +13 -0
- package/transpiled/react/Icons/Support.d.ts +2 -0
- package/transpiled/react/Icons/Support.js +13 -0
- package/transpiled/react/Icons/Swap.d.ts +2 -0
- package/transpiled/react/Icons/Swap.js +13 -0
- package/transpiled/react/Icons/Sync.d.ts +2 -0
- package/transpiled/react/Icons/Sync.js +13 -0
- package/transpiled/react/Icons/SyncCozy.d.ts +2 -0
- package/transpiled/react/Icons/SyncCozy.js +15 -0
- package/transpiled/react/Icons/Tab.d.ts +2 -0
- package/transpiled/react/Icons/Tab.js +13 -0
- package/transpiled/react/Icons/Tag.d.ts +2 -0
- package/transpiled/react/Icons/Tag.js +15 -0
- package/transpiled/react/Icons/Tags.d.ts +2 -0
- package/transpiled/react/Icons/Tags.js +17 -0
- package/transpiled/react/Icons/Target.d.ts +2 -0
- package/transpiled/react/Icons/Target.js +13 -0
- package/transpiled/react/Icons/Task.d.ts +2 -0
- package/transpiled/react/Icons/Task.js +13 -0
- package/transpiled/react/Icons/TaskToEffectuate.d.ts +2 -0
- package/transpiled/react/Icons/TaskToEffectuate.js +17 -0
- package/transpiled/react/Icons/Team.d.ts +2 -0
- package/transpiled/react/Icons/Team.js +15 -0
- package/transpiled/react/Icons/Telecom.d.ts +2 -0
- package/transpiled/react/Icons/Telecom.js +15 -0
- package/transpiled/react/Icons/Telephone.d.ts +2 -0
- package/transpiled/react/Icons/Telephone.js +13 -0
- package/transpiled/react/Icons/Text.d.ts +2 -0
- package/transpiled/react/Icons/Text.js +13 -0
- package/transpiled/react/Icons/TextInfo.d.ts +2 -0
- package/transpiled/react/Icons/TextInfo.js +13 -0
- package/transpiled/react/Icons/ToTheCloud.d.ts +2 -0
- package/transpiled/react/Icons/ToTheCloud.js +13 -0
- package/transpiled/react/Icons/Top.d.ts +2 -0
- package/transpiled/react/Icons/Top.js +13 -0
- package/transpiled/react/Icons/TopSelect.d.ts +2 -0
- package/transpiled/react/Icons/TopSelect.js +13 -0
- package/transpiled/react/Icons/Train.d.ts +2 -0
- package/transpiled/react/Icons/Train.js +15 -0
- package/transpiled/react/Icons/Tram.d.ts +2 -0
- package/transpiled/react/Icons/Tram.js +13 -0
- package/transpiled/react/Icons/Trash.d.ts +2 -0
- package/transpiled/react/Icons/Trash.js +13 -0
- package/transpiled/react/Icons/TrashDuotone.d.ts +2 -0
- package/transpiled/react/Icons/TrashDuotone.js +13 -0
- package/transpiled/react/Icons/Triggers.d.ts +2 -0
- package/transpiled/react/Icons/Triggers.js +13 -0
- package/transpiled/react/Icons/Trophy.d.ts +2 -0
- package/transpiled/react/Icons/Trophy.js +13 -0
- package/transpiled/react/Icons/TwakeText.d.ts +2 -0
- package/transpiled/react/Icons/TwakeText.js +18 -0
- package/transpiled/react/Icons/TwakeWorkplace.d.ts +2 -0
- package/transpiled/react/Icons/TwakeWorkplace.js +79 -0
- package/transpiled/react/Icons/Uncloud.d.ts +2 -0
- package/transpiled/react/Icons/Uncloud.js +13 -0
- package/transpiled/react/Icons/Unknow.d.ts +2 -0
- package/transpiled/react/Icons/Unknow.js +13 -0
- package/transpiled/react/Icons/Unlink.d.ts +2 -0
- package/transpiled/react/Icons/Unlink.js +13 -0
- package/transpiled/react/Icons/Unlock.d.ts +2 -0
- package/transpiled/react/Icons/Unlock.js +13 -0
- package/transpiled/react/Icons/Up.d.ts +2 -0
- package/transpiled/react/Icons/Up.js +13 -0
- package/transpiled/react/Icons/Upload.d.ts +2 -0
- package/transpiled/react/Icons/Upload.js +13 -0
- package/transpiled/react/Icons/Versioning.d.ts +2 -0
- package/transpiled/react/Icons/Versioning.js +13 -0
- package/transpiled/react/Icons/Videos.d.ts +2 -0
- package/transpiled/react/Icons/Videos.js +13 -0
- package/transpiled/react/Icons/Walk.d.ts +2 -0
- package/transpiled/react/Icons/Walk.js +13 -0
- package/transpiled/react/Icons/Wallet.d.ts +2 -0
- package/transpiled/react/Icons/Wallet.js +13 -0
- package/transpiled/react/Icons/WalletAdd.d.ts +2 -0
- package/transpiled/react/Icons/WalletAdd.js +14 -0
- package/transpiled/react/Icons/WalletNew.d.ts +2 -0
- package/transpiled/react/Icons/WalletNew.js +14 -0
- package/transpiled/react/Icons/Warn.d.ts +2 -0
- package/transpiled/react/Icons/Warn.js +15 -0
- package/transpiled/react/Icons/Warning.d.ts +2 -0
- package/transpiled/react/Icons/Warning.js +13 -0
- package/transpiled/react/Icons/WarningCircle.d.ts +2 -0
- package/transpiled/react/Icons/WarningCircle.js +13 -0
- package/transpiled/react/Icons/Water.d.ts +2 -0
- package/transpiled/react/Icons/Water.js +13 -0
- package/transpiled/react/Icons/Work.d.ts +2 -0
- package/transpiled/react/Icons/Work.js +13 -0
- package/transpiled/react/Icons/WorkplaceText.d.ts +2 -0
- package/transpiled/react/Icons/WorkplaceText.js +15 -0
- package/transpiled/react/Icons/WrenchCircle.d.ts +2 -0
- package/transpiled/react/Icons/WrenchCircle.js +19 -0
- package/transpiled/react/InfosBadge/index.d.ts +5 -0
- package/transpiled/react/InfosBadge/index.js +36 -0
- package/transpiled/react/Input/index.d.ts +2 -0
- package/transpiled/react/Input/index.js +2 -0
- package/transpiled/react/InputAdornment/index.d.ts +2 -0
- package/transpiled/react/InputAdornment/index.js +2 -0
- package/transpiled/react/InputBase/index.d.ts +2 -0
- package/transpiled/react/InputBase/index.js +2 -0
- package/transpiled/react/InputGroup/index.d.ts +30 -0
- package/transpiled/react/InputGroup/index.js +107 -0
- package/transpiled/react/InputLabel/index.d.ts +2 -0
- package/transpiled/react/InputLabel/index.js +2 -0
- package/transpiled/react/IntentDialogOpener/IntentDialogOpener.d.ts +32 -0
- package/transpiled/react/IntentDialogOpener/IntentDialogOpener.js +120 -0
- package/transpiled/react/IntentDialogOpener/index.d.ts +1 -0
- package/transpiled/react/IntentDialogOpener/index.js +1 -0
- package/transpiled/react/IntentHeader/index.d.ts +23 -0
- package/transpiled/react/IntentHeader/index.js +33 -0
- package/transpiled/react/IntentIframe/IntentIframe.d.ts +8 -0
- package/transpiled/react/IntentIframe/IntentIframe.js +159 -0
- package/transpiled/react/IntentIframe/index.d.ts +1 -0
- package/transpiled/react/IntentIframe/index.js +1 -0
- package/transpiled/react/IntentWrapper/index.d.ts +20 -0
- package/transpiled/react/IntentWrapper/index.js +38 -0
- package/transpiled/react/Label/index.d.ts +20 -0
- package/transpiled/react/Label/index.js +42 -0
- package/transpiled/react/Labs/CollectionField/index.d.ts +23 -0
- package/transpiled/react/Labs/CollectionField/index.js +142 -0
- package/transpiled/react/Labs/ExperimentalDialog/index.d.ts +4 -0
- package/transpiled/react/Labs/ExperimentalDialog/index.js +19 -0
- package/transpiled/react/Labs/IconGrid/index.d.ts +4 -0
- package/transpiled/react/Labs/IconGrid/index.js +13 -0
- package/transpiled/react/Labs/PasswordInput/helpers.d.ts +4 -0
- package/transpiled/react/Labs/PasswordInput/helpers.js +75 -0
- package/transpiled/react/Labs/PasswordInput/helpers.spec.d.ts +1 -0
- package/transpiled/react/Labs/PasswordInput/index.d.ts +15 -0
- package/transpiled/react/Labs/PasswordInput/index.js +93 -0
- package/transpiled/react/Labs/index.d.ts +0 -0
- package/transpiled/react/Labs/index.js +0 -0
- package/transpiled/react/Layout/Layout.d.ts +6 -0
- package/transpiled/react/Layout/Layout.js +110 -0
- package/transpiled/react/Layout/index.d.ts +1 -0
- package/transpiled/react/Layout/index.js +1 -0
- package/transpiled/react/LinearProgress/index.d.ts +2 -0
- package/transpiled/react/LinearProgress/index.js +2 -0
- package/transpiled/react/Link/index.d.ts +2 -0
- package/transpiled/react/Link/index.js +2 -0
- package/transpiled/react/List/index.d.ts +9 -0
- package/transpiled/react/List/index.js +8 -0
- package/transpiled/react/ListItem/ExpandedAttributes/ExpandedAttribute.d.ts +14 -0
- package/transpiled/react/ListItem/ExpandedAttributes/ExpandedAttribute.js +45 -0
- package/transpiled/react/ListItem/ExpandedAttributes/helpers.d.ts +43 -0
- package/transpiled/react/ListItem/ExpandedAttributes/helpers.js +215 -0
- package/transpiled/react/ListItem/ExpandedAttributes/helpers.spec.d.ts +1 -0
- package/transpiled/react/ListItem/ExpandedAttributes/index.d.ts +2 -0
- package/transpiled/react/ListItem/ExpandedAttributes/index.js +66 -0
- package/transpiled/react/ListItem/ListItemBase/Renaming/RenameDialog.d.ts +2 -0
- package/transpiled/react/ListItem/ListItemBase/Renaming/RenameDialog.js +35 -0
- package/transpiled/react/ListItem/ListItemBase/Renaming/RenameInput.d.ts +12 -0
- package/transpiled/react/ListItem/ListItemBase/Renaming/RenameInput.js +292 -0
- package/transpiled/react/ListItem/ListItemBase/Renaming/helpers.d.ts +1 -0
- package/transpiled/react/ListItem/ListItemBase/Renaming/helpers.js +59 -0
- package/transpiled/react/ListItem/ListItemBase/index.d.ts +2 -0
- package/transpiled/react/ListItem/ListItemBase/index.js +122 -0
- package/transpiled/react/ListItem/ListItemByDoc/index.d.ts +46 -0
- package/transpiled/react/ListItem/ListItemByDoc/index.js +95 -0
- package/transpiled/react/ListItem/ListItemContact/helpers.d.ts +1 -0
- package/transpiled/react/ListItem/ListItemContact/helpers.js +29 -0
- package/transpiled/react/ListItem/ListItemContact/helpers.spec.d.ts +1 -0
- package/transpiled/react/ListItem/ListItemContact/index.d.ts +35 -0
- package/transpiled/react/ListItem/ListItemContact/index.js +68 -0
- package/transpiled/react/ListItem/ListItemContact/useActions.d.ts +2 -0
- package/transpiled/react/ListItem/ListItemContact/useActions.js +18 -0
- package/transpiled/react/ListItem/ListItemFile/ExpirationAnnotation.d.ts +2 -0
- package/transpiled/react/ListItem/ListItemFile/ExpirationAnnotation.js +37 -0
- package/transpiled/react/ListItem/ListItemFile/ItemIcon.d.ts +12 -0
- package/transpiled/react/ListItem/ListItemFile/ItemIcon.js +42 -0
- package/transpiled/react/ListItem/ListItemFile/PrimaryText.d.ts +12 -0
- package/transpiled/react/ListItem/ListItemFile/PrimaryText.js +33 -0
- package/transpiled/react/ListItem/ListItemFile/SecondaryText.d.ts +12 -0
- package/transpiled/react/ListItem/ListItemFile/SecondaryText.js +27 -0
- package/transpiled/react/ListItem/ListItemFile/index.d.ts +37 -0
- package/transpiled/react/ListItem/ListItemFile/index.js +78 -0
- package/transpiled/react/ListItem/hoc/withListItemLocales.d.ts +12 -0
- package/transpiled/react/ListItem/hoc/withListItemLocales.js +308 -0
- package/transpiled/react/ListItem/index.d.ts +10 -0
- package/transpiled/react/ListItem/index.js +140 -0
- package/transpiled/react/ListItemAvatar/index.d.ts +2 -0
- package/transpiled/react/ListItemAvatar/index.js +2 -0
- package/transpiled/react/ListItemIcon/index.d.ts +8 -0
- package/transpiled/react/ListItemIcon/index.js +25 -0
- package/transpiled/react/ListItemSecondaryAction/index.d.ts +2 -0
- package/transpiled/react/ListItemSecondaryAction/index.js +2 -0
- package/transpiled/react/ListItemText/index.d.ts +5 -0
- package/transpiled/react/ListItemText/index.js +71 -0
- package/transpiled/react/ListSubheader/index.d.ts +3 -0
- package/transpiled/react/ListSubheader/index.js +43 -0
- package/transpiled/react/LoadMore/index.d.ts +12 -0
- package/transpiled/react/LoadMore/index.js +81 -0
- package/transpiled/react/Markdown/index.d.ts +4 -0
- package/transpiled/react/Markdown/index.js +39 -0
- package/transpiled/react/Menu/index.d.ts +2 -0
- package/transpiled/react/Menu/index.js +2 -0
- package/transpiled/react/MenuItem/index.d.ts +3 -0
- package/transpiled/react/MenuItem/index.js +20 -0
- package/transpiled/react/MenuList/index.d.ts +2 -0
- package/transpiled/react/MenuList/index.js +2 -0
- package/transpiled/react/MidEllipsis/index.d.ts +3 -0
- package/transpiled/react/MidEllipsis/index.js +41 -0
- package/transpiled/react/MobileStepper/index.d.ts +2 -0
- package/transpiled/react/MobileStepper/index.js +2 -0
- package/transpiled/react/Modal/index.d.ts +2 -0
- package/transpiled/react/Modal/index.js +2 -0
- package/transpiled/react/MuiCozyTheme/Divider/index.d.ts +2 -0
- package/transpiled/react/MuiCozyTheme/Divider/index.js +11 -0
- package/transpiled/react/MuiCozyTheme/List/index.d.ts +2 -0
- package/transpiled/react/MuiCozyTheme/List/index.js +11 -0
- package/transpiled/react/MuiCozyTheme/ListItem/index.d.ts +2 -0
- package/transpiled/react/MuiCozyTheme/ListItem/index.js +11 -0
- package/transpiled/react/MuiCozyTheme/ListItemIcon/index.d.ts +2 -0
- package/transpiled/react/MuiCozyTheme/ListItemIcon/index.js +11 -0
- package/transpiled/react/MuiCozyTheme/ListItemSecondaryAction/index.d.ts +2 -0
- package/transpiled/react/MuiCozyTheme/ListItemSecondaryAction/index.js +11 -0
- package/transpiled/react/MuiCozyTheme/helpers.d.ts +138 -0
- package/transpiled/react/MuiCozyTheme/helpers.js +179 -0
- package/transpiled/react/MuiCozyTheme/index.d.ts +19 -0
- package/transpiled/react/MuiCozyTheme/index.js +24 -0
- package/transpiled/react/MuiCozyTheme/makePalette.d.ts +1 -0
- package/transpiled/react/MuiCozyTheme/makePalette.js +170 -0
- package/transpiled/react/MuiCozyTheme/makeTheme.d.ts +15 -0
- package/transpiled/react/MuiCozyTheme/makeTheme.js +71 -0
- package/transpiled/react/MuiCozyTheme/makeTypography.d.ts +78 -0
- package/transpiled/react/MuiCozyTheme/makeTypography.js +80 -0
- package/transpiled/react/MuiCozyTheme/overrides/makeDarkInvertedOverrides.d.ts +1794 -0
- package/transpiled/react/MuiCozyTheme/overrides/makeDarkInvertedOverrides.js +4 -0
- package/transpiled/react/MuiCozyTheme/overrides/makeDarkNormalOverrides.d.ts +1743 -0
- package/transpiled/react/MuiCozyTheme/overrides/makeDarkNormalOverrides.js +4 -0
- package/transpiled/react/MuiCozyTheme/overrides/makeLightInvertedOverrides.d.ts +1794 -0
- package/transpiled/react/MuiCozyTheme/overrides/makeLightInvertedOverrides.js +61 -0
- package/transpiled/react/MuiCozyTheme/overrides/makeLightNormalOverrides.d.ts +1743 -0
- package/transpiled/react/MuiCozyTheme/overrides/makeLightNormalOverrides.js +1200 -0
- package/transpiled/react/MuiCozyTheme/theme.d.ts +61 -0
- package/transpiled/react/MuiCozyTheme/theme.js +27 -0
- package/transpiled/react/MuiTabs/index.d.ts +11 -0
- package/transpiled/react/MuiTabs/index.js +22 -0
- package/transpiled/react/NativeSelect/index.d.ts +2 -0
- package/transpiled/react/NativeSelect/index.js +2 -0
- package/transpiled/react/Nav/index.d.ts +40 -0
- package/transpiled/react/Nav/index.js +189 -0
- package/transpiled/react/Nav/locales/withNavLocales.d.ts +12 -0
- package/transpiled/react/Nav/locales/withNavLocales.js +32 -0
- package/transpiled/react/NavigationList/index.d.ts +12 -0
- package/transpiled/react/NavigationList/index.js +59 -0
- package/transpiled/react/NestedSelect/BottomSheet.d.ts +2 -0
- package/transpiled/react/NestedSelect/BottomSheet.js +46 -0
- package/transpiled/react/NestedSelect/ItemRow.d.ts +22 -0
- package/transpiled/react/NestedSelect/ItemRow.js +83 -0
- package/transpiled/react/NestedSelect/Modal.d.ts +2 -0
- package/transpiled/react/NestedSelect/Modal.js +65 -0
- package/transpiled/react/NestedSelect/NestedSelect.d.ts +82 -0
- package/transpiled/react/NestedSelect/NestedSelect.js +287 -0
- package/transpiled/react/NestedSelect/NestedSelect.spec.d.ts +1 -0
- package/transpiled/react/NestedSelect/NestedSelectResponsive.d.ts +2 -0
- package/transpiled/react/NestedSelect/NestedSelectResponsive.js +14 -0
- package/transpiled/react/NestedSelect/helpers.d.ts +1 -0
- package/transpiled/react/NestedSelect/helpers.js +44 -0
- package/transpiled/react/NestedSelect/helpers.spec.d.ts +1 -0
- package/transpiled/react/NestedSelect/index.d.ts +4 -0
- package/transpiled/react/NestedSelect/index.js +4 -0
- package/transpiled/react/NestedSelect/testing.d.ts +1 -0
- package/transpiled/react/NestedSelect/testing.js +4 -0
- package/transpiled/react/NoSsr/index.d.ts +2 -0
- package/transpiled/react/NoSsr/index.js +2 -0
- package/transpiled/react/OrderedList/index.d.ts +2 -0
- package/transpiled/react/OrderedList/index.js +28 -0
- package/transpiled/react/OutlinedInput/index.d.ts +2 -0
- package/transpiled/react/OutlinedInput/index.js +2 -0
- package/transpiled/react/Page/index.d.ts +14 -0
- package/transpiled/react/Page/index.js +116 -0
- package/transpiled/react/Page/keyboard.d.ts +31 -0
- package/transpiled/react/Page/keyboard.js +94 -0
- package/transpiled/react/Panel/index.d.ts +21 -0
- package/transpiled/react/Panel/index.js +20 -0
- package/transpiled/react/Paper/index.d.ts +2 -0
- package/transpiled/react/Paper/index.js +2 -0
- package/transpiled/react/PasswordExample/index.d.ts +7 -0
- package/transpiled/react/PasswordExample/index.js +83 -0
- package/transpiled/react/PasswordField/index.d.ts +12 -0
- package/transpiled/react/PasswordField/index.js +82 -0
- package/transpiled/react/Paywall/MaxAccountsByKonnectorPaywall.d.ts +2 -0
- package/transpiled/react/Paywall/MaxAccountsByKonnectorPaywall.js +33 -0
- package/transpiled/react/Paywall/MaxAccountsPaywall.d.ts +2 -0
- package/transpiled/react/Paywall/MaxAccountsPaywall.js +28 -0
- package/transpiled/react/Paywall/MaxDaysToCapturePaywall.d.ts +2 -0
- package/transpiled/react/Paywall/MaxDaysToCapturePaywall.js +28 -0
- package/transpiled/react/Paywall/MaxPapersPaywall.d.ts +2 -0
- package/transpiled/react/Paywall/MaxPapersPaywall.js +29 -0
- package/transpiled/react/Paywall/OnlyOfficePaywall.d.ts +16 -0
- package/transpiled/react/Paywall/OnlyOfficePaywall.js +29 -0
- package/transpiled/react/Paywall/PasswordSharingPaywall.d.ts +10 -0
- package/transpiled/react/Paywall/PasswordSharingPaywall.js +22 -0
- package/transpiled/react/Paywall/Paywall.d.ts +2 -0
- package/transpiled/react/Paywall/Paywall.js +167 -0
- package/transpiled/react/Paywall/Paywall.spec.d.ts +1 -0
- package/transpiled/react/Paywall/QuotaPaywall.d.ts +13 -0
- package/transpiled/react/Paywall/QuotaPaywall.js +20 -0
- package/transpiled/react/Paywall/helpers.d.ts +1 -0
- package/transpiled/react/Paywall/helpers.js +22 -0
- package/transpiled/react/Paywall/index.d.ts +7 -0
- package/transpiled/react/Paywall/index.js +7 -0
- package/transpiled/react/Paywall/locales/withPaywallLocales.d.ts +2 -0
- package/transpiled/react/Paywall/locales/withPaywallLocales.js +388 -0
- package/transpiled/react/PieChart/index.d.ts +30 -0
- package/transpiled/react/PieChart/index.js +164 -0
- package/transpiled/react/PieChart/index.spec.d.ts +1 -0
- package/transpiled/react/PointerAlert/index.d.ts +3 -0
- package/transpiled/react/PointerAlert/index.js +154 -0
- package/transpiled/react/Popover/index.d.ts +2 -0
- package/transpiled/react/Popover/index.js +2 -0
- package/transpiled/react/Popper/index.d.ts +2 -0
- package/transpiled/react/Popper/index.js +2 -0
- package/transpiled/react/Popper/testing.d.ts +1 -0
- package/transpiled/react/Popper/testing.js +21 -0
- package/transpiled/react/Popup/index.d.ts +60 -0
- package/transpiled/react/Popup/index.js +195 -0
- package/transpiled/react/Popup/index.spec.d.ts +1 -0
- package/transpiled/react/PopupOpener/index.d.ts +20 -0
- package/transpiled/react/PopupOpener/index.js +50 -0
- package/transpiled/react/Portal/index.d.ts +5 -0
- package/transpiled/react/Portal/index.js +10 -0
- package/transpiled/react/Progress/index.d.ts +2 -0
- package/transpiled/react/Progress/index.js +2 -0
- package/transpiled/react/ProgressionBanner/index.d.ts +9 -0
- package/transpiled/react/ProgressionBanner/index.js +64 -0
- package/transpiled/react/QualificationGrid/helpers.d.ts +1 -0
- package/transpiled/react/QualificationGrid/helpers.js +7 -0
- package/transpiled/react/QualificationGrid/index.d.ts +2 -0
- package/transpiled/react/QualificationGrid/index.js +97 -0
- package/transpiled/react/QualificationGrid/locales/withLocales.d.ts +12 -0
- package/transpiled/react/QualificationGrid/locales/withLocales.js +68 -0
- package/transpiled/react/QualificationIcon/index.d.ts +13 -0
- package/transpiled/react/QualificationIcon/index.js +108 -0
- package/transpiled/react/QualificationItem/index.d.ts +17 -0
- package/transpiled/react/QualificationItem/index.js +63 -0
- package/transpiled/react/QualificationModal/helpers.d.ts +14 -0
- package/transpiled/react/QualificationModal/helpers.js +70 -0
- package/transpiled/react/QualificationModal/helpers.spec.d.ts +1 -0
- package/transpiled/react/QualificationModal/index.d.ts +16 -0
- package/transpiled/react/QualificationModal/index.js +98 -0
- package/transpiled/react/QualificationModal/locales/index.d.ts +10 -0
- package/transpiled/react/QualificationModal/locales/index.js +30 -0
- package/transpiled/react/RadioGroup/index.d.ts +2 -0
- package/transpiled/react/RadioGroup/index.js +2 -0
- package/transpiled/react/Radios/index.d.ts +7 -0
- package/transpiled/react/Radios/index.js +22 -0
- package/transpiled/react/RootRef/index.d.ts +2 -0
- package/transpiled/react/RootRef/index.js +2 -0
- package/transpiled/react/ScopedCssBaseline/index.d.ts +2 -0
- package/transpiled/react/ScopedCssBaseline/index.js +2 -0
- package/transpiled/react/SearchBar/index.d.ts +3 -0
- package/transpiled/react/SearchBar/index.js +304 -0
- package/transpiled/react/SearchBar/locales/withOnlyLocales.d.ts +12 -0
- package/transpiled/react/SearchBar/locales/withOnlyLocales.js +28 -0
- package/transpiled/react/Select/index.d.ts +2 -0
- package/transpiled/react/Select/index.js +2 -0
- package/transpiled/react/SelectBox/ControlDefault.d.ts +14 -0
- package/transpiled/react/SelectBox/ControlDefault.js +34 -0
- package/transpiled/react/SelectBox/SelectBox.d.ts +108 -0
- package/transpiled/react/SelectBox/SelectBox.js +386 -0
- package/transpiled/react/SelectBox/SelectBoxWithFixedOptions.d.ts +8 -0
- package/transpiled/react/SelectBox/SelectBoxWithFixedOptions.js +82 -0
- package/transpiled/react/SelectBox/index.d.ts +3 -0
- package/transpiled/react/SelectBox/index.js +4 -0
- package/transpiled/react/SelectionBar/SelectionBarAction.d.ts +14 -0
- package/transpiled/react/SelectionBar/SelectionBarAction.js +76 -0
- package/transpiled/react/SelectionBar/SelectionBarMore.d.ts +14 -0
- package/transpiled/react/SelectionBar/SelectionBarMore.js +86 -0
- package/transpiled/react/SelectionBar/helpers.d.ts +7 -0
- package/transpiled/react/SelectionBar/helpers.js +23 -0
- package/transpiled/react/SelectionBar/helpers.spec.d.ts +1 -0
- package/transpiled/react/SelectionBar/index.d.ts +25 -0
- package/transpiled/react/SelectionBar/index.js +152 -0
- package/transpiled/react/SelectionBar/useMaxActions.d.ts +7 -0
- package/transpiled/react/SelectionBar/useMaxActions.js +43 -0
- package/transpiled/react/ShortcutTile/index.d.ts +15 -0
- package/transpiled/react/ShortcutTile/index.js +51 -0
- package/transpiled/react/Sidebar/index.d.ts +13 -0
- package/transpiled/react/Sidebar/index.js +41 -0
- package/transpiled/react/Skeleton/index.d.ts +2 -0
- package/transpiled/react/Skeleton/index.js +2 -0
- package/transpiled/react/Skeletons/ListItemSkeleton.d.ts +14 -0
- package/transpiled/react/Skeletons/ListItemSkeleton.js +40 -0
- package/transpiled/react/Skeletons/ListSkeleton.d.ts +19 -0
- package/transpiled/react/Skeletons/ListSkeleton.js +37 -0
- package/transpiled/react/Skeletons/index.d.ts +2 -0
- package/transpiled/react/Skeletons/index.js +2 -0
- package/transpiled/react/Slide/index.d.ts +2 -0
- package/transpiled/react/Slide/index.js +2 -0
- package/transpiled/react/Slider/index.d.ts +2 -0
- package/transpiled/react/Slider/index.js +2 -0
- package/transpiled/react/Snackbar/index.d.ts +3 -0
- package/transpiled/react/Snackbar/index.js +22 -0
- package/transpiled/react/SnackbarContent/index.d.ts +2 -0
- package/transpiled/react/SnackbarContent/index.js +2 -0
- package/transpiled/react/Spinner/index.d.ts +37 -0
- package/transpiled/react/Spinner/index.js +64 -0
- package/transpiled/react/SquareAppIcon/SquareAppIcon.spec.d.ts +1 -0
- package/transpiled/react/SquareAppIcon/index.d.ts +26 -0
- package/transpiled/react/SquareAppIcon/index.js +222 -0
- package/transpiled/react/Stack/index.d.ts +17 -0
- package/transpiled/react/Stack/index.js +34 -0
- package/transpiled/react/Step/index.d.ts +2 -0
- package/transpiled/react/Step/index.js +2 -0
- package/transpiled/react/StepButton/index.d.ts +2 -0
- package/transpiled/react/StepButton/index.js +2 -0
- package/transpiled/react/StepConnector/index.d.ts +2 -0
- package/transpiled/react/StepConnector/index.js +2 -0
- package/transpiled/react/StepContent/index.d.ts +2 -0
- package/transpiled/react/StepContent/index.js +2 -0
- package/transpiled/react/StepIcon/index.d.ts +2 -0
- package/transpiled/react/StepIcon/index.js +2 -0
- package/transpiled/react/StepLabel/index.d.ts +2 -0
- package/transpiled/react/StepLabel/index.js +2 -0
- package/transpiled/react/Stepper/index.d.ts +4 -0
- package/transpiled/react/Stepper/index.js +4 -0
- package/transpiled/react/Stepper/testing.d.ts +1 -0
- package/transpiled/react/Stepper/testing.js +37 -0
- package/transpiled/react/Storage/StorageButton.d.ts +4 -0
- package/transpiled/react/Storage/StorageButton.js +36 -0
- package/transpiled/react/Storage/StorageProgress.d.ts +5 -0
- package/transpiled/react/Storage/StorageProgress.js +50 -0
- package/transpiled/react/Storage/index.d.ts +14 -0
- package/transpiled/react/Storage/index.js +32 -0
- package/transpiled/react/Storage/locales/index.d.ts +10 -0
- package/transpiled/react/Storage/locales/index.js +34 -0
- package/transpiled/react/SvgIcon/index.d.ts +2 -0
- package/transpiled/react/SvgIcon/index.js +2 -0
- package/transpiled/react/SwipeableDrawer/index.d.ts +2 -0
- package/transpiled/react/SwipeableDrawer/index.js +2 -0
- package/transpiled/react/Switch/index.d.ts +5 -0
- package/transpiled/react/Switch/index.js +28 -0
- package/transpiled/react/Tab/index.d.ts +2 -0
- package/transpiled/react/Tab/index.js +2 -0
- package/transpiled/react/Table/Virtualized/Cell.d.ts +10 -0
- package/transpiled/react/Table/Virtualized/Cell.js +86 -0
- package/transpiled/react/Table/Virtualized/Dnd/CustomDrag/CustomDragLayer.d.ts +4 -0
- package/transpiled/react/Table/Virtualized/Dnd/CustomDrag/CustomDragLayer.js +47 -0
- package/transpiled/react/Table/Virtualized/Dnd/CustomDrag/DragPreview.d.ts +6 -0
- package/transpiled/react/Table/Virtualized/Dnd/CustomDrag/DragPreview.js +34 -0
- package/transpiled/react/Table/Virtualized/Dnd/CustomDrag/DragPreviewWrapper.d.ts +8 -0
- package/transpiled/react/Table/Virtualized/Dnd/CustomDrag/DragPreviewWrapper.js +63 -0
- package/transpiled/react/Table/Virtualized/Dnd/DnDConfigWrapper.d.ts +2 -0
- package/transpiled/react/Table/Virtualized/Dnd/DnDConfigWrapper.js +55 -0
- package/transpiled/react/Table/Virtualized/Dnd/TableRow.d.ts +7 -0
- package/transpiled/react/Table/Virtualized/Dnd/TableRow.js +137 -0
- package/transpiled/react/Table/Virtualized/Dnd/index.d.ts +7 -0
- package/transpiled/react/Table/Virtualized/Dnd/index.js +47 -0
- package/transpiled/react/Table/Virtualized/Dnd/virtuosoComponents.d.ts +14 -0
- package/transpiled/react/Table/Virtualized/Dnd/virtuosoComponents.js +37 -0
- package/transpiled/react/Table/Virtualized/FixedHeaderContent.d.ts +10 -0
- package/transpiled/react/Table/Virtualized/FixedHeaderContent.js +60 -0
- package/transpiled/react/Table/Virtualized/HeadCell.d.ts +8 -0
- package/transpiled/react/Table/Virtualized/HeadCell.js +44 -0
- package/transpiled/react/Table/Virtualized/RowContent.d.ts +12 -0
- package/transpiled/react/Table/Virtualized/RowContent.js +45 -0
- package/transpiled/react/Table/Virtualized/TableRow.d.ts +7 -0
- package/transpiled/react/Table/Virtualized/TableRow.js +24 -0
- package/transpiled/react/Table/Virtualized/helpers.d.ts +2 -0
- package/transpiled/react/Table/Virtualized/helpers.js +66 -0
- package/transpiled/react/Table/Virtualized/helpers.spec.d.ts +1 -0
- package/transpiled/react/Table/Virtualized/index.d.ts +3 -0
- package/transpiled/react/Table/Virtualized/index.js +172 -0
- package/transpiled/react/Table/Virtualized/virtuosoComponents.d.ts +10 -0
- package/transpiled/react/Table/Virtualized/virtuosoComponents.js +70 -0
- package/transpiled/react/Table/index.d.ts +2 -0
- package/transpiled/react/Table/index.js +2 -0
- package/transpiled/react/TableBody/index.d.ts +2 -0
- package/transpiled/react/TableBody/index.js +2 -0
- package/transpiled/react/TableCell/index.d.ts +2 -0
- package/transpiled/react/TableCell/index.js +2 -0
- package/transpiled/react/TableContainer/index.d.ts +3 -0
- package/transpiled/react/TableContainer/index.js +22 -0
- package/transpiled/react/TableFooter/index.d.ts +2 -0
- package/transpiled/react/TableFooter/index.js +2 -0
- package/transpiled/react/TableHead/index.d.ts +2 -0
- package/transpiled/react/TableHead/index.js +2 -0
- package/transpiled/react/TablePagination/index.d.ts +2 -0
- package/transpiled/react/TablePagination/index.js +2 -0
- package/transpiled/react/TableRow/index.d.ts +3 -0
- package/transpiled/react/TableRow/index.js +21 -0
- package/transpiled/react/TableSortLabel/index.d.ts +2 -0
- package/transpiled/react/TableSortLabel/index.js +2 -0
- package/transpiled/react/Tabs/index.d.ts +3 -0
- package/transpiled/react/Tabs/index.js +49 -0
- package/transpiled/react/TextField/MobileSelect.d.ts +3 -0
- package/transpiled/react/TextField/MobileSelect.js +150 -0
- package/transpiled/react/TextField/helpers.d.ts +2 -0
- package/transpiled/react/TextField/helpers.js +30 -0
- package/transpiled/react/TextField/index.d.ts +3 -0
- package/transpiled/react/TextField/index.js +54 -0
- package/transpiled/react/Textarea/index.d.ts +3 -0
- package/transpiled/react/Textarea/index.js +51 -0
- package/transpiled/react/TextareaAutosize/index.d.ts +2 -0
- package/transpiled/react/TextareaAutosize/index.js +2 -0
- package/transpiled/react/Thumbnail/index.d.ts +22 -0
- package/transpiled/react/Thumbnail/index.js +41 -0
- package/transpiled/react/Tile/index.d.ts +68 -0
- package/transpiled/react/Tile/index.js +94 -0
- package/transpiled/react/Timeline/index.d.ts +2 -0
- package/transpiled/react/Timeline/index.js +2 -0
- package/transpiled/react/TimelineConnector/index.d.ts +2 -0
- package/transpiled/react/TimelineConnector/index.js +2 -0
- package/transpiled/react/TimelineContent/index.d.ts +2 -0
- package/transpiled/react/TimelineContent/index.js +2 -0
- package/transpiled/react/TimelineDot/index.d.ts +2 -0
- package/transpiled/react/TimelineDot/index.js +2 -0
- package/transpiled/react/TimelineItem/index.d.ts +2 -0
- package/transpiled/react/TimelineItem/index.js +2 -0
- package/transpiled/react/TimelineOppositeContent/index.d.ts +2 -0
- package/transpiled/react/TimelineOppositeContent/index.js +2 -0
- package/transpiled/react/TimelineSeparator/index.d.ts +2 -0
- package/transpiled/react/TimelineSeparator/index.js +2 -0
- package/transpiled/react/Toggle/index.d.ts +18 -0
- package/transpiled/react/Toggle/index.js +80 -0
- package/transpiled/react/ToggleButton/index.d.ts +3 -0
- package/transpiled/react/ToggleButton/index.js +27 -0
- package/transpiled/react/ToggleButtonGroup/index.d.ts +2 -0
- package/transpiled/react/ToggleButtonGroup/index.js +2 -0
- package/transpiled/react/Toolbar/index.d.ts +2 -0
- package/transpiled/react/Toolbar/index.js +2 -0
- package/transpiled/react/Tooltip/index.d.ts +2 -0
- package/transpiled/react/Tooltip/index.js +5 -0
- package/transpiled/react/Typography/index.d.ts +38 -0
- package/transpiled/react/Typography/index.js +30 -0
- package/transpiled/react/UnorderedList/index.d.ts +2 -0
- package/transpiled/react/UnorderedList/index.js +28 -0
- package/transpiled/react/UploadQueue/FileUploadProgress.d.ts +4 -0
- package/transpiled/react/UploadQueue/FileUploadProgress.js +66 -0
- package/transpiled/react/UploadQueue/Item.d.ts +3 -0
- package/transpiled/react/UploadQueue/Item.js +106 -0
- package/transpiled/react/UploadQueue/Pending.d.ts +3 -0
- package/transpiled/react/UploadQueue/Pending.js +10 -0
- package/transpiled/react/UploadQueue/RemainingTime.d.ts +4 -0
- package/transpiled/react/UploadQueue/RemainingTime.js +43 -0
- package/transpiled/react/UploadQueue/helpers.d.ts +1 -0
- package/transpiled/react/UploadQueue/helpers.js +4 -0
- package/transpiled/react/UploadQueue/index.d.ts +42 -0
- package/transpiled/react/UploadQueue/index.js +241 -0
- package/transpiled/react/UploadQueue/index.spec.d.ts +1 -0
- package/transpiled/react/UploadQueue/useStatusIcon.d.ts +1 -0
- package/transpiled/react/UploadQueue/useStatusIcon.js +42 -0
- package/transpiled/react/Wizard/index.d.ts +75 -0
- package/transpiled/react/Wizard/index.js +202 -0
- package/transpiled/react/Zoom/index.d.ts +2 -0
- package/transpiled/react/Zoom/index.js +2 -0
- package/transpiled/react/deprecated/ActionMenu/ActionMenuEffects.d.ts +1 -0
- package/transpiled/react/deprecated/ActionMenu/ActionMenuEffects.js +38 -0
- package/transpiled/react/deprecated/ActionMenu/ActionMenuHeader.d.ts +11 -0
- package/transpiled/react/deprecated/ActionMenu/ActionMenuHeader.js +21 -0
- package/transpiled/react/deprecated/ActionMenu/ActionMenuItem.d.ts +23 -0
- package/transpiled/react/deprecated/ActionMenu/ActionMenuItem.js +44 -0
- package/transpiled/react/deprecated/ActionMenu/ActionMenuItemWrapper.d.ts +32 -0
- package/transpiled/react/deprecated/ActionMenu/ActionMenuItemWrapper.js +63 -0
- package/transpiled/react/deprecated/ActionMenu/ActionMenuRadio.d.ts +1 -0
- package/transpiled/react/deprecated/ActionMenu/ActionMenuRadio.js +15 -0
- package/transpiled/react/deprecated/ActionMenu/ActionMenuWithClose.d.ts +7 -0
- package/transpiled/react/deprecated/ActionMenu/ActionMenuWithClose.js +30 -0
- package/transpiled/react/deprecated/ActionMenu/ActionMenuWrapper.d.ts +12 -0
- package/transpiled/react/deprecated/ActionMenu/ActionMenuWrapper.js +38 -0
- package/transpiled/react/deprecated/ActionMenu/Actions/ActionsItems.d.ts +18 -0
- package/transpiled/react/deprecated/ActionMenu/Actions/ActionsItems.js +49 -0
- package/transpiled/react/deprecated/ActionMenu/Actions/call.d.ts +5 -0
- package/transpiled/react/deprecated/ActionMenu/Actions/call.js +29 -0
- package/transpiled/react/deprecated/ActionMenu/Actions/emailTo.d.ts +5 -0
- package/transpiled/react/deprecated/ActionMenu/Actions/emailTo.js +29 -0
- package/transpiled/react/deprecated/ActionMenu/Actions/helpers.d.ts +3 -0
- package/transpiled/react/deprecated/ActionMenu/Actions/helpers.js +51 -0
- package/transpiled/react/deprecated/ActionMenu/Actions/helpers.spec.d.ts +1 -0
- package/transpiled/react/deprecated/ActionMenu/Actions/hr.d.ts +4 -0
- package/transpiled/react/deprecated/ActionMenu/Actions/hr.js +9 -0
- package/transpiled/react/deprecated/ActionMenu/Actions/index.d.ts +7 -0
- package/transpiled/react/deprecated/ActionMenu/Actions/index.js +7 -0
- package/transpiled/react/deprecated/ActionMenu/Actions/locales/withActionsLocales.d.ts +12 -0
- package/transpiled/react/deprecated/ActionMenu/Actions/locales/withActionsLocales.js +40 -0
- package/transpiled/react/deprecated/ActionMenu/Actions/modify.d.ts +4 -0
- package/transpiled/react/deprecated/ActionMenu/Actions/modify.js +39 -0
- package/transpiled/react/deprecated/ActionMenu/Actions/smsTo.d.ts +5 -0
- package/transpiled/react/deprecated/ActionMenu/Actions/smsTo.js +29 -0
- package/transpiled/react/deprecated/ActionMenu/Actions/viewInContacts.d.ts +4 -0
- package/transpiled/react/deprecated/ActionMenu/Actions/viewInContacts.js +39 -0
- package/transpiled/react/deprecated/ActionMenu/NotInlineWrapper.d.ts +9 -0
- package/transpiled/react/deprecated/ActionMenu/NotInlineWrapper.js +58 -0
- package/transpiled/react/deprecated/ActionMenu/index.d.ts +48 -0
- package/transpiled/react/deprecated/ActionMenu/index.js +104 -0
- package/transpiled/react/deprecated/Alerter/Alert.d.ts +39 -0
- package/transpiled/react/deprecated/Alerter/Alert.js +168 -0
- package/transpiled/react/deprecated/Alerter/index.d.ts +50 -0
- package/transpiled/react/deprecated/Alerter/index.js +217 -0
- package/transpiled/react/deprecated/BottomDrawer/index.d.ts +31 -0
- package/transpiled/react/deprecated/BottomDrawer/index.js +203 -0
- package/transpiled/react/deprecated/Button/index.d.ts +41 -0
- package/transpiled/react/deprecated/Button/index.js +212 -0
- package/transpiled/react/deprecated/ButtonAction/index.d.ts +21 -0
- package/transpiled/react/deprecated/ButtonAction/index.js +69 -0
- package/transpiled/react/deprecated/Chip/index.d.ts +26 -0
- package/transpiled/react/deprecated/Chip/index.js +129 -0
- package/transpiled/react/deprecated/CompositeRow/index.d.ts +34 -0
- package/transpiled/react/deprecated/CompositeRow/index.js +93 -0
- package/transpiled/react/deprecated/GridItem/index.d.ts +12 -0
- package/transpiled/react/deprecated/GridItem/index.js +27 -0
- package/transpiled/react/deprecated/Infos/index.d.ts +26 -0
- package/transpiled/react/deprecated/Infos/index.js +103 -0
- package/transpiled/react/deprecated/InfosCarrousel/index.d.ts +24 -0
- package/transpiled/react/deprecated/InfosCarrousel/index.js +120 -0
- package/transpiled/react/deprecated/InlineCard/index.d.ts +16 -0
- package/transpiled/react/deprecated/InlineCard/index.js +53 -0
- package/transpiled/react/deprecated/IntentModal/IntentModal.d.ts +23 -0
- package/transpiled/react/deprecated/IntentModal/IntentModal.js +126 -0
- package/transpiled/react/deprecated/IntentModal/index.d.ts +1 -0
- package/transpiled/react/deprecated/IntentModal/index.js +1 -0
- package/transpiled/react/deprecated/IntentOpener/IntentOpener.d.ts +25 -0
- package/transpiled/react/deprecated/IntentOpener/IntentOpener.js +105 -0
- package/transpiled/react/deprecated/IntentOpener/index.d.ts +1 -0
- package/transpiled/react/deprecated/IntentOpener/index.js +1 -0
- package/transpiled/react/deprecated/Media/Media.d.ts +24 -0
- package/transpiled/react/deprecated/Media/Media.js +55 -0
- package/transpiled/react/deprecated/Media/index.d.ts +1 -0
- package/transpiled/react/deprecated/Media/index.js +1 -0
- package/transpiled/react/deprecated/Menus/index.d.ts +24 -0
- package/transpiled/react/deprecated/Menus/index.js +154 -0
- package/transpiled/react/deprecated/Modal/AnimatedContentHeader.d.ts +6 -0
- package/transpiled/react/deprecated/Modal/AnimatedContentHeader.js +34 -0
- package/transpiled/react/deprecated/Modal/ModalBackButton.d.ts +2 -0
- package/transpiled/react/deprecated/Modal/ModalBackButton.js +67 -0
- package/transpiled/react/deprecated/Modal/ModalButtons.d.ts +17 -0
- package/transpiled/react/deprecated/Modal/ModalButtons.js +68 -0
- package/transpiled/react/deprecated/Modal/ModalContent.d.ts +20 -0
- package/transpiled/react/deprecated/Modal/ModalContent.js +177 -0
- package/transpiled/react/deprecated/Modal/ModalCross.d.ts +7 -0
- package/transpiled/react/deprecated/Modal/ModalCross.js +68 -0
- package/transpiled/react/deprecated/Modal/ModalEffects.d.ts +1 -0
- package/transpiled/react/deprecated/Modal/ModalEffects.js +50 -0
- package/transpiled/react/deprecated/Modal/ModalFooter.d.ts +5 -0
- package/transpiled/react/deprecated/Modal/ModalFooter.js +47 -0
- package/transpiled/react/deprecated/Modal/ModalHeader.d.ts +17 -0
- package/transpiled/react/deprecated/Modal/ModalHeader.js +87 -0
- package/transpiled/react/deprecated/Modal/ModalSection.d.ts +5 -0
- package/transpiled/react/deprecated/Modal/ModalSection.js +47 -0
- package/transpiled/react/deprecated/Modal/index.d.ts +14 -0
- package/transpiled/react/deprecated/Modal/index.js +345 -0
- package/transpiled/react/deprecated/NarrowContent/index.d.ts +2 -0
- package/transpiled/react/deprecated/NarrowContent/index.js +19 -0
- package/transpiled/react/deprecated/Overlay/index.d.ts +3 -0
- package/transpiled/react/deprecated/Overlay/index.js +115 -0
- package/transpiled/react/deprecated/PercentageBar/index.d.ts +2 -0
- package/transpiled/react/deprecated/PercentageBar/index.js +27 -0
- package/transpiled/react/deprecated/PercentageLine/index.d.ts +18 -0
- package/transpiled/react/deprecated/PercentageLine/index.js +44 -0
- package/transpiled/react/deprecated/PushClientButton/index.d.ts +16 -0
- package/transpiled/react/deprecated/PushClientButton/index.js +50 -0
- package/transpiled/react/deprecated/PushClientButton/index.spec.d.ts +1 -0
- package/transpiled/react/deprecated/QuotaAlert/index.d.ts +7 -0
- package/transpiled/react/deprecated/QuotaAlert/index.js +17 -0
- package/transpiled/react/deprecated/Radio/index.d.ts +21 -0
- package/transpiled/react/deprecated/Radio/index.js +78 -0
- package/transpiled/react/deprecated/Radio/index.spec.d.ts +1 -0
- package/transpiled/react/deprecated/RaisedList/index.d.ts +2 -0
- package/transpiled/react/deprecated/RaisedList/index.js +15 -0
- package/transpiled/react/deprecated/Table/index.d.ts +7 -0
- package/transpiled/react/deprecated/Table/index.js +97 -0
- package/transpiled/react/deprecated/ViewStack/ModalStack.d.ts +16 -0
- package/transpiled/react/deprecated/ViewStack/ModalStack.js +47 -0
- package/transpiled/react/deprecated/ViewStack/ViewStack.d.ts +13 -0
- package/transpiled/react/deprecated/ViewStack/ViewStack.js +49 -0
- package/transpiled/react/deprecated/ViewStack/context.d.ts +3 -0
- package/transpiled/react/deprecated/ViewStack/context.js +5 -0
- package/transpiled/react/deprecated/ViewStack/example.d.ts +3 -0
- package/transpiled/react/deprecated/ViewStack/example.js +66 -0
- package/transpiled/react/deprecated/ViewStack/hooks.d.ts +1 -0
- package/transpiled/react/deprecated/ViewStack/hooks.js +77 -0
- package/transpiled/react/deprecated/ViewStack/index.d.ts +3 -0
- package/transpiled/react/deprecated/ViewStack/index.js +3 -0
- package/transpiled/react/helpers/acceptedTypes.d.ts +3 -0
- package/transpiled/react/helpers/acceptedTypes.js +42 -0
- package/transpiled/react/helpers/acceptedTypes.spec.d.ts +1 -0
- package/transpiled/react/helpers/appDataset.d.ts +11 -0
- package/transpiled/react/helpers/appDataset.js +44 -0
- package/transpiled/react/helpers/appDataset.spec.d.ts +1 -0
- package/transpiled/react/helpers/breakpoints.d.ts +15 -0
- package/transpiled/react/helpers/breakpoints.js +34 -0
- package/transpiled/react/helpers/createDepreciationLogger.d.ts +2 -0
- package/transpiled/react/helpers/createDepreciationLogger.js +9 -0
- package/transpiled/react/helpers/createDepreciationLogger.spec.d.ts +1 -0
- package/transpiled/react/helpers/getRandomUUID.d.ts +1 -0
- package/transpiled/react/helpers/getRandomUUID.js +30 -0
- package/transpiled/react/helpers/getRandomUUID.spec.d.ts +1 -0
- package/transpiled/react/helpers/getSafeArea.d.ts +10 -0
- package/transpiled/react/helpers/getSafeArea.js +15 -0
- package/transpiled/react/helpers/isTesting.d.ts +2 -0
- package/transpiled/react/helpers/isTesting.js +3 -0
- package/transpiled/react/helpers/migrateProps.d.ts +2 -0
- package/transpiled/react/helpers/migrateProps.js +123 -0
- package/transpiled/react/helpers/ref.d.ts +2 -0
- package/transpiled/react/helpers/ref.js +6 -0
- package/transpiled/react/helpers/ref.spec.d.ts +1 -0
- package/transpiled/react/helpers/useProgression.d.ts +9 -0
- package/transpiled/react/helpers/useProgression.js +36 -0
- package/transpiled/react/helpers/withBreakpoints.d.ts +31 -0
- package/transpiled/react/helpers/withBreakpoints.js +105 -0
- package/transpiled/react/helpers/withOffline.d.ts +68 -0
- package/transpiled/react/helpers/withOffline.js +82 -0
- package/transpiled/react/helpers/withState.d.ts +49 -0
- package/transpiled/react/helpers/withState.js +63 -0
- package/transpiled/react/hooks/useBrowserOffline.d.ts +10 -0
- package/transpiled/react/hooks/useBrowserOffline.js +33 -0
- package/transpiled/react/hooks/useBrowserOffline.spec.d.ts +1 -0
- package/transpiled/react/hooks/useClientErrors.d.ts +29 -0
- package/transpiled/react/hooks/useClientErrors.js +167 -0
- package/transpiled/react/hooks/useClientErrors.spec.d.ts +1 -0
- package/transpiled/react/hooks/useConfirmExit/index.d.ts +41 -0
- package/transpiled/react/hooks/useConfirmExit/index.js +204 -0
- package/transpiled/react/hooks/useConfirmExit/index.spec.d.ts +1 -0
- package/transpiled/react/hooks/useCycle.d.ts +12 -0
- package/transpiled/react/hooks/useCycle.js +38 -0
- package/transpiled/react/hooks/useCycle.spec.d.ts +1 -0
- package/transpiled/react/hooks/useEventListener.d.ts +2 -0
- package/transpiled/react/hooks/useEventListener.js +17 -0
- package/transpiled/react/hooks/useEventListener.spec.d.ts +1 -0
- package/transpiled/react/hooks/useMediaQuery.d.ts +2 -0
- package/transpiled/react/hooks/useMediaQuery.js +15 -0
- package/transpiled/react/hooks/usePeriodicRender.d.ts +7 -0
- package/transpiled/react/hooks/usePeriodicRender.js +27 -0
- package/transpiled/react/hooks/usePeriodicRender.spec.d.ts +1 -0
- package/transpiled/react/hooks/useRealtime.d.ts +2 -0
- package/transpiled/react/hooks/useRealtime.js +108 -0
- package/transpiled/react/hooks/useRealtime.spec.d.ts +1 -0
- package/transpiled/react/hooks/useScroll.d.ts +14 -0
- package/transpiled/react/hooks/useScroll.js +49 -0
- package/transpiled/react/hooks/useScroll.spec.d.ts +1 -0
- package/transpiled/react/hooks/useSetFlagshipUi/helpers.d.ts +17 -0
- package/transpiled/react/hooks/useSetFlagshipUi/helpers.js +143 -0
- package/transpiled/react/hooks/useSetFlagshipUi/useSetFlagshipUI.d.ts +12 -0
- package/transpiled/react/hooks/useSetFlagshipUi/useSetFlagshipUI.js +36 -0
- package/transpiled/react/index.d.ts +114 -0
- package/transpiled/react/index.js +114 -0
- package/transpiled/react/jestLib/I18n.d.ts +6 -0
- package/transpiled/react/jestLib/I18n.js +13 -0
- package/transpiled/react/legacy/Avatar/helpers.d.ts +1 -0
- package/transpiled/react/legacy/Avatar/helpers.js +21 -0
- package/transpiled/react/legacy/Avatar/index.d.ts +43 -0
- package/transpiled/react/legacy/Avatar/index.js +83 -0
- package/transpiled/react/legacy/Breadcrumbs/index.d.ts +17 -0
- package/transpiled/react/legacy/Breadcrumbs/index.js +109 -0
- package/transpiled/react/legacy/Input/index.d.ts +3 -0
- package/transpiled/react/legacy/Input/index.js +65 -0
- package/transpiled/react/mocks/apps.d.ts +203 -0
- package/transpiled/react/mocks/apps.js +154 -0
- package/transpiled/react/palette.d.ts +49 -0
- package/transpiled/react/palette.js +49 -0
- package/transpiled/react/proptypes.d.ts +18 -0
- package/transpiled/react/proptypes.js +18 -0
- package/transpiled/react/providers/Alert/helpers.d.ts +1 -0
- package/transpiled/react/providers/Alert/helpers.js +24 -0
- package/transpiled/react/providers/Alert/index.d.ts +21 -0
- package/transpiled/react/providers/Alert/index.js +90 -0
- package/transpiled/react/providers/Breakpoints/index.d.ts +16 -0
- package/transpiled/react/providers/Breakpoints/index.js +62 -0
- package/transpiled/react/providers/Breakpoints/useIframeConnection.d.ts +5 -0
- package/transpiled/react/providers/Breakpoints/useIframeConnection.js +35 -0
- package/transpiled/react/providers/Breakpoints/useIframeToSendWidth.d.ts +3 -0
- package/transpiled/react/providers/Breakpoints/useIframeToSendWidth.js +32 -0
- package/transpiled/react/providers/Breakpoints/useParentBreakpoints.d.ts +5 -0
- package/transpiled/react/providers/Breakpoints/useParentBreakpoints.js +34 -0
- package/transpiled/react/providers/ConfirmDialog/index.d.ts +7 -0
- package/transpiled/react/providers/ConfirmDialog/index.js +73 -0
- package/transpiled/react/providers/CozyTheme/CozyThemeWithQuery.d.ts +2 -0
- package/transpiled/react/providers/CozyTheme/CozyThemeWithQuery.js +25 -0
- package/transpiled/react/providers/CozyTheme/DumbCozyTheme.d.ts +18 -0
- package/transpiled/react/providers/CozyTheme/DumbCozyTheme.js +50 -0
- package/transpiled/react/providers/CozyTheme/index.d.ts +31 -0
- package/transpiled/react/providers/CozyTheme/index.js +53 -0
- package/transpiled/react/providers/CozyTheme/queries.d.ts +8 -0
- package/transpiled/react/providers/CozyTheme/queries.js +13 -0
- package/transpiled/react/providers/DemoProvider.d.ts +7 -0
- package/transpiled/react/providers/DemoProvider.js +48 -0
- package/transpiled/react/providers/Encrypted/index.d.ts +8 -0
- package/transpiled/react/providers/Encrypted/index.js +24 -0
- package/transpiled/react/providers/I18n/createUseI18n.d.ts +6 -0
- package/transpiled/react/providers/I18n/createUseI18n.js +39 -0
- package/transpiled/react/providers/I18n/format.d.ts +3 -0
- package/transpiled/react/providers/I18n/format.js +72 -0
- package/transpiled/react/providers/I18n/format.spec.d.ts +1 -0
- package/transpiled/react/providers/I18n/helpers.d.ts +5 -0
- package/transpiled/react/providers/I18n/helpers.js +35 -0
- package/transpiled/react/providers/I18n/index.d.ts +62 -0
- package/transpiled/react/providers/I18n/index.js +132 -0
- package/transpiled/react/providers/I18n/index.spec.d.ts +1 -0
- package/transpiled/react/providers/I18n/translate.d.ts +3 -0
- package/transpiled/react/providers/I18n/translate.js +21 -0
- package/transpiled/react/providers/I18n/translation.d.ts +3 -0
- package/transpiled/react/providers/I18n/translation.js +40 -0
- package/transpiled/react/providers/I18n/useExtendI18n.d.ts +7 -0
- package/transpiled/react/providers/I18n/useExtendI18n.js +42 -0
- package/transpiled/react/providers/I18n/withLocales.d.ts +8 -0
- package/transpiled/react/providers/I18n/withLocales.js +69 -0
- package/transpiled/react/providers/I18n/withLocales.spec.d.ts +1 -0
- package/transpiled/react/providers/I18n/withOnlyLocales.d.ts +8 -0
- package/transpiled/react/providers/I18n/withOnlyLocales.js +39 -0
- package/transpiled/react/providers/Intent/index.d.ts +9 -0
- package/transpiled/react/providers/Intent/index.js +104 -0
- package/transpiled/react/providers/Selection/index.d.ts +6 -0
- package/transpiled/react/providers/Selection/index.js +94 -0
- package/transpiled/react/styles/index.d.ts +1 -0
- package/transpiled/react/styles/index.js +1 -0
- package/transpiled/react/stylesheet.css +1 -0
- package/transpiled/react/types.d.js +0 -0
- package/transpiled/react/types.js +28 -0
- package/transpiled/react/utils/Dnd/CustomDrag/CustomDragLayer.d.ts +4 -0
- package/transpiled/react/utils/Dnd/CustomDrag/CustomDragLayer.js +47 -0
- package/transpiled/react/utils/Dnd/CustomDrag/DragPreview.d.ts +6 -0
- package/transpiled/react/utils/Dnd/CustomDrag/DragPreview.js +34 -0
- package/transpiled/react/utils/Dnd/CustomDrag/DragPreviewWrapper.d.ts +8 -0
- package/transpiled/react/utils/Dnd/CustomDrag/DragPreviewWrapper.js +63 -0
- package/transpiled/react/utils/Dnd/DnDConfigWrapper.d.ts +2 -0
- package/transpiled/react/utils/Dnd/DnDConfigWrapper.js +55 -0
- package/transpiled/react/utils/color.d.ts +2 -0
- package/transpiled/react/utils/color.js +28 -0
- package/transpiled/react/utils/color.spec.d.ts +1 -0
- package/transpiled/react/utils/dom.d.ts +1 -0
- package/transpiled/react/utils/dom.js +11 -0
- package/transpiled/react/utils/index.d.ts +1 -0
- package/transpiled/react/utils/index.js +1 -0
- package/transpiled/react/utils/react.d.ts +5 -0
- package/transpiled/react/utils/react.js +47 -0
- package/transpiled/react/utils.d.ts +5 -0
- package/transpiled/react/utils.js +23 -0
- package/react/Icon/icons-sprite.js +0 -178
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [131.2.0](https://github.com/cozy/cozy-ui/compare/v131.1.0...v131.2.0) (2025-10-27)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* Change peerDep config for `react` and `react-dom` ([a923bfc](https://github.com/cozy/cozy-ui/commit/a923bfc))
|
|
7
|
+
|
|
1
8
|
# [131.1.0](https://github.com/cozy/cozy-ui/compare/v131.0.1...v131.1.0) (2025-10-22)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
html{--primaryFont:Inter,Lato,sans-serif}body,body button,body input,body optgroup,body select,body textarea{font-family:var(--primaryFont)}@-webkit-keyframes spin{from{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes spin{from{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@-webkit-keyframes shake{10%,90%{-webkit-transform:translate3d(-1px,0,0);transform:translate3d(-1px,0,0)}20%,80%{-webkit-transform:translate3d(2px,0,0);transform:translate3d(2px,0,0)}30%,50%,70%{-webkit-transform:translate3d(-4px,0,0);transform:translate3d(-4px,0,0)}40%,60%{-webkit-transform:translate3d(4px,0,0);transform:translate3d(4px,0,0)}}@keyframes shake{10%,90%{-webkit-transform:translate3d(-1px,0,0);transform:translate3d(-1px,0,0)}20%,80%{-webkit-transform:translate3d(2px,0,0);transform:translate3d(2px,0,0)}30%,50%,70%{-webkit-transform:translate3d(-4px,0,0);transform:translate3d(-4px,0,0)}40%,60%{-webkit-transform:translate3d(4px,0,0);transform:translate3d(4px,0,0)}}html,.TwakeTheme--light-normal{--primaryColorLightest:#e3f1ff;--primaryColorLight:#d2e9ff;--primaryColor:#0a84ff;--primaryColorDark:#006bd8;--primaryContrastTextColor:#fff;--primaryBackground:rgba(10,132,255,0.12);--secondaryColorLightest:#e8f0fa;--secondaryColorLight:#d1e0f2;--secondaryColor:#5c9ce6;--secondaryColorDark:#5085c3;--secondaryContrastTextColor:#fff;--secondaryBackground:rgba(92,156,230,0.12);--primaryBackgroundLight:#f6fbff;--paperBackgroundColor:#fff;--defaultBackgroundColor:#f3f6f9;--contrastBackgroundColor:rgba(66,66,68,0.048);--primaryTextColor:rgba(66,66,68,0.9);--secondaryTextColor:rgba(66,66,68,0.64);--disabledTextColor:rgba(66,66,68,0.32);--hintTextColor:rgba(66,66,68,0.32);--iconTextColor:rgba(66,66,68,0.72);--actionColorActive:rgba(66,66,68,0.56);--actionColorHover:rgba(66,66,68,0.04);--actionColorSelected:rgba(66,66,68,0.08);--actionColorDisabled:rgba(66,66,68,0.24);--actionColorDisabledBackground:rgba(66,66,68,0.12);--actionColorFocus:rgba(66,66,68,0.12);--actionColorGhost:rgba(66,66,68,0.08);--actionColorHoverGhost:rgba(66,66,68,0.16);--borderMainColor:rgba(66,66,68,0.16);--borderDisabledColor:rgba(66,66,68,0.08);--borderGhostColor:rgba(66,66,68,0.48);--borderGhostDisabledColor:rgba(66,66,68,0.16);--dividerColor:rgba(66,66,68,0.12);--successColorLight:#b9f6ca;--successColor:#00c853;--successColorDark:#00ad48;--successColorContrastText:#fff;--successBackground:rgba(0,200,83,0.12);--warningColorLight:#ffe082;--warningColor:#ff8f00;--warningColorDark:#ff6f00;--warningColorContrastText:#fff;--errorColorLightest:#fceeee;--errorColorLight:#ffd2d7;--errorColor:#ff3347;--errorColorDark:#d32c3c;--errorBackground:rgba(255,51,71,0.12);--errorColorContrastText:#fff;--infoColorLight:#affdff;--infoColor:#00bfa5;--infoColorDark:#00796b;--infoColorContrastText:#fff;--shadow0:none;--shadow1:0 2px 4px 0 rgba(66,66,68,0.08),0 4px 16px 0 rgba(66,66,68,0.06),0 0 0 .5px rgba(66,66,68,0.12);--shadow2:0 3px 5px 0 rgba(66,66,68,0.09),0 4px 17px 0 rgba(66,66,68,0.07),0 0 0 .5px rgba(66,66,68,0.12);--shadow3:0 3px 5px -1px rgba(66,66,68,0.09),0 5px 19px 1px rgba(66,66,68,0.08),0 0 0 .5px rgba(66,66,68,0.12);--shadow4:0 3px 6px -1px rgba(66,66,68,0.1),0 5px 20px 1px rgba(66,66,68,0.08),0 0 0 .5px rgba(66,66,68,0.12);--shadow5:0 4px 6px -1px rgba(66,66,68,0.11),0 5px 22px 1px rgba(66,66,68,0.09),0 0 0 .5px rgba(66,66,68,0.12);--shadow6:0 4px 7px -2px rgba(66,66,68,0.11),0 6px 23px 2px rgba(66,66,68,0.1),0 0 0 .5px rgba(66,66,68,0.12);--shadow7:0 5px 7px -2px rgba(66,66,68,0.12),0 6px 24px 2px rgba(66,66,68,0.11),0 0 0 .5px rgba(66,66,68,0.12);--shadow8:0 5px 8px -2px rgba(66,66,68,0.13),0 6px 26px 2px rgba(66,66,68,0.11),0 0 0 .5px rgba(66,66,68,0.12);--shadow9:0 5px 8px -3px rgba(66,66,68,0.14),0 7px 27px 3px rgba(66,66,68,0.12),0 0 0 .5px rgba(66,66,68,0.12);--shadow10:0 6px 9px -3px rgba(66,66,68,0.14),0 7px 29px 3px rgba(66,66,68,0.13),0 0 0 .5px rgba(66,66,68,0.12);--shadow11:0 6px 9px -3px rgba(66,66,68,0.15),0 7px 30px 3px rgba(66,66,68,0.14),0 0 0 .5px rgba(66,66,68,0.12);--shadow12:0 7px 10px -4px rgba(66,66,68,0.16),0 8px 31px 4px rgba(66,66,68,0.15),0 0 0 .5px rgba(66,66,68,0.12);--shadow13:0 7px 10px -4px rgba(66,66,68,0.16),0 8px 33px 4px rgba(66,66,68,0.15),0 0 0 .5px rgba(66,66,68,0.12);--shadow14:0 8px 11px -5px rgba(66,66,68,0.17),0 9px 34px 5px rgba(66,66,68,0.16),0 0 0 .5px rgba(66,66,68,0.12);--shadow15:0 8px 11px -5px rgba(66,66,68,0.18),0 9px 35px 5px rgba(66,66,68,0.17),0 0 0 .5px rgba(66,66,68,0.12);--shadow16:0 9px 12px -5px rgba(66,66,68,0.18),0 9px 37px 5px rgba(66,66,68,0.18),0 0 0 .5px rgba(66,66,68,0.12);--shadow17:0 9px 12px -6px rgba(66,66,68,0.19),0 10px 38px 6px rgba(66,66,68,0.19),0 0 0 .5px rgba(66,66,68,0.12);--shadow18:0 9px 13px -6px rgba(66,66,68,0.2),0 10px 40px 6px rgba(66,66,68,0.19),0 0 0 .5px rgba(66,66,68,0.12);--shadow19:0 10px 13px -6px rgba(66,66,68,0.21),0 10px 41px 6px rgba(66,66,68,0.2),0 0 0 .5px rgba(66,66,68,0.12);--shadow20:0 10px 14px -7px rgba(66,66,68,0.21),0 11px 42px 7px rgba(66,66,68,0.21),0 0 0 .5px rgba(66,66,68,0.12);--shadow21:0 11px 14px -7px rgba(66,66,68,0.22),0 11px 44px 7px rgba(66,66,68,0.22),0 0 0 .5px rgba(66,66,68,0.12);--shadow22:0 11px 15px -7px rgba(66,66,68,0.23),0 11px 45px 7px rgba(66,66,68,0.22),0 0 0 .5px rgba(66,66,68,0.12);--shadow23:0 12px 15px -8px rgba(66,66,68,0.23),0 12px 47px 8px rgba(66,66,68,0.23),0 0 0 .5px rgba(66,66,68,0.12);--shadow24:0 12px 16px -8px rgba(66,66,68,0.24),0 12px 48px 8px rgba(66,66,68,0.24),0 0 0 .5px rgba(66,66,68,0.12);--shadow25:0 1px 4px rgba(66,66,68,0.04)}.TwakeTheme--light-inverted{--primaryTextColor:#fff;--secondaryTextColor:rgba(255,255,255,0.64);--disabledTextColor:rgba(255,255,255,0.4);--hintTextColor:rgba(255,255,255,0.4);--iconTextColor:#fff;--actionColorActive:#fff;--actionColorHover:rgba(255,255,255,0.08);--actionColorSelected:rgba(255,255,255,0.16);--actionColorDisabled:rgba(255,255,255,0.32);--actionColorDisabledBackground:rgba(255,255,255,0.12);--actionColorFocus:rgba(255,255,255,0.24);--actionColorGhost:rgba(255,255,255,0.08);--actionColorHoverGhost:rgba(255,255,255,0.16);--dividerColor:rgba(255,255,255,0.16);--borderMainColor:rgba(255,255,255,0.24);--borderDisabledColor:rgba(255,255,255,0.12);--borderGhostColor:rgba(255,255,255,0.48);--borderGhostDisabledColor:rgba(255,255,255,0.24);--paperBackgroundColor:#2c3039;--defaultBackgroundColor:#2c3039;--contrastBackgroundColor:rgba(255,255,255,0.12);--primaryColorLight:#fff;--primaryColor:#fff;--primaryColorDark:#e3f1ff;--primaryContrastTextColor:#2c3039;--primaryBackground:rgba(255,255,255,0.24);--secondaryColorLight:#d1e0f2;--secondaryColor:#5c9ce6;--secondaryColorDark:#5085c3;--secondaryContrastTextColor:#fff;--secondaryBackground:rgba(92,156,230,0.12);--errorColorLight:#fceeee;--errorColor:#ffd2d7;--errorColorDark:#ff939d;--errorColorContrastText:rgba(66,66,68,0.9);--errorBackground:#d32c3c;--errorBackground:rgba(255,210,215,0.24);--warningColorLight:#ffecb3;--warningColor:#ffe082;--warningColorDark:#ffd54f;--warningColorContrastText:rgba(66,66,68,0.9);--successColorLight:#e3ffe7;--successColor:#b9f6ca;--successColorDark:#97eca1;--successColorContrastText:rgba(66,66,68,0.9);--successBackground:rgba(185,246,202,0.24);--infoColorLight:#d4feff;--infoColor:#affdff;--infoColorDark:#86f5f7;--infoColorContrastText:rgba(66,66,68,0.9);--shadow0:none;--shadow1:0 2px 4px 0 rgba(0,0,0,0.08),0 4px 16px 0 rgba(0,0,0,0.06),0 0 0 .5px rgba(0,0,0,0.12);--shadow2:0 3px 5px 0 rgba(0,0,0,0.09),0 4px 17px 0 rgba(0,0,0,0.07),0 0 0 .5px rgba(0,0,0,0.12);--shadow3:0 3px 5px -1px rgba(0,0,0,0.09),0 5px 19px 1px rgba(0,0,0,0.08),0 0 0 .5px rgba(0,0,0,0.12);--shadow4:0 3px 6px -1px rgba(0,0,0,0.1),0 5px 20px 1px rgba(0,0,0,0.08),0 0 0 .5px rgba(0,0,0,0.12);--shadow5:0 4px 6px -1px rgba(0,0,0,0.11),0 5px 22px 1px rgba(0,0,0,0.09),0 0 0 .5px rgba(0,0,0,0.12);--shadow6:0 4px 7px -2px rgba(0,0,0,0.11),0 6px 23px 2px rgba(0,0,0,0.1),0 0 0 .5px rgba(0,0,0,0.12);--shadow7:0 5px 7px -2px rgba(0,0,0,0.12),0 6px 24px 2px rgba(0,0,0,0.11),0 0 0 .5px rgba(0,0,0,0.12);--shadow8:0 5px 8px -2px rgba(0,0,0,0.13),0 6px 26px 2px rgba(0,0,0,0.11),0 0 0 .5px rgba(0,0,0,0.12);--shadow9:0 5px 8px -3px rgba(0,0,0,0.14),0 7px 27px 3px rgba(0,0,0,0.12),0 0 0 .5px rgba(0,0,0,0.12);--shadow10:0 6px 9px -3px rgba(0,0,0,0.14),0 7px 29px 3px rgba(0,0,0,0.13),0 0 0 .5px rgba(0,0,0,0.12);--shadow11:0 6px 9px -3px rgba(0,0,0,0.15),0 7px 30px 3px rgba(0,0,0,0.14),0 0 0 .5px rgba(0,0,0,0.12);--shadow12:0 7px 10px -4px rgba(0,0,0,0.16),0 8px 31px 4px rgba(0,0,0,0.15),0 0 0 .5px rgba(0,0,0,0.12);--shadow13:0 7px 10px -4px rgba(0,0,0,0.16),0 8px 33px 4px rgba(0,0,0,0.15),0 0 0 .5px rgba(0,0,0,0.12);--shadow14:0 8px 11px -5px rgba(0,0,0,0.17),0 9px 34px 5px rgba(0,0,0,0.16),0 0 0 .5px rgba(0,0,0,0.12);--shadow15:0 8px 11px -5px rgba(0,0,0,0.18),0 9px 35px 5px rgba(0,0,0,0.17),0 0 0 .5px rgba(0,0,0,0.12);--shadow16:0 9px 12px -5px rgba(0,0,0,0.18),0 9px 37px 5px rgba(0,0,0,0.18),0 0 0 .5px rgba(0,0,0,0.12);--shadow17:0 9px 12px -6px rgba(0,0,0,0.19),0 10px 38px 6px rgba(0,0,0,0.19),0 0 0 .5px rgba(0,0,0,0.12);--shadow18:0 9px 13px -6px rgba(0,0,0,0.2),0 10px 40px 6px rgba(0,0,0,0.19),0 0 0 .5px rgba(0,0,0,0.12);--shadow19:0 10px 13px -6px rgba(0,0,0,0.21),0 10px 41px 6px rgba(0,0,0,0.2),0 0 0 .5px rgba(0,0,0,0.12);--shadow20:0 10px 14px -7px rgba(0,0,0,0.21),0 11px 42px 7px rgba(0,0,0,0.21),0 0 0 .5px rgba(0,0,0,0.12);--shadow21:0 11px 14px -7px rgba(0,0,0,0.22),0 11px 44px 7px rgba(0,0,0,0.22),0 0 0 .5px rgba(0,0,0,0.12);--shadow22:0 11px 15px -7px rgba(0,0,0,0.23),0 11px 45px 7px rgba(0,0,0,0.22),0 0 0 .5px rgba(0,0,0,0.12);--shadow23:0 12px 15px -8px rgba(0,0,0,0.23),0 12px 47px 8px rgba(0,0,0,0.23),0 0 0 .5px rgba(0,0,0,0.12);--shadow24:0 12px 16px -8px rgba(0,0,0,0.24),0 12px 48px 8px rgba(0,0,0,0.24),0 0 0 .5px rgba(0,0,0,0.12);--shadow25:0 1px 4px rgba(0,0,0,0.04)}.TwakeTheme--dark-normal{--primaryTextColor:#fff;--secondaryTextColor:rgba(255,255,255,0.64);--disabledTextColor:rgba(255,255,255,0.4);--hintTextColor:rgba(255,255,255,0.4);--iconTextColor:#fff;--actionColorActive:#fff;--actionColorHover:rgba(255,255,255,0.08);--actionColorSelected:rgba(255,255,255,0.16);--actionColorDisabled:rgba(255,255,255,0.32);--actionColorDisabledBackground:rgba(255,255,255,0.12);--actionColorFocus:rgba(255,255,255,0.24);--actionColorGhost:rgba(255,255,255,0.08);--actionColorHoverGhost:rgba(255,255,255,0.16);--dividerColor:rgba(255,255,255,0.16);--borderMainColor:rgba(255,255,255,0.24);--borderDisabledColor:rgba(255,255,255,0.12);--borderGhostColor:rgba(255,255,255,0.48);--borderGhostDisabledColor:rgba(255,255,255,0.24);--paperBackgroundColor:#4e5052;--defaultBackgroundColor:#2c3039;--contrastBackgroundColor:rgba(255,255,255,0.072);--primaryColorLight:#bfdfff;--primaryColor:#7bbdff;--primaryColorDark:#46a2ff;--primaryContrastTextColor:rgba(66,66,68,0.9);--primaryBackground:rgba(123,189,255,0.24);--secondaryColorLight:#e1e3e6;--secondaryColor:#c5c7ca;--secondaryColorDark:#aaacae;--secondaryContrastTextColor:rgba(66,66,68,0.9);--secondaryBackground:rgba(197,199,202,0.24);--errorColorLight:#ff939d;--errorColor:#ff7a87;--errorColorDark:#ff4d5e;--errorColorContrastText:rgba(66,66,68,0.9);--errorBackground:rgba(255,122,135,0.24);--warningColorLight:#ffd54f;--warningColor:#ffca28;--warningColorDark:#ffb300;--warningColorContrastText:rgba(66,66,68,0.9);--successColorLight:#97eca1;--successColor:#66e475;--successColorDark:#38c949;--successColorContrastText:rgba(66,66,68,0.9);--successBackground:rgba(102,228,117,0.24);--infoColorLight:#86f5f7;--infoColor:#4ee2e5;--infoColorDark:#1de9b6;--infoColorContrastText:rgba(66,66,68,0.9);--shadow0:none;--shadow1:0 2px 4px 0 rgba(0,0,0,0.08),0 4px 16px 0 rgba(0,0,0,0.06),0 0 0 .5px rgba(0,0,0,0.12);--shadow2:0 3px 5px 0 rgba(0,0,0,0.09),0 4px 17px 0 rgba(0,0,0,0.07),0 0 0 .5px rgba(0,0,0,0.12);--shadow3:0 3px 5px -1px rgba(0,0,0,0.09),0 5px 19px 1px rgba(0,0,0,0.08),0 0 0 .5px rgba(0,0,0,0.12);--shadow4:0 3px 6px -1px rgba(0,0,0,0.1),0 5px 20px 1px rgba(0,0,0,0.08),0 0 0 .5px rgba(0,0,0,0.12);--shadow5:0 4px 6px -1px rgba(0,0,0,0.11),0 5px 22px 1px rgba(0,0,0,0.09),0 0 0 .5px rgba(0,0,0,0.12);--shadow6:0 4px 7px -2px rgba(0,0,0,0.11),0 6px 23px 2px rgba(0,0,0,0.1),0 0 0 .5px rgba(0,0,0,0.12);--shadow7:0 5px 7px -2px rgba(0,0,0,0.12),0 6px 24px 2px rgba(0,0,0,0.11),0 0 0 .5px rgba(0,0,0,0.12);--shadow8:0 5px 8px -2px rgba(0,0,0,0.13),0 6px 26px 2px rgba(0,0,0,0.11),0 0 0 .5px rgba(0,0,0,0.12);--shadow9:0 5px 8px -3px rgba(0,0,0,0.14),0 7px 27px 3px rgba(0,0,0,0.12),0 0 0 .5px rgba(0,0,0,0.12);--shadow10:0 6px 9px -3px rgba(0,0,0,0.14),0 7px 29px 3px rgba(0,0,0,0.13),0 0 0 .5px rgba(0,0,0,0.12);--shadow11:0 6px 9px -3px rgba(0,0,0,0.15),0 7px 30px 3px rgba(0,0,0,0.14),0 0 0 .5px rgba(0,0,0,0.12);--shadow12:0 7px 10px -4px rgba(0,0,0,0.16),0 8px 31px 4px rgba(0,0,0,0.15),0 0 0 .5px rgba(0,0,0,0.12);--shadow13:0 7px 10px -4px rgba(0,0,0,0.16),0 8px 33px 4px rgba(0,0,0,0.15),0 0 0 .5px rgba(0,0,0,0.12);--shadow14:0 8px 11px -5px rgba(0,0,0,0.17),0 9px 34px 5px rgba(0,0,0,0.16),0 0 0 .5px rgba(0,0,0,0.12);--shadow15:0 8px 11px -5px rgba(0,0,0,0.18),0 9px 35px 5px rgba(0,0,0,0.17),0 0 0 .5px rgba(0,0,0,0.12);--shadow16:0 9px 12px -5px rgba(0,0,0,0.18),0 9px 37px 5px rgba(0,0,0,0.18),0 0 0 .5px rgba(0,0,0,0.12);--shadow17:0 9px 12px -6px rgba(0,0,0,0.19),0 10px 38px 6px rgba(0,0,0,0.19),0 0 0 .5px rgba(0,0,0,0.12);--shadow18:0 9px 13px -6px rgba(0,0,0,0.2),0 10px 40px 6px rgba(0,0,0,0.19),0 0 0 .5px rgba(0,0,0,0.12);--shadow19:0 10px 13px -6px rgba(0,0,0,0.21),0 10px 41px 6px rgba(0,0,0,0.2),0 0 0 .5px rgba(0,0,0,0.12);--shadow20:0 10px 14px -7px rgba(0,0,0,0.21),0 11px 42px 7px rgba(0,0,0,0.21),0 0 0 .5px rgba(0,0,0,0.12);--shadow21:0 11px 14px -7px rgba(0,0,0,0.22),0 11px 44px 7px rgba(0,0,0,0.22),0 0 0 .5px rgba(0,0,0,0.12);--shadow22:0 11px 15px -7px rgba(0,0,0,0.23),0 11px 45px 7px rgba(0,0,0,0.22),0 0 0 .5px rgba(0,0,0,0.12);--shadow23:0 12px 15px -8px rgba(0,0,0,0.23),0 12px 47px 8px rgba(0,0,0,0.23),0 0 0 .5px rgba(0,0,0,0.12);--shadow24:0 12px 16px -8px rgba(0,0,0,0.24),0 12px 48px 8px rgba(0,0,0,0.24),0 0 0 .5px rgba(0,0,0,0.12);--shadow25:0 1px 4px rgba(0,0,0,0.04)}.TwakeTheme--dark-inverted{--primaryTextColor:rgba(66,66,68,0.9);--secondaryTextColor:rgba(66,66,68,0.48);--disabledTextColor:rgba(66,66,68,0.32);--hintTextColor:rgba(66,66,68,0.32);--iconTextColor:rgba(66,66,68,0.72);--actionColorActive:rgba(66,66,68,0.56);--actionColorHover:rgba(66,66,68,0.04);--actionColorSelected:rgba(66,66,68,0.08);--actionColorDisabled:rgba(66,66,68,0.24);--actionColorDisabledBackground:rgba(66,66,68,0.12);--actionColorFocus:rgba(66,66,68,0.12);--actionColorGhost:rgba(66,66,68,0.08);--actionColorHoverGhost:rgba(66,66,68,0.16);--dividerColor:rgba(66,66,68,0.12);--borderMainColor:rgba(66,66,68,0.16);--borderDisabledColor:rgba(66,66,68,0.08);--borderGhostColor:rgba(66,66,68,0.48);--borderGhostDisabledColor:rgba(66,66,68,0.16);--paperBackgroundColor:#7bbdff;--defaultBackgroundColor:#7bbdff;--contrastBackgroundColor:rgba(66,66,68,0.08);--primaryColorLight:#757779;--primaryColor:#4e5052;--primaryColorDark:#2c3039;--primaryContrastTextColor:#fff;--primaryBackground:rgba(78,80,82,0.12);--secondaryColorLight:#757779;--secondaryColor:#4e5052;--secondaryColorDark:#2c3039;--secondaryContrastTextColor:#fff;--secondaryBackground:rgba(78,80,82,0.12);--errorColorLight:#d32c3c;--errorColor:#b52c39;--errorColorDark:;--errorColorContrastText:#fff;--errorBackground:;--errorBackground:rgba(181,44,57,0.12);--warningColorLight:#ff6f00;--warningColor:#b5672c;--warningColorDark:;--warningColorContrastText:#fff;--successColorLight:#00ad48;--successColor:#245538;--successColorDark:;--successColorContrastText:#fff;--successBackground:rgba(36,85,56,0.12);--infoColorLight:#00796b;--infoColor:#004345;--infoColorDark:;--infoColorContrastText:#fff;--shadow0:none;--shadow1:0 2px 4px 0 rgba(0,0,0,0.08),0 4px 16px 0 rgba(0,0,0,0.06),0 0 0 .5px rgba(0,0,0,0.12);--shadow2:0 3px 5px 0 rgba(0,0,0,0.09),0 4px 17px 0 rgba(0,0,0,0.07),0 0 0 .5px rgba(0,0,0,0.12);--shadow3:0 3px 5px -1px rgba(0,0,0,0.09),0 5px 19px 1px rgba(0,0,0,0.08),0 0 0 .5px rgba(0,0,0,0.12);--shadow4:0 3px 6px -1px rgba(0,0,0,0.1),0 5px 20px 1px rgba(0,0,0,0.08),0 0 0 .5px rgba(0,0,0,0.12);--shadow5:0 4px 6px -1px rgba(0,0,0,0.11),0 5px 22px 1px rgba(0,0,0,0.09),0 0 0 .5px rgba(0,0,0,0.12);--shadow6:0 4px 7px -2px rgba(0,0,0,0.11),0 6px 23px 2px rgba(0,0,0,0.1),0 0 0 .5px rgba(0,0,0,0.12);--shadow7:0 5px 7px -2px rgba(0,0,0,0.12),0 6px 24px 2px rgba(0,0,0,0.11),0 0 0 .5px rgba(0,0,0,0.12);--shadow8:0 5px 8px -2px rgba(0,0,0,0.13),0 6px 26px 2px rgba(0,0,0,0.11),0 0 0 .5px rgba(0,0,0,0.12);--shadow9:0 5px 8px -3px rgba(0,0,0,0.14),0 7px 27px 3px rgba(0,0,0,0.12),0 0 0 .5px rgba(0,0,0,0.12);--shadow10:0 6px 9px -3px rgba(0,0,0,0.14),0 7px 29px 3px rgba(0,0,0,0.13),0 0 0 .5px rgba(0,0,0,0.12);--shadow11:0 6px 9px -3px rgba(0,0,0,0.15),0 7px 30px 3px rgba(0,0,0,0.14),0 0 0 .5px rgba(0,0,0,0.12);--shadow12:0 7px 10px -4px rgba(0,0,0,0.16),0 8px 31px 4px rgba(0,0,0,0.15),0 0 0 .5px rgba(0,0,0,0.12);--shadow13:0 7px 10px -4px rgba(0,0,0,0.16),0 8px 33px 4px rgba(0,0,0,0.15),0 0 0 .5px rgba(0,0,0,0.12);--shadow14:0 8px 11px -5px rgba(0,0,0,0.17),0 9px 34px 5px rgba(0,0,0,0.16),0 0 0 .5px rgba(0,0,0,0.12);--shadow15:0 8px 11px -5px rgba(0,0,0,0.18),0 9px 35px 5px rgba(0,0,0,0.17),0 0 0 .5px rgba(0,0,0,0.12);--shadow16:0 9px 12px -5px rgba(0,0,0,0.18),0 9px 37px 5px rgba(0,0,0,0.18),0 0 0 .5px rgba(0,0,0,0.12);--shadow17:0 9px 12px -6px rgba(0,0,0,0.19),0 10px 38px 6px rgba(0,0,0,0.19),0 0 0 .5px rgba(0,0,0,0.12);--shadow18:0 9px 13px -6px rgba(0,0,0,0.2),0 10px 40px 6px rgba(0,0,0,0.19),0 0 0 .5px rgba(0,0,0,0.12);--shadow19:0 10px 13px -6px rgba(0,0,0,0.21),0 10px 41px 6px rgba(0,0,0,0.2),0 0 0 .5px rgba(0,0,0,0.12);--shadow20:0 10px 14px -7px rgba(0,0,0,0.21),0 11px 42px 7px rgba(0,0,0,0.21),0 0 0 .5px rgba(0,0,0,0.12);--shadow21:0 11px 14px -7px rgba(0,0,0,0.22),0 11px 44px 7px rgba(0,0,0,0.22),0 0 0 .5px rgba(0,0,0,0.12);--shadow22:0 11px 15px -7px rgba(0,0,0,0.23),0 11px 45px 7px rgba(0,0,0,0.22),0 0 0 .5px rgba(0,0,0,0.12);--shadow23:0 12px 15px -8px rgba(0,0,0,0.23),0 12px 47px 8px rgba(0,0,0,0.23),0 0 0 .5px rgba(0,0,0,0.12);--shadow24:0 12px 16px -8px rgba(0,0,0,0.24),0 12px 48px 8px rgba(0,0,0,0.24),0 0 0 .5px rgba(0,0,0,0.12);--shadow25:0 1px 4px rgba(0,0,0,0.04)}html{--grey0:#fff;--grey50:#fbfdff;--grey100:#f3f6f9;--grey200:#edf2f7;--grey300:#e1e3e6;--grey400:#c5c7ca;--grey500:#aaacae;--grey600:#909294;--grey700:#757779;--grey800:#4e5052;--grey900:#424244;--greyA100:#fcfcfc;--greyA200:#e5ecf3;--greyA400:#2c3039;--greyA700:#5d6169;--white:#fff;--paleGrey:#f5f6f7;--silver:#d6d8da;--coolGrey:#95999d;--slateGrey:#5d6165;--charcoalGrey:#32363f;--black:#000;--overlay:rgba(50,54,63,0.5);--zircon:#f5faff;--dodgerBlue:#297ef2;--scienceBlue:#0b61d6;--weirdGreen:#40de8e;--emerald:#35ce68;--malachite:#08b442;--mango:#ff962f;--chablis:#fff2f2;--yourPink:#fdcbcb;--fuchsia:#fc4c83;--pomegranate:#f52d2d;--monza:#dd0505}.u-elevation-0{box-shadow:none !important}.u-elevation-1{box-shadow:0 4px 12px 0 rgba(0,0,0,0.08);border:1px solid rgba(0,0,0,0.08)}html{--zIndex-below:-1;--zIndex-app:0;--zIndex-low:1;--zIndex-alertMobile:10;--zIndex-nav:20;--zIndex-bar:31;--zIndex-selection:40;--zIndex-popover:30;--zIndex-overlay:50;--zIndex-fileActionMenu:60;--zIndex-drawer:60;--zIndex-modal:70;--zIndex-modal-footer:71;--zIndex-modal-toolbar:72;--zIndex-alert:80}/* normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
|
|
2
|
+
html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}:root{--safe-area-inset-top:env(safe-area-inset-top);--safe-area-inset-right:env(safe-area-inset-right);--safe-area-inset-bottom:env(safe-area-inset-bottom);--safe-area-inset-left:env(safe-area-inset-left)}html{font-size:100%;height:100%}body{font:100%/1.5;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:flex;flex-direction:column;align-items:stretch;width:100vw;height:100%;margin:0}[role=application]{display:flex;height:inherit;flex:1 1 100%;overflow:hidden auto}[data-input=radio],[data-input=checkbox]{display:flex}[data-input=radio] input[type=radio],[data-input=checkbox] input[type=radio],[data-input=radio] input[type=checkbox],[data-input=checkbox] input[type=checkbox]{display:none !important;visibility:hidden !important}[data-input=radio] label,[data-input=checkbox] label{position:relative;display:inline-block;width:1rem;height:1rem;padding-left:1.4rem;cursor:pointer}[data-input=radio] label::before,[data-input=checkbox] label::before,[data-input=radio] label::after,[data-input=checkbox] label::after{content:'';position:absolute;left:0;top:0;box-sizing:border-box;width:1rem;height:1rem}[data-input=radio] label::before,[data-input=checkbox] label::before{transition:box-shadow 350ms cubic-bezier(0,.89,.44,1)}[data-input=radio] label::after,[data-input=checkbox] label::after{transition-duration:.2s;transition-property:opacity,-webkit-transform;transition-property:opacity,transform;transition-property:opacity,transform,-webkit-transform}.c-label{text-transform:uppercase;color:var(--secondaryTextColor);font-size:.813rem;font-weight:bold;line-height:1rem}.c-label.is-error{color:var(--errorColor)}.c-label--block{display:block;padding:.5rem 0}.c-input-text[aria-disabled=true],.c-input-text[disabled],.c-textarea[aria-disabled=true],.c-textarea[disabled],.c-select[aria-disabled=true],.c-select[disabled],.wizard-select[aria-disabled=true],.wizard-select[disabled]{cursor:not-allowed;background-color:var(--actionColorDisabledBackground);color:var(--actionColorDisabled)}.c-input-text[aria-disabled=true]:hover,.c-input-text[disabled]:hover,.c-textarea[aria-disabled=true]:hover,.c-textarea[disabled]:hover,.c-select[aria-disabled=true]:hover,.c-select[disabled]:hover,.wizard-select[aria-disabled=true]:hover,.wizard-select[disabled]:hover,.c-input-text[aria-disabled=true]:focus,.c-input-text[disabled]:focus,.c-textarea[aria-disabled=true]:focus,.c-textarea[disabled]:focus,.c-select[aria-disabled=true]:focus,.c-select[disabled]:focus,.wizard-select[aria-disabled=true]:focus,.wizard-select[disabled]:focus{border:.063rem solid var(--borderMainColor)}.c-input-text,.c-textarea,.c-select,.wizard-select{display:inline-block;width:100%;max-width:32rem;padding:.813rem 1rem;box-sizing:border-box;border-radius:.188rem;background:var(--paperBackgroundColor);border:.063rem solid var(--borderMainColor);font-size:1rem;line-height:1.25;color:var(--primaryTextColor);outline:0}.c-input-text::-webkit-input-placeholder,.c-textarea::-webkit-input-placeholder,.c-select::-webkit-input-placeholder,.wizard-select::-webkit-input-placeholder{color:var(--secondaryTextColor);font-size:1rem}.c-input-text::placeholder,.c-textarea::placeholder,.c-select::placeholder,.wizard-select::placeholder{color:var(--secondaryTextColor);font-size:1rem}.c-input-text:hover,.c-textarea:hover,.c-select:hover,.wizard-select:hover{border:.063rem solid var(--hintTextColor)}.c-input-text:focus,.c-textarea:focus,.c-select:focus,.wizard-select:focus{border:.063rem solid var(--primaryColor);outline:0}.c-input-text.is-error,.c-textarea.is-error,.c-select.is-error,.wizard-select.is-error,.c-input-text:not(:focus):invalid,.c-textarea:not(:focus):invalid,.c-select:not(:focus):invalid,.wizard-select:not(:focus):invalid{border:.063rem solid var(--errorColor)}.c-input-text--tiny,.c-textarea--tiny,.c-select--tiny{border-radius:.125rem;padding:.25rem .5rem .375rem}.c-input-text--medium,.c-textarea--medium,.c-select--medium,.wizard-select--medium{border-radius:.125rem;padding:.5rem 1rem .625rem}.c-input-text--large{border-radius:.188rem;padding:.813rem 1rem}.c-input-text--fullwidth,.c-textarea--fullwidth,.c-select--fullwidth{max-width:100%}.c-input-checkbox,.c-input-radio{display:flex;align-items:center;min-width:1rem;min-height:1rem}.c-input-checkbox span,.c-input-radio span{position:relative;display:inline-block;padding-left:1.5rem;cursor:pointer;line-height:1.5}.c-input-checkbox span::before,.c-input-radio span::before,.c-input-checkbox span::after,.c-input-radio span::after{content:'';position:absolute;left:0;top:50%;box-sizing:border-box;width:1rem;height:1rem;border-radius:.125rem}.c-input-checkbox span::before,.c-input-radio span::before{transition:box-shadow 350ms cubic-bezier(0,.89,.44,1);background-color:var(--paperBackgroundColor);box-shadow:inset 0 0 0 .125rem var(--dividerColor);-webkit-transform:translateY(-50%);transform:translateY(-50%)}.c-input-checkbox span:hover::before,.c-input-radio span:hover::before{box-shadow:inset 0 0 0 .125rem var(--primaryColor)}.c-input-checkbox span::after,.c-input-radio span::after{background-image:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTMiIHZpZXdCb3g9IjAgMCAxNiAxMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNS4wODUgOS42MjQgMS4yOTIgNS44MyAwIDcuMTEzbDUuMDg1IDUuMDg1TDE2IDEuMjgzIDE0LjcxNyAwIDUuMDg1IDkuNjI0WiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==");background-size:contain;transition-duration:.2s;transition-property:opacity,-webkit-transform;transition-property:opacity,transform;transition-property:opacity,transform,-webkit-transform}.c-input-checkbox[aria-checked='mixed'] span::after,.c-input-radio[aria-checked='mixed'] span::after{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIj48cGF0aCBkPSJNMy40OTcgMTBoMTMuMDA2IiBzdHJva2U9IiNGRkYiIHN0cm9rZS13aWR0aD0iMiIgLz48L3N2Zz4K");background-size:contain}.c-input-checkbox[aria-disabled=true] span,.c-input-radio[aria-disabled=true] span{opacity:.5;cursor:not-allowed}.c-input-checkbox[aria-disabled=true] :hover::before,.c-input-radio[aria-disabled=true] :hover::before{box-shadow:inset 0 0 0 .125rem var(--dividerColor)}.c-input-checkbox[aria-disabled=true] ::before,.c-input-radio[aria-disabled=true] ::before{background-color:var(--dividerColor)}.c-input-checkbox input,.c-input-radio input{border:0;clip:rect(0 0 0 0);-webkit-clip-path:polygon(0 0,0 0,0 0);clip-path:polygon(0 0,0 0,0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap}.c-input-checkbox input:focus + span::before,.c-input-radio input:focus + span::before{box-shadow:inset 0 0 0 .125rem var(--primaryColor)}.c-input-checkbox input:checked + span::before,.c-input-radio input:checked + span::before{box-shadow:inset 0 0 0 1rem var(--primaryColor)}.c-input-checkbox input:checked + span::after,.c-input-radio input:checked + span::after{opacity:1;-webkit-transform:translateY(-50%) scale(1);transform:translateY(-50%) scale(1)}.c-input-checkbox input:not(:checked) + span::after,.c-input-radio input:not(:checked) + span::after{opacity:0;-webkit-transform:translateY(-50%) scale(0);transform:translateY(-50%) scale(0)}.c-input-checkbox.is-error span,.c-input-radio.is-error span{color:var(--errorColor)}.c-input-checkbox.is-error span::before,.c-input-radio.is-error span::before{box-shadow:inset 0 0 0 .125rem var(--errorColor);background-color:var(--errorColorLight)}.c-input-checkbox--noGutter span,.c-input-radio--noGutter span{padding-left:0}.c-input-radio span::before,.c-input-radio span::after{border-radius:50%}.c-input-radio span::after{content:'';background:var(--paperBackgroundColor);border:.313rem solid var(--primaryColor);box-sizing:border-box;width:1rem;height:1rem}.c-textarea{display:block;width:100%;min-height:7.5rem;resize:vertical}.c-textarea--tiny{min-height:3rem}.c-textarea--medium{min-height:5rem}.c-select,.c-select--tiny,.c-select--medium,.c-select--fullwidth,.wizard-select,.wizard-select--medium{padding-right:2.375rem}.c-select,.wizard-select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxNiAxMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNOCA1Ljk5MSAxMy41OTYuMzk1QzEzLjg2LjEzMiAxNC4xOTQgMCAxNC42MDEgMGMuNDA2IDAgLjc0MS4xMzIgMS4wMDQuMzk1UzE2IC45OTMgMTYgMS4zOTljMCAuNDA3LS4xMzIuNzQyLS4zOTUgMS4wMDVsLTYuNiA2LjZhMS4yNTkgMS4yNTkgMCAwIDEtLjQ2Ny4zMDVjLS4xNjcuMDYtLjM0Ny4wOS0uNTM4LjA5LS4xOTEgMC0uMzctLjAzLS41MzgtLjA5YTEuMjU5IDEuMjU5IDAgMCAxLS40NjYtLjMwNWwtNi42MDEtNi42Qy4xMzIgMi4xNCAwIDEuODA2IDAgMS4zOTkgMCAuOTkzLjEzMi42NTguMzk1LjM5NVMuOTkzIDAgMS4zOTkgMGMuNDA3IDAgLjc0Mi4xMzIgMS4wMDUuMzk1TDggNS45OVoiLz48L3N2Zz4=") right 1rem center no-repeat;background-size:.875rem;text-align:left}.c-select::-ms-expand,.wizard-select::-ms-expand{display:none}.o-field{position:relative;display:flex;flex-direction:column;margin:.5rem 0 1rem}.o-field-inline{display:flex;align-items:flex-start;flex-direction:row;margin:.5rem 0 .5rem 1.5rem}@media (max-width:48rem){.o-field-inline{flex-direction:column;margin-left:0}}.c-double-field{width:100%}.c-double-field--with-button{box-sizing:border-box;position:relative;padding-right:2.5rem}.c-double-field-label{min-height:2.5rem}.c-double-field-button{position:absolute;right:-2.5rem;top:.625rem}.c-double-field-wrapper{display:inline-flex;width:100%;margin-bottom:.5rem}@media (max-width:48rem){.c-double-field-wrapper{flex-direction:column}}.c-double-field-input{box-sizing:border-box;flex:1 1 70%}.c-double-field-input + .c-double-field-input{flex:1 1 auto}[data-input=radio] label::before{border-radius:50%;border:.125rem solid var(--coolGrey);box-shadow:inset 0 0 0 1rem transparent}[data-input=radio] input[type=radio]:checked + label::before{box-shadow:inset 0 0 0 .188rem var(--paleGrey),inset 0 0 0 1rem var(--dodgerBlue)}[data-input=checkbox] label::before,[data-input=checkbox] label::after{border-radius:.125rem}[data-input=checkbox] label::before{background-color:var(--white);box-shadow:inset 0 0 0 .125rem var(--silver)}[data-input=checkbox] label::before:hover{box-shadow:inset 0 0 0 .125rem var(--dodgerBlue)}[data-input=checkbox] label::after{background-image:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTMiIHZpZXdCb3g9IjAgMCAxNiAxMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNS4wODUgOS42MjQgMS4yOTIgNS44MyAwIDcuMTEzbDUuMDg1IDUuMDg1TDE2IDEuMjgzIDE0LjcxNyAwIDUuMDg1IDkuNjI0WiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==");background-size:contain}[data-input=checkbox][aria-checked='mixed'] label::after{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIj48cGF0aCBkPSJNMy40OTcgMTBoMTMuMDA2IiBzdHJva2U9IiNGRkYiIHN0cm9rZS13aWR0aD0iMiIgLz48L3N2Zz4K");background-size:contain}[data-input=checkbox] input[type=checkbox]:checked + label::before{box-shadow:inset 0 0 0 1rem var(--dodgerBlue)}[data-input=checkbox] input[type=checkbox]:checked + label::after{opacity:1;-webkit-transform:scale(1);transform:scale(1)}[data-input=checkbox] input[type=checkbox]:not(:checked) + label::after{opacity:0;-webkit-transform:scale(0);transform:scale(0)}.wizard-wrapper{display:flex;flex-flow:column nowrap;align-items:stretch}.wizard-main{background-repeat:no-repeat;background-color:var(--paperBackgroundColor);background-size:100% 2rem,100% 2rem,100% .5rem,100% .5rem;background-attachment:local,local,scroll,scroll;background-clip:padding-box;overflow:auto;-webkit-overflow-scrolling:touch}.wizard-header,.wizard-footer{flex:0 0 auto}.o-layout{box-sizing:border-box;display:flex;max-width:100%;width:100%;height:100%;background-color:var(--paperBackgroundColor);color:var(--primaryTextColor)}.o-layout-2panes{flex:0 0 100%;align-items:stretch}.o-layout-main{display:flex;flex-direction:column;position:relative;flex:1 1 auto;box-sizing:border-box;overflow:hidden;height:100%}@media (max-width:63.938rem){.o-layout-main{padding-left:env(safe-area-inset-left);padding-right:env(safe-area-inset-right);padding-bottom:env(safe-area-inset-bottom)}}.o-layout-main-topbar:before{content:'';display:block;height:3rem;width:100%;background-color:var(--paperBackgroundColor)}.o-layout-main-2panes{background-color:var(--defaultBackgroundColor)}@media (max-width:63.938rem){.o-layout-main-2panes{height:calc(100vh - var(--sidebarHeight));background-color:transparent}}.o-layout-content{position:relative;display:flex;flex-direction:column;flex:1 1 auto;box-sizing:border-box;overflow:hidden auto;background-color:var(--paperBackgroundColor);height:100%}.o-layout-content-2panes{margin:1rem 1rem 1rem 0;border-radius:1rem}@media (max-width:63.938rem){.o-layout-content-2panes{margin:0;border-radius:0}}.u-media{display:flex;align-items:center}.u-media-top{align-items:flex-start}.u-media-bottom{align-items:flex-end}.u-media-grow{flex:1 1 auto;overflow:hidden}.u-media-fixed{line-height:0;flex:0 0 auto}:root{--sidebarHeight:3.25rem}.o-sidebar{width:14.75rem;background-color:var(--defaultBackgroundColor);overflow-y:auto;overflow-x:hidden;display:flex;flex-direction:column;flex:0 0 auto}.o-sidebar--border{border-right:.063rem solid var(--dividerColor)}@media (max-width:63.938rem){.o-sidebar{justify-content:space-between;border:0;border-top:.063rem solid var(--dividerColor);height:var(--sidebarHeight);width:100%;position:fixed;bottom:0;left:0;display:block;z-index:var(--zIndex-nav);padding-bottom:env(safe-area-inset-bottom)}}.c-btn,.c-btn--regular,.c-btn-client,.c-btn-client-mobile{position:relative;box-sizing:border-box;display:inline-flex;margin:0 .25rem;border-width:.063rem;border-style:solid;border-radius:.125rem;min-height:2.5rem;min-width:7rem;padding:.188rem 1rem;vertical-align:top;text-align:center;font-size:.875rem;font-weight:bold;line-height:1;text-transform:uppercase;text-decoration:none;cursor:pointer;align-items:center;background-color:var(--primaryColor);color:var(--primaryContrastTextColor);border-color:var(--primaryColor)}.c-btn svg,.c-btn--regular svg,.c-btn-client svg,.c-btn-client-mobile svg{fill:currentColor}.c-btn svg + span,.c-btn--regular svg + span,.c-btn-client svg + span,.c-btn-client-mobile svg + span{margin-left:.375rem}.c-btn input,.c-btn--regular input,.c-btn-client input,.c-btn-client-mobile input{cursor:pointer}.c-btn > span,.c-btn--regular > span,.c-btn-client > span,.c-btn-client-mobile > span{display:flex;align-items:center;justify-content:center;width:100%}.c-btn[disabled],.c-btn--regular[disabled],.c-btn-client[disabled],.c-btn-client-mobile[disabled],.c-btn[aria-disabled=true],.c-btn--regular[aria-disabled=true],.c-btn-client[aria-disabled=true],.c-btn-client-mobile[aria-disabled=true]{opacity:.5;cursor:not-allowed}.c-btn[disabled] input,.c-btn--regular[disabled] input,.c-btn-client[disabled] input,.c-btn-client-mobile[disabled] input,.c-btn[aria-disabled=true] input,.c-btn--regular[aria-disabled=true] input,.c-btn-client[aria-disabled=true] input,.c-btn-client-mobile[aria-disabled=true] input{cursor:not-allowed}.c-btn[aria-busy=true],.c-btn--regular[aria-busy=true],.c-btn-client[aria-busy=true],.c-btn-client-mobile[aria-busy=true]{opacity:.5;pointer-events:none}.c-btn:visited,.c-btn--regular:visited,.c-btn-client:visited,.c-btn-client-mobile:visited{color:var(--primaryContrastTextColor)}.c-btn:active,.c-btn--regular:active,.c-btn-client:active,.c-btn-client-mobile:active,.c-btn:hover,.c-btn--regular:hover,.c-btn-client:hover,.c-btn-client-mobile:hover,.c-btn:focus,.c-btn--regular:focus,.c-btn-client:focus,.c-btn-client-mobile:focus{border-color:var(--primaryColorDark);background-color:var(--primaryColorDark)}.c-btn[disabled]:hover,.c-btn--regular[disabled]:hover,.c-btn-client[disabled]:hover,.c-btn-client-mobile[disabled]:hover,.c-btn[aria-disabled=true]:hover,.c-btn--regular[aria-disabled=true]:hover,.c-btn-client[aria-disabled=true]:hover,.c-btn-client-mobile[aria-disabled=true]:hover{border-color:var(--primaryColor);background-color:var(--primaryColor)}.c-btn--ghost{background-color:var(--zircon);color:var(--primaryColor);border-color:#c2dcff;border-style:dashed}.c-btn--ghost:visited{color:var(--primaryColor)}.c-btn--ghost:active,.c-btn--ghost:hover,.c-btn--ghost:focus{border-color:#c2dcff;background-color:#c2dcff}.c-btn--ghost[disabled]:hover,.c-btn--ghost[aria-disabled=true]:hover{border-color:#c2dcff;background-color:var(--zircon)}.c-btn--highlight{background-color:#35ce68;color:var(--white);border-color:#35ce68}.c-btn--highlight:visited{color:var(--white)}.c-btn--highlight:active,.c-btn--highlight:hover,.c-btn--highlight:focus{border-color:#08b442;background-color:#08b442}.c-btn--highlight[disabled]:hover,.c-btn--highlight[aria-disabled=true]:hover{border-color:#35ce68;background-color:#35ce68}.c-btn--alpha,.c-btn--action,.c-btn--close{background-color:transparent;color:var(--white);border-color:var(--white)}.c-btn--alpha:visited,.c-btn--action:visited,.c-btn--close:visited{color:var(--white)}.c-btn--alpha:active,.c-btn--action:active,.c-btn--close:active,.c-btn--alpha:hover,.c-btn--action:hover,.c-btn--close:hover,.c-btn--alpha:focus,.c-btn--action:focus,.c-btn--close:focus{border-color:var(--scienceBlue);background-color:var(--scienceBlue)}.c-btn--alpha[disabled]:hover,.c-btn--action[disabled]:hover,.c-btn--close[disabled]:hover,.c-btn--alpha[aria-disabled=true]:hover,.c-btn--action[aria-disabled=true]:hover,.c-btn--close[aria-disabled=true]:hover{border-color:var(--white);background-color:transparent}.c-btn--danger{background-color:#f52d2d;color:var(--white);border-color:#f52d2d}.c-btn--danger:visited{color:var(--white)}.c-btn--danger:active,.c-btn--danger:hover,.c-btn--danger:focus{border-color:var(--monza);background-color:var(--monza)}.c-btn--danger[disabled]:hover,.c-btn--danger[aria-disabled=true]:hover{border-color:#f52d2d;background-color:#f52d2d}.c-btn--secondary,.c-btn-client,.c-btn-client-mobile{background-color:var(--white);color:var(--black);border-color:var(--silver)}.c-btn--secondary:visited,.c-btn-client:visited,.c-btn-client-mobile:visited{color:var(--black)}.c-btn--secondary:active,.c-btn-client:active,.c-btn-client-mobile:active,.c-btn--secondary:hover,.c-btn-client:hover,.c-btn-client-mobile:hover,.c-btn--secondary:focus,.c-btn-client:focus,.c-btn-client-mobile:focus{border-color:var(--silver);background-color:var(--silver)}.c-btn--secondary[disabled]:hover,.c-btn-client[disabled]:hover,.c-btn-client-mobile[disabled]:hover,.c-btn--secondary[aria-disabled=true]:hover,.c-btn-client[aria-disabled=true]:hover,.c-btn-client-mobile[aria-disabled=true]:hover{border-color:var(--silver);background-color:var(--white)}.c-btn--danger-outline{background-color:var(--white);color:#f52d2d;border-color:#fdcbcb}.c-btn--danger-outline:visited{color:#f52d2d}.c-btn--danger-outline:active,.c-btn--danger-outline:hover,.c-btn--danger-outline:focus{border-color:#fdcbcb;background-color:#fdcbcb}.c-btn--danger-outline[disabled]:hover,.c-btn--danger-outline[aria-disabled=true]:hover{border-color:#fdcbcb;background-color:var(--white)}.c-btn--text{background-color:transparent;color:var(--primaryColor);border-color:transparent}.c-btn--text:visited{color:var(--primaryColor)}.c-btn--text:active,.c-btn--text:hover,.c-btn--text:focus{border-color:transparent;background-color:transparent}.c-btn--text[disabled]:hover,.c-btn--text[aria-disabled=true]:hover{border-color:transparent;background-color:transparent}.c-btn--text:hover,.c-btn--text:focus{color:var(--primaryColorDark)}.c-btn--action{border-color:transparent;padding:.5rem;opacity:.5}.c-btn--action:active,.c-btn--action:hover,.c-btn--action:focus{background-color:transparent;border-color:transparent}.c-btn--close{border-color:transparent;padding:.5rem}.c-btn--close:active,.c-btn--close:hover,.c-btn--close:focus{background-color:transparent;border-color:transparent}.c-btn-alert,.c-btn-alert--error,.c-btn-alert--info,.c-btn-alert--success{border:0;height:auto;padding:.5rem 1rem;background-color:var(--white);font-weight:bold;font-size:.875rem;text-decoration:none}.c-btn-alert--error{color:#f52d2d !important;background-color:var(--white) !important;border-color:var(--white) !important}.c-btn-alert--error:visited{color:#f52d2d !important}.c-btn-alert--error:active,.c-btn-alert--error:hover,.c-btn-alert--error:focus{color:var(--monza) !important;background-color:#fdcbcb !important;border-color:#fdcbcb !important}.c-btn-alert--info{color:var(--white) !important;background-color:var(--coolGrey) !important;border-color:var(--coolGrey) !important}.c-btn-alert--info[disabled]:hover,.c-btn-alert--info[aria-disabled=true]:hover{background-color:var(--coolGrey) !important}.c-btn-alert--info:visited{color:var(--white) !important}.c-btn-alert--info:active,.c-btn-alert--info:hover,.c-btn-alert--info:focus{background-color:var(--charcoalGrey) !important;border-color:var(--charcoalGrey) !important}.c-btn-alert--success{color:#35ce68 !important;background-color:var(--white) !important;border-color:var(--white) !important}.c-btn-alert--success:visited{color:#35ce68 !important}.c-btn-alert--success:active,.c-btn-alert--success:hover,.c-btn-alert--success:focus{color:#08b442 !important;background-color:#def7e7 !important;border-color:#def7e7 !important}.c-btn-client,.c-btn-client-mobile{display:flex;justify-content:center;align-items:center;height:auto;min-height:3.5rem;margin:0;padding-left:1rem;padding-right:1rem;background-color:transparent;text-align:left;font-size:.813rem;font-weight:bold;line-height:1.3;color:var(--slateGrey)}.c-btn-client:visited,.c-btn-client-mobile:visited{color:var(--slateGrey)}.c-btn-client span,.c-btn-client-mobile span{flex:0 1 auto}.c-btn-client figure,.c-btn-client-mobile figure{flex:0 0 2rem;margin:0 .75rem 0 0}.c-btn-client-mobile{display:flex;justify-content:flex-start;background-color:var(--dodgerBlue);border:0;border-radius:0;margin:0;padding:.5rem 3rem .5rem 1rem;font-size:1rem;font-weight:normal;color:var(--white);text-decoration:none;text-transform:none}.c-btn-client-mobile[disabled]:hover,.c-btn-client-mobile[aria-disabled=true]:hover{background-color:var(--dodgerBlue)}.c-btn-client-mobile:visited{color:var(--white)}.c-btn-client-mobile:active,.c-btn-client-mobile:hover,.c-btn-client-mobile:focus{background-color:var(--dodgerBlue)}.c-btn-client-mobile figure{flex:0 0 2.75rem;border-radius:.5rem;border:.313rem solid var(--white);background-color:var(--white)}.c-btn-client-mobile figure svg{display:block}.c-btn--left > span{justify-content:flex-start}.c-btn--center > span{justify-content:center}.c-btn--right > span{justify-content:flex-end}.c-btn.c-btn--tiny{min-height:1.5rem;min-width:5rem;padding:.125rem 1rem;font-size:.75rem;line-height:1.3}.c-btn.c-btn--small{min-height:2rem;min-width:6rem;padding:.188rem .5rem;font-size:.813rem;line-height:1.4}.c-btn.c-btn--large{min-height:3rem;min-width:10rem;padding:.5rem 1.5rem;font-size:1rem;line-height:1.5}.c-btn.c-btn--full{width:100%;margin-left:0;margin-right:0}.c-btn.c-btn--narrow,.c-btn.c-btn--round{min-width:auto}.c-btn.c-btn--round{border-radius:100%;min-height:auto;padding:.25rem}.c-btn.c-btn--round svg{width:.625rem;height:.625rem}@media (pointer:coarse){.c-btn.c-btn--round:after{content:'';position:absolute;top:-.875rem;right:-.875rem;bottom:-.875rem;left:-.875rem}}.c-btn--subtle{color:var(--primaryColor);min-height:auto;min-width:auto;border:0;margin:1rem 0;padding:0;vertical-align:baseline;background:transparent;cursor:pointer;font-size:.875rem;font-weight:bold;text-transform:uppercase}.c-btn--subtle:active,.c-btn--subtle:focus,.c-btn--subtle:hover{color:var(--primaryColorDark)}.c-btn--subtle > span{display:flex;align-items:center;justify-content:center;width:100%}.c-btn--subtle[disabled],.c-btn--subtle[aria-disabled=true]{opacity:.5;cursor:not-allowed}.c-btn--subtle[disabled]:hover,.c-btn--subtle[aria-disabled=true]:hover{background:transparent}.c-btn--subtle[aria-busy=true]{opacity:.5;cursor:not-allowed;pointer-events:none}.c-btn--subtle[aria-busy=true]:hover{background:transparent}.c-btn--subtle:active,.c-btn--subtle:hover,.c-btn--subtle:focus,.c-btn--subtle:visited{color:var(--primaryColorDark);background:transparent}* + .c-btn--subtle{margin-left:.063rem}.c-btn--subtle.c-btn--tiny{min-height:0;min-width:0;padding:0;font-size:.563rem}.c-btn--subtle.c-btn--small{min-height:0;min-width:0;padding:0;font-size:.75rem}.c-btn--subtle.c-btn--large{min-height:0;min-width:0;padding:0;font-size:1rem}.c-btn--subtle.c-btn--danger{color:#f52d2d}.c-btn--subtle.c-btn--danger:active,.c-btn--subtle.c-btn--danger:focus,.c-btn--subtle.c-btn--danger:hover{color:var(--monza)}.c-btn--subtle.c-btn--highlight{color:#35ce68}.c-btn--subtle.c-btn--highlight:active,.c-btn--subtle.c-btn--highlight:focus,.c-btn--subtle.c-btn--highlight:hover{color:#08b442}.c-btn--subtle.c-btn--regular{color:var(--primaryColor)}.c-btn--subtle.c-btn--regular:active,.c-btn--subtle.c-btn--regular:focus,.c-btn--subtle.c-btn--regular:hover{color:var(--primaryColorDark)}.c-btn--subtle.c-btn--secondary{color:var(--slateGrey)}.c-btn--subtle.c-btn--secondary:active,.c-btn--subtle.c-btn--secondary:focus,.c-btn--subtle.c-btn--secondary:hover{color:var(--charcoalGrey)}.c-btn--subtle.c-btn--secondary:active svg,.c-btn--subtle.c-btn--secondary:focus svg,.c-btn--subtle.c-btn--secondary:hover svg{color:var(--slateGrey)}.c-btn--subtle.c-btn--secondary svg{color:var(--coolGrey)}.c-avatar{background-color:var(--paleGrey);color:var(--silver);position:relative}.c-avatar svg{width:50%;height:50%}.c-avatar-image{width:100%}.u-card{border:.063rem solid var(--dividerColor);border-radius:.5rem;padding:1rem;text-decoration:none;display:block}.c-chip{box-sizing:border-box;line-height:1;display:inline-flex;align-items:center;margin-right:.25rem;margin-bottom:.25rem;border:0}.c-chip--round{width:2.5rem;text-align:center;justify-content:center}.c-chip--tinySize{height:1.5rem;padding:0 .375rem;border-radius:.75rem;font-size:.75rem}.c-chip--smallSize{height:2rem;padding:0 .5625rem;border-radius:1rem;font-size:.875rem}.c-chip--normalSize{height:2.5rem;padding:0 .75rem;border-radius:1.25rem}.c-chip--outlinedVariant{border:1px solid}.c-chip--dashedVariant{border:1px dashed}.c-chip--normalTheme{border-color:var(--silver);background-color:var(--paleGrey);color:inherit}.c-chip--primaryTheme{border-color:var(--primaryColorLightest);background-color:var(--primaryBackgroundLight);color:var(--primaryColor)}.c-chip--errorTheme{border-color:var(--errorColorLight);background-color:var(--errorColorLightest);color:var(--errorColor)}.c-chip--hoverableNormalTheme{color:var(--charcoalGrey)}.c-chip--hoverableNormalTheme:hover,.c-chip--hoverableNormalTheme:focus{background-color:var(--silver)}.c-chip--hoverablePrimaryTheme:hover,.c-chip--hoverablePrimaryTheme:focus{background-color:var(--primaryBackgroundLight)}.c-chip--normalPrimaryTheme{background-color:var(--primaryColor);color:var(--white)}.c-chip--hoverableErrorTheme:hover,.c-chip--hoverableErrorTheme:focus{background-color:var(--errorColorLight)}.c-chip--outlinedNormalTheme{background-color:transparent}.c-chip--clickable{cursor:pointer}.c-chip-separator{width:.063rem;border-left:.063rem solid var(--dividerColor);display:inline-block;height:40%;margin-left:.5rem;margin-right:.5rem}.c-chip-button{cursor:pointer;color:var(--slateGrey)}.c-chip-button--disabled{color:var(--coolGrey)}.c-avatar{--circleSize:2.5rem;width:var(--circleSize);height:var(--circleSize);min-width:var(--circleSize);min-height:var(--circleSize);font-size:calc(var(--circleSize) / 2.28);display:inline-flex;align-items:center;justify-content:center;border-radius:50%;overflow:hidden;background-color:var(--dodgerBlue);color:var(--white)}.c-avatar--xsmall{width:1rem;height:1rem;min-width:1rem;min-height:1rem;font-size:calc(1rem / 2.28)}.c-avatar--small{width:2rem;height:2rem;min-width:2rem;min-height:2rem;font-size:calc(2rem / 2.28)}.c-avatar--large{width:3rem;height:3rem;min-width:3rem;min-height:3rem;font-size:calc(3rem / 2.28)}.c-avatar--xlarge{width:4rem;height:4rem;min-width:4rem;min-height:4rem;font-size:calc(4rem / 2.28)}.c-avatar-initials{font-weight:bold;line-height:1}.c-nav{margin:1.5rem 0;padding:0;list-style:none}@media (max-width:63.938rem){.c-nav{display:flex;justify-content:space-around;margin:6px 0 4px;padding-right:0}}.c-nav-item{position:relative;z-index:var(--zIndex-app);height:2.75rem;box-sizing:border-box;cursor:pointer}.c-nav-item:hover::before{content:'';position:absolute;z-index:var(--zIndex-below);border-radius:0 8px 8px 0;top:0;left:0;right:1rem;bottom:0;background:var(--actionColorHover)}@media (hover:none){.c-nav-item:hover::before{content:none}}@media (max-width:63.938rem){.c-nav-item{margin:0 .75rem;height:auto;display:block;flex:0 0 2.5rem;padding-right:0}.c-nav-item:hover::before{content:none}}.c-nav-icon{display:inline-block;margin-right:12px;color:var(--primaryTextColor);fill:currentColor}.c-nav-icon svg{display:block}@media (max-width:63.938rem){.c-nav-icon{display:block;margin-right:0;color:var(--secondaryTextColor)}.c-nav-icon svg{margin:4px auto 5px;width:1rem;height:1rem}}.c-nav-text{font-size:16px;font-weight:500;letter-spacing:.15px}@media (max-width:63.938rem){.c-nav-text{display:block;text-align:center;white-space:nowrap;font-size:12px}.is-active .c-nav-text{color:var(--primaryTextColor)}}.c-nav-link{display:flex;box-shadow:border-box;padding-left:1.5rem;padding-right:1rem;line-height:1.375;text-decoration:none;color:var(--primaryTextColor);height:100%;align-items:center;flex:1;background-repeat:no-repeat;background-position:1.5rem center}.c-nav-link:visited{color:var(--actionColorActive)}.c-nav-link.is-active{box-shadow:inset .25rem 0 0 0 var(--primaryColor);font-weight:bold;color:var(--primaryTextColor)}@media (max-width:63.938rem){.c-nav-link.is-active{background-color:initial}}.c-nav-link.is-active .c-nav-icon{color:var(--primaryColor)}@media (max-width:63.938rem){.c-nav-link.is-active .c-nav-icon{color:var(--primaryTextColor)}}@media (max-width:63.938rem){.c-nav-link{display:block;height:auto;padding:0;text-align:center;font-size:.688rem;line-height:.75rem;background-position:center top;background-size:1.5rem;color:color var(--secondaryTextColor)}.c-nav-link.is-active,.c-nav-link:hover{box-shadow:none;font-weight:normal}}.c-nav-item-secondary{height:auto;margin:3px 0}@media (max-width:63.938rem){.c-nav-item-secondary{display:none}}.c-nav-item-secondary:hover::before{content:'';position:absolute;z-index:var(--zIndex-below);border-radius:8px 0 0 8px;top:0;right:0;left:2.813rem;bottom:0;background:var(--actionColorHover)}@media (hover:none){.c-nav-item-secondary:hover::before{content:none}}.c-nav-item-secondary .c-nav-link{padding:8px 16px;margin-left:2.8rem;border-radius:8px 0 0 8px;box-shadow:none;font-size:.875rem;color:var(--primaryTextColor);text-decoration:none;height:auto}.c-nav-item-secondary .c-nav-link.is-active{color:var(--primaryContrastTextColor);background-color:var(--secondaryColor)}.c-nav-item-secondary .c-nav-limiter{background:transparent;border:0;cursor:pointer}.c-table-divider{background-color:var(--paleGrey);height:2rem;display:flex;align-items:center;text-indent:2rem;font-weight:bold;font-size:.75rem;line-height:1.33;color:var(--coolGrey);text-transform:uppercase}.c-table-divider + .c-table-divider{border-top:0}@media (max-width:48rem){.c-table-divider{text-indent:1rem}}div.c-table{position:relative;display:flex;flex-direction:column;flex:1 1 100%;height:100%;text-align:left;color:var(--secondaryTextColor)}.c-table-head{flex:0 0 2rem}@media (max-width:48rem){.c-table-head{display:none}}.c-table-body{flex:1 1 auto;display:flex;flex-direction:column;overflow:auto}@media (max-width:48rem){.c-table-body{max-height:100%}}.c-table-row,.c-table-row-head,table.c-table tr,table.c-table thead tr{box-sizing:border-box;display:flex;flex-direction:row;align-items:center;flex:0 0 auto;height:3rem;width:100%;border-top:.063rem solid var(--dividerColor)}.c-table-row:hover,.c-table-row-head:hover,table.c-table tr:hover,table.c-table thead tr:hover{background-color:var(--actionColorHover)}@media (hover:none){.c-table-row:hover,.c-table-row-head:hover,table.c-table tr:hover,table.c-table thead tr:hover{background-color:transparent}}.c-table-row:last-child,.c-table-row-head:last-child,table.c-table tr:last-child,table.c-table thead tr:last-child{border-bottom:.063rem solid var(--dividerColor)}@media (max-width:63.938rem){.c-table-row,.c-table-row-head,table.c-table tr,table.c-table thead tr{max-width:100vw}}.c-table-row-head,table.c-table thead tr{border:0}.c-table-row-head:hover,table.c-table thead tr:hover{background-color:transparent}.c-table-row-head:last-child,table.c-table thead tr:last-child{border-bottom:0}.c-table-row.is-selected,table.c-table tr.is-selected,.c-table-row.is-selected:hover,table.c-table tr.is-selected:hover{background-color:var(--actionColorSelected)}.c-table-cell,.c-table-header,table.c-table th,table.c-table td{box-sizing:border-box;padding:.875rem 1rem;font-size:.875rem;line-height:1.3}.c-table-header,table.c-table th{padding:.5rem 1rem;font-size:.75rem;font-weight:bold;text-transform:uppercase}.c-table-cell--primary,.c-table-ellipsis,table.c-table td.c-table-cell--primary{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.c-table-cell--primary,table.c-table td.c-table-cell--primary{font-size:1rem;line-height:1.15;color:var(--charcoalGrey)}@media (max-width:48rem){.c-table-cell--primary,table.c-table td.c-table-cell--primary{flex:1 1 auto}}.c-table-divider{position:sticky;z-index:var(--zIndex-low);top:0}table.c-table{width:100%;border:0;text-align:left;color:var(--secondaryTextColor);border-collapse:collapse}table.c-table tr{display:table-row}table.c-table thead tr{display:table-row}table.c-table tr.c-table-divider{border:0;width:auto;height:auto;background-color:var(--zircon)}table.c-table tr.c-table-divider::before{content:none}table.c-table tr.c-table-divider td{font-weight:bold;color:var(--secondaryTextColor);padding:0;font-size:.75rem;line-height:1.33}table.c-table tr.c-table-divider + *{border-top:0}table.c-table td.c-table-ellipsis{position:relative}table.c-table td.c-table-ellipsis > div{box-sizing:border-box;position:absolute;top:.875rem;right:1rem;bottom:.875rem;left:1rem;display:block;width:calc(100% - rem(32))}table.c-table td.c-table-ellipsis > div > div{box-sizing:border-box;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.wizard{position:fixed;top:0;left:0;box-sizing:border-box;height:100%;display:flex;justify-content:center;align-items:center;width:100%;background-color:var(--white);color:var(--charcoalGrey);text-align:center}@media (max-width:30rem),(max-height:23.438rem){.wizard{flex-direction:column;justify-content:flex-start}}.wizard--waiting{color:var(--white);background-color:var(--primaryColor)}.wizard--scroll{position:absolute;padding-top:3.5rem}@media (max-width:63.938rem){.wizard--scroll{box-sizing:border-box}}@media (max-width:30rem),(max-height:23.438rem){.wizard--scroll{padding-top:0}}.wizard--dual{position:static;width:100%}.wizard-wrapper{justify-content:center;width:100%;height:100%;max-width:34rem;text-align:left}@media (max-width:30rem),(max-height:23.438rem){.wizard-wrapper{justify-content:flex-start}}@media (max-width:30rem),(max-height:23.438rem){.wizard-wrapper--center{justify-content:center}}.wizard-wrapper--bleed{align-items:center;max-width:100%}.wizard-wrapper--dual{display:flex;flex-direction:column;align-items:center;height:100vh}@media (max-height:38rem){.wizard-wrapper--dual{min-height:100vh;height:auto}}.wizard-dual{flex:1 1 50%;width:100%;display:flex;flex-direction:column;align-items:center;justify-content:flex-start}.wizard-dual:first-child{justify-content:flex-end;color:var(--white);background-color:var(--primaryColor)}.wizard-errors{order:1;margin:1rem 0 0;font-size:.875rem;line-height:1.7;font-style:italic}.wizard-errors p{margin:0}@media (max-width:30rem),(max-height:23.438rem){.wizard-errors{margin-top:.5rem}}.wizard-header{display:flex;flex-direction:column;box-sizing:border-box;max-width:34rem;margin:1rem 0 .5rem;padding:0 1rem;position:relative}@media (max-width:30rem),(max-height:23.438rem){.wizard-header{margin:1rem 0 0}}.wizard-dual .wizard-header{margin-bottom:2rem}@media (max-width:30rem),(max-height:23.438rem){.wizard-dual .wizard-header{margin-bottom:1.5rem}}.wizard-main{display:flex;flex-direction:column;flex:0 1 auto;box-sizing:border-box;width:100%;padding:0 1rem}.wizard-main > *{flex-shrink:0}.wizard-footer{display:flex;order:2;flex-wrap:wrap;box-sizing:border-box;max-width:34rem;margin:2rem 0 1.5rem;padding:0 1rem;padding-bottom:env(safe-area-inset-bottom)}.wizard-footer > button,.wizard-footer > a:link{flex:1 1 100%;margin:0 0 .5rem;line-height:1.5}@media (max-width:30rem),(max-height:23.438rem){.wizard-footer{margin:1.5rem 0 .5rem}}.wizard--welcome .wizard-footer{justify-content:space-between}@media (min-width:30.063rem){.wizard--welcome .wizard-footer > button,.wizard--welcome .wizard-footer > a:link{flex:0 1 calc(50% - 0.25rem)}}.wizard-dual .wizard-footer{margin-top:2rem}@media (max-width:30rem),(max-height:23.438rem){.wizard-dual .wizard-footer{margin-top:1.5rem;font-size:.875rem}}.wizard-logo{position:relative;margin:0 auto;width:7.5rem}.wizard-logo-img{width:100%;vertical-align:center}.wizard-logo-badge{display:flex;align-items:center;justify-content:center;position:absolute;bottom:-.375rem;right:-.375rem;width:2rem;height:2rem;border:.125rem solid var(--white);background-color:var(--primaryColor);border-radius:50%}.wizard-header-help{order:-1;margin:0 0 .5rem;font-size:1.125rem;line-height:1.5;text-align:center}@media (max-width:30rem),(max-height:23.438rem){.wizard-header-help{margin:.25rem 0 0;font-size:1rem}}.wizard-disclaimer{display:flex;margin:1.5rem 0 .5rem;flex-direction:row;align-items:flex-start;font-size:.938rem;line-height:1.33}.wizard-disclaimer span{flex:0 0 auto;margin-right:1rem;background-color:var(--grannyApple);padding:.5rem;border-radius:50%}.wizard-disclaimer svg{display:block;fill:var(--emerald)}.wizard-disclaimer strong{color:var(--emerald)}@media (max-width:30rem),(max-height:23.438rem){.wizard-disclaimer{display:none}}.wizard-desc{margin:2rem 0 0;line-height:1.5}.wizard-desc a{color:var(--primaryColor);text-decoration:none}.wizard-desc a:hover,.wizard-desc a:focus{color:var(--primaryColorDark)}@media (max-width:30rem),(max-height:23.438rem){.wizard-desc{margin:1.5rem 0 0}}.wizard-desc--footer{margin:2rem 0}@media (max-width:30rem),(max-height:23.438rem){.wizard-desc--footer{margin:1rem 0}}.wizard-header-fixed{position:fixed;top:.5rem;left:1rem;display:inline-flex;align-items:center}.wizard-previous{position:absolute;top:50%;left:0;-webkit-transform:translateY(-50%);transform:translateY(-50%);margin:0;padding:.625rem 1rem;color:var(--coolGrey)}.wizard-brand{margin-left:2rem}@media (max-width:30rem),(max-height:23.438rem){.wizard-brand{display:none}}.wizard-brand--invert svg{-webkit-filter:brightness(0) invert(100%);filter:brightness(0) invert(100%)}.wizard-previous + .wizard-brand{position:relative;padding-left:1.5rem;margin-left:.5rem}.wizard-previous + .wizard-brand:before{content:'';position:absolute;left:0;top:50%;height:1.5rem;border-left:.063rem solid var(--dividerColor);-webkit-transform:translateY(-50%);transform:translateY(-50%)}.wizard-next{padding-right:3rem;padding-left:3rem}.wizard-next svg{position:absolute;right:1rem}@media (min-width:30.063rem) and (min-height:23.5rem){.wizard-button{min-height:3rem;min-width:10rem;padding:.5rem 1.5rem;font-size:1rem;line-height:1.5}}@media (min-width:30.063rem){.wizard-buttonlink{min-height:3rem;min-width:10rem;padding:.5rem 1.5rem;font-size:1rem;line-height:1.5}}@media (max-width:30rem),(max-height:23.438rem){.wizard-input{border-radius:.125rem;padding:.5rem 1rem .625rem}}.wizard-dual-btn{position:absolute;bottom:-2.437rem;left:1rem;right:1rem;margin:0;width:calc(100% - 2rem);font-size:.875rem}@media (min-width:30.063rem){.wizard-dual-btn{min-height:3rem;min-width:10rem;padding:.5rem 1.5rem;font-size:1rem;line-height:1.5;bottom:-2rem;font-size:1rem}}.wizard-dual-btn:hover,.wizard-dual-btn:focus{background-color:var(--emerald);border-color:var(--emerald)}.wizard-waiting-icon,.wizard-dual-icon{margin:0 0 2rem;height:6.188rem}.wizard-waiting-icon svg,.wizard-dual-icon svg{display:block;margin:0 auto;height:100%;width:100%}@media (max-width:30rem),(max-height:23.438rem){.wizard-waiting-icon,.wizard-dual-icon{margin-bottom:1rem;height:3.438rem}}.wizard-dual-icon{margin:0 0 1rem;height:7.688rem}@media (max-width:30rem),(max-height:23.438rem){.wizard-dual-icon{height:5.125rem}}.wizard-title,.wizard-dual-title{margin:0;text-align:center;font-size:2rem;line-height:1.25}@media (max-width:30rem),(max-height:23.438rem){.wizard-title,.wizard-dual-title{font-size:1.125rem;line-height:1.78}}.wizard-dual-title{margin-bottom:1rem;font-size:2.5rem}@media (max-width:30rem),(max-height:23.438rem){.wizard-dual-title{margin-bottom:.5rem;font-size:1.5rem;line-height:1.3}}.wizard-title-sub{display:block;margin-top:.5rem;opacity:.64;font-size:1rem;font-weight:normal;line-height:1.5}@media (max-width:30rem),(max-height:23.438rem){.wizard-title-sub{margin:0;font-size:1rem;line-height:1.5}}.wizard-subtitle,.wizard-dual-subtitle{margin:0;text-align:center;font-size:1rem;font-weight:normal;line-height:1.5}@media (max-width:30rem),(max-height:23.438rem){.wizard-subtitle,.wizard-dual-subtitle{font-size:.875rem;line-height:1.15}}.wizard-dual-subtitle{font-size:1.25rem;line-height:1.4}@media (max-width:30rem),(max-height:23.438rem){.wizard-dual-subtitle{font-size:1rem;line-height:1.5}}@media (max-width:30rem),(max-height:23.438rem){.wizard--welcome .wizard-title{font-size:1.5rem;line-height:1.17}}.wizard-showbutton{position:absolute;right:0;top:.688rem;margin:0;border:0;padding:0;min-width:auto;background-color:transparent;color:var(--coolGrey)}.wizard-showbutton:hover,.wizard-showbutton:focus{background-color:inherit;color:var(--charcoalGrey)}.wizard-dualfield{display:flex;flex-direction:row;align-items:stretch;border:.063rem solid var(--dividerColor);border-radius:.125rem}.wizard-dualfield--focus{border-color:var(--primaryColor)}.wizard-dualfield--error{border-color:var(--errorColor)}.wizard-dualfield-wrapper{flex:1 1 auto}.wizard-dualfield-input{border:0;padding-right:.5rem}.wizard-dualfield-input:hover,.wizard-dualfield-input:focus{position:relative;z-index:1;border:0;outline:0}@media (max-width:30rem),(max-height:23.438rem){.wizard-dualfield-input{border-radius:.125rem;padding:.5rem 1rem .625rem;padding-right:.25rem}}.wizard-protocol{display:flex;align-items:center;background-color:var(--paleGrey);border-right:.063rem solid var(--dividerColor);padding:0 1rem}.wizard-protocol svg{fill:currentColor;margin-right:.5rem}.wizard-domain{display:flex;flex-direction:column;justify-content:center;flex:0 1 auto;margin-right:1rem;max-width:8.75rem}.wizard-select{flex:0 0 auto;margin:.125rem;width:9.25rem;border:0;padding:.625rem 2.375rem .625rem .5rem}.wizard-select:hover,.wizard-select:focus{position:relative;z-index:1;background-color:var(--paleGrey);border:0;outline:0}.wizard-select--medium{padding:.313rem 2.375rem .438rem .5rem}.wizard-requirements{order:2;margin-bottom:0;padding:0;list-style:disc inside;line-height:1.5;font-style:italic;color:var(--coolGrey)}.wizard-requirements span{display:inline-block;text-indent:.375rem}@media (max-width:30rem),(max-height:23.438rem){.wizard-requirements{font-size:.875rem;margin-top:.5rem}.wizard-requirements span{text-indent:.125rem}}.wizard-agreements{display:flex;flex-direction:row;margin:0 auto;padding:0;list-style:none;max-width:64.5rem}@media (max-width:63.938rem){.wizard-agreements{flex-direction:column;margin:0 auto;max-width:32rem}}.wizard-agreements-item{position:relative;overflow:hidden;display:flex;flex-direction:column;flex:1 1 calc(100% / 6 - 0.5rem);margin:1rem .25rem 0;border:.063rem solid var(--dividerColor);border-radius:.5rem;padding:1rem;color:var(--slateGrey)}@media (max-width:63.938rem){.wizard-agreements-item{flex-direction:row;flex:1 0 auto;margin:1rem 0 0;border:0;padding:0}.wizard-agreements-item:last-child p{border:0;margin:0}}.wizard-agreements-desc{min-height:2rem;font-size:.875rem;line-height:1.43}@media (max-width:63.938rem){.wizard-agreements-desc{flex:1 1 100%;border-bottom:.063rem solid var(--dividerColor);padding-bottom:1rem;font-size:1rem;line-height:1.5}}.wizard-agreements-icon{--bgcolor:var(--dodgerBlue);box-sizing:border-box;display:flex;align-items:center;justify-content:center;flex:0 0 auto;margin:0 auto 1rem;width:3rem;height:3rem;border-radius:50%;padding:.75rem;background-color:var(--bgcolor)}.wizard-agreements-icon svg{display:block;width:100%;height:100%;fill:var(--white)}@media (max-width:63.938rem){.wizard-agreements-icon{margin:0 1.5rem 0 0;width:2rem;height:2rem;border-radius:50%;padding:.5rem}}.wizard-updated{position:absolute;right:-1.687rem;top:1.188rem;width:6.25rem;background-color:var(--primaryColor);text-transform:uppercase;color:var(--primaryContrastTextColor);-webkit-transform:rotate(-315deg);transform:rotate(-315deg);padding:.313rem;font-size:.625rem;line-height:1;font-weight:bold;text-align:center}.wizard-progress{position:relative;margin:.5rem auto 2rem;max-width:32rem;height:.375rem}.wizard-progress:before{content:'';position:absolute;top:0;left:0;bottom:0;right:0;opacity:.24;border-radius:.188rem;background-color:var(--white)}@media (max-width:33.9375rem){.wizard-progress{margin:.5rem 1rem 1.5rem}}@media (max-height:23.4375rem){.wizard-progress{margin-bottom:1.5rem}}.wizard-progress-bar{position:relative;z-index:1;width:0;height:100%;background-color:var(--white);border-radius:.188rem;transition:width .5s ease-out}.wizard-notice{order:2;margin:2rem 0 0;line-height:1.5}.wizard-notice + .wizard-notice{margin-top:1rem}.wizard-notice p{margin:0}.wizard-notice a{color:var(--dodgerBlue);text-decoration:none;font-weight:bold}.wizard-notice a:hover,.wizard-notice a:focus{color:var(--scienceBlue)}@media (min-width:30.063rem){.wizard-notice{margin:2rem 0 0}}.wizard-notice--lost{font-size:1rem}.u-bg-black{background-color:var(--black) !important}.u-bg-charcoalGrey{background-color:var(--charcoalGrey) !important}.u-bg-coolGrey{background-color:var(--coolGrey) !important}.u-bg-silver{background-color:var(--silver) !important}.u-bg-slateGrey{background-color:var(--slateGrey) !important}.u-bg-lightishPurple{background-color:#b449e7 !important}.u-bg-dodgerBlue{background-color:#297ef2 !important}.u-bg-overlay{background-color:var(--overlay) !important}.u-bg-paleGrey{background-color:var(--paleGrey) !important}.u-bg-monza{background-color:#dd0505 !important}.u-bg-pomegranate{background-color:#f52d2d !important}.u-bg-primaryBackgroundLight{background-color:var(--primaryBackgroundLight) !important}.u-bg-primaryColor{background-color:var(--primaryColor) !important}.u-bg-primaryColorLight{background-color:var(--primaryColorLight) !important}.u-bg-primaryContrastTextColor{background-color:var(--primaryContrastTextColor) !important}.u-bg-error{background-color:var(--errorColor) !important}.u-bg-errorBackground{background-color:var(--errorBackground) !important}.u-bg-success{background-color:var(--successColor) !important}.u-bg-warning{background-color:var(--warningColor) !important}.u-bg-info{background-color:var(--infoColor) !important}.u-bg-weirdGreen{background-color:#40de8e !important}.u-bg-white{background-color:var(--white) !important}.u-bg-transparent{background-color:transparent !important}.u-bdrs-0{border-radius:0 !important}.u-bdrs-1{border-radius:.125rem !important}.u-bdrs-2{border-radius:.188rem !important}.u-bdrs-3{border-radius:.25rem !important}.u-bdrs-4{border-radius:.5rem !important}.u-bdrs-5{border-radius:.625rem !important}.u-bdrs-6{border-radius:.75rem !important}.u-bdrs-7{border-radius:.875rem !important}.u-bdrs-8{border-radius:1rem !important}.u-bdrs-circle{border-radius:100% !important}.u-bdw-0{border-width:0 !important}.u-bdw-1{border-width:.125rem !important}@media (max-width:30rem){.u-bdrs-0-t{border-radius:0 !important}.u-bdrs-1-t{border-radius:.125rem !important}.u-bdrs-2-t{border-radius:.188rem !important}.u-bdrs-3-t{border-radius:.25rem !important}.u-bdrs-4-t{border-radius:.5rem !important}.u-bdrs-5-t{border-radius:.625rem !important}.u-bdrs-6-t{border-radius:.75rem !important}.u-bdrs-7-t{border-radius:.875rem !important}.u-bdrs-8-t{border-radius:1rem !important}.u-bdrs-circle-t{border-radius:100% !important}.u-bdw-0-t{border-width:0 !important}.u-bdw-1-t{border-width:.125rem !important}}@media (max-width:48rem){.u-bdrs-0-s{border-radius:0 !important}.u-bdrs-1-s{border-radius:.125rem !important}.u-bdrs-2-s{border-radius:.188rem !important}.u-bdrs-3-s{border-radius:.25rem !important}.u-bdrs-4-s{border-radius:.5rem !important}.u-bdrs-5-s{border-radius:.625rem !important}.u-bdrs-6-s{border-radius:.75rem !important}.u-bdrs-7-s{border-radius:.875rem !important}.u-bdrs-8-s{border-radius:1rem !important}.u-bdrs-circle-s{border-radius:100% !important}.u-bdw-0-s{border-width:0 !important}.u-bdw-1-s{border-width:.125rem !important}}@media (max-width:63.938rem){.u-bdrs-0-m{border-radius:0 !important}.u-bdrs-1-m{border-radius:.125rem !important}.u-bdrs-2-m{border-radius:.188rem !important}.u-bdrs-3-m{border-radius:.25rem !important}.u-bdrs-4-m{border-radius:.5rem !important}.u-bdrs-5-m{border-radius:.625rem !important}.u-bdrs-6-m{border-radius:.75rem !important}.u-bdrs-7-m{border-radius:.875rem !important}.u-bdrs-8-m{border-radius:1rem !important}.u-bdrs-circle-m{border-radius:100% !important}.u-bdw-0-m{border-width:0 !important}.u-bdw-1-m{border-width:.125rem !important}}.u-bxz{box-sizing:border-box}.u-c-default{cursor:default}.u-c-help{cursor:help}.u-c-pointer{cursor:pointer}.u-c-wait{cursor:wait}.u-c-not-allowed{cursor:not-allowed}.u-debug{background:rgba(0,0,0,0.075);border:1px solid #f00}.u-debug .u-debug{border-color:#00f}.u-debug .u-debug .u-debug{border-color:#008000}.u-miw-1{min-width:1rem !important}.u-maw-1{max-width:1rem !important}.u-mih-1{min-height:1rem !important}.u-mah-1{max-height:1rem !important}.u-miw-2{min-width:2rem !important}.u-maw-2{max-width:2rem !important}.u-mih-2{min-height:2rem !important}.u-mah-2{max-height:2rem !important}.u-miw-3{min-width:4rem !important}.u-maw-3{max-width:4rem !important}.u-mih-3{min-height:4rem !important}.u-mah-3{max-height:4rem !important}.u-miw-4{min-width:8rem !important}.u-maw-4{max-width:8rem !important}.u-mih-4{min-height:8rem !important}.u-mah-4{max-height:8rem !important}.u-miw-5{min-width:16rem !important}.u-maw-5{max-width:16rem !important}.u-mih-5{min-height:16rem !important}.u-mah-5{max-height:16rem !important}.u-miw-6{min-width:32rem !important}.u-maw-6{max-width:32rem !important}.u-mih-6{min-height:32rem !important}.u-mah-6{max-height:32rem !important}.u-miw-7{min-width:48rem !important}.u-maw-7{max-width:48rem !important}.u-mih-7{min-height:48rem !important}.u-mah-7{max-height:48rem !important}.u-miw-8{min-width:64rem !important}.u-maw-8{max-width:64rem !important}.u-mih-8{min-height:64rem !important}.u-mah-8{max-height:64rem !important}.u-miw-9{min-width:96rem !important}.u-maw-9{max-width:96rem !important}.u-mih-9{min-height:96rem !important}.u-mah-9{max-height:96rem !important}.u-miw-100{min-width:100% !important}.u-maw-100{max-width:100% !important}.u-mih-100{min-height:100% !important}.u-mah-100{max-height:100% !important}.u-maw-none{max-width:none !important}.u-mah-none{max-height:none !important}.u-miw-auto{min-width:auto !important}.u-mih-auto{min-height:auto !important}.u-miw-half{min-width:.5rem !important}.u-maw-half{max-width:.5rem !important}.u-mih-half{min-height:.5rem !important}.u-mah-half{max-height:.5rem !important}.u-miw-1-half{min-width:1.5rem !important}.u-maw-1-half{max-width:1.5rem !important}.u-mih-1-half{min-height:1.5rem !important}.u-mah-1-half{max-height:1.5rem !important}.u-miw-2-half{min-width:2.5rem !important}.u-maw-2-half{max-width:2.5rem !important}.u-mih-2-half{min-height:2.5rem !important}.u-mah-2-half{max-height:2.5rem !important}@media (max-width:30rem){.u-miw-1-t{min-width:1rem !important}}@media (max-width:30rem){.u-maw-1-t{max-width:1rem !important}}@media (max-width:30rem){.u-mih-1-t{min-height:1rem !important}}@media (max-width:30rem){.u-mah-1-t{max-height:1rem !important}}@media (max-width:30rem){.u-miw-2-t{min-width:2rem !important}}@media (max-width:30rem){.u-maw-2-t{max-width:2rem !important}}@media (max-width:30rem){.u-mih-2-t{min-height:2rem !important}}@media (max-width:30rem){.u-mah-2-t{max-height:2rem !important}}@media (max-width:30rem){.u-miw-3-t{min-width:4rem !important}}@media (max-width:30rem){.u-maw-3-t{max-width:4rem !important}}@media (max-width:30rem){.u-mih-3-t{min-height:4rem !important}}@media (max-width:30rem){.u-mah-3-t{max-height:4rem !important}}@media (max-width:30rem){.u-miw-4-t{min-width:8rem !important}}@media (max-width:30rem){.u-maw-4-t{max-width:8rem !important}}@media (max-width:30rem){.u-mih-4-t{min-height:8rem !important}}@media (max-width:30rem){.u-mah-4-t{max-height:8rem !important}}@media (max-width:30rem){.u-miw-5-t{min-width:16rem !important}}@media (max-width:30rem){.u-maw-5-t{max-width:16rem !important}}@media (max-width:30rem){.u-mih-5-t{min-height:16rem !important}}@media (max-width:30rem){.u-mah-5-t{max-height:16rem !important}}@media (max-width:30rem){.u-miw-6-t{min-width:32rem !important}}@media (max-width:30rem){.u-maw-6-t{max-width:32rem !important}}@media (max-width:30rem){.u-mih-6-t{min-height:32rem !important}}@media (max-width:30rem){.u-mah-6-t{max-height:32rem !important}}@media (max-width:30rem){.u-miw-7-t{min-width:48rem !important}}@media (max-width:30rem){.u-maw-7-t{max-width:48rem !important}}@media (max-width:30rem){.u-mih-7-t{min-height:48rem !important}}@media (max-width:30rem){.u-mah-7-t{max-height:48rem !important}}@media (max-width:30rem){.u-miw-8-t{min-width:64rem !important}}@media (max-width:30rem){.u-maw-8-t{max-width:64rem !important}}@media (max-width:30rem){.u-mih-8-t{min-height:64rem !important}}@media (max-width:30rem){.u-mah-8-t{max-height:64rem !important}}@media (max-width:30rem){.u-miw-9-t{min-width:96rem !important}}@media (max-width:30rem){.u-maw-9-t{max-width:96rem !important}}@media (max-width:30rem){.u-mih-9-t{min-height:96rem !important}}@media (max-width:30rem){.u-mah-9-t{max-height:96rem !important}}@media (max-width:30rem){.u-miw-100-t{min-width:100% !important}}@media (max-width:30rem){.u-maw-100-t{max-width:100% !important}}@media (max-width:30rem){.u-mih-100-t{min-height:100% !important}}@media (max-width:30rem){.u-mah-100-t{max-height:100% !important}}@media (max-width:30rem){.u-maw-none-t{max-width:none !important}}@media (max-width:30rem){.u-mah-none-t{max-height:none !important}}@media (max-width:30rem){.u-miw-auto-t{min-width:auto !important}}@media (max-width:30rem){.u-mih-auto-t{min-height:auto !important}}@media (max-width:30rem){.u-miw-half-t{min-width:.5rem !important}}@media (max-width:30rem){.u-maw-half-t{max-width:.5rem !important}}@media (max-width:30rem){.u-mih-half-t{min-height:.5rem !important}}@media (max-width:30rem){.u-mah-half-t{max-height:.5rem !important}}@media (max-width:30rem){.u-miw-1-half-t{min-width:1.5rem !important}}@media (max-width:30rem){.u-maw-1-half-t{max-width:1.5rem !important}}@media (max-width:30rem){.u-mih-1-half-t{min-height:1.5rem !important}}@media (max-width:30rem){.u-mah-1-half-t{max-height:1.5rem !important}}@media (max-width:30rem){.u-miw-2-half-t{min-width:2.5rem !important}}@media (max-width:30rem){.u-maw-2-half-t{max-width:2.5rem !important}}@media (max-width:30rem){.u-mih-2-half-t{min-height:2.5rem !important}}@media (max-width:30rem){.u-mah-2-half-t{max-height:2.5rem !important}}@media (max-width:48rem){.u-miw-1-s{min-width:1rem !important}}@media (max-width:48rem){.u-maw-1-s{max-width:1rem !important}}@media (max-width:48rem){.u-mih-1-s{min-height:1rem !important}}@media (max-width:48rem){.u-mah-1-s{max-height:1rem !important}}@media (max-width:48rem){.u-miw-2-s{min-width:2rem !important}}@media (max-width:48rem){.u-maw-2-s{max-width:2rem !important}}@media (max-width:48rem){.u-mih-2-s{min-height:2rem !important}}@media (max-width:48rem){.u-mah-2-s{max-height:2rem !important}}@media (max-width:48rem){.u-miw-3-s{min-width:4rem !important}}@media (max-width:48rem){.u-maw-3-s{max-width:4rem !important}}@media (max-width:48rem){.u-mih-3-s{min-height:4rem !important}}@media (max-width:48rem){.u-mah-3-s{max-height:4rem !important}}@media (max-width:48rem){.u-miw-4-s{min-width:8rem !important}}@media (max-width:48rem){.u-maw-4-s{max-width:8rem !important}}@media (max-width:48rem){.u-mih-4-s{min-height:8rem !important}}@media (max-width:48rem){.u-mah-4-s{max-height:8rem !important}}@media (max-width:48rem){.u-miw-5-s{min-width:16rem !important}}@media (max-width:48rem){.u-maw-5-s{max-width:16rem !important}}@media (max-width:48rem){.u-mih-5-s{min-height:16rem !important}}@media (max-width:48rem){.u-mah-5-s{max-height:16rem !important}}@media (max-width:48rem){.u-miw-6-s{min-width:32rem !important}}@media (max-width:48rem){.u-maw-6-s{max-width:32rem !important}}@media (max-width:48rem){.u-mih-6-s{min-height:32rem !important}}@media (max-width:48rem){.u-mah-6-s{max-height:32rem !important}}@media (max-width:48rem){.u-miw-7-s{min-width:48rem !important}}@media (max-width:48rem){.u-maw-7-s{max-width:48rem !important}}@media (max-width:48rem){.u-mih-7-s{min-height:48rem !important}}@media (max-width:48rem){.u-mah-7-s{max-height:48rem !important}}@media (max-width:48rem){.u-miw-8-s{min-width:64rem !important}}@media (max-width:48rem){.u-maw-8-s{max-width:64rem !important}}@media (max-width:48rem){.u-mih-8-s{min-height:64rem !important}}@media (max-width:48rem){.u-mah-8-s{max-height:64rem !important}}@media (max-width:48rem){.u-miw-9-s{min-width:96rem !important}}@media (max-width:48rem){.u-maw-9-s{max-width:96rem !important}}@media (max-width:48rem){.u-mih-9-s{min-height:96rem !important}}@media (max-width:48rem){.u-mah-9-s{max-height:96rem !important}}@media (max-width:48rem){.u-miw-100-s{min-width:100% !important}}@media (max-width:48rem){.u-maw-100-s{max-width:100% !important}}@media (max-width:48rem){.u-mih-100-s{min-height:100% !important}}@media (max-width:48rem){.u-mah-100-s{max-height:100% !important}}@media (max-width:48rem){.u-maw-none-s{max-width:none !important}}@media (max-width:48rem){.u-mah-none-s{max-height:none !important}}@media (max-width:48rem){.u-miw-auto-s{min-width:auto !important}}@media (max-width:48rem){.u-mih-auto-s{min-height:auto !important}}@media (max-width:48rem){.u-miw-half-s{min-width:.5rem !important}}@media (max-width:48rem){.u-maw-half-s{max-width:.5rem !important}}@media (max-width:48rem){.u-mih-half-s{min-height:.5rem !important}}@media (max-width:48rem){.u-mah-half-s{max-height:.5rem !important}}@media (max-width:48rem){.u-miw-1-half-s{min-width:1.5rem !important}}@media (max-width:48rem){.u-maw-1-half-s{max-width:1.5rem !important}}@media (max-width:48rem){.u-mih-1-half-s{min-height:1.5rem !important}}@media (max-width:48rem){.u-mah-1-half-s{max-height:1.5rem !important}}@media (max-width:48rem){.u-miw-2-half-s{min-width:2.5rem !important}}@media (max-width:48rem){.u-maw-2-half-s{max-width:2.5rem !important}}@media (max-width:48rem){.u-mih-2-half-s{min-height:2.5rem !important}}@media (max-width:48rem){.u-mah-2-half-s{max-height:2.5rem !important}}@media (max-width:63.938rem){.u-miw-1-m{min-width:1rem !important}}@media (max-width:63.938rem){.u-maw-1-m{max-width:1rem !important}}@media (max-width:63.938rem){.u-mih-1-m{min-height:1rem !important}}@media (max-width:63.938rem){.u-mah-1-m{max-height:1rem !important}}@media (max-width:63.938rem){.u-miw-2-m{min-width:2rem !important}}@media (max-width:63.938rem){.u-maw-2-m{max-width:2rem !important}}@media (max-width:63.938rem){.u-mih-2-m{min-height:2rem !important}}@media (max-width:63.938rem){.u-mah-2-m{max-height:2rem !important}}@media (max-width:63.938rem){.u-miw-3-m{min-width:4rem !important}}@media (max-width:63.938rem){.u-maw-3-m{max-width:4rem !important}}@media (max-width:63.938rem){.u-mih-3-m{min-height:4rem !important}}@media (max-width:63.938rem){.u-mah-3-m{max-height:4rem !important}}@media (max-width:63.938rem){.u-miw-4-m{min-width:8rem !important}}@media (max-width:63.938rem){.u-maw-4-m{max-width:8rem !important}}@media (max-width:63.938rem){.u-mih-4-m{min-height:8rem !important}}@media (max-width:63.938rem){.u-mah-4-m{max-height:8rem !important}}@media (max-width:63.938rem){.u-miw-5-m{min-width:16rem !important}}@media (max-width:63.938rem){.u-maw-5-m{max-width:16rem !important}}@media (max-width:63.938rem){.u-mih-5-m{min-height:16rem !important}}@media (max-width:63.938rem){.u-mah-5-m{max-height:16rem !important}}@media (max-width:63.938rem){.u-miw-6-m{min-width:32rem !important}}@media (max-width:63.938rem){.u-maw-6-m{max-width:32rem !important}}@media (max-width:63.938rem){.u-mih-6-m{min-height:32rem !important}}@media (max-width:63.938rem){.u-mah-6-m{max-height:32rem !important}}@media (max-width:63.938rem){.u-miw-7-m{min-width:48rem !important}}@media (max-width:63.938rem){.u-maw-7-m{max-width:48rem !important}}@media (max-width:63.938rem){.u-mih-7-m{min-height:48rem !important}}@media (max-width:63.938rem){.u-mah-7-m{max-height:48rem !important}}@media (max-width:63.938rem){.u-miw-8-m{min-width:64rem !important}}@media (max-width:63.938rem){.u-maw-8-m{max-width:64rem !important}}@media (max-width:63.938rem){.u-mih-8-m{min-height:64rem !important}}@media (max-width:63.938rem){.u-mah-8-m{max-height:64rem !important}}@media (max-width:63.938rem){.u-miw-9-m{min-width:96rem !important}}@media (max-width:63.938rem){.u-maw-9-m{max-width:96rem !important}}@media (max-width:63.938rem){.u-mih-9-m{min-height:96rem !important}}@media (max-width:63.938rem){.u-mah-9-m{max-height:96rem !important}}@media (max-width:63.938rem){.u-miw-100-m{min-width:100% !important}}@media (max-width:63.938rem){.u-maw-100-m{max-width:100% !important}}@media (max-width:63.938rem){.u-mih-100-m{min-height:100% !important}}@media (max-width:63.938rem){.u-mah-100-m{max-height:100% !important}}@media (max-width:63.938rem){.u-maw-none-m{max-width:none !important}}@media (max-width:63.938rem){.u-mah-none-m{max-height:none !important}}@media (max-width:63.938rem){.u-miw-auto-m{min-width:auto !important}}@media (max-width:63.938rem){.u-mih-auto-m{min-height:auto !important}}@media (max-width:63.938rem){.u-miw-half-m{min-width:.5rem !important}}@media (max-width:63.938rem){.u-maw-half-m{max-width:.5rem !important}}@media (max-width:63.938rem){.u-mih-half-m{min-height:.5rem !important}}@media (max-width:63.938rem){.u-mah-half-m{max-height:.5rem !important}}@media (max-width:63.938rem){.u-miw-1-half-m{min-width:1.5rem !important}}@media (max-width:63.938rem){.u-maw-1-half-m{max-width:1.5rem !important}}@media (max-width:63.938rem){.u-mih-1-half-m{min-height:1.5rem !important}}@media (max-width:63.938rem){.u-mah-1-half-m{max-height:1.5rem !important}}@media (max-width:63.938rem){.u-miw-2-half-m{min-width:2.5rem !important}}@media (max-width:63.938rem){.u-maw-2-half-m{max-width:2.5rem !important}}@media (max-width:63.938rem){.u-mih-2-half-m{min-height:2.5rem !important}}@media (max-width:63.938rem){.u-mah-2-half-m{max-height:2.5rem !important}}.u-w-1{width:1rem !important}.u-h-1{height:1rem !important}.u-w-2{width:2rem !important}.u-h-2{height:2rem !important}.u-w-3{width:4rem !important}.u-h-3{height:4rem !important}.u-w-4{width:8rem !important}.u-h-4{height:8rem !important}.u-w-5{width:16rem !important}.u-h-5{height:16rem !important}.u-w-6{width:32rem !important}.u-h-6{height:32rem !important}.u-w-7{width:48rem !important}.u-h-7{height:48rem !important}.u-w-8{width:64rem !important}.u-h-8{height:64rem !important}.u-w-9{width:96rem !important}.u-h-9{height:96rem !important}.u-w-100{width:100% !important}.u-h-100{height:100% !important}.u-w-auto{width:auto !important}.u-h-auto{height:auto !important}.u-w-half{width:.5rem !important}.u-h-half{height:.5rem !important}.u-w-1-half{width:1.5rem !important}.u-h-1-half{height:1.5rem !important}.u-w-2-half{width:2.5rem !important}.u-h-2-half{height:2.5rem !important}@media (max-width:30rem){.u-w-1-t{width:1rem !important}}@media (max-width:30rem){.u-h-1-t{height:1rem !important}}@media (max-width:30rem){.u-w-2-t{width:2rem !important}}@media (max-width:30rem){.u-h-2-t{height:2rem !important}}@media (max-width:30rem){.u-w-3-t{width:4rem !important}}@media (max-width:30rem){.u-h-3-t{height:4rem !important}}@media (max-width:30rem){.u-w-4-t{width:8rem !important}}@media (max-width:30rem){.u-h-4-t{height:8rem !important}}@media (max-width:30rem){.u-w-5-t{width:16rem !important}}@media (max-width:30rem){.u-h-5-t{height:16rem !important}}@media (max-width:30rem){.u-w-6-t{width:32rem !important}}@media (max-width:30rem){.u-h-6-t{height:32rem !important}}@media (max-width:30rem){.u-w-7-t{width:48rem !important}}@media (max-width:30rem){.u-h-7-t{height:48rem !important}}@media (max-width:30rem){.u-w-8-t{width:64rem !important}}@media (max-width:30rem){.u-h-8-t{height:64rem !important}}@media (max-width:30rem){.u-w-9-t{width:96rem !important}}@media (max-width:30rem){.u-h-9-t{height:96rem !important}}@media (max-width:30rem){.u-w-100-t{width:100% !important}}@media (max-width:30rem){.u-h-100-t{height:100% !important}}@media (max-width:30rem){.u-w-auto-t{width:auto !important}}@media (max-width:30rem){.u-h-auto-t{height:auto !important}}@media (max-width:30rem){.u-w-half-t{width:.5rem !important}}@media (max-width:30rem){.u-h-half-t{height:.5rem !important}}@media (max-width:30rem){.u-w-1-half-t{width:1.5rem !important}}@media (max-width:30rem){.u-h-1-half-t{height:1.5rem !important}}@media (max-width:30rem){.u-w-2-half-t{width:2.5rem !important}}@media (max-width:30rem){.u-h-2-half-t{height:2.5rem !important}}@media (max-width:48rem){.u-w-1-s{width:1rem !important}}@media (max-width:48rem){.u-h-1-s{height:1rem !important}}@media (max-width:48rem){.u-w-2-s{width:2rem !important}}@media (max-width:48rem){.u-h-2-s{height:2rem !important}}@media (max-width:48rem){.u-w-3-s{width:4rem !important}}@media (max-width:48rem){.u-h-3-s{height:4rem !important}}@media (max-width:48rem){.u-w-4-s{width:8rem !important}}@media (max-width:48rem){.u-h-4-s{height:8rem !important}}@media (max-width:48rem){.u-w-5-s{width:16rem !important}}@media (max-width:48rem){.u-h-5-s{height:16rem !important}}@media (max-width:48rem){.u-w-6-s{width:32rem !important}}@media (max-width:48rem){.u-h-6-s{height:32rem !important}}@media (max-width:48rem){.u-w-7-s{width:48rem !important}}@media (max-width:48rem){.u-h-7-s{height:48rem !important}}@media (max-width:48rem){.u-w-8-s{width:64rem !important}}@media (max-width:48rem){.u-h-8-s{height:64rem !important}}@media (max-width:48rem){.u-w-9-s{width:96rem !important}}@media (max-width:48rem){.u-h-9-s{height:96rem !important}}@media (max-width:48rem){.u-w-100-s{width:100% !important}}@media (max-width:48rem){.u-h-100-s{height:100% !important}}@media (max-width:48rem){.u-w-auto-s{width:auto !important}}@media (max-width:48rem){.u-h-auto-s{height:auto !important}}@media (max-width:48rem){.u-w-half-s{width:.5rem !important}}@media (max-width:48rem){.u-h-half-s{height:.5rem !important}}@media (max-width:48rem){.u-w-1-half-s{width:1.5rem !important}}@media (max-width:48rem){.u-h-1-half-s{height:1.5rem !important}}@media (max-width:48rem){.u-w-2-half-s{width:2.5rem !important}}@media (max-width:48rem){.u-h-2-half-s{height:2.5rem !important}}@media (max-width:63.938rem){.u-w-1-m{width:1rem !important}}@media (max-width:63.938rem){.u-h-1-m{height:1rem !important}}@media (max-width:63.938rem){.u-w-2-m{width:2rem !important}}@media (max-width:63.938rem){.u-h-2-m{height:2rem !important}}@media (max-width:63.938rem){.u-w-3-m{width:4rem !important}}@media (max-width:63.938rem){.u-h-3-m{height:4rem !important}}@media (max-width:63.938rem){.u-w-4-m{width:8rem !important}}@media (max-width:63.938rem){.u-h-4-m{height:8rem !important}}@media (max-width:63.938rem){.u-w-5-m{width:16rem !important}}@media (max-width:63.938rem){.u-h-5-m{height:16rem !important}}@media (max-width:63.938rem){.u-w-6-m{width:32rem !important}}@media (max-width:63.938rem){.u-h-6-m{height:32rem !important}}@media (max-width:63.938rem){.u-w-7-m{width:48rem !important}}@media (max-width:63.938rem){.u-h-7-m{height:48rem !important}}@media (max-width:63.938rem){.u-w-8-m{width:64rem !important}}@media (max-width:63.938rem){.u-h-8-m{height:64rem !important}}@media (max-width:63.938rem){.u-w-9-m{width:96rem !important}}@media (max-width:63.938rem){.u-h-9-m{height:96rem !important}}@media (max-width:63.938rem){.u-w-100-m{width:100% !important}}@media (max-width:63.938rem){.u-h-100-m{height:100% !important}}@media (max-width:63.938rem){.u-w-auto-m{width:auto !important}}@media (max-width:63.938rem){.u-h-auto-m{height:auto !important}}@media (max-width:63.938rem){.u-w-half-m{width:.5rem !important}}@media (max-width:63.938rem){.u-h-half-m{height:.5rem !important}}@media (max-width:63.938rem){.u-w-1-half-m{width:1.5rem !important}}@media (max-width:63.938rem){.u-h-1-half-m{height:1.5rem !important}}@media (max-width:63.938rem){.u-w-2-half-m{width:2.5rem !important}}@media (max-width:63.938rem){.u-h-2-half-m{height:2.5rem !important}}.u-visuallyhidden{position:absolute !important;border:0 !important;width:.063rem !important;height:.063rem !important;overflow:hidden !important;padding:0 !important;white-space:nowrap !important;clip:rect(.063rem,.063rem,.063rem,.063rem) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important}.u-hide{display:none !important;visibility:hidden !important}@media (max-width:63.938rem){.u-hide--mob{display:none !important}}@media (min-width:64rem){.u-hide--tablet{display:none !important}}@media (min-width:48.063rem){.u-hide--desk{display:none !important}}.u-dn{display:none}.u-di{display:inline}.u-db{display:block}.u-dc{display:contents}.u-dib{display:inline-block}.u-dit{display:inline-table}.u-dt{display:table}.u-dtc{display:table-cell}.u-dt-row{display:table-row}.u-dt-row-group{display:table-row-group}.u-dt-column{display:table-column}.u-dt-column-group{display:table-column-group}@media (max-width:30rem){.u-dn-t{display:none}.u-di-t{display:inline}.u-db-t{display:block}.u-dc-t{display:contents}.u-dib-t{display:inline-block}.u-dit-t{display:inline-table}.u-dt-t{display:table}.u-dtc-t{display:table-cell}.u-dt-row-t{display:table-row}.u-dt-row-group-t{display:table-row-group}.u-dt-column-t{display:table-column}.u-dt-column-group-t{display:table-column-group}}@media (max-width:48rem){.u-dn-s{display:none}.u-di-s{display:inline}.u-db-s{display:block}.u-dc-s{display:contents}.u-dib-s{display:inline-block}.u-dit-s{display:inline-table}.u-dt-s{display:table}.u-dtc-s{display:table-cell}.u-dt-row-s{display:table-row}.u-dt-row-group-s{display:table-row-group}.u-dt-column-s{display:table-column}.u-dt-column-group-s{display:table-column-group}}@media (max-width:63.938rem){.u-dn-m{display:none}.u-di-m{display:inline}.u-db-m{display:block}.u-dc-m{display:contents}.u-dib-m{display:inline-block}.u-dit-m{display:inline-table}.u-dt-m{display:table}.u-dtc-m{display:table-cell}.u-dt-row-m{display:table-row}.u-dt-row-group-m{display:table-row-group}.u-dt-column-m{display:table-column}.u-dt-column-group-m{display:table-column-group}}.u-shake{-webkit-animation-name:shake;animation-name:shake;-webkit-animation-duration:820ms;animation-duration:820ms;-webkit-animation-timing-function:cubic-bezier(.36,.07,.19,.97);animation-timing-function:cubic-bezier(.36,.07,.19,.97);-webkit-animation-fill-mode:both;animation-fill-mode:both}.u-filter-gray-100{-webkit-filter:grayscale(1);filter:grayscale(1)}.u-flex{display:flex}.u-inline-flex{display:inline-flex}.u-flex-none{flex:none}.u-flex-column{flex-direction:column}.u-flex-row{flex-direction:row}.u-flex-wrap{flex-wrap:wrap}.u-flex-nowrap{flex-wrap:nowrap}.u-flex-wrap-reverse{flex-wrap:wrap-reverse}.u-flex-column-reverse{flex-direction:column-reverse}.u-flex-row-reverse{flex-direction:row-reverse}.u-flex-auto{flex:1 1 auto}.u-flex-items-start{align-items:flex-start}.u-flex-items-end{align-items:flex-end}.u-flex-items-center{align-items:center}.u-flex-items-baseline{align-items:baseline}.u-flex-items-stretch{align-items:stretch}.u-flex-self-start{align-self:flex-start}.u-flex-self-end{align-self:flex-end}.u-flex-self-center{align-self:center}.u-flex-self-baseline{align-self:baseline}.u-flex-self-stretch{align-self:stretch}.u-flex-justify-start{justify-content:flex-start}.u-flex-justify-end{justify-content:flex-end}.u-flex-justify-center{justify-content:center}.u-flex-justify-between{justify-content:space-between}.u-flex-justify-around{justify-content:space-around}.u-flex-content-start{align-content:flex-start}.u-flex-content-end{align-content:flex-end}.u-flex-content-center{align-content:center}.u-flex-content-between{align-content:space-between}.u-flex-content-around{align-content:space-around}.u-flex-content-stretch{align-content:stretch}.u-flex-order-0{order:0}.u-flex-order-1{order:1}.u-flex-order-2{order:2}.u-flex-order-3{order:3}.u-flex-order-4{order:4}.u-flex-order-5{order:5}.u-flex-order-6{order:6}.u-flex-order-7{order:7}.u-flex-order-8{order:8}.u-flex-order-last{order:99999}.u-flex-grow-0{flex-grow:0}.u-flex-grow-1{flex-grow:1}.u-flex-shrink-0{flex-shrink:0}.u-flex-shrink-1{flex-shrink:1}@media (max-width:30rem){.u-flex-t{display:flex}.u-inline-flex-t{display:inline-flex}.u-flex-none-t{flex:none}.u-flex-column-t{flex-direction:column}.u-flex-row-t{flex-direction:row}.u-flex-wrap-t{flex-wrap:wrap}.u-flex-nowrap-t{flex-wrap:nowrap}.u-flex-wrap-reverse-t{flex-wrap:wrap-reverse}.u-flex-column-reverse-t{flex-direction:column-reverse}.u-flex-row-reverse-t{flex-direction:row-reverse}.u-flex-auto-t{flex:1 1 auto}.u-flex-items-start-t{align-items:flex-start}.u-flex-items-end-t{align-items:flex-end}.u-flex-items-center-t{align-items:center}.u-flex-items-baseline-t{align-items:baseline}.u-flex-items-stretch-t{align-items:stretch}.u-flex-self-start-t{align-self:flex-start}.u-flex-self-end-t{align-self:flex-end}.u-flex-self-center-t{align-self:center}.u-flex-self-baseline-t{align-self:baseline}.u-flex-self-stretch-t{align-self:stretch}.u-flex-justify-start-t{justify-content:flex-start}.u-flex-justify-end-t{justify-content:flex-end}.u-flex-justify-center-t{justify-content:center}.u-flex-justify-between-t{justify-content:space-between}.u-flex-justify-around-t{justify-content:space-around}.u-flex-content-start-t{align-content:flex-start}.u-flex-content-end-t{align-content:flex-end}.u-flex-content-center-t{align-content:center}.u-flex-content-between-t{align-content:space-between}.u-flex-content-around-t{align-content:space-around}.u-flex-content-stretch-t{align-content:stretch}.u-flex-order-0-t{order:0}.u-flex-order-1-t{order:1}.u-flex-order-2-t{order:2}.u-flex-order-3-t{order:3}.u-flex-order-4-t{order:4}.u-flex-order-5-t{order:5}.u-flex-order-6-t{order:6}.u-flex-order-7-t{order:7}.u-flex-order-8-t{order:8}.u-flex-order-last-t{order:99999}.u-flex-grow-0-t{flex-grow:0}.u-flex-grow-1-t{flex-grow:1}.u-flex-shrink-0-t{flex-shrink:0}.u-flex-shrink-1-t{flex-shrink:1}}@media (max-width:48rem){.u-flex-s{display:flex}.u-inline-flex-s{display:inline-flex}.u-flex-none-s{flex:none}.u-flex-column-s{flex-direction:column}.u-flex-row-s{flex-direction:row}.u-flex-wrap-s{flex-wrap:wrap}.u-flex-nowrap-s{flex-wrap:nowrap}.u-flex-wrap-reverse-s{flex-wrap:wrap-reverse}.u-flex-column-reverse-s{flex-direction:column-reverse}.u-flex-row-reverse-s{flex-direction:row-reverse}.u-flex-auto-s{flex:1 1 auto}.u-flex-items-start-s{align-items:flex-start}.u-flex-items-end-s{align-items:flex-end}.u-flex-items-center-s{align-items:center}.u-flex-items-baseline-s{align-items:baseline}.u-flex-items-stretch-s{align-items:stretch}.u-flex-self-start-s{align-self:flex-start}.u-flex-self-end-s{align-self:flex-end}.u-flex-self-center-s{align-self:center}.u-flex-self-baseline-s{align-self:baseline}.u-flex-self-stretch-s{align-self:stretch}.u-flex-justify-start-s{justify-content:flex-start}.u-flex-justify-end-s{justify-content:flex-end}.u-flex-justify-center-s{justify-content:center}.u-flex-justify-between-s{justify-content:space-between}.u-flex-justify-around-s{justify-content:space-around}.u-flex-content-start-s{align-content:flex-start}.u-flex-content-end-s{align-content:flex-end}.u-flex-content-center-s{align-content:center}.u-flex-content-between-s{align-content:space-between}.u-flex-content-around-s{align-content:space-around}.u-flex-content-stretch-s{align-content:stretch}.u-flex-order-0-s{order:0}.u-flex-order-1-s{order:1}.u-flex-order-2-s{order:2}.u-flex-order-3-s{order:3}.u-flex-order-4-s{order:4}.u-flex-order-5-s{order:5}.u-flex-order-6-s{order:6}.u-flex-order-7-s{order:7}.u-flex-order-8-s{order:8}.u-flex-order-last-s{order:99999}.u-flex-grow-0-s{flex-grow:0}.u-flex-grow-1-s{flex-grow:1}.u-flex-shrink-0-s{flex-shrink:0}.u-flex-shrink-1-s{flex-shrink:1}}@media (max-width:63.938rem){.u-flex-m{display:flex}.u-inline-flex-m{display:inline-flex}.u-flex-none-m{flex:none}.u-flex-column-m{flex-direction:column}.u-flex-row-m{flex-direction:row}.u-flex-wrap-m{flex-wrap:wrap}.u-flex-nowrap-m{flex-wrap:nowrap}.u-flex-wrap-reverse-m{flex-wrap:wrap-reverse}.u-flex-column-reverse-m{flex-direction:column-reverse}.u-flex-row-reverse-m{flex-direction:row-reverse}.u-flex-auto-m{flex:1 1 auto}.u-flex-items-start-m{align-items:flex-start}.u-flex-items-end-m{align-items:flex-end}.u-flex-items-center-m{align-items:center}.u-flex-items-baseline-m{align-items:baseline}.u-flex-items-stretch-m{align-items:stretch}.u-flex-self-start-m{align-self:flex-start}.u-flex-self-end-m{align-self:flex-end}.u-flex-self-center-m{align-self:center}.u-flex-self-baseline-m{align-self:baseline}.u-flex-self-stretch-m{align-self:stretch}.u-flex-justify-start-m{justify-content:flex-start}.u-flex-justify-end-m{justify-content:flex-end}.u-flex-justify-center-m{justify-content:center}.u-flex-justify-between-m{justify-content:space-between}.u-flex-justify-around-m{justify-content:space-around}.u-flex-content-start-m{align-content:flex-start}.u-flex-content-end-m{align-content:flex-end}.u-flex-content-center-m{align-content:center}.u-flex-content-between-m{align-content:space-between}.u-flex-content-around-m{align-content:space-around}.u-flex-content-stretch-m{align-content:stretch}.u-flex-order-0-m{order:0}.u-flex-order-1-m{order:1}.u-flex-order-2-m{order:2}.u-flex-order-3-m{order:3}.u-flex-order-4-m{order:4}.u-flex-order-5-m{order:5}.u-flex-order-6-m{order:6}.u-flex-order-7-m{order:7}.u-flex-order-8-m{order:8}.u-flex-order-last-m{order:99999}.u-flex-grow-0-m{flex-grow:0}.u-flex-grow-1-m{flex-grow:1}.u-flex-shrink-0-m{flex-shrink:0}.u-flex-shrink-1-m{flex-shrink:1}}.u-nolist{list-style-type:none}@media (max-width:30rem){.u-nolist-t{list-style-type:none}}@media (max-width:48rem){.u-nolist-s{list-style-type:none}}@media (max-width:63.938rem){.u-nolist-m{list-style-type:none}}.u-o-100{opacity:1}.u-o-90{opacity:.9}.u-o-80{opacity:.8}.u-o-70{opacity:.7}.u-o-60{opacity:.6}.u-o-50{opacity:.5}.u-o-40{opacity:.4}.u-o-30{opacity:.3}.u-o-20{opacity:.2}.u-o-10{opacity:.1}.u-o-05{opacity:.05}.u-o-025{opacity:.025}.u-o-0{opacity:0}.u-ov-visible{overflow:visible !important}.u-ov-hidden{overflow:hidden !important}.u-ov-scroll{overflow:scroll !important}.u-ov-auto{overflow:auto !important}.u-p-0{padding:0 !important}.u-pt-0{padding-top:0 !important}.u-pb-0{padding-bottom:0 !important}.u-pl-0{padding-left:0 !important}.u-pr-0{padding-right:0 !important}.u-pv-0{padding-top:0 !important;padding-bottom:0 !important}.u-ph-0{padding-left:0 !important;padding-right:0 !important}.u-p-1{padding:1rem !important}.u-pt-1{padding-top:1rem !important}.u-pb-1{padding-bottom:1rem !important}.u-pl-1{padding-left:1rem !important}.u-pr-1{padding-right:1rem !important}.u-pv-1{padding-top:1rem !important;padding-bottom:1rem !important}.u-ph-1{padding-left:1rem !important;padding-right:1rem !important}.u-p-2{padding:2rem !important}.u-pt-2{padding-top:2rem !important}.u-pb-2{padding-bottom:2rem !important}.u-pl-2{padding-left:2rem !important}.u-pr-2{padding-right:2rem !important}.u-pv-2{padding-top:2rem !important;padding-bottom:2rem !important}.u-ph-2{padding-left:2rem !important;padding-right:2rem !important}.u-p-3{padding:3rem !important}.u-pt-3{padding-top:3rem !important}.u-pb-3{padding-bottom:3rem !important}.u-pl-3{padding-left:3rem !important}.u-pr-3{padding-right:3rem !important}.u-pv-3{padding-top:3rem !important;padding-bottom:3rem !important}.u-ph-3{padding-left:3rem !important;padding-right:3rem !important}.u-p-auto{padding:auto !important}.u-pt-auto{padding-top:auto !important}.u-pb-auto{padding-bottom:auto !important}.u-pl-auto{padding-left:auto !important}.u-pr-auto{padding-right:auto !important}.u-pv-auto{padding-top:auto !important;padding-bottom:auto !important}.u-ph-auto{padding-left:auto !important;padding-right:auto !important}.u-p-half{padding:.5rem !important}.u-pt-half{padding-top:.5rem !important}.u-pb-half{padding-bottom:.5rem !important}.u-pl-half{padding-left:.5rem !important}.u-pr-half{padding-right:.5rem !important}.u-pv-half{padding-top:.5rem !important;padding-bottom:.5rem !important}.u-ph-half{padding-left:.5rem !important;padding-right:.5rem !important}.u-p-1-half{padding:1.5rem !important}.u-pt-1-half{padding-top:1.5rem !important}.u-pb-1-half{padding-bottom:1.5rem !important}.u-pl-1-half{padding-left:1.5rem !important}.u-pr-1-half{padding-right:1.5rem !important}.u-pv-1-half{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.u-ph-1-half{padding-left:1.5rem !important;padding-right:1.5rem !important}.u-p-2-half{padding:2.5rem !important}.u-pt-2-half{padding-top:2.5rem !important}.u-pb-2-half{padding-bottom:2.5rem !important}.u-pl-2-half{padding-left:2.5rem !important}.u-pr-2-half{padding-right:2.5rem !important}.u-pv-2-half{padding-top:2.5rem !important;padding-bottom:2.5rem !important}.u-ph-2-half{padding-left:2.5rem !important;padding-right:2.5rem !important}.u-m-0{margin:0 !important}.u-mt-0{margin-top:0 !important}.u-mb-0{margin-bottom:0 !important}.u-ml-0{margin-left:0 !important}.u-mr-0{margin-right:0 !important}.u-mv-0{margin-top:0 !important;margin-bottom:0 !important}.u-mh-0{margin-left:0 !important;margin-right:0 !important}.u-m-1{margin:1rem !important}.u-mt-1{margin-top:1rem !important}.u-mb-1{margin-bottom:1rem !important}.u-ml-1{margin-left:1rem !important}.u-mr-1{margin-right:1rem !important}.u-mv-1{margin-top:1rem !important;margin-bottom:1rem !important}.u-mh-1{margin-left:1rem !important;margin-right:1rem !important}.u-m-2{margin:2rem !important}.u-mt-2{margin-top:2rem !important}.u-mb-2{margin-bottom:2rem !important}.u-ml-2{margin-left:2rem !important}.u-mr-2{margin-right:2rem !important}.u-mv-2{margin-top:2rem !important;margin-bottom:2rem !important}.u-mh-2{margin-left:2rem !important;margin-right:2rem !important}.u-m-3{margin:3rem !important}.u-mt-3{margin-top:3rem !important}.u-mb-3{margin-bottom:3rem !important}.u-ml-3{margin-left:3rem !important}.u-mr-3{margin-right:3rem !important}.u-mv-3{margin-top:3rem !important;margin-bottom:3rem !important}.u-mh-3{margin-left:3rem !important;margin-right:3rem !important}.u-m-auto{margin:auto !important}.u-mt-auto{margin-top:auto !important}.u-mb-auto{margin-bottom:auto !important}.u-ml-auto{margin-left:auto !important}.u-mr-auto{margin-right:auto !important}.u-mv-auto{margin-top:auto !important;margin-bottom:auto !important}.u-mh-auto{margin-left:auto !important;margin-right:auto !important}.u-m-half{margin:.5rem !important}.u-mt-half{margin-top:.5rem !important}.u-mb-half{margin-bottom:.5rem !important}.u-ml-half{margin-left:.5rem !important}.u-mr-half{margin-right:.5rem !important}.u-mv-half{margin-top:.5rem !important;margin-bottom:.5rem !important}.u-mh-half{margin-left:.5rem !important;margin-right:.5rem !important}.u-m-1-half{margin:1.5rem !important}.u-mt-1-half{margin-top:1.5rem !important}.u-mb-1-half{margin-bottom:1.5rem !important}.u-ml-1-half{margin-left:1.5rem !important}.u-mr-1-half{margin-right:1.5rem !important}.u-mv-1-half{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.u-mh-1-half{margin-left:1.5rem !important;margin-right:1.5rem !important}.u-m-2-half{margin:2.5rem !important}.u-mt-2-half{margin-top:2.5rem !important}.u-mb-2-half{margin-bottom:2.5rem !important}.u-ml-2-half{margin-left:2.5rem !important}.u-mr-2-half{margin-right:2.5rem !important}.u-mv-2-half{margin-top:2.5rem !important;margin-bottom:2.5rem !important}.u-mh-2-half{margin-left:2.5rem !important;margin-right:2.5rem !important}@media (max-width:30rem){.u-p-0-t{padding:0 !important}}@media (max-width:30rem){.u-pt-0-t{padding-top:0 !important}}@media (max-width:30rem){.u-pb-0-t{padding-bottom:0 !important}}@media (max-width:30rem){.u-pl-0-t{padding-left:0 !important}}@media (max-width:30rem){.u-pr-0-t{padding-right:0 !important}}@media (max-width:30rem){.u-pv-0-t{padding-top:0 !important;padding-bottom:0 !important}}@media (max-width:30rem){.u-ph-0-t{padding-left:0 !important;padding-right:0 !important}}@media (max-width:30rem){.u-p-1-t{padding:1rem !important}}@media (max-width:30rem){.u-pt-1-t{padding-top:1rem !important}}@media (max-width:30rem){.u-pb-1-t{padding-bottom:1rem !important}}@media (max-width:30rem){.u-pl-1-t{padding-left:1rem !important}}@media (max-width:30rem){.u-pr-1-t{padding-right:1rem !important}}@media (max-width:30rem){.u-pv-1-t{padding-top:1rem !important;padding-bottom:1rem !important}}@media (max-width:30rem){.u-ph-1-t{padding-left:1rem !important;padding-right:1rem !important}}@media (max-width:30rem){.u-p-2-t{padding:2rem !important}}@media (max-width:30rem){.u-pt-2-t{padding-top:2rem !important}}@media (max-width:30rem){.u-pb-2-t{padding-bottom:2rem !important}}@media (max-width:30rem){.u-pl-2-t{padding-left:2rem !important}}@media (max-width:30rem){.u-pr-2-t{padding-right:2rem !important}}@media (max-width:30rem){.u-pv-2-t{padding-top:2rem !important;padding-bottom:2rem !important}}@media (max-width:30rem){.u-ph-2-t{padding-left:2rem !important;padding-right:2rem !important}}@media (max-width:30rem){.u-p-3-t{padding:3rem !important}}@media (max-width:30rem){.u-pt-3-t{padding-top:3rem !important}}@media (max-width:30rem){.u-pb-3-t{padding-bottom:3rem !important}}@media (max-width:30rem){.u-pl-3-t{padding-left:3rem !important}}@media (max-width:30rem){.u-pr-3-t{padding-right:3rem !important}}@media (max-width:30rem){.u-pv-3-t{padding-top:3rem !important;padding-bottom:3rem !important}}@media (max-width:30rem){.u-ph-3-t{padding-left:3rem !important;padding-right:3rem !important}}@media (max-width:30rem){.u-p-auto-t{padding:auto !important}}@media (max-width:30rem){.u-pt-auto-t{padding-top:auto !important}}@media (max-width:30rem){.u-pb-auto-t{padding-bottom:auto !important}}@media (max-width:30rem){.u-pl-auto-t{padding-left:auto !important}}@media (max-width:30rem){.u-pr-auto-t{padding-right:auto !important}}@media (max-width:30rem){.u-pv-auto-t{padding-top:auto !important;padding-bottom:auto !important}}@media (max-width:30rem){.u-ph-auto-t{padding-left:auto !important;padding-right:auto !important}}@media (max-width:30rem){.u-p-half-t{padding:.5rem !important}}@media (max-width:30rem){.u-pt-half-t{padding-top:.5rem !important}}@media (max-width:30rem){.u-pb-half-t{padding-bottom:.5rem !important}}@media (max-width:30rem){.u-pl-half-t{padding-left:.5rem !important}}@media (max-width:30rem){.u-pr-half-t{padding-right:.5rem !important}}@media (max-width:30rem){.u-pv-half-t{padding-top:.5rem !important;padding-bottom:.5rem !important}}@media (max-width:30rem){.u-ph-half-t{padding-left:.5rem !important;padding-right:.5rem !important}}@media (max-width:30rem){.u-p-1-half-t{padding:1.5rem !important}}@media (max-width:30rem){.u-pt-1-half-t{padding-top:1.5rem !important}}@media (max-width:30rem){.u-pb-1-half-t{padding-bottom:1.5rem !important}}@media (max-width:30rem){.u-pl-1-half-t{padding-left:1.5rem !important}}@media (max-width:30rem){.u-pr-1-half-t{padding-right:1.5rem !important}}@media (max-width:30rem){.u-pv-1-half-t{padding-top:1.5rem !important;padding-bottom:1.5rem !important}}@media (max-width:30rem){.u-ph-1-half-t{padding-left:1.5rem !important;padding-right:1.5rem !important}}@media (max-width:30rem){.u-p-2-half-t{padding:2.5rem !important}}@media (max-width:30rem){.u-pt-2-half-t{padding-top:2.5rem !important}}@media (max-width:30rem){.u-pb-2-half-t{padding-bottom:2.5rem !important}}@media (max-width:30rem){.u-pl-2-half-t{padding-left:2.5rem !important}}@media (max-width:30rem){.u-pr-2-half-t{padding-right:2.5rem !important}}@media (max-width:30rem){.u-pv-2-half-t{padding-top:2.5rem !important;padding-bottom:2.5rem !important}}@media (max-width:30rem){.u-ph-2-half-t{padding-left:2.5rem !important;padding-right:2.5rem !important}}@media (max-width:30rem){.u-m-0-t{margin:0 !important}}@media (max-width:30rem){.u-mt-0-t{margin-top:0 !important}}@media (max-width:30rem){.u-mb-0-t{margin-bottom:0 !important}}@media (max-width:30rem){.u-ml-0-t{margin-left:0 !important}}@media (max-width:30rem){.u-mr-0-t{margin-right:0 !important}}@media (max-width:30rem){.u-mv-0-t{margin-top:0 !important;margin-bottom:0 !important}}@media (max-width:30rem){.u-mh-0-t{margin-left:0 !important;margin-right:0 !important}}@media (max-width:30rem){.u-m-1-t{margin:1rem !important}}@media (max-width:30rem){.u-mt-1-t{margin-top:1rem !important}}@media (max-width:30rem){.u-mb-1-t{margin-bottom:1rem !important}}@media (max-width:30rem){.u-ml-1-t{margin-left:1rem !important}}@media (max-width:30rem){.u-mr-1-t{margin-right:1rem !important}}@media (max-width:30rem){.u-mv-1-t{margin-top:1rem !important;margin-bottom:1rem !important}}@media (max-width:30rem){.u-mh-1-t{margin-left:1rem !important;margin-right:1rem !important}}@media (max-width:30rem){.u-m-2-t{margin:2rem !important}}@media (max-width:30rem){.u-mt-2-t{margin-top:2rem !important}}@media (max-width:30rem){.u-mb-2-t{margin-bottom:2rem !important}}@media (max-width:30rem){.u-ml-2-t{margin-left:2rem !important}}@media (max-width:30rem){.u-mr-2-t{margin-right:2rem !important}}@media (max-width:30rem){.u-mv-2-t{margin-top:2rem !important;margin-bottom:2rem !important}}@media (max-width:30rem){.u-mh-2-t{margin-left:2rem !important;margin-right:2rem !important}}@media (max-width:30rem){.u-m-3-t{margin:3rem !important}}@media (max-width:30rem){.u-mt-3-t{margin-top:3rem !important}}@media (max-width:30rem){.u-mb-3-t{margin-bottom:3rem !important}}@media (max-width:30rem){.u-ml-3-t{margin-left:3rem !important}}@media (max-width:30rem){.u-mr-3-t{margin-right:3rem !important}}@media (max-width:30rem){.u-mv-3-t{margin-top:3rem !important;margin-bottom:3rem !important}}@media (max-width:30rem){.u-mh-3-t{margin-left:3rem !important;margin-right:3rem !important}}@media (max-width:30rem){.u-m-auto-t{margin:auto !important}}@media (max-width:30rem){.u-mt-auto-t{margin-top:auto !important}}@media (max-width:30rem){.u-mb-auto-t{margin-bottom:auto !important}}@media (max-width:30rem){.u-ml-auto-t{margin-left:auto !important}}@media (max-width:30rem){.u-mr-auto-t{margin-right:auto !important}}@media (max-width:30rem){.u-mv-auto-t{margin-top:auto !important;margin-bottom:auto !important}}@media (max-width:30rem){.u-mh-auto-t{margin-left:auto !important;margin-right:auto !important}}@media (max-width:30rem){.u-m-half-t{margin:.5rem !important}}@media (max-width:30rem){.u-mt-half-t{margin-top:.5rem !important}}@media (max-width:30rem){.u-mb-half-t{margin-bottom:.5rem !important}}@media (max-width:30rem){.u-ml-half-t{margin-left:.5rem !important}}@media (max-width:30rem){.u-mr-half-t{margin-right:.5rem !important}}@media (max-width:30rem){.u-mv-half-t{margin-top:.5rem !important;margin-bottom:.5rem !important}}@media (max-width:30rem){.u-mh-half-t{margin-left:.5rem !important;margin-right:.5rem !important}}@media (max-width:30rem){.u-m-1-half-t{margin:1.5rem !important}}@media (max-width:30rem){.u-mt-1-half-t{margin-top:1.5rem !important}}@media (max-width:30rem){.u-mb-1-half-t{margin-bottom:1.5rem !important}}@media (max-width:30rem){.u-ml-1-half-t{margin-left:1.5rem !important}}@media (max-width:30rem){.u-mr-1-half-t{margin-right:1.5rem !important}}@media (max-width:30rem){.u-mv-1-half-t{margin-top:1.5rem !important;margin-bottom:1.5rem !important}}@media (max-width:30rem){.u-mh-1-half-t{margin-left:1.5rem !important;margin-right:1.5rem !important}}@media (max-width:30rem){.u-m-2-half-t{margin:2.5rem !important}}@media (max-width:30rem){.u-mt-2-half-t{margin-top:2.5rem !important}}@media (max-width:30rem){.u-mb-2-half-t{margin-bottom:2.5rem !important}}@media (max-width:30rem){.u-ml-2-half-t{margin-left:2.5rem !important}}@media (max-width:30rem){.u-mr-2-half-t{margin-right:2.5rem !important}}@media (max-width:30rem){.u-mv-2-half-t{margin-top:2.5rem !important;margin-bottom:2.5rem !important}}@media (max-width:30rem){.u-mh-2-half-t{margin-left:2.5rem !important;margin-right:2.5rem !important}}@media (max-width:48rem){.u-p-0-s{padding:0 !important}}@media (max-width:48rem){.u-pt-0-s{padding-top:0 !important}}@media (max-width:48rem){.u-pb-0-s{padding-bottom:0 !important}}@media (max-width:48rem){.u-pl-0-s{padding-left:0 !important}}@media (max-width:48rem){.u-pr-0-s{padding-right:0 !important}}@media (max-width:48rem){.u-pv-0-s{padding-top:0 !important;padding-bottom:0 !important}}@media (max-width:48rem){.u-ph-0-s{padding-left:0 !important;padding-right:0 !important}}@media (max-width:48rem){.u-p-1-s{padding:1rem !important}}@media (max-width:48rem){.u-pt-1-s{padding-top:1rem !important}}@media (max-width:48rem){.u-pb-1-s{padding-bottom:1rem !important}}@media (max-width:48rem){.u-pl-1-s{padding-left:1rem !important}}@media (max-width:48rem){.u-pr-1-s{padding-right:1rem !important}}@media (max-width:48rem){.u-pv-1-s{padding-top:1rem !important;padding-bottom:1rem !important}}@media (max-width:48rem){.u-ph-1-s{padding-left:1rem !important;padding-right:1rem !important}}@media (max-width:48rem){.u-p-2-s{padding:2rem !important}}@media (max-width:48rem){.u-pt-2-s{padding-top:2rem !important}}@media (max-width:48rem){.u-pb-2-s{padding-bottom:2rem !important}}@media (max-width:48rem){.u-pl-2-s{padding-left:2rem !important}}@media (max-width:48rem){.u-pr-2-s{padding-right:2rem !important}}@media (max-width:48rem){.u-pv-2-s{padding-top:2rem !important;padding-bottom:2rem !important}}@media (max-width:48rem){.u-ph-2-s{padding-left:2rem !important;padding-right:2rem !important}}@media (max-width:48rem){.u-p-3-s{padding:3rem !important}}@media (max-width:48rem){.u-pt-3-s{padding-top:3rem !important}}@media (max-width:48rem){.u-pb-3-s{padding-bottom:3rem !important}}@media (max-width:48rem){.u-pl-3-s{padding-left:3rem !important}}@media (max-width:48rem){.u-pr-3-s{padding-right:3rem !important}}@media (max-width:48rem){.u-pv-3-s{padding-top:3rem !important;padding-bottom:3rem !important}}@media (max-width:48rem){.u-ph-3-s{padding-left:3rem !important;padding-right:3rem !important}}@media (max-width:48rem){.u-p-auto-s{padding:auto !important}}@media (max-width:48rem){.u-pt-auto-s{padding-top:auto !important}}@media (max-width:48rem){.u-pb-auto-s{padding-bottom:auto !important}}@media (max-width:48rem){.u-pl-auto-s{padding-left:auto !important}}@media (max-width:48rem){.u-pr-auto-s{padding-right:auto !important}}@media (max-width:48rem){.u-pv-auto-s{padding-top:auto !important;padding-bottom:auto !important}}@media (max-width:48rem){.u-ph-auto-s{padding-left:auto !important;padding-right:auto !important}}@media (max-width:48rem){.u-p-half-s{padding:.5rem !important}}@media (max-width:48rem){.u-pt-half-s{padding-top:.5rem !important}}@media (max-width:48rem){.u-pb-half-s{padding-bottom:.5rem !important}}@media (max-width:48rem){.u-pl-half-s{padding-left:.5rem !important}}@media (max-width:48rem){.u-pr-half-s{padding-right:.5rem !important}}@media (max-width:48rem){.u-pv-half-s{padding-top:.5rem !important;padding-bottom:.5rem !important}}@media (max-width:48rem){.u-ph-half-s{padding-left:.5rem !important;padding-right:.5rem !important}}@media (max-width:48rem){.u-p-1-half-s{padding:1.5rem !important}}@media (max-width:48rem){.u-pt-1-half-s{padding-top:1.5rem !important}}@media (max-width:48rem){.u-pb-1-half-s{padding-bottom:1.5rem !important}}@media (max-width:48rem){.u-pl-1-half-s{padding-left:1.5rem !important}}@media (max-width:48rem){.u-pr-1-half-s{padding-right:1.5rem !important}}@media (max-width:48rem){.u-pv-1-half-s{padding-top:1.5rem !important;padding-bottom:1.5rem !important}}@media (max-width:48rem){.u-ph-1-half-s{padding-left:1.5rem !important;padding-right:1.5rem !important}}@media (max-width:48rem){.u-p-2-half-s{padding:2.5rem !important}}@media (max-width:48rem){.u-pt-2-half-s{padding-top:2.5rem !important}}@media (max-width:48rem){.u-pb-2-half-s{padding-bottom:2.5rem !important}}@media (max-width:48rem){.u-pl-2-half-s{padding-left:2.5rem !important}}@media (max-width:48rem){.u-pr-2-half-s{padding-right:2.5rem !important}}@media (max-width:48rem){.u-pv-2-half-s{padding-top:2.5rem !important;padding-bottom:2.5rem !important}}@media (max-width:48rem){.u-ph-2-half-s{padding-left:2.5rem !important;padding-right:2.5rem !important}}@media (max-width:48rem){.u-m-0-s{margin:0 !important}}@media (max-width:48rem){.u-mt-0-s{margin-top:0 !important}}@media (max-width:48rem){.u-mb-0-s{margin-bottom:0 !important}}@media (max-width:48rem){.u-ml-0-s{margin-left:0 !important}}@media (max-width:48rem){.u-mr-0-s{margin-right:0 !important}}@media (max-width:48rem){.u-mv-0-s{margin-top:0 !important;margin-bottom:0 !important}}@media (max-width:48rem){.u-mh-0-s{margin-left:0 !important;margin-right:0 !important}}@media (max-width:48rem){.u-m-1-s{margin:1rem !important}}@media (max-width:48rem){.u-mt-1-s{margin-top:1rem !important}}@media (max-width:48rem){.u-mb-1-s{margin-bottom:1rem !important}}@media (max-width:48rem){.u-ml-1-s{margin-left:1rem !important}}@media (max-width:48rem){.u-mr-1-s{margin-right:1rem !important}}@media (max-width:48rem){.u-mv-1-s{margin-top:1rem !important;margin-bottom:1rem !important}}@media (max-width:48rem){.u-mh-1-s{margin-left:1rem !important;margin-right:1rem !important}}@media (max-width:48rem){.u-m-2-s{margin:2rem !important}}@media (max-width:48rem){.u-mt-2-s{margin-top:2rem !important}}@media (max-width:48rem){.u-mb-2-s{margin-bottom:2rem !important}}@media (max-width:48rem){.u-ml-2-s{margin-left:2rem !important}}@media (max-width:48rem){.u-mr-2-s{margin-right:2rem !important}}@media (max-width:48rem){.u-mv-2-s{margin-top:2rem !important;margin-bottom:2rem !important}}@media (max-width:48rem){.u-mh-2-s{margin-left:2rem !important;margin-right:2rem !important}}@media (max-width:48rem){.u-m-3-s{margin:3rem !important}}@media (max-width:48rem){.u-mt-3-s{margin-top:3rem !important}}@media (max-width:48rem){.u-mb-3-s{margin-bottom:3rem !important}}@media (max-width:48rem){.u-ml-3-s{margin-left:3rem !important}}@media (max-width:48rem){.u-mr-3-s{margin-right:3rem !important}}@media (max-width:48rem){.u-mv-3-s{margin-top:3rem !important;margin-bottom:3rem !important}}@media (max-width:48rem){.u-mh-3-s{margin-left:3rem !important;margin-right:3rem !important}}@media (max-width:48rem){.u-m-auto-s{margin:auto !important}}@media (max-width:48rem){.u-mt-auto-s{margin-top:auto !important}}@media (max-width:48rem){.u-mb-auto-s{margin-bottom:auto !important}}@media (max-width:48rem){.u-ml-auto-s{margin-left:auto !important}}@media (max-width:48rem){.u-mr-auto-s{margin-right:auto !important}}@media (max-width:48rem){.u-mv-auto-s{margin-top:auto !important;margin-bottom:auto !important}}@media (max-width:48rem){.u-mh-auto-s{margin-left:auto !important;margin-right:auto !important}}@media (max-width:48rem){.u-m-half-s{margin:.5rem !important}}@media (max-width:48rem){.u-mt-half-s{margin-top:.5rem !important}}@media (max-width:48rem){.u-mb-half-s{margin-bottom:.5rem !important}}@media (max-width:48rem){.u-ml-half-s{margin-left:.5rem !important}}@media (max-width:48rem){.u-mr-half-s{margin-right:.5rem !important}}@media (max-width:48rem){.u-mv-half-s{margin-top:.5rem !important;margin-bottom:.5rem !important}}@media (max-width:48rem){.u-mh-half-s{margin-left:.5rem !important;margin-right:.5rem !important}}@media (max-width:48rem){.u-m-1-half-s{margin:1.5rem !important}}@media (max-width:48rem){.u-mt-1-half-s{margin-top:1.5rem !important}}@media (max-width:48rem){.u-mb-1-half-s{margin-bottom:1.5rem !important}}@media (max-width:48rem){.u-ml-1-half-s{margin-left:1.5rem !important}}@media (max-width:48rem){.u-mr-1-half-s{margin-right:1.5rem !important}}@media (max-width:48rem){.u-mv-1-half-s{margin-top:1.5rem !important;margin-bottom:1.5rem !important}}@media (max-width:48rem){.u-mh-1-half-s{margin-left:1.5rem !important;margin-right:1.5rem !important}}@media (max-width:48rem){.u-m-2-half-s{margin:2.5rem !important}}@media (max-width:48rem){.u-mt-2-half-s{margin-top:2.5rem !important}}@media (max-width:48rem){.u-mb-2-half-s{margin-bottom:2.5rem !important}}@media (max-width:48rem){.u-ml-2-half-s{margin-left:2.5rem !important}}@media (max-width:48rem){.u-mr-2-half-s{margin-right:2.5rem !important}}@media (max-width:48rem){.u-mv-2-half-s{margin-top:2.5rem !important;margin-bottom:2.5rem !important}}@media (max-width:48rem){.u-mh-2-half-s{margin-left:2.5rem !important;margin-right:2.5rem !important}}@media (max-width:63.938rem){.u-p-0-m{padding:0 !important}}@media (max-width:63.938rem){.u-pt-0-m{padding-top:0 !important}}@media (max-width:63.938rem){.u-pb-0-m{padding-bottom:0 !important}}@media (max-width:63.938rem){.u-pl-0-m{padding-left:0 !important}}@media (max-width:63.938rem){.u-pr-0-m{padding-right:0 !important}}@media (max-width:63.938rem){.u-pv-0-m{padding-top:0 !important;padding-bottom:0 !important}}@media (max-width:63.938rem){.u-ph-0-m{padding-left:0 !important;padding-right:0 !important}}@media (max-width:63.938rem){.u-p-1-m{padding:1rem !important}}@media (max-width:63.938rem){.u-pt-1-m{padding-top:1rem !important}}@media (max-width:63.938rem){.u-pb-1-m{padding-bottom:1rem !important}}@media (max-width:63.938rem){.u-pl-1-m{padding-left:1rem !important}}@media (max-width:63.938rem){.u-pr-1-m{padding-right:1rem !important}}@media (max-width:63.938rem){.u-pv-1-m{padding-top:1rem !important;padding-bottom:1rem !important}}@media (max-width:63.938rem){.u-ph-1-m{padding-left:1rem !important;padding-right:1rem !important}}@media (max-width:63.938rem){.u-p-2-m{padding:2rem !important}}@media (max-width:63.938rem){.u-pt-2-m{padding-top:2rem !important}}@media (max-width:63.938rem){.u-pb-2-m{padding-bottom:2rem !important}}@media (max-width:63.938rem){.u-pl-2-m{padding-left:2rem !important}}@media (max-width:63.938rem){.u-pr-2-m{padding-right:2rem !important}}@media (max-width:63.938rem){.u-pv-2-m{padding-top:2rem !important;padding-bottom:2rem !important}}@media (max-width:63.938rem){.u-ph-2-m{padding-left:2rem !important;padding-right:2rem !important}}@media (max-width:63.938rem){.u-p-3-m{padding:3rem !important}}@media (max-width:63.938rem){.u-pt-3-m{padding-top:3rem !important}}@media (max-width:63.938rem){.u-pb-3-m{padding-bottom:3rem !important}}@media (max-width:63.938rem){.u-pl-3-m{padding-left:3rem !important}}@media (max-width:63.938rem){.u-pr-3-m{padding-right:3rem !important}}@media (max-width:63.938rem){.u-pv-3-m{padding-top:3rem !important;padding-bottom:3rem !important}}@media (max-width:63.938rem){.u-ph-3-m{padding-left:3rem !important;padding-right:3rem !important}}@media (max-width:63.938rem){.u-p-auto-m{padding:auto !important}}@media (max-width:63.938rem){.u-pt-auto-m{padding-top:auto !important}}@media (max-width:63.938rem){.u-pb-auto-m{padding-bottom:auto !important}}@media (max-width:63.938rem){.u-pl-auto-m{padding-left:auto !important}}@media (max-width:63.938rem){.u-pr-auto-m{padding-right:auto !important}}@media (max-width:63.938rem){.u-pv-auto-m{padding-top:auto !important;padding-bottom:auto !important}}@media (max-width:63.938rem){.u-ph-auto-m{padding-left:auto !important;padding-right:auto !important}}@media (max-width:63.938rem){.u-p-half-m{padding:.5rem !important}}@media (max-width:63.938rem){.u-pt-half-m{padding-top:.5rem !important}}@media (max-width:63.938rem){.u-pb-half-m{padding-bottom:.5rem !important}}@media (max-width:63.938rem){.u-pl-half-m{padding-left:.5rem !important}}@media (max-width:63.938rem){.u-pr-half-m{padding-right:.5rem !important}}@media (max-width:63.938rem){.u-pv-half-m{padding-top:.5rem !important;padding-bottom:.5rem !important}}@media (max-width:63.938rem){.u-ph-half-m{padding-left:.5rem !important;padding-right:.5rem !important}}@media (max-width:63.938rem){.u-p-1-half-m{padding:1.5rem !important}}@media (max-width:63.938rem){.u-pt-1-half-m{padding-top:1.5rem !important}}@media (max-width:63.938rem){.u-pb-1-half-m{padding-bottom:1.5rem !important}}@media (max-width:63.938rem){.u-pl-1-half-m{padding-left:1.5rem !important}}@media (max-width:63.938rem){.u-pr-1-half-m{padding-right:1.5rem !important}}@media (max-width:63.938rem){.u-pv-1-half-m{padding-top:1.5rem !important;padding-bottom:1.5rem !important}}@media (max-width:63.938rem){.u-ph-1-half-m{padding-left:1.5rem !important;padding-right:1.5rem !important}}@media (max-width:63.938rem){.u-p-2-half-m{padding:2.5rem !important}}@media (max-width:63.938rem){.u-pt-2-half-m{padding-top:2.5rem !important}}@media (max-width:63.938rem){.u-pb-2-half-m{padding-bottom:2.5rem !important}}@media (max-width:63.938rem){.u-pl-2-half-m{padding-left:2.5rem !important}}@media (max-width:63.938rem){.u-pr-2-half-m{padding-right:2.5rem !important}}@media (max-width:63.938rem){.u-pv-2-half-m{padding-top:2.5rem !important;padding-bottom:2.5rem !important}}@media (max-width:63.938rem){.u-ph-2-half-m{padding-left:2.5rem !important;padding-right:2.5rem !important}}@media (max-width:63.938rem){.u-m-0-m{margin:0 !important}}@media (max-width:63.938rem){.u-mt-0-m{margin-top:0 !important}}@media (max-width:63.938rem){.u-mb-0-m{margin-bottom:0 !important}}@media (max-width:63.938rem){.u-ml-0-m{margin-left:0 !important}}@media (max-width:63.938rem){.u-mr-0-m{margin-right:0 !important}}@media (max-width:63.938rem){.u-mv-0-m{margin-top:0 !important;margin-bottom:0 !important}}@media (max-width:63.938rem){.u-mh-0-m{margin-left:0 !important;margin-right:0 !important}}@media (max-width:63.938rem){.u-m-1-m{margin:1rem !important}}@media (max-width:63.938rem){.u-mt-1-m{margin-top:1rem !important}}@media (max-width:63.938rem){.u-mb-1-m{margin-bottom:1rem !important}}@media (max-width:63.938rem){.u-ml-1-m{margin-left:1rem !important}}@media (max-width:63.938rem){.u-mr-1-m{margin-right:1rem !important}}@media (max-width:63.938rem){.u-mv-1-m{margin-top:1rem !important;margin-bottom:1rem !important}}@media (max-width:63.938rem){.u-mh-1-m{margin-left:1rem !important;margin-right:1rem !important}}@media (max-width:63.938rem){.u-m-2-m{margin:2rem !important}}@media (max-width:63.938rem){.u-mt-2-m{margin-top:2rem !important}}@media (max-width:63.938rem){.u-mb-2-m{margin-bottom:2rem !important}}@media (max-width:63.938rem){.u-ml-2-m{margin-left:2rem !important}}@media (max-width:63.938rem){.u-mr-2-m{margin-right:2rem !important}}@media (max-width:63.938rem){.u-mv-2-m{margin-top:2rem !important;margin-bottom:2rem !important}}@media (max-width:63.938rem){.u-mh-2-m{margin-left:2rem !important;margin-right:2rem !important}}@media (max-width:63.938rem){.u-m-3-m{margin:3rem !important}}@media (max-width:63.938rem){.u-mt-3-m{margin-top:3rem !important}}@media (max-width:63.938rem){.u-mb-3-m{margin-bottom:3rem !important}}@media (max-width:63.938rem){.u-ml-3-m{margin-left:3rem !important}}@media (max-width:63.938rem){.u-mr-3-m{margin-right:3rem !important}}@media (max-width:63.938rem){.u-mv-3-m{margin-top:3rem !important;margin-bottom:3rem !important}}@media (max-width:63.938rem){.u-mh-3-m{margin-left:3rem !important;margin-right:3rem !important}}@media (max-width:63.938rem){.u-m-auto-m{margin:auto !important}}@media (max-width:63.938rem){.u-mt-auto-m{margin-top:auto !important}}@media (max-width:63.938rem){.u-mb-auto-m{margin-bottom:auto !important}}@media (max-width:63.938rem){.u-ml-auto-m{margin-left:auto !important}}@media (max-width:63.938rem){.u-mr-auto-m{margin-right:auto !important}}@media (max-width:63.938rem){.u-mv-auto-m{margin-top:auto !important;margin-bottom:auto !important}}@media (max-width:63.938rem){.u-mh-auto-m{margin-left:auto !important;margin-right:auto !important}}@media (max-width:63.938rem){.u-m-half-m{margin:.5rem !important}}@media (max-width:63.938rem){.u-mt-half-m{margin-top:.5rem !important}}@media (max-width:63.938rem){.u-mb-half-m{margin-bottom:.5rem !important}}@media (max-width:63.938rem){.u-ml-half-m{margin-left:.5rem !important}}@media (max-width:63.938rem){.u-mr-half-m{margin-right:.5rem !important}}@media (max-width:63.938rem){.u-mv-half-m{margin-top:.5rem !important;margin-bottom:.5rem !important}}@media (max-width:63.938rem){.u-mh-half-m{margin-left:.5rem !important;margin-right:.5rem !important}}@media (max-width:63.938rem){.u-m-1-half-m{margin:1.5rem !important}}@media (max-width:63.938rem){.u-mt-1-half-m{margin-top:1.5rem !important}}@media (max-width:63.938rem){.u-mb-1-half-m{margin-bottom:1.5rem !important}}@media (max-width:63.938rem){.u-ml-1-half-m{margin-left:1.5rem !important}}@media (max-width:63.938rem){.u-mr-1-half-m{margin-right:1.5rem !important}}@media (max-width:63.938rem){.u-mv-1-half-m{margin-top:1.5rem !important;margin-bottom:1.5rem !important}}@media (max-width:63.938rem){.u-mh-1-half-m{margin-left:1.5rem !important;margin-right:1.5rem !important}}@media (max-width:63.938rem){.u-m-2-half-m{margin:2.5rem !important}}@media (max-width:63.938rem){.u-mt-2-half-m{margin-top:2.5rem !important}}@media (max-width:63.938rem){.u-mb-2-half-m{margin-bottom:2.5rem !important}}@media (max-width:63.938rem){.u-ml-2-half-m{margin-left:2.5rem !important}}@media (max-width:63.938rem){.u-mr-2-half-m{margin-right:2.5rem !important}}@media (max-width:63.938rem){.u-mv-2-half-m{margin-top:2.5rem !important;margin-bottom:2.5rem !important}}@media (max-width:63.938rem){.u-mh-2-half-m{margin-left:2.5rem !important;margin-right:2.5rem !important}}.u-pos-absolute{position:absolute}.u-pos-relative{position:relative}.u-pos-fixed{position:fixed}.u-pos-sticky{position:sticky}.u-pos-static{position:static}@media (max-width:30rem){.u-pos-absolute-t{position:absolute}.u-pos-relative-t{position:relative}.u-pos-fixed-t{position:fixed}.u-pos-sticky-t{position:sticky}.u-pos-static-t{position:static}}@media (max-width:48rem){.u-pos-absolute-s{position:absolute}.u-pos-relative-s{position:relative}.u-pos-fixed-s{position:fixed}.u-pos-sticky-s{position:sticky}.u-pos-static-s{position:static}}@media (max-width:63.938rem){.u-pos-absolute-m{position:absolute}.u-pos-relative-m{position:relative}.u-pos-fixed-m{position:fixed}.u-pos-sticky-m{position:sticky}.u-pos-static-m{position:static}}.u-top-m{top:1rem}.u-top-xs{top:.5rem}.u-top-s{top:.75rem}.u-top-l{top:1.5rem}.u-top-xl{top:2rem}.u-top-xxl{top:3rem}.u-top-0{top:0}.u-bottom-m{bottom:1rem}.u-bottom-xs{bottom:.5rem}.u-bottom-s{bottom:.75rem}.u-bottom-l{bottom:1.5rem}.u-bottom-xl{bottom:2rem}.u-bottom-xxl{bottom:3rem}.u-bottom-0{bottom:0}.u-left-m{left:1rem}.u-left-xs{left:.5rem}.u-left-s{left:.75rem}.u-left-l{left:1.5rem}.u-left-xl{left:2rem}.u-left-xxl{left:3rem}.u-left-0{left:0}.u-right-m{right:1rem}.u-right-xs{right:.5rem}.u-right-s{right:.75rem}.u-right-l{right:1.5rem}.u-right-xl{right:2rem}.u-right-xxl{right:3rem}.u-right-0{right:0}.u-stack-m > * + *{margin-top:1rem}.u-stack-xs > * + *{margin-top:.5rem}.u-stack-s > * + *{margin-top:.75rem}.u-stack-l > * + *{margin-top:1.5rem}.u-stack-xl > * + *{margin-top:2rem}.u-stack-xxl > * + *{margin-top:3rem}.u-row-m > * + *{margin-left:1rem}.u-row-xs > * + *{margin-left:.5rem}.u-row-s > * + *{margin-left:.75rem}.u-row-l > * + *{margin-left:1.5rem}.u-row-xl > * + *{margin-left:2rem}.u-row-xxl > * + *{margin-left:3rem}.u-black{color:var(--black) !important}.u-charcoalGrey{color:var(--charcoalGrey) !important}.u-coolGrey{color:var(--coolGrey) !important}.u-silver{color:var(--silver) !important}.u-slateGrey{color:var(--slateGrey) !important}.u-lightishPurple{color:#b449e7 !important}.u-dodgerBlue{color:#297ef2 !important}.u-overlay{color:var(--overlay) !important}.u-paleGrey{color:var(--paleGrey) !important}.u-monza{color:#dd0505 !important}.u-pomegranate{color:#f52d2d !important}.u-primaryBackgroundLight{color:var(--primaryBackgroundLight) !important}.u-primaryColor{color:var(--primaryColor) !important}.u-primaryColorLight{color:var(--primaryColorLight) !important}.u-primaryContrastTextColor{color:var(--primaryContrastTextColor) !important}.u-error{color:var(--errorColor) !important}.u-errorBackground{color:var(--errorBackground) !important}.u-success{color:var(--successColor) !important}.u-warning{color:var(--warningColor) !important}.u-info{color:var(--infoColor) !important}.u-weirdGreen{color:#40de8e !important}.u-white{color:var(--white) !important}.u-breakword{word-break:break-word}.u-ellipsis{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.u-spacellipsis{overflow:hidden;text-overflow:ellipsis;white-space:break-spaces}@media (max-width:30rem){.u-spacellipsis-t{overflow:hidden;text-overflow:ellipsis;white-space:break-spaces}}@media (max-width:48rem){.u-spacellipsis-s{overflow:hidden;text-overflow:ellipsis;white-space:break-spaces}}@media (max-width:63.938rem){.u-spacellipsis-m{overflow:hidden;text-overflow:ellipsis;white-space:break-spaces}}.u-midellipsis{display:flex;flex-wrap:nowrap}.u-midellipsis > *{display:inline-block;overflow:hidden;white-space:pre}.u-midellipsis > :first-child{text-overflow:ellipsis}.u-midellipsis > :last-child{text-overflow:clip;direction:rtl}@supports (text-overflow:'[...]'){.u-midellipsis > :first-child{text-overflow:'[...]'}}.u-link:link{color:var(--primaryColor) !important;text-decoration:none !important}.u-link:visited,.u-link:active,.u-link:hover,.u-link:focus{color:var(--primaryColorDark) !important}.u-lh-tiny{line-height:1 !important}.u-lh-xsmall{line-height:1.1 !important}.u-lh-small{line-height:1.2 !important}.u-lh-medium{line-height:1.3 !important}.u-lh-large{line-height:1.4 !important}.u-lh-xlarge{line-height:1.5 !important}.u-fz-tiny{font-size:.75rem !important;line-height:1.3 !important}.u-fz-xsmall{font-size:.813rem !important;line-height:1.4 !important}.u-fz-small{font-size:.875rem !important;line-height:1.4 !important}.u-fz-medium{font-size:1rem !important;line-height:1.5 !important}.u-fz-large{font-size:1.125rem !important;line-height:1.5 !important}@media (max-width:30rem){.u-fz-tiny-t{font-size:.75rem !important;line-height:1.3 !important}.u-fz-xsmall-t{font-size:.813rem !important;line-height:1.4 !important}.u-fz-small-t{font-size:.875rem !important;line-height:1.4 !important}.u-fz-medium-t{font-size:1rem !important;line-height:1.5 !important}.u-fz-large-t{font-size:1.125rem !important;line-height:1.5 !important}}@media (max-width:48rem){.u-fz-tiny-s{font-size:.75rem !important;line-height:1.3 !important}.u-fz-xsmall-s{font-size:.813rem !important;line-height:1.4 !important}.u-fz-small-s{font-size:.875rem !important;line-height:1.4 !important}.u-fz-medium-s{font-size:1rem !important;line-height:1.5 !important}.u-fz-large-s{font-size:1.125rem !important;line-height:1.5 !important}}@media (max-width:63.938rem){.u-fz-tiny-m{font-size:.75rem !important;line-height:1.3 !important}.u-fz-xsmall-m{font-size:.813rem !important;line-height:1.4 !important}.u-fz-small-m{font-size:.875rem !important;line-height:1.4 !important}.u-fz-medium-m{font-size:1rem !important;line-height:1.5 !important}.u-fz-large-m{font-size:1.125rem !important;line-height:1.5 !important}}.u-ta-left{text-align:left !important}.u-ta-right{text-align:right !important}.u-ta-center{text-align:center !important}.u-ta-justify{text-align:justify !important}@media (max-width:30rem){.u-ta-left-t{text-align:left !important}.u-ta-right-t{text-align:right !important}.u-ta-center-t{text-align:center !important}.u-ta-justify-t{text-align:justify !important}}@media (max-width:48rem){.u-ta-left-s{text-align:left !important}.u-ta-right-s{text-align:right !important}.u-ta-center-s{text-align:center !important}.u-ta-justify-s{text-align:justify !important}}@media (max-width:63.938rem){.u-ta-left-m{text-align:left !important}.u-ta-right-m{text-align:right !important}.u-ta-center-m{text-align:center !important}.u-ta-justify-m{text-align:justify !important}}.u-fs-normal{font-style:normal !important}.u-fs-italic{font-style:italic !important}@media (max-width:30rem){.u-fs-normal-t{font-style:normal !important}.u-fs-italic-t{font-style:italic !important}}@media (max-width:48rem){.u-fs-normal-s{font-style:normal !important}.u-fs-italic-s{font-style:italic !important}}@media (max-width:63.938rem){.u-fs-normal-m{font-style:normal !important}.u-fs-italic-m{font-style:italic !important}}.u-fw-normal{font-weight:normal}.u-fw-bold{font-weight:bold}@media (max-width:30rem){.u-fw-normal-t{font-weight:normal}.u-fw-bold-t{font-weight:bold}}@media (max-width:48rem){.u-fw-normal-s{font-weight:normal}.u-fw-bold-s{font-weight:bold}}@media (max-width:63.938rem){.u-fw-normal-m{font-weight:normal}.u-fw-bold-m{font-weight:bold}}.u-title-h1,.u-title-h2,.u-title-h3,.u-title-h4{font-weight:bold;color:var(--primaryTextColor)}.u-title-h1{font-size:1.5rem;letter-spacing:-.012rem}@media (max-width:48rem){.u-title-h1{font-size:1.25rem}}.u-title-h2{font-size:1.25rem}@media (max-width:48rem){.u-title-h2{font-size:1.125rem}}.u-title-h3{font-size:1.125rem}@media (max-width:48rem){.u-title-h3{font-size:1rem}}.u-title-h4{font-size:1rem}@media (max-width:48rem){.u-title-h4{font-weight:bold;color:var(--primaryTextColor)}}.u-text{font-size:1rem;line-height:1.3;color:var(--primaryTextColor)}.u-caption{font-size:.75rem;line-height:1.2;color:var(--coolGrey)}.u-subtitle{font-size:.75rem;line-height:1.313}.u-uppercase{text-transform:uppercase}.u-lowercase{text-transform:lowercase}.u-subtitle{font-size:.75rem;text-transform:uppercase;font-weight:bold}.c-input-checkbox--svg span::after{display:none}.c-input-checkbox-icon{position:absolute;left:0;top:50%;box-sizing:border-box;width:1rem;height:1rem;padding:.125rem;transition-duration:.2s;transition-property:opacity,-webkit-transform;transition-property:opacity,transform;transition-property:opacity,transform,-webkit-transform}.c-input-checkbox input:not(:checked) + span .c-input-checkbox-icon{opacity:0;-webkit-transform:scale(0) translateY(-50%);transform:scale(0) translateY(-50%)}.c-input-checkbox input:checked + span .c-input-checkbox-icon{opacity:1;-webkit-transform:scale(1) translateY(-50%);transform:scale(1) translateY(-50%)}.c-avatar--text{color:#fff}.c-avatar--disabled.c-avatar--image{background-color:#fff !important}.c-avatar--disabled:not(.c-avatar--image){background-color:var(--silver) !important;background:var(--silver) !important}.c-avatar--disabled .c-avatar-image{-webkit-filter:grayscale(1);filter:grayscale(1);opacity:.3}.c-avatar--ghost{background-color:transparent !important;background:transparent !important;border:1px dashed var(--borderGhostColor);color:var(--secondaryTextColor)}.c-avatar--ghost .c-avatar-image{-webkit-filter:grayscale(1);filter:grayscale(1);opacity:.3}.wizard-agreements-item:nth-child(1) .wizard-agreements-icon{--bgcolor:var(--weirdGreen)}.wizard-agreements-item:nth-child(2) .wizard-agreements-icon{--bgcolor:var(--mango)}.wizard-agreements-item:nth-child(3) .wizard-agreements-icon{--bgcolor:var(--lightishPurple)}.wizard-agreements-item:nth-child(4) .wizard-agreements-icon{--bgcolor:var(--pomegranate)}.wizard-agreements-item:nth-child(5) .wizard-agreements-icon{--bgcolor:var(--azure)}.wizard-agreements-item:nth-child(6) .wizard-agreements-icon{--bgcolor:var(--brightSun)}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.u-bg-black{background-color:var(--black) !important}.u-bg-charcoalGrey{background-color:var(--charcoalGrey) !important}.u-bg-coolGrey{background-color:var(--coolGrey) !important}.u-bg-silver{background-color:var(--silver) !important}.u-bg-slateGrey{background-color:var(--slateGrey) !important}.u-bg-lightishPurple{background-color:#b449e7 !important}.u-bg-dodgerBlue{background-color:#297ef2 !important}.u-bg-overlay{background-color:var(--overlay) !important}.u-bg-paleGrey{background-color:var(--paleGrey) !important}.u-bg-monza{background-color:#dd0505 !important}.u-bg-pomegranate{background-color:#f52d2d !important}.u-bg-primaryBackgroundLight{background-color:var(--primaryBackgroundLight) !important}.u-bg-primaryColor{background-color:var(--primaryColor) !important}.u-bg-primaryColorLight{background-color:var(--primaryColorLight) !important}.u-bg-primaryContrastTextColor{background-color:var(--primaryContrastTextColor) !important}.u-bg-error{background-color:var(--errorColor) !important}.u-bg-errorBackground{background-color:var(--errorBackground) !important}.u-bg-success{background-color:var(--successColor) !important}.u-bg-warning{background-color:var(--warningColor) !important}.u-bg-info{background-color:var(--infoColor) !important}.u-bg-weirdGreen{background-color:#40de8e !important}.u-bg-white{background-color:var(--white) !important}.u-bg-transparent{background-color:transparent !important}.u-bdrs-0{border-radius:0 !important}.u-bdrs-1{border-radius:.125rem !important}.u-bdrs-2{border-radius:.188rem !important}.u-bdrs-3{border-radius:.25rem !important}.u-bdrs-4{border-radius:.5rem !important}.u-bdrs-5{border-radius:.625rem !important}.u-bdrs-6{border-radius:.75rem !important}.u-bdrs-7{border-radius:.875rem !important}.u-bdrs-8{border-radius:1rem !important}.u-bdrs-circle{border-radius:100% !important}.u-bdw-0{border-width:0 !important}.u-bdw-1{border-width:.125rem !important}@media (max-width:30rem){.u-bdrs-0-t{border-radius:0 !important}.u-bdrs-1-t{border-radius:.125rem !important}.u-bdrs-2-t{border-radius:.188rem !important}.u-bdrs-3-t{border-radius:.25rem !important}.u-bdrs-4-t{border-radius:.5rem !important}.u-bdrs-5-t{border-radius:.625rem !important}.u-bdrs-6-t{border-radius:.75rem !important}.u-bdrs-7-t{border-radius:.875rem !important}.u-bdrs-8-t{border-radius:1rem !important}.u-bdrs-circle-t{border-radius:100% !important}.u-bdw-0-t{border-width:0 !important}.u-bdw-1-t{border-width:.125rem !important}}@media (max-width:48rem){.u-bdrs-0-s{border-radius:0 !important}.u-bdrs-1-s{border-radius:.125rem !important}.u-bdrs-2-s{border-radius:.188rem !important}.u-bdrs-3-s{border-radius:.25rem !important}.u-bdrs-4-s{border-radius:.5rem !important}.u-bdrs-5-s{border-radius:.625rem !important}.u-bdrs-6-s{border-radius:.75rem !important}.u-bdrs-7-s{border-radius:.875rem !important}.u-bdrs-8-s{border-radius:1rem !important}.u-bdrs-circle-s{border-radius:100% !important}.u-bdw-0-s{border-width:0 !important}.u-bdw-1-s{border-width:.125rem !important}}@media (max-width:63.938rem){.u-bdrs-0-m{border-radius:0 !important}.u-bdrs-1-m{border-radius:.125rem !important}.u-bdrs-2-m{border-radius:.188rem !important}.u-bdrs-3-m{border-radius:.25rem !important}.u-bdrs-4-m{border-radius:.5rem !important}.u-bdrs-5-m{border-radius:.625rem !important}.u-bdrs-6-m{border-radius:.75rem !important}.u-bdrs-7-m{border-radius:.875rem !important}.u-bdrs-8-m{border-radius:1rem !important}.u-bdrs-circle-m{border-radius:100% !important}.u-bdw-0-m{border-width:0 !important}.u-bdw-1-m{border-width:.125rem !important}}.u-bxz{box-sizing:border-box}.u-card{border:.063rem solid var(--dividerColor);border-radius:.5rem;padding:1rem;text-decoration:none;display:block}.u-c-default{cursor:default}.u-c-help{cursor:help}.u-c-pointer{cursor:pointer}.u-c-wait{cursor:wait}.u-c-not-allowed{cursor:not-allowed}.u-debug{background:rgba(0,0,0,0.075);border:1px solid #f00}.u-debug .u-debug{border-color:#00f}.u-debug .u-debug .u-debug{border-color:#008000}.u-miw-1{min-width:1rem !important}.u-maw-1{max-width:1rem !important}.u-mih-1{min-height:1rem !important}.u-mah-1{max-height:1rem !important}.u-miw-2{min-width:2rem !important}.u-maw-2{max-width:2rem !important}.u-mih-2{min-height:2rem !important}.u-mah-2{max-height:2rem !important}.u-miw-3{min-width:4rem !important}.u-maw-3{max-width:4rem !important}.u-mih-3{min-height:4rem !important}.u-mah-3{max-height:4rem !important}.u-miw-4{min-width:8rem !important}.u-maw-4{max-width:8rem !important}.u-mih-4{min-height:8rem !important}.u-mah-4{max-height:8rem !important}.u-miw-5{min-width:16rem !important}.u-maw-5{max-width:16rem !important}.u-mih-5{min-height:16rem !important}.u-mah-5{max-height:16rem !important}.u-miw-6{min-width:32rem !important}.u-maw-6{max-width:32rem !important}.u-mih-6{min-height:32rem !important}.u-mah-6{max-height:32rem !important}.u-miw-7{min-width:48rem !important}.u-maw-7{max-width:48rem !important}.u-mih-7{min-height:48rem !important}.u-mah-7{max-height:48rem !important}.u-miw-8{min-width:64rem !important}.u-maw-8{max-width:64rem !important}.u-mih-8{min-height:64rem !important}.u-mah-8{max-height:64rem !important}.u-miw-9{min-width:96rem !important}.u-maw-9{max-width:96rem !important}.u-mih-9{min-height:96rem !important}.u-mah-9{max-height:96rem !important}.u-miw-100{min-width:100% !important}.u-maw-100{max-width:100% !important}.u-mih-100{min-height:100% !important}.u-mah-100{max-height:100% !important}.u-maw-none{max-width:none !important}.u-mah-none{max-height:none !important}.u-miw-auto{min-width:auto !important}.u-mih-auto{min-height:auto !important}.u-miw-half{min-width:.5rem !important}.u-maw-half{max-width:.5rem !important}.u-mih-half{min-height:.5rem !important}.u-mah-half{max-height:.5rem !important}.u-miw-1-half{min-width:1.5rem !important}.u-maw-1-half{max-width:1.5rem !important}.u-mih-1-half{min-height:1.5rem !important}.u-mah-1-half{max-height:1.5rem !important}.u-miw-2-half{min-width:2.5rem !important}.u-maw-2-half{max-width:2.5rem !important}.u-mih-2-half{min-height:2.5rem !important}.u-mah-2-half{max-height:2.5rem !important}@media (max-width:30rem){.u-miw-1-t{min-width:1rem !important}}@media (max-width:30rem){.u-maw-1-t{max-width:1rem !important}}@media (max-width:30rem){.u-mih-1-t{min-height:1rem !important}}@media (max-width:30rem){.u-mah-1-t{max-height:1rem !important}}@media (max-width:30rem){.u-miw-2-t{min-width:2rem !important}}@media (max-width:30rem){.u-maw-2-t{max-width:2rem !important}}@media (max-width:30rem){.u-mih-2-t{min-height:2rem !important}}@media (max-width:30rem){.u-mah-2-t{max-height:2rem !important}}@media (max-width:30rem){.u-miw-3-t{min-width:4rem !important}}@media (max-width:30rem){.u-maw-3-t{max-width:4rem !important}}@media (max-width:30rem){.u-mih-3-t{min-height:4rem !important}}@media (max-width:30rem){.u-mah-3-t{max-height:4rem !important}}@media (max-width:30rem){.u-miw-4-t{min-width:8rem !important}}@media (max-width:30rem){.u-maw-4-t{max-width:8rem !important}}@media (max-width:30rem){.u-mih-4-t{min-height:8rem !important}}@media (max-width:30rem){.u-mah-4-t{max-height:8rem !important}}@media (max-width:30rem){.u-miw-5-t{min-width:16rem !important}}@media (max-width:30rem){.u-maw-5-t{max-width:16rem !important}}@media (max-width:30rem){.u-mih-5-t{min-height:16rem !important}}@media (max-width:30rem){.u-mah-5-t{max-height:16rem !important}}@media (max-width:30rem){.u-miw-6-t{min-width:32rem !important}}@media (max-width:30rem){.u-maw-6-t{max-width:32rem !important}}@media (max-width:30rem){.u-mih-6-t{min-height:32rem !important}}@media (max-width:30rem){.u-mah-6-t{max-height:32rem !important}}@media (max-width:30rem){.u-miw-7-t{min-width:48rem !important}}@media (max-width:30rem){.u-maw-7-t{max-width:48rem !important}}@media (max-width:30rem){.u-mih-7-t{min-height:48rem !important}}@media (max-width:30rem){.u-mah-7-t{max-height:48rem !important}}@media (max-width:30rem){.u-miw-8-t{min-width:64rem !important}}@media (max-width:30rem){.u-maw-8-t{max-width:64rem !important}}@media (max-width:30rem){.u-mih-8-t{min-height:64rem !important}}@media (max-width:30rem){.u-mah-8-t{max-height:64rem !important}}@media (max-width:30rem){.u-miw-9-t{min-width:96rem !important}}@media (max-width:30rem){.u-maw-9-t{max-width:96rem !important}}@media (max-width:30rem){.u-mih-9-t{min-height:96rem !important}}@media (max-width:30rem){.u-mah-9-t{max-height:96rem !important}}@media (max-width:30rem){.u-miw-100-t{min-width:100% !important}}@media (max-width:30rem){.u-maw-100-t{max-width:100% !important}}@media (max-width:30rem){.u-mih-100-t{min-height:100% !important}}@media (max-width:30rem){.u-mah-100-t{max-height:100% !important}}@media (max-width:30rem){.u-maw-none-t{max-width:none !important}}@media (max-width:30rem){.u-mah-none-t{max-height:none !important}}@media (max-width:30rem){.u-miw-auto-t{min-width:auto !important}}@media (max-width:30rem){.u-mih-auto-t{min-height:auto !important}}@media (max-width:30rem){.u-miw-half-t{min-width:.5rem !important}}@media (max-width:30rem){.u-maw-half-t{max-width:.5rem !important}}@media (max-width:30rem){.u-mih-half-t{min-height:.5rem !important}}@media (max-width:30rem){.u-mah-half-t{max-height:.5rem !important}}@media (max-width:30rem){.u-miw-1-half-t{min-width:1.5rem !important}}@media (max-width:30rem){.u-maw-1-half-t{max-width:1.5rem !important}}@media (max-width:30rem){.u-mih-1-half-t{min-height:1.5rem !important}}@media (max-width:30rem){.u-mah-1-half-t{max-height:1.5rem !important}}@media (max-width:30rem){.u-miw-2-half-t{min-width:2.5rem !important}}@media (max-width:30rem){.u-maw-2-half-t{max-width:2.5rem !important}}@media (max-width:30rem){.u-mih-2-half-t{min-height:2.5rem !important}}@media (max-width:30rem){.u-mah-2-half-t{max-height:2.5rem !important}}@media (max-width:48rem){.u-miw-1-s{min-width:1rem !important}}@media (max-width:48rem){.u-maw-1-s{max-width:1rem !important}}@media (max-width:48rem){.u-mih-1-s{min-height:1rem !important}}@media (max-width:48rem){.u-mah-1-s{max-height:1rem !important}}@media (max-width:48rem){.u-miw-2-s{min-width:2rem !important}}@media (max-width:48rem){.u-maw-2-s{max-width:2rem !important}}@media (max-width:48rem){.u-mih-2-s{min-height:2rem !important}}@media (max-width:48rem){.u-mah-2-s{max-height:2rem !important}}@media (max-width:48rem){.u-miw-3-s{min-width:4rem !important}}@media (max-width:48rem){.u-maw-3-s{max-width:4rem !important}}@media (max-width:48rem){.u-mih-3-s{min-height:4rem !important}}@media (max-width:48rem){.u-mah-3-s{max-height:4rem !important}}@media (max-width:48rem){.u-miw-4-s{min-width:8rem !important}}@media (max-width:48rem){.u-maw-4-s{max-width:8rem !important}}@media (max-width:48rem){.u-mih-4-s{min-height:8rem !important}}@media (max-width:48rem){.u-mah-4-s{max-height:8rem !important}}@media (max-width:48rem){.u-miw-5-s{min-width:16rem !important}}@media (max-width:48rem){.u-maw-5-s{max-width:16rem !important}}@media (max-width:48rem){.u-mih-5-s{min-height:16rem !important}}@media (max-width:48rem){.u-mah-5-s{max-height:16rem !important}}@media (max-width:48rem){.u-miw-6-s{min-width:32rem !important}}@media (max-width:48rem){.u-maw-6-s{max-width:32rem !important}}@media (max-width:48rem){.u-mih-6-s{min-height:32rem !important}}@media (max-width:48rem){.u-mah-6-s{max-height:32rem !important}}@media (max-width:48rem){.u-miw-7-s{min-width:48rem !important}}@media (max-width:48rem){.u-maw-7-s{max-width:48rem !important}}@media (max-width:48rem){.u-mih-7-s{min-height:48rem !important}}@media (max-width:48rem){.u-mah-7-s{max-height:48rem !important}}@media (max-width:48rem){.u-miw-8-s{min-width:64rem !important}}@media (max-width:48rem){.u-maw-8-s{max-width:64rem !important}}@media (max-width:48rem){.u-mih-8-s{min-height:64rem !important}}@media (max-width:48rem){.u-mah-8-s{max-height:64rem !important}}@media (max-width:48rem){.u-miw-9-s{min-width:96rem !important}}@media (max-width:48rem){.u-maw-9-s{max-width:96rem !important}}@media (max-width:48rem){.u-mih-9-s{min-height:96rem !important}}@media (max-width:48rem){.u-mah-9-s{max-height:96rem !important}}@media (max-width:48rem){.u-miw-100-s{min-width:100% !important}}@media (max-width:48rem){.u-maw-100-s{max-width:100% !important}}@media (max-width:48rem){.u-mih-100-s{min-height:100% !important}}@media (max-width:48rem){.u-mah-100-s{max-height:100% !important}}@media (max-width:48rem){.u-maw-none-s{max-width:none !important}}@media (max-width:48rem){.u-mah-none-s{max-height:none !important}}@media (max-width:48rem){.u-miw-auto-s{min-width:auto !important}}@media (max-width:48rem){.u-mih-auto-s{min-height:auto !important}}@media (max-width:48rem){.u-miw-half-s{min-width:.5rem !important}}@media (max-width:48rem){.u-maw-half-s{max-width:.5rem !important}}@media (max-width:48rem){.u-mih-half-s{min-height:.5rem !important}}@media (max-width:48rem){.u-mah-half-s{max-height:.5rem !important}}@media (max-width:48rem){.u-miw-1-half-s{min-width:1.5rem !important}}@media (max-width:48rem){.u-maw-1-half-s{max-width:1.5rem !important}}@media (max-width:48rem){.u-mih-1-half-s{min-height:1.5rem !important}}@media (max-width:48rem){.u-mah-1-half-s{max-height:1.5rem !important}}@media (max-width:48rem){.u-miw-2-half-s{min-width:2.5rem !important}}@media (max-width:48rem){.u-maw-2-half-s{max-width:2.5rem !important}}@media (max-width:48rem){.u-mih-2-half-s{min-height:2.5rem !important}}@media (max-width:48rem){.u-mah-2-half-s{max-height:2.5rem !important}}@media (max-width:63.938rem){.u-miw-1-m{min-width:1rem !important}}@media (max-width:63.938rem){.u-maw-1-m{max-width:1rem !important}}@media (max-width:63.938rem){.u-mih-1-m{min-height:1rem !important}}@media (max-width:63.938rem){.u-mah-1-m{max-height:1rem !important}}@media (max-width:63.938rem){.u-miw-2-m{min-width:2rem !important}}@media (max-width:63.938rem){.u-maw-2-m{max-width:2rem !important}}@media (max-width:63.938rem){.u-mih-2-m{min-height:2rem !important}}@media (max-width:63.938rem){.u-mah-2-m{max-height:2rem !important}}@media (max-width:63.938rem){.u-miw-3-m{min-width:4rem !important}}@media (max-width:63.938rem){.u-maw-3-m{max-width:4rem !important}}@media (max-width:63.938rem){.u-mih-3-m{min-height:4rem !important}}@media (max-width:63.938rem){.u-mah-3-m{max-height:4rem !important}}@media (max-width:63.938rem){.u-miw-4-m{min-width:8rem !important}}@media (max-width:63.938rem){.u-maw-4-m{max-width:8rem !important}}@media (max-width:63.938rem){.u-mih-4-m{min-height:8rem !important}}@media (max-width:63.938rem){.u-mah-4-m{max-height:8rem !important}}@media (max-width:63.938rem){.u-miw-5-m{min-width:16rem !important}}@media (max-width:63.938rem){.u-maw-5-m{max-width:16rem !important}}@media (max-width:63.938rem){.u-mih-5-m{min-height:16rem !important}}@media (max-width:63.938rem){.u-mah-5-m{max-height:16rem !important}}@media (max-width:63.938rem){.u-miw-6-m{min-width:32rem !important}}@media (max-width:63.938rem){.u-maw-6-m{max-width:32rem !important}}@media (max-width:63.938rem){.u-mih-6-m{min-height:32rem !important}}@media (max-width:63.938rem){.u-mah-6-m{max-height:32rem !important}}@media (max-width:63.938rem){.u-miw-7-m{min-width:48rem !important}}@media (max-width:63.938rem){.u-maw-7-m{max-width:48rem !important}}@media (max-width:63.938rem){.u-mih-7-m{min-height:48rem !important}}@media (max-width:63.938rem){.u-mah-7-m{max-height:48rem !important}}@media (max-width:63.938rem){.u-miw-8-m{min-width:64rem !important}}@media (max-width:63.938rem){.u-maw-8-m{max-width:64rem !important}}@media (max-width:63.938rem){.u-mih-8-m{min-height:64rem !important}}@media (max-width:63.938rem){.u-mah-8-m{max-height:64rem !important}}@media (max-width:63.938rem){.u-miw-9-m{min-width:96rem !important}}@media (max-width:63.938rem){.u-maw-9-m{max-width:96rem !important}}@media (max-width:63.938rem){.u-mih-9-m{min-height:96rem !important}}@media (max-width:63.938rem){.u-mah-9-m{max-height:96rem !important}}@media (max-width:63.938rem){.u-miw-100-m{min-width:100% !important}}@media (max-width:63.938rem){.u-maw-100-m{max-width:100% !important}}@media (max-width:63.938rem){.u-mih-100-m{min-height:100% !important}}@media (max-width:63.938rem){.u-mah-100-m{max-height:100% !important}}@media (max-width:63.938rem){.u-maw-none-m{max-width:none !important}}@media (max-width:63.938rem){.u-mah-none-m{max-height:none !important}}@media (max-width:63.938rem){.u-miw-auto-m{min-width:auto !important}}@media (max-width:63.938rem){.u-mih-auto-m{min-height:auto !important}}@media (max-width:63.938rem){.u-miw-half-m{min-width:.5rem !important}}@media (max-width:63.938rem){.u-maw-half-m{max-width:.5rem !important}}@media (max-width:63.938rem){.u-mih-half-m{min-height:.5rem !important}}@media (max-width:63.938rem){.u-mah-half-m{max-height:.5rem !important}}@media (max-width:63.938rem){.u-miw-1-half-m{min-width:1.5rem !important}}@media (max-width:63.938rem){.u-maw-1-half-m{max-width:1.5rem !important}}@media (max-width:63.938rem){.u-mih-1-half-m{min-height:1.5rem !important}}@media (max-width:63.938rem){.u-mah-1-half-m{max-height:1.5rem !important}}@media (max-width:63.938rem){.u-miw-2-half-m{min-width:2.5rem !important}}@media (max-width:63.938rem){.u-maw-2-half-m{max-width:2.5rem !important}}@media (max-width:63.938rem){.u-mih-2-half-m{min-height:2.5rem !important}}@media (max-width:63.938rem){.u-mah-2-half-m{max-height:2.5rem !important}}.u-w-1{width:1rem !important}.u-h-1{height:1rem !important}.u-w-2{width:2rem !important}.u-h-2{height:2rem !important}.u-w-3{width:4rem !important}.u-h-3{height:4rem !important}.u-w-4{width:8rem !important}.u-h-4{height:8rem !important}.u-w-5{width:16rem !important}.u-h-5{height:16rem !important}.u-w-6{width:32rem !important}.u-h-6{height:32rem !important}.u-w-7{width:48rem !important}.u-h-7{height:48rem !important}.u-w-8{width:64rem !important}.u-h-8{height:64rem !important}.u-w-9{width:96rem !important}.u-h-9{height:96rem !important}.u-w-100{width:100% !important}.u-h-100{height:100% !important}.u-w-auto{width:auto !important}.u-h-auto{height:auto !important}.u-w-half{width:.5rem !important}.u-h-half{height:.5rem !important}.u-w-1-half{width:1.5rem !important}.u-h-1-half{height:1.5rem !important}.u-w-2-half{width:2.5rem !important}.u-h-2-half{height:2.5rem !important}@media (max-width:30rem){.u-w-1-t{width:1rem !important}}@media (max-width:30rem){.u-h-1-t{height:1rem !important}}@media (max-width:30rem){.u-w-2-t{width:2rem !important}}@media (max-width:30rem){.u-h-2-t{height:2rem !important}}@media (max-width:30rem){.u-w-3-t{width:4rem !important}}@media (max-width:30rem){.u-h-3-t{height:4rem !important}}@media (max-width:30rem){.u-w-4-t{width:8rem !important}}@media (max-width:30rem){.u-h-4-t{height:8rem !important}}@media (max-width:30rem){.u-w-5-t{width:16rem !important}}@media (max-width:30rem){.u-h-5-t{height:16rem !important}}@media (max-width:30rem){.u-w-6-t{width:32rem !important}}@media (max-width:30rem){.u-h-6-t{height:32rem !important}}@media (max-width:30rem){.u-w-7-t{width:48rem !important}}@media (max-width:30rem){.u-h-7-t{height:48rem !important}}@media (max-width:30rem){.u-w-8-t{width:64rem !important}}@media (max-width:30rem){.u-h-8-t{height:64rem !important}}@media (max-width:30rem){.u-w-9-t{width:96rem !important}}@media (max-width:30rem){.u-h-9-t{height:96rem !important}}@media (max-width:30rem){.u-w-100-t{width:100% !important}}@media (max-width:30rem){.u-h-100-t{height:100% !important}}@media (max-width:30rem){.u-w-auto-t{width:auto !important}}@media (max-width:30rem){.u-h-auto-t{height:auto !important}}@media (max-width:30rem){.u-w-half-t{width:.5rem !important}}@media (max-width:30rem){.u-h-half-t{height:.5rem !important}}@media (max-width:30rem){.u-w-1-half-t{width:1.5rem !important}}@media (max-width:30rem){.u-h-1-half-t{height:1.5rem !important}}@media (max-width:30rem){.u-w-2-half-t{width:2.5rem !important}}@media (max-width:30rem){.u-h-2-half-t{height:2.5rem !important}}@media (max-width:48rem){.u-w-1-s{width:1rem !important}}@media (max-width:48rem){.u-h-1-s{height:1rem !important}}@media (max-width:48rem){.u-w-2-s{width:2rem !important}}@media (max-width:48rem){.u-h-2-s{height:2rem !important}}@media (max-width:48rem){.u-w-3-s{width:4rem !important}}@media (max-width:48rem){.u-h-3-s{height:4rem !important}}@media (max-width:48rem){.u-w-4-s{width:8rem !important}}@media (max-width:48rem){.u-h-4-s{height:8rem !important}}@media (max-width:48rem){.u-w-5-s{width:16rem !important}}@media (max-width:48rem){.u-h-5-s{height:16rem !important}}@media (max-width:48rem){.u-w-6-s{width:32rem !important}}@media (max-width:48rem){.u-h-6-s{height:32rem !important}}@media (max-width:48rem){.u-w-7-s{width:48rem !important}}@media (max-width:48rem){.u-h-7-s{height:48rem !important}}@media (max-width:48rem){.u-w-8-s{width:64rem !important}}@media (max-width:48rem){.u-h-8-s{height:64rem !important}}@media (max-width:48rem){.u-w-9-s{width:96rem !important}}@media (max-width:48rem){.u-h-9-s{height:96rem !important}}@media (max-width:48rem){.u-w-100-s{width:100% !important}}@media (max-width:48rem){.u-h-100-s{height:100% !important}}@media (max-width:48rem){.u-w-auto-s{width:auto !important}}@media (max-width:48rem){.u-h-auto-s{height:auto !important}}@media (max-width:48rem){.u-w-half-s{width:.5rem !important}}@media (max-width:48rem){.u-h-half-s{height:.5rem !important}}@media (max-width:48rem){.u-w-1-half-s{width:1.5rem !important}}@media (max-width:48rem){.u-h-1-half-s{height:1.5rem !important}}@media (max-width:48rem){.u-w-2-half-s{width:2.5rem !important}}@media (max-width:48rem){.u-h-2-half-s{height:2.5rem !important}}@media (max-width:63.938rem){.u-w-1-m{width:1rem !important}}@media (max-width:63.938rem){.u-h-1-m{height:1rem !important}}@media (max-width:63.938rem){.u-w-2-m{width:2rem !important}}@media (max-width:63.938rem){.u-h-2-m{height:2rem !important}}@media (max-width:63.938rem){.u-w-3-m{width:4rem !important}}@media (max-width:63.938rem){.u-h-3-m{height:4rem !important}}@media (max-width:63.938rem){.u-w-4-m{width:8rem !important}}@media (max-width:63.938rem){.u-h-4-m{height:8rem !important}}@media (max-width:63.938rem){.u-w-5-m{width:16rem !important}}@media (max-width:63.938rem){.u-h-5-m{height:16rem !important}}@media (max-width:63.938rem){.u-w-6-m{width:32rem !important}}@media (max-width:63.938rem){.u-h-6-m{height:32rem !important}}@media (max-width:63.938rem){.u-w-7-m{width:48rem !important}}@media (max-width:63.938rem){.u-h-7-m{height:48rem !important}}@media (max-width:63.938rem){.u-w-8-m{width:64rem !important}}@media (max-width:63.938rem){.u-h-8-m{height:64rem !important}}@media (max-width:63.938rem){.u-w-9-m{width:96rem !important}}@media (max-width:63.938rem){.u-h-9-m{height:96rem !important}}@media (max-width:63.938rem){.u-w-100-m{width:100% !important}}@media (max-width:63.938rem){.u-h-100-m{height:100% !important}}@media (max-width:63.938rem){.u-w-auto-m{width:auto !important}}@media (max-width:63.938rem){.u-h-auto-m{height:auto !important}}@media (max-width:63.938rem){.u-w-half-m{width:.5rem !important}}@media (max-width:63.938rem){.u-h-half-m{height:.5rem !important}}@media (max-width:63.938rem){.u-w-1-half-m{width:1.5rem !important}}@media (max-width:63.938rem){.u-h-1-half-m{height:1.5rem !important}}@media (max-width:63.938rem){.u-w-2-half-m{width:2.5rem !important}}@media (max-width:63.938rem){.u-h-2-half-m{height:2.5rem !important}}.u-visuallyhidden{position:absolute !important;border:0 !important;width:.063rem !important;height:.063rem !important;overflow:hidden !important;padding:0 !important;white-space:nowrap !important;clip:rect(.063rem,.063rem,.063rem,.063rem) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important}.u-hide{display:none !important;visibility:hidden !important}@media (max-width:63.938rem){.u-hide--mob{display:none !important}}@media (min-width:64rem){.u-hide--tablet{display:none !important}}@media (min-width:48.063rem){.u-hide--desk{display:none !important}}.u-dn{display:none}.u-di{display:inline}.u-db{display:block}.u-dc{display:contents}.u-dib{display:inline-block}.u-dit{display:inline-table}.u-dt{display:table}.u-dtc{display:table-cell}.u-dt-row{display:table-row}.u-dt-row-group{display:table-row-group}.u-dt-column{display:table-column}.u-dt-column-group{display:table-column-group}@media (max-width:30rem){.u-dn-t{display:none}.u-di-t{display:inline}.u-db-t{display:block}.u-dc-t{display:contents}.u-dib-t{display:inline-block}.u-dit-t{display:inline-table}.u-dt-t{display:table}.u-dtc-t{display:table-cell}.u-dt-row-t{display:table-row}.u-dt-row-group-t{display:table-row-group}.u-dt-column-t{display:table-column}.u-dt-column-group-t{display:table-column-group}}@media (max-width:48rem){.u-dn-s{display:none}.u-di-s{display:inline}.u-db-s{display:block}.u-dc-s{display:contents}.u-dib-s{display:inline-block}.u-dit-s{display:inline-table}.u-dt-s{display:table}.u-dtc-s{display:table-cell}.u-dt-row-s{display:table-row}.u-dt-row-group-s{display:table-row-group}.u-dt-column-s{display:table-column}.u-dt-column-group-s{display:table-column-group}}@media (max-width:63.938rem){.u-dn-m{display:none}.u-di-m{display:inline}.u-db-m{display:block}.u-dc-m{display:contents}.u-dib-m{display:inline-block}.u-dit-m{display:inline-table}.u-dt-m{display:table}.u-dtc-m{display:table-cell}.u-dt-row-m{display:table-row}.u-dt-row-group-m{display:table-row-group}.u-dt-column-m{display:table-column}.u-dt-column-group-m{display:table-column-group}}@-webkit-keyframes spin{from{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes spin{from{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@-webkit-keyframes shake{10%,90%{-webkit-transform:translate3d(-1px,0,0);transform:translate3d(-1px,0,0)}20%,80%{-webkit-transform:translate3d(2px,0,0);transform:translate3d(2px,0,0)}30%,50%,70%{-webkit-transform:translate3d(-4px,0,0);transform:translate3d(-4px,0,0)}40%,60%{-webkit-transform:translate3d(4px,0,0);transform:translate3d(4px,0,0)}}@keyframes shake{10%,90%{-webkit-transform:translate3d(-1px,0,0);transform:translate3d(-1px,0,0)}20%,80%{-webkit-transform:translate3d(2px,0,0);transform:translate3d(2px,0,0)}30%,50%,70%{-webkit-transform:translate3d(-4px,0,0);transform:translate3d(-4px,0,0)}40%,60%{-webkit-transform:translate3d(4px,0,0);transform:translate3d(4px,0,0)}}.u-shake{-webkit-animation-name:shake;animation-name:shake;-webkit-animation-duration:820ms;animation-duration:820ms;-webkit-animation-timing-function:cubic-bezier(.36,.07,.19,.97);animation-timing-function:cubic-bezier(.36,.07,.19,.97);-webkit-animation-fill-mode:both;animation-fill-mode:both}.u-elevation-0{box-shadow:none !important}.u-elevation-1{box-shadow:0 4px 12px 0 rgba(0,0,0,0.08);border:1px solid rgba(0,0,0,0.08)}.u-filter-gray-100{-webkit-filter:grayscale(1);filter:grayscale(1)}.u-flex{display:flex}.u-inline-flex{display:inline-flex}.u-flex-none{flex:none}.u-flex-column{flex-direction:column}.u-flex-row{flex-direction:row}.u-flex-wrap{flex-wrap:wrap}.u-flex-nowrap{flex-wrap:nowrap}.u-flex-wrap-reverse{flex-wrap:wrap-reverse}.u-flex-column-reverse{flex-direction:column-reverse}.u-flex-row-reverse{flex-direction:row-reverse}.u-flex-auto{flex:1 1 auto}.u-flex-items-start{align-items:flex-start}.u-flex-items-end{align-items:flex-end}.u-flex-items-center{align-items:center}.u-flex-items-baseline{align-items:baseline}.u-flex-items-stretch{align-items:stretch}.u-flex-self-start{align-self:flex-start}.u-flex-self-end{align-self:flex-end}.u-flex-self-center{align-self:center}.u-flex-self-baseline{align-self:baseline}.u-flex-self-stretch{align-self:stretch}.u-flex-justify-start{justify-content:flex-start}.u-flex-justify-end{justify-content:flex-end}.u-flex-justify-center{justify-content:center}.u-flex-justify-between{justify-content:space-between}.u-flex-justify-around{justify-content:space-around}.u-flex-content-start{align-content:flex-start}.u-flex-content-end{align-content:flex-end}.u-flex-content-center{align-content:center}.u-flex-content-between{align-content:space-between}.u-flex-content-around{align-content:space-around}.u-flex-content-stretch{align-content:stretch}.u-flex-order-0{order:0}.u-flex-order-1{order:1}.u-flex-order-2{order:2}.u-flex-order-3{order:3}.u-flex-order-4{order:4}.u-flex-order-5{order:5}.u-flex-order-6{order:6}.u-flex-order-7{order:7}.u-flex-order-8{order:8}.u-flex-order-last{order:99999}.u-flex-grow-0{flex-grow:0}.u-flex-grow-1{flex-grow:1}.u-flex-shrink-0{flex-shrink:0}.u-flex-shrink-1{flex-shrink:1}@media (max-width:30rem){.u-flex-t{display:flex}.u-inline-flex-t{display:inline-flex}.u-flex-none-t{flex:none}.u-flex-column-t{flex-direction:column}.u-flex-row-t{flex-direction:row}.u-flex-wrap-t{flex-wrap:wrap}.u-flex-nowrap-t{flex-wrap:nowrap}.u-flex-wrap-reverse-t{flex-wrap:wrap-reverse}.u-flex-column-reverse-t{flex-direction:column-reverse}.u-flex-row-reverse-t{flex-direction:row-reverse}.u-flex-auto-t{flex:1 1 auto}.u-flex-items-start-t{align-items:flex-start}.u-flex-items-end-t{align-items:flex-end}.u-flex-items-center-t{align-items:center}.u-flex-items-baseline-t{align-items:baseline}.u-flex-items-stretch-t{align-items:stretch}.u-flex-self-start-t{align-self:flex-start}.u-flex-self-end-t{align-self:flex-end}.u-flex-self-center-t{align-self:center}.u-flex-self-baseline-t{align-self:baseline}.u-flex-self-stretch-t{align-self:stretch}.u-flex-justify-start-t{justify-content:flex-start}.u-flex-justify-end-t{justify-content:flex-end}.u-flex-justify-center-t{justify-content:center}.u-flex-justify-between-t{justify-content:space-between}.u-flex-justify-around-t{justify-content:space-around}.u-flex-content-start-t{align-content:flex-start}.u-flex-content-end-t{align-content:flex-end}.u-flex-content-center-t{align-content:center}.u-flex-content-between-t{align-content:space-between}.u-flex-content-around-t{align-content:space-around}.u-flex-content-stretch-t{align-content:stretch}.u-flex-order-0-t{order:0}.u-flex-order-1-t{order:1}.u-flex-order-2-t{order:2}.u-flex-order-3-t{order:3}.u-flex-order-4-t{order:4}.u-flex-order-5-t{order:5}.u-flex-order-6-t{order:6}.u-flex-order-7-t{order:7}.u-flex-order-8-t{order:8}.u-flex-order-last-t{order:99999}.u-flex-grow-0-t{flex-grow:0}.u-flex-grow-1-t{flex-grow:1}.u-flex-shrink-0-t{flex-shrink:0}.u-flex-shrink-1-t{flex-shrink:1}}@media (max-width:48rem){.u-flex-s{display:flex}.u-inline-flex-s{display:inline-flex}.u-flex-none-s{flex:none}.u-flex-column-s{flex-direction:column}.u-flex-row-s{flex-direction:row}.u-flex-wrap-s{flex-wrap:wrap}.u-flex-nowrap-s{flex-wrap:nowrap}.u-flex-wrap-reverse-s{flex-wrap:wrap-reverse}.u-flex-column-reverse-s{flex-direction:column-reverse}.u-flex-row-reverse-s{flex-direction:row-reverse}.u-flex-auto-s{flex:1 1 auto}.u-flex-items-start-s{align-items:flex-start}.u-flex-items-end-s{align-items:flex-end}.u-flex-items-center-s{align-items:center}.u-flex-items-baseline-s{align-items:baseline}.u-flex-items-stretch-s{align-items:stretch}.u-flex-self-start-s{align-self:flex-start}.u-flex-self-end-s{align-self:flex-end}.u-flex-self-center-s{align-self:center}.u-flex-self-baseline-s{align-self:baseline}.u-flex-self-stretch-s{align-self:stretch}.u-flex-justify-start-s{justify-content:flex-start}.u-flex-justify-end-s{justify-content:flex-end}.u-flex-justify-center-s{justify-content:center}.u-flex-justify-between-s{justify-content:space-between}.u-flex-justify-around-s{justify-content:space-around}.u-flex-content-start-s{align-content:flex-start}.u-flex-content-end-s{align-content:flex-end}.u-flex-content-center-s{align-content:center}.u-flex-content-between-s{align-content:space-between}.u-flex-content-around-s{align-content:space-around}.u-flex-content-stretch-s{align-content:stretch}.u-flex-order-0-s{order:0}.u-flex-order-1-s{order:1}.u-flex-order-2-s{order:2}.u-flex-order-3-s{order:3}.u-flex-order-4-s{order:4}.u-flex-order-5-s{order:5}.u-flex-order-6-s{order:6}.u-flex-order-7-s{order:7}.u-flex-order-8-s{order:8}.u-flex-order-last-s{order:99999}.u-flex-grow-0-s{flex-grow:0}.u-flex-grow-1-s{flex-grow:1}.u-flex-shrink-0-s{flex-shrink:0}.u-flex-shrink-1-s{flex-shrink:1}}@media (max-width:63.938rem){.u-flex-m{display:flex}.u-inline-flex-m{display:inline-flex}.u-flex-none-m{flex:none}.u-flex-column-m{flex-direction:column}.u-flex-row-m{flex-direction:row}.u-flex-wrap-m{flex-wrap:wrap}.u-flex-nowrap-m{flex-wrap:nowrap}.u-flex-wrap-reverse-m{flex-wrap:wrap-reverse}.u-flex-column-reverse-m{flex-direction:column-reverse}.u-flex-row-reverse-m{flex-direction:row-reverse}.u-flex-auto-m{flex:1 1 auto}.u-flex-items-start-m{align-items:flex-start}.u-flex-items-end-m{align-items:flex-end}.u-flex-items-center-m{align-items:center}.u-flex-items-baseline-m{align-items:baseline}.u-flex-items-stretch-m{align-items:stretch}.u-flex-self-start-m{align-self:flex-start}.u-flex-self-end-m{align-self:flex-end}.u-flex-self-center-m{align-self:center}.u-flex-self-baseline-m{align-self:baseline}.u-flex-self-stretch-m{align-self:stretch}.u-flex-justify-start-m{justify-content:flex-start}.u-flex-justify-end-m{justify-content:flex-end}.u-flex-justify-center-m{justify-content:center}.u-flex-justify-between-m{justify-content:space-between}.u-flex-justify-around-m{justify-content:space-around}.u-flex-content-start-m{align-content:flex-start}.u-flex-content-end-m{align-content:flex-end}.u-flex-content-center-m{align-content:center}.u-flex-content-between-m{align-content:space-between}.u-flex-content-around-m{align-content:space-around}.u-flex-content-stretch-m{align-content:stretch}.u-flex-order-0-m{order:0}.u-flex-order-1-m{order:1}.u-flex-order-2-m{order:2}.u-flex-order-3-m{order:3}.u-flex-order-4-m{order:4}.u-flex-order-5-m{order:5}.u-flex-order-6-m{order:6}.u-flex-order-7-m{order:7}.u-flex-order-8-m{order:8}.u-flex-order-last-m{order:99999}.u-flex-grow-0-m{flex-grow:0}.u-flex-grow-1-m{flex-grow:1}.u-flex-shrink-0-m{flex-shrink:0}.u-flex-shrink-1-m{flex-shrink:1}}.u-nolist{list-style-type:none}@media (max-width:30rem){.u-nolist-t{list-style-type:none}}@media (max-width:48rem){.u-nolist-s{list-style-type:none}}@media (max-width:63.938rem){.u-nolist-m{list-style-type:none}}.u-media{display:flex;align-items:center}.u-media-top{align-items:flex-start}.u-media-bottom{align-items:flex-end}.u-media-grow{flex:1 1 auto;overflow:hidden}.u-media-fixed{line-height:0;flex:0 0 auto}.u-o-100{opacity:1}.u-o-90{opacity:.9}.u-o-80{opacity:.8}.u-o-70{opacity:.7}.u-o-60{opacity:.6}.u-o-50{opacity:.5}.u-o-40{opacity:.4}.u-o-30{opacity:.3}.u-o-20{opacity:.2}.u-o-10{opacity:.1}.u-o-05{opacity:.05}.u-o-025{opacity:.025}.u-o-0{opacity:0}.u-ov-visible{overflow:visible !important}.u-ov-hidden{overflow:hidden !important}.u-ov-scroll{overflow:scroll !important}.u-ov-auto{overflow:auto !important}.u-p-0{padding:0 !important}.u-pt-0{padding-top:0 !important}.u-pb-0{padding-bottom:0 !important}.u-pl-0{padding-left:0 !important}.u-pr-0{padding-right:0 !important}.u-pv-0{padding-top:0 !important;padding-bottom:0 !important}.u-ph-0{padding-left:0 !important;padding-right:0 !important}.u-p-1{padding:1rem !important}.u-pt-1{padding-top:1rem !important}.u-pb-1{padding-bottom:1rem !important}.u-pl-1{padding-left:1rem !important}.u-pr-1{padding-right:1rem !important}.u-pv-1{padding-top:1rem !important;padding-bottom:1rem !important}.u-ph-1{padding-left:1rem !important;padding-right:1rem !important}.u-p-2{padding:2rem !important}.u-pt-2{padding-top:2rem !important}.u-pb-2{padding-bottom:2rem !important}.u-pl-2{padding-left:2rem !important}.u-pr-2{padding-right:2rem !important}.u-pv-2{padding-top:2rem !important;padding-bottom:2rem !important}.u-ph-2{padding-left:2rem !important;padding-right:2rem !important}.u-p-3{padding:3rem !important}.u-pt-3{padding-top:3rem !important}.u-pb-3{padding-bottom:3rem !important}.u-pl-3{padding-left:3rem !important}.u-pr-3{padding-right:3rem !important}.u-pv-3{padding-top:3rem !important;padding-bottom:3rem !important}.u-ph-3{padding-left:3rem !important;padding-right:3rem !important}.u-p-auto{padding:auto !important}.u-pt-auto{padding-top:auto !important}.u-pb-auto{padding-bottom:auto !important}.u-pl-auto{padding-left:auto !important}.u-pr-auto{padding-right:auto !important}.u-pv-auto{padding-top:auto !important;padding-bottom:auto !important}.u-ph-auto{padding-left:auto !important;padding-right:auto !important}.u-p-half{padding:.5rem !important}.u-pt-half{padding-top:.5rem !important}.u-pb-half{padding-bottom:.5rem !important}.u-pl-half{padding-left:.5rem !important}.u-pr-half{padding-right:.5rem !important}.u-pv-half{padding-top:.5rem !important;padding-bottom:.5rem !important}.u-ph-half{padding-left:.5rem !important;padding-right:.5rem !important}.u-p-1-half{padding:1.5rem !important}.u-pt-1-half{padding-top:1.5rem !important}.u-pb-1-half{padding-bottom:1.5rem !important}.u-pl-1-half{padding-left:1.5rem !important}.u-pr-1-half{padding-right:1.5rem !important}.u-pv-1-half{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.u-ph-1-half{padding-left:1.5rem !important;padding-right:1.5rem !important}.u-p-2-half{padding:2.5rem !important}.u-pt-2-half{padding-top:2.5rem !important}.u-pb-2-half{padding-bottom:2.5rem !important}.u-pl-2-half{padding-left:2.5rem !important}.u-pr-2-half{padding-right:2.5rem !important}.u-pv-2-half{padding-top:2.5rem !important;padding-bottom:2.5rem !important}.u-ph-2-half{padding-left:2.5rem !important;padding-right:2.5rem !important}.u-m-0{margin:0 !important}.u-mt-0{margin-top:0 !important}.u-mb-0{margin-bottom:0 !important}.u-ml-0{margin-left:0 !important}.u-mr-0{margin-right:0 !important}.u-mv-0{margin-top:0 !important;margin-bottom:0 !important}.u-mh-0{margin-left:0 !important;margin-right:0 !important}.u-m-1{margin:1rem !important}.u-mt-1{margin-top:1rem !important}.u-mb-1{margin-bottom:1rem !important}.u-ml-1{margin-left:1rem !important}.u-mr-1{margin-right:1rem !important}.u-mv-1{margin-top:1rem !important;margin-bottom:1rem !important}.u-mh-1{margin-left:1rem !important;margin-right:1rem !important}.u-m-2{margin:2rem !important}.u-mt-2{margin-top:2rem !important}.u-mb-2{margin-bottom:2rem !important}.u-ml-2{margin-left:2rem !important}.u-mr-2{margin-right:2rem !important}.u-mv-2{margin-top:2rem !important;margin-bottom:2rem !important}.u-mh-2{margin-left:2rem !important;margin-right:2rem !important}.u-m-3{margin:3rem !important}.u-mt-3{margin-top:3rem !important}.u-mb-3{margin-bottom:3rem !important}.u-ml-3{margin-left:3rem !important}.u-mr-3{margin-right:3rem !important}.u-mv-3{margin-top:3rem !important;margin-bottom:3rem !important}.u-mh-3{margin-left:3rem !important;margin-right:3rem !important}.u-m-auto{margin:auto !important}.u-mt-auto{margin-top:auto !important}.u-mb-auto{margin-bottom:auto !important}.u-ml-auto{margin-left:auto !important}.u-mr-auto{margin-right:auto !important}.u-mv-auto{margin-top:auto !important;margin-bottom:auto !important}.u-mh-auto{margin-left:auto !important;margin-right:auto !important}.u-m-half{margin:.5rem !important}.u-mt-half{margin-top:.5rem !important}.u-mb-half{margin-bottom:.5rem !important}.u-ml-half{margin-left:.5rem !important}.u-mr-half{margin-right:.5rem !important}.u-mv-half{margin-top:.5rem !important;margin-bottom:.5rem !important}.u-mh-half{margin-left:.5rem !important;margin-right:.5rem !important}.u-m-1-half{margin:1.5rem !important}.u-mt-1-half{margin-top:1.5rem !important}.u-mb-1-half{margin-bottom:1.5rem !important}.u-ml-1-half{margin-left:1.5rem !important}.u-mr-1-half{margin-right:1.5rem !important}.u-mv-1-half{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.u-mh-1-half{margin-left:1.5rem !important;margin-right:1.5rem !important}.u-m-2-half{margin:2.5rem !important}.u-mt-2-half{margin-top:2.5rem !important}.u-mb-2-half{margin-bottom:2.5rem !important}.u-ml-2-half{margin-left:2.5rem !important}.u-mr-2-half{margin-right:2.5rem !important}.u-mv-2-half{margin-top:2.5rem !important;margin-bottom:2.5rem !important}.u-mh-2-half{margin-left:2.5rem !important;margin-right:2.5rem !important}@media (max-width:30rem){.u-p-0-t{padding:0 !important}}@media (max-width:30rem){.u-pt-0-t{padding-top:0 !important}}@media (max-width:30rem){.u-pb-0-t{padding-bottom:0 !important}}@media (max-width:30rem){.u-pl-0-t{padding-left:0 !important}}@media (max-width:30rem){.u-pr-0-t{padding-right:0 !important}}@media (max-width:30rem){.u-pv-0-t{padding-top:0 !important;padding-bottom:0 !important}}@media (max-width:30rem){.u-ph-0-t{padding-left:0 !important;padding-right:0 !important}}@media (max-width:30rem){.u-p-1-t{padding:1rem !important}}@media (max-width:30rem){.u-pt-1-t{padding-top:1rem !important}}@media (max-width:30rem){.u-pb-1-t{padding-bottom:1rem !important}}@media (max-width:30rem){.u-pl-1-t{padding-left:1rem !important}}@media (max-width:30rem){.u-pr-1-t{padding-right:1rem !important}}@media (max-width:30rem){.u-pv-1-t{padding-top:1rem !important;padding-bottom:1rem !important}}@media (max-width:30rem){.u-ph-1-t{padding-left:1rem !important;padding-right:1rem !important}}@media (max-width:30rem){.u-p-2-t{padding:2rem !important}}@media (max-width:30rem){.u-pt-2-t{padding-top:2rem !important}}@media (max-width:30rem){.u-pb-2-t{padding-bottom:2rem !important}}@media (max-width:30rem){.u-pl-2-t{padding-left:2rem !important}}@media (max-width:30rem){.u-pr-2-t{padding-right:2rem !important}}@media (max-width:30rem){.u-pv-2-t{padding-top:2rem !important;padding-bottom:2rem !important}}@media (max-width:30rem){.u-ph-2-t{padding-left:2rem !important;padding-right:2rem !important}}@media (max-width:30rem){.u-p-3-t{padding:3rem !important}}@media (max-width:30rem){.u-pt-3-t{padding-top:3rem !important}}@media (max-width:30rem){.u-pb-3-t{padding-bottom:3rem !important}}@media (max-width:30rem){.u-pl-3-t{padding-left:3rem !important}}@media (max-width:30rem){.u-pr-3-t{padding-right:3rem !important}}@media (max-width:30rem){.u-pv-3-t{padding-top:3rem !important;padding-bottom:3rem !important}}@media (max-width:30rem){.u-ph-3-t{padding-left:3rem !important;padding-right:3rem !important}}@media (max-width:30rem){.u-p-auto-t{padding:auto !important}}@media (max-width:30rem){.u-pt-auto-t{padding-top:auto !important}}@media (max-width:30rem){.u-pb-auto-t{padding-bottom:auto !important}}@media (max-width:30rem){.u-pl-auto-t{padding-left:auto !important}}@media (max-width:30rem){.u-pr-auto-t{padding-right:auto !important}}@media (max-width:30rem){.u-pv-auto-t{padding-top:auto !important;padding-bottom:auto !important}}@media (max-width:30rem){.u-ph-auto-t{padding-left:auto !important;padding-right:auto !important}}@media (max-width:30rem){.u-p-half-t{padding:.5rem !important}}@media (max-width:30rem){.u-pt-half-t{padding-top:.5rem !important}}@media (max-width:30rem){.u-pb-half-t{padding-bottom:.5rem !important}}@media (max-width:30rem){.u-pl-half-t{padding-left:.5rem !important}}@media (max-width:30rem){.u-pr-half-t{padding-right:.5rem !important}}@media (max-width:30rem){.u-pv-half-t{padding-top:.5rem !important;padding-bottom:.5rem !important}}@media (max-width:30rem){.u-ph-half-t{padding-left:.5rem !important;padding-right:.5rem !important}}@media (max-width:30rem){.u-p-1-half-t{padding:1.5rem !important}}@media (max-width:30rem){.u-pt-1-half-t{padding-top:1.5rem !important}}@media (max-width:30rem){.u-pb-1-half-t{padding-bottom:1.5rem !important}}@media (max-width:30rem){.u-pl-1-half-t{padding-left:1.5rem !important}}@media (max-width:30rem){.u-pr-1-half-t{padding-right:1.5rem !important}}@media (max-width:30rem){.u-pv-1-half-t{padding-top:1.5rem !important;padding-bottom:1.5rem !important}}@media (max-width:30rem){.u-ph-1-half-t{padding-left:1.5rem !important;padding-right:1.5rem !important}}@media (max-width:30rem){.u-p-2-half-t{padding:2.5rem !important}}@media (max-width:30rem){.u-pt-2-half-t{padding-top:2.5rem !important}}@media (max-width:30rem){.u-pb-2-half-t{padding-bottom:2.5rem !important}}@media (max-width:30rem){.u-pl-2-half-t{padding-left:2.5rem !important}}@media (max-width:30rem){.u-pr-2-half-t{padding-right:2.5rem !important}}@media (max-width:30rem){.u-pv-2-half-t{padding-top:2.5rem !important;padding-bottom:2.5rem !important}}@media (max-width:30rem){.u-ph-2-half-t{padding-left:2.5rem !important;padding-right:2.5rem !important}}@media (max-width:30rem){.u-m-0-t{margin:0 !important}}@media (max-width:30rem){.u-mt-0-t{margin-top:0 !important}}@media (max-width:30rem){.u-mb-0-t{margin-bottom:0 !important}}@media (max-width:30rem){.u-ml-0-t{margin-left:0 !important}}@media (max-width:30rem){.u-mr-0-t{margin-right:0 !important}}@media (max-width:30rem){.u-mv-0-t{margin-top:0 !important;margin-bottom:0 !important}}@media (max-width:30rem){.u-mh-0-t{margin-left:0 !important;margin-right:0 !important}}@media (max-width:30rem){.u-m-1-t{margin:1rem !important}}@media (max-width:30rem){.u-mt-1-t{margin-top:1rem !important}}@media (max-width:30rem){.u-mb-1-t{margin-bottom:1rem !important}}@media (max-width:30rem){.u-ml-1-t{margin-left:1rem !important}}@media (max-width:30rem){.u-mr-1-t{margin-right:1rem !important}}@media (max-width:30rem){.u-mv-1-t{margin-top:1rem !important;margin-bottom:1rem !important}}@media (max-width:30rem){.u-mh-1-t{margin-left:1rem !important;margin-right:1rem !important}}@media (max-width:30rem){.u-m-2-t{margin:2rem !important}}@media (max-width:30rem){.u-mt-2-t{margin-top:2rem !important}}@media (max-width:30rem){.u-mb-2-t{margin-bottom:2rem !important}}@media (max-width:30rem){.u-ml-2-t{margin-left:2rem !important}}@media (max-width:30rem){.u-mr-2-t{margin-right:2rem !important}}@media (max-width:30rem){.u-mv-2-t{margin-top:2rem !important;margin-bottom:2rem !important}}@media (max-width:30rem){.u-mh-2-t{margin-left:2rem !important;margin-right:2rem !important}}@media (max-width:30rem){.u-m-3-t{margin:3rem !important}}@media (max-width:30rem){.u-mt-3-t{margin-top:3rem !important}}@media (max-width:30rem){.u-mb-3-t{margin-bottom:3rem !important}}@media (max-width:30rem){.u-ml-3-t{margin-left:3rem !important}}@media (max-width:30rem){.u-mr-3-t{margin-right:3rem !important}}@media (max-width:30rem){.u-mv-3-t{margin-top:3rem !important;margin-bottom:3rem !important}}@media (max-width:30rem){.u-mh-3-t{margin-left:3rem !important;margin-right:3rem !important}}@media (max-width:30rem){.u-m-auto-t{margin:auto !important}}@media (max-width:30rem){.u-mt-auto-t{margin-top:auto !important}}@media (max-width:30rem){.u-mb-auto-t{margin-bottom:auto !important}}@media (max-width:30rem){.u-ml-auto-t{margin-left:auto !important}}@media (max-width:30rem){.u-mr-auto-t{margin-right:auto !important}}@media (max-width:30rem){.u-mv-auto-t{margin-top:auto !important;margin-bottom:auto !important}}@media (max-width:30rem){.u-mh-auto-t{margin-left:auto !important;margin-right:auto !important}}@media (max-width:30rem){.u-m-half-t{margin:.5rem !important}}@media (max-width:30rem){.u-mt-half-t{margin-top:.5rem !important}}@media (max-width:30rem){.u-mb-half-t{margin-bottom:.5rem !important}}@media (max-width:30rem){.u-ml-half-t{margin-left:.5rem !important}}@media (max-width:30rem){.u-mr-half-t{margin-right:.5rem !important}}@media (max-width:30rem){.u-mv-half-t{margin-top:.5rem !important;margin-bottom:.5rem !important}}@media (max-width:30rem){.u-mh-half-t{margin-left:.5rem !important;margin-right:.5rem !important}}@media (max-width:30rem){.u-m-1-half-t{margin:1.5rem !important}}@media (max-width:30rem){.u-mt-1-half-t{margin-top:1.5rem !important}}@media (max-width:30rem){.u-mb-1-half-t{margin-bottom:1.5rem !important}}@media (max-width:30rem){.u-ml-1-half-t{margin-left:1.5rem !important}}@media (max-width:30rem){.u-mr-1-half-t{margin-right:1.5rem !important}}@media (max-width:30rem){.u-mv-1-half-t{margin-top:1.5rem !important;margin-bottom:1.5rem !important}}@media (max-width:30rem){.u-mh-1-half-t{margin-left:1.5rem !important;margin-right:1.5rem !important}}@media (max-width:30rem){.u-m-2-half-t{margin:2.5rem !important}}@media (max-width:30rem){.u-mt-2-half-t{margin-top:2.5rem !important}}@media (max-width:30rem){.u-mb-2-half-t{margin-bottom:2.5rem !important}}@media (max-width:30rem){.u-ml-2-half-t{margin-left:2.5rem !important}}@media (max-width:30rem){.u-mr-2-half-t{margin-right:2.5rem !important}}@media (max-width:30rem){.u-mv-2-half-t{margin-top:2.5rem !important;margin-bottom:2.5rem !important}}@media (max-width:30rem){.u-mh-2-half-t{margin-left:2.5rem !important;margin-right:2.5rem !important}}@media (max-width:48rem){.u-p-0-s{padding:0 !important}}@media (max-width:48rem){.u-pt-0-s{padding-top:0 !important}}@media (max-width:48rem){.u-pb-0-s{padding-bottom:0 !important}}@media (max-width:48rem){.u-pl-0-s{padding-left:0 !important}}@media (max-width:48rem){.u-pr-0-s{padding-right:0 !important}}@media (max-width:48rem){.u-pv-0-s{padding-top:0 !important;padding-bottom:0 !important}}@media (max-width:48rem){.u-ph-0-s{padding-left:0 !important;padding-right:0 !important}}@media (max-width:48rem){.u-p-1-s{padding:1rem !important}}@media (max-width:48rem){.u-pt-1-s{padding-top:1rem !important}}@media (max-width:48rem){.u-pb-1-s{padding-bottom:1rem !important}}@media (max-width:48rem){.u-pl-1-s{padding-left:1rem !important}}@media (max-width:48rem){.u-pr-1-s{padding-right:1rem !important}}@media (max-width:48rem){.u-pv-1-s{padding-top:1rem !important;padding-bottom:1rem !important}}@media (max-width:48rem){.u-ph-1-s{padding-left:1rem !important;padding-right:1rem !important}}@media (max-width:48rem){.u-p-2-s{padding:2rem !important}}@media (max-width:48rem){.u-pt-2-s{padding-top:2rem !important}}@media (max-width:48rem){.u-pb-2-s{padding-bottom:2rem !important}}@media (max-width:48rem){.u-pl-2-s{padding-left:2rem !important}}@media (max-width:48rem){.u-pr-2-s{padding-right:2rem !important}}@media (max-width:48rem){.u-pv-2-s{padding-top:2rem !important;padding-bottom:2rem !important}}@media (max-width:48rem){.u-ph-2-s{padding-left:2rem !important;padding-right:2rem !important}}@media (max-width:48rem){.u-p-3-s{padding:3rem !important}}@media (max-width:48rem){.u-pt-3-s{padding-top:3rem !important}}@media (max-width:48rem){.u-pb-3-s{padding-bottom:3rem !important}}@media (max-width:48rem){.u-pl-3-s{padding-left:3rem !important}}@media (max-width:48rem){.u-pr-3-s{padding-right:3rem !important}}@media (max-width:48rem){.u-pv-3-s{padding-top:3rem !important;padding-bottom:3rem !important}}@media (max-width:48rem){.u-ph-3-s{padding-left:3rem !important;padding-right:3rem !important}}@media (max-width:48rem){.u-p-auto-s{padding:auto !important}}@media (max-width:48rem){.u-pt-auto-s{padding-top:auto !important}}@media (max-width:48rem){.u-pb-auto-s{padding-bottom:auto !important}}@media (max-width:48rem){.u-pl-auto-s{padding-left:auto !important}}@media (max-width:48rem){.u-pr-auto-s{padding-right:auto !important}}@media (max-width:48rem){.u-pv-auto-s{padding-top:auto !important;padding-bottom:auto !important}}@media (max-width:48rem){.u-ph-auto-s{padding-left:auto !important;padding-right:auto !important}}@media (max-width:48rem){.u-p-half-s{padding:.5rem !important}}@media (max-width:48rem){.u-pt-half-s{padding-top:.5rem !important}}@media (max-width:48rem){.u-pb-half-s{padding-bottom:.5rem !important}}@media (max-width:48rem){.u-pl-half-s{padding-left:.5rem !important}}@media (max-width:48rem){.u-pr-half-s{padding-right:.5rem !important}}@media (max-width:48rem){.u-pv-half-s{padding-top:.5rem !important;padding-bottom:.5rem !important}}@media (max-width:48rem){.u-ph-half-s{padding-left:.5rem !important;padding-right:.5rem !important}}@media (max-width:48rem){.u-p-1-half-s{padding:1.5rem !important}}@media (max-width:48rem){.u-pt-1-half-s{padding-top:1.5rem !important}}@media (max-width:48rem){.u-pb-1-half-s{padding-bottom:1.5rem !important}}@media (max-width:48rem){.u-pl-1-half-s{padding-left:1.5rem !important}}@media (max-width:48rem){.u-pr-1-half-s{padding-right:1.5rem !important}}@media (max-width:48rem){.u-pv-1-half-s{padding-top:1.5rem !important;padding-bottom:1.5rem !important}}@media (max-width:48rem){.u-ph-1-half-s{padding-left:1.5rem !important;padding-right:1.5rem !important}}@media (max-width:48rem){.u-p-2-half-s{padding:2.5rem !important}}@media (max-width:48rem){.u-pt-2-half-s{padding-top:2.5rem !important}}@media (max-width:48rem){.u-pb-2-half-s{padding-bottom:2.5rem !important}}@media (max-width:48rem){.u-pl-2-half-s{padding-left:2.5rem !important}}@media (max-width:48rem){.u-pr-2-half-s{padding-right:2.5rem !important}}@media (max-width:48rem){.u-pv-2-half-s{padding-top:2.5rem !important;padding-bottom:2.5rem !important}}@media (max-width:48rem){.u-ph-2-half-s{padding-left:2.5rem !important;padding-right:2.5rem !important}}@media (max-width:48rem){.u-m-0-s{margin:0 !important}}@media (max-width:48rem){.u-mt-0-s{margin-top:0 !important}}@media (max-width:48rem){.u-mb-0-s{margin-bottom:0 !important}}@media (max-width:48rem){.u-ml-0-s{margin-left:0 !important}}@media (max-width:48rem){.u-mr-0-s{margin-right:0 !important}}@media (max-width:48rem){.u-mv-0-s{margin-top:0 !important;margin-bottom:0 !important}}@media (max-width:48rem){.u-mh-0-s{margin-left:0 !important;margin-right:0 !important}}@media (max-width:48rem){.u-m-1-s{margin:1rem !important}}@media (max-width:48rem){.u-mt-1-s{margin-top:1rem !important}}@media (max-width:48rem){.u-mb-1-s{margin-bottom:1rem !important}}@media (max-width:48rem){.u-ml-1-s{margin-left:1rem !important}}@media (max-width:48rem){.u-mr-1-s{margin-right:1rem !important}}@media (max-width:48rem){.u-mv-1-s{margin-top:1rem !important;margin-bottom:1rem !important}}@media (max-width:48rem){.u-mh-1-s{margin-left:1rem !important;margin-right:1rem !important}}@media (max-width:48rem){.u-m-2-s{margin:2rem !important}}@media (max-width:48rem){.u-mt-2-s{margin-top:2rem !important}}@media (max-width:48rem){.u-mb-2-s{margin-bottom:2rem !important}}@media (max-width:48rem){.u-ml-2-s{margin-left:2rem !important}}@media (max-width:48rem){.u-mr-2-s{margin-right:2rem !important}}@media (max-width:48rem){.u-mv-2-s{margin-top:2rem !important;margin-bottom:2rem !important}}@media (max-width:48rem){.u-mh-2-s{margin-left:2rem !important;margin-right:2rem !important}}@media (max-width:48rem){.u-m-3-s{margin:3rem !important}}@media (max-width:48rem){.u-mt-3-s{margin-top:3rem !important}}@media (max-width:48rem){.u-mb-3-s{margin-bottom:3rem !important}}@media (max-width:48rem){.u-ml-3-s{margin-left:3rem !important}}@media (max-width:48rem){.u-mr-3-s{margin-right:3rem !important}}@media (max-width:48rem){.u-mv-3-s{margin-top:3rem !important;margin-bottom:3rem !important}}@media (max-width:48rem){.u-mh-3-s{margin-left:3rem !important;margin-right:3rem !important}}@media (max-width:48rem){.u-m-auto-s{margin:auto !important}}@media (max-width:48rem){.u-mt-auto-s{margin-top:auto !important}}@media (max-width:48rem){.u-mb-auto-s{margin-bottom:auto !important}}@media (max-width:48rem){.u-ml-auto-s{margin-left:auto !important}}@media (max-width:48rem){.u-mr-auto-s{margin-right:auto !important}}@media (max-width:48rem){.u-mv-auto-s{margin-top:auto !important;margin-bottom:auto !important}}@media (max-width:48rem){.u-mh-auto-s{margin-left:auto !important;margin-right:auto !important}}@media (max-width:48rem){.u-m-half-s{margin:.5rem !important}}@media (max-width:48rem){.u-mt-half-s{margin-top:.5rem !important}}@media (max-width:48rem){.u-mb-half-s{margin-bottom:.5rem !important}}@media (max-width:48rem){.u-ml-half-s{margin-left:.5rem !important}}@media (max-width:48rem){.u-mr-half-s{margin-right:.5rem !important}}@media (max-width:48rem){.u-mv-half-s{margin-top:.5rem !important;margin-bottom:.5rem !important}}@media (max-width:48rem){.u-mh-half-s{margin-left:.5rem !important;margin-right:.5rem !important}}@media (max-width:48rem){.u-m-1-half-s{margin:1.5rem !important}}@media (max-width:48rem){.u-mt-1-half-s{margin-top:1.5rem !important}}@media (max-width:48rem){.u-mb-1-half-s{margin-bottom:1.5rem !important}}@media (max-width:48rem){.u-ml-1-half-s{margin-left:1.5rem !important}}@media (max-width:48rem){.u-mr-1-half-s{margin-right:1.5rem !important}}@media (max-width:48rem){.u-mv-1-half-s{margin-top:1.5rem !important;margin-bottom:1.5rem !important}}@media (max-width:48rem){.u-mh-1-half-s{margin-left:1.5rem !important;margin-right:1.5rem !important}}@media (max-width:48rem){.u-m-2-half-s{margin:2.5rem !important}}@media (max-width:48rem){.u-mt-2-half-s{margin-top:2.5rem !important}}@media (max-width:48rem){.u-mb-2-half-s{margin-bottom:2.5rem !important}}@media (max-width:48rem){.u-ml-2-half-s{margin-left:2.5rem !important}}@media (max-width:48rem){.u-mr-2-half-s{margin-right:2.5rem !important}}@media (max-width:48rem){.u-mv-2-half-s{margin-top:2.5rem !important;margin-bottom:2.5rem !important}}@media (max-width:48rem){.u-mh-2-half-s{margin-left:2.5rem !important;margin-right:2.5rem !important}}@media (max-width:63.938rem){.u-p-0-m{padding:0 !important}}@media (max-width:63.938rem){.u-pt-0-m{padding-top:0 !important}}@media (max-width:63.938rem){.u-pb-0-m{padding-bottom:0 !important}}@media (max-width:63.938rem){.u-pl-0-m{padding-left:0 !important}}@media (max-width:63.938rem){.u-pr-0-m{padding-right:0 !important}}@media (max-width:63.938rem){.u-pv-0-m{padding-top:0 !important;padding-bottom:0 !important}}@media (max-width:63.938rem){.u-ph-0-m{padding-left:0 !important;padding-right:0 !important}}@media (max-width:63.938rem){.u-p-1-m{padding:1rem !important}}@media (max-width:63.938rem){.u-pt-1-m{padding-top:1rem !important}}@media (max-width:63.938rem){.u-pb-1-m{padding-bottom:1rem !important}}@media (max-width:63.938rem){.u-pl-1-m{padding-left:1rem !important}}@media (max-width:63.938rem){.u-pr-1-m{padding-right:1rem !important}}@media (max-width:63.938rem){.u-pv-1-m{padding-top:1rem !important;padding-bottom:1rem !important}}@media (max-width:63.938rem){.u-ph-1-m{padding-left:1rem !important;padding-right:1rem !important}}@media (max-width:63.938rem){.u-p-2-m{padding:2rem !important}}@media (max-width:63.938rem){.u-pt-2-m{padding-top:2rem !important}}@media (max-width:63.938rem){.u-pb-2-m{padding-bottom:2rem !important}}@media (max-width:63.938rem){.u-pl-2-m{padding-left:2rem !important}}@media (max-width:63.938rem){.u-pr-2-m{padding-right:2rem !important}}@media (max-width:63.938rem){.u-pv-2-m{padding-top:2rem !important;padding-bottom:2rem !important}}@media (max-width:63.938rem){.u-ph-2-m{padding-left:2rem !important;padding-right:2rem !important}}@media (max-width:63.938rem){.u-p-3-m{padding:3rem !important}}@media (max-width:63.938rem){.u-pt-3-m{padding-top:3rem !important}}@media (max-width:63.938rem){.u-pb-3-m{padding-bottom:3rem !important}}@media (max-width:63.938rem){.u-pl-3-m{padding-left:3rem !important}}@media (max-width:63.938rem){.u-pr-3-m{padding-right:3rem !important}}@media (max-width:63.938rem){.u-pv-3-m{padding-top:3rem !important;padding-bottom:3rem !important}}@media (max-width:63.938rem){.u-ph-3-m{padding-left:3rem !important;padding-right:3rem !important}}@media (max-width:63.938rem){.u-p-auto-m{padding:auto !important}}@media (max-width:63.938rem){.u-pt-auto-m{padding-top:auto !important}}@media (max-width:63.938rem){.u-pb-auto-m{padding-bottom:auto !important}}@media (max-width:63.938rem){.u-pl-auto-m{padding-left:auto !important}}@media (max-width:63.938rem){.u-pr-auto-m{padding-right:auto !important}}@media (max-width:63.938rem){.u-pv-auto-m{padding-top:auto !important;padding-bottom:auto !important}}@media (max-width:63.938rem){.u-ph-auto-m{padding-left:auto !important;padding-right:auto !important}}@media (max-width:63.938rem){.u-p-half-m{padding:.5rem !important}}@media (max-width:63.938rem){.u-pt-half-m{padding-top:.5rem !important}}@media (max-width:63.938rem){.u-pb-half-m{padding-bottom:.5rem !important}}@media (max-width:63.938rem){.u-pl-half-m{padding-left:.5rem !important}}@media (max-width:63.938rem){.u-pr-half-m{padding-right:.5rem !important}}@media (max-width:63.938rem){.u-pv-half-m{padding-top:.5rem !important;padding-bottom:.5rem !important}}@media (max-width:63.938rem){.u-ph-half-m{padding-left:.5rem !important;padding-right:.5rem !important}}@media (max-width:63.938rem){.u-p-1-half-m{padding:1.5rem !important}}@media (max-width:63.938rem){.u-pt-1-half-m{padding-top:1.5rem !important}}@media (max-width:63.938rem){.u-pb-1-half-m{padding-bottom:1.5rem !important}}@media (max-width:63.938rem){.u-pl-1-half-m{padding-left:1.5rem !important}}@media (max-width:63.938rem){.u-pr-1-half-m{padding-right:1.5rem !important}}@media (max-width:63.938rem){.u-pv-1-half-m{padding-top:1.5rem !important;padding-bottom:1.5rem !important}}@media (max-width:63.938rem){.u-ph-1-half-m{padding-left:1.5rem !important;padding-right:1.5rem !important}}@media (max-width:63.938rem){.u-p-2-half-m{padding:2.5rem !important}}@media (max-width:63.938rem){.u-pt-2-half-m{padding-top:2.5rem !important}}@media (max-width:63.938rem){.u-pb-2-half-m{padding-bottom:2.5rem !important}}@media (max-width:63.938rem){.u-pl-2-half-m{padding-left:2.5rem !important}}@media (max-width:63.938rem){.u-pr-2-half-m{padding-right:2.5rem !important}}@media (max-width:63.938rem){.u-pv-2-half-m{padding-top:2.5rem !important;padding-bottom:2.5rem !important}}@media (max-width:63.938rem){.u-ph-2-half-m{padding-left:2.5rem !important;padding-right:2.5rem !important}}@media (max-width:63.938rem){.u-m-0-m{margin:0 !important}}@media (max-width:63.938rem){.u-mt-0-m{margin-top:0 !important}}@media (max-width:63.938rem){.u-mb-0-m{margin-bottom:0 !important}}@media (max-width:63.938rem){.u-ml-0-m{margin-left:0 !important}}@media (max-width:63.938rem){.u-mr-0-m{margin-right:0 !important}}@media (max-width:63.938rem){.u-mv-0-m{margin-top:0 !important;margin-bottom:0 !important}}@media (max-width:63.938rem){.u-mh-0-m{margin-left:0 !important;margin-right:0 !important}}@media (max-width:63.938rem){.u-m-1-m{margin:1rem !important}}@media (max-width:63.938rem){.u-mt-1-m{margin-top:1rem !important}}@media (max-width:63.938rem){.u-mb-1-m{margin-bottom:1rem !important}}@media (max-width:63.938rem){.u-ml-1-m{margin-left:1rem !important}}@media (max-width:63.938rem){.u-mr-1-m{margin-right:1rem !important}}@media (max-width:63.938rem){.u-mv-1-m{margin-top:1rem !important;margin-bottom:1rem !important}}@media (max-width:63.938rem){.u-mh-1-m{margin-left:1rem !important;margin-right:1rem !important}}@media (max-width:63.938rem){.u-m-2-m{margin:2rem !important}}@media (max-width:63.938rem){.u-mt-2-m{margin-top:2rem !important}}@media (max-width:63.938rem){.u-mb-2-m{margin-bottom:2rem !important}}@media (max-width:63.938rem){.u-ml-2-m{margin-left:2rem !important}}@media (max-width:63.938rem){.u-mr-2-m{margin-right:2rem !important}}@media (max-width:63.938rem){.u-mv-2-m{margin-top:2rem !important;margin-bottom:2rem !important}}@media (max-width:63.938rem){.u-mh-2-m{margin-left:2rem !important;margin-right:2rem !important}}@media (max-width:63.938rem){.u-m-3-m{margin:3rem !important}}@media (max-width:63.938rem){.u-mt-3-m{margin-top:3rem !important}}@media (max-width:63.938rem){.u-mb-3-m{margin-bottom:3rem !important}}@media (max-width:63.938rem){.u-ml-3-m{margin-left:3rem !important}}@media (max-width:63.938rem){.u-mr-3-m{margin-right:3rem !important}}@media (max-width:63.938rem){.u-mv-3-m{margin-top:3rem !important;margin-bottom:3rem !important}}@media (max-width:63.938rem){.u-mh-3-m{margin-left:3rem !important;margin-right:3rem !important}}@media (max-width:63.938rem){.u-m-auto-m{margin:auto !important}}@media (max-width:63.938rem){.u-mt-auto-m{margin-top:auto !important}}@media (max-width:63.938rem){.u-mb-auto-m{margin-bottom:auto !important}}@media (max-width:63.938rem){.u-ml-auto-m{margin-left:auto !important}}@media (max-width:63.938rem){.u-mr-auto-m{margin-right:auto !important}}@media (max-width:63.938rem){.u-mv-auto-m{margin-top:auto !important;margin-bottom:auto !important}}@media (max-width:63.938rem){.u-mh-auto-m{margin-left:auto !important;margin-right:auto !important}}@media (max-width:63.938rem){.u-m-half-m{margin:.5rem !important}}@media (max-width:63.938rem){.u-mt-half-m{margin-top:.5rem !important}}@media (max-width:63.938rem){.u-mb-half-m{margin-bottom:.5rem !important}}@media (max-width:63.938rem){.u-ml-half-m{margin-left:.5rem !important}}@media (max-width:63.938rem){.u-mr-half-m{margin-right:.5rem !important}}@media (max-width:63.938rem){.u-mv-half-m{margin-top:.5rem !important;margin-bottom:.5rem !important}}@media (max-width:63.938rem){.u-mh-half-m{margin-left:.5rem !important;margin-right:.5rem !important}}@media (max-width:63.938rem){.u-m-1-half-m{margin:1.5rem !important}}@media (max-width:63.938rem){.u-mt-1-half-m{margin-top:1.5rem !important}}@media (max-width:63.938rem){.u-mb-1-half-m{margin-bottom:1.5rem !important}}@media (max-width:63.938rem){.u-ml-1-half-m{margin-left:1.5rem !important}}@media (max-width:63.938rem){.u-mr-1-half-m{margin-right:1.5rem !important}}@media (max-width:63.938rem){.u-mv-1-half-m{margin-top:1.5rem !important;margin-bottom:1.5rem !important}}@media (max-width:63.938rem){.u-mh-1-half-m{margin-left:1.5rem !important;margin-right:1.5rem !important}}@media (max-width:63.938rem){.u-m-2-half-m{margin:2.5rem !important}}@media (max-width:63.938rem){.u-mt-2-half-m{margin-top:2.5rem !important}}@media (max-width:63.938rem){.u-mb-2-half-m{margin-bottom:2.5rem !important}}@media (max-width:63.938rem){.u-ml-2-half-m{margin-left:2.5rem !important}}@media (max-width:63.938rem){.u-mr-2-half-m{margin-right:2.5rem !important}}@media (max-width:63.938rem){.u-mv-2-half-m{margin-top:2.5rem !important;margin-bottom:2.5rem !important}}@media (max-width:63.938rem){.u-mh-2-half-m{margin-left:2.5rem !important;margin-right:2.5rem !important}}.u-pos-absolute{position:absolute}.u-pos-relative{position:relative}.u-pos-fixed{position:fixed}.u-pos-sticky{position:sticky}.u-pos-static{position:static}@media (max-width:30rem){.u-pos-absolute-t{position:absolute}.u-pos-relative-t{position:relative}.u-pos-fixed-t{position:fixed}.u-pos-sticky-t{position:sticky}.u-pos-static-t{position:static}}@media (max-width:48rem){.u-pos-absolute-s{position:absolute}.u-pos-relative-s{position:relative}.u-pos-fixed-s{position:fixed}.u-pos-sticky-s{position:sticky}.u-pos-static-s{position:static}}@media (max-width:63.938rem){.u-pos-absolute-m{position:absolute}.u-pos-relative-m{position:relative}.u-pos-fixed-m{position:fixed}.u-pos-sticky-m{position:sticky}.u-pos-static-m{position:static}}.u-top-m{top:1rem}.u-top-xs{top:.5rem}.u-top-s{top:.75rem}.u-top-l{top:1.5rem}.u-top-xl{top:2rem}.u-top-xxl{top:3rem}.u-top-0{top:0}.u-bottom-m{bottom:1rem}.u-bottom-xs{bottom:.5rem}.u-bottom-s{bottom:.75rem}.u-bottom-l{bottom:1.5rem}.u-bottom-xl{bottom:2rem}.u-bottom-xxl{bottom:3rem}.u-bottom-0{bottom:0}.u-left-m{left:1rem}.u-left-xs{left:.5rem}.u-left-s{left:.75rem}.u-left-l{left:1.5rem}.u-left-xl{left:2rem}.u-left-xxl{left:3rem}.u-left-0{left:0}.u-right-m{right:1rem}.u-right-xs{right:.5rem}.u-right-s{right:.75rem}.u-right-l{right:1.5rem}.u-right-xl{right:2rem}.u-right-xxl{right:3rem}.u-right-0{right:0}.u-stack-m > * + *{margin-top:1rem}.u-stack-xs > * + *{margin-top:.5rem}.u-stack-s > * + *{margin-top:.75rem}.u-stack-l > * + *{margin-top:1.5rem}.u-stack-xl > * + *{margin-top:2rem}.u-stack-xxl > * + *{margin-top:3rem}.u-row-m > * + *{margin-left:1rem}.u-row-xs > * + *{margin-left:.5rem}.u-row-s > * + *{margin-left:.75rem}.u-row-l > * + *{margin-left:1.5rem}.u-row-xl > * + *{margin-left:2rem}.u-row-xxl > * + *{margin-left:3rem}.u-black{color:var(--black) !important}.u-charcoalGrey{color:var(--charcoalGrey) !important}.u-coolGrey{color:var(--coolGrey) !important}.u-silver{color:var(--silver) !important}.u-slateGrey{color:var(--slateGrey) !important}.u-lightishPurple{color:#b449e7 !important}.u-dodgerBlue{color:#297ef2 !important}.u-overlay{color:var(--overlay) !important}.u-paleGrey{color:var(--paleGrey) !important}.u-monza{color:#dd0505 !important}.u-pomegranate{color:#f52d2d !important}.u-primaryBackgroundLight{color:var(--primaryBackgroundLight) !important}.u-primaryColor{color:var(--primaryColor) !important}.u-primaryColorLight{color:var(--primaryColorLight) !important}.u-primaryContrastTextColor{color:var(--primaryContrastTextColor) !important}.u-error{color:var(--errorColor) !important}.u-errorBackground{color:var(--errorBackground) !important}.u-success{color:var(--successColor) !important}.u-warning{color:var(--warningColor) !important}.u-info{color:var(--infoColor) !important}.u-weirdGreen{color:#40de8e !important}.u-white{color:var(--white) !important}.u-breakword{word-break:break-word}.u-ellipsis{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.u-spacellipsis{overflow:hidden;text-overflow:ellipsis;white-space:break-spaces}@media (max-width:30rem){.u-spacellipsis-t{overflow:hidden;text-overflow:ellipsis;white-space:break-spaces}}@media (max-width:48rem){.u-spacellipsis-s{overflow:hidden;text-overflow:ellipsis;white-space:break-spaces}}@media (max-width:63.938rem){.u-spacellipsis-m{overflow:hidden;text-overflow:ellipsis;white-space:break-spaces}}.u-midellipsis{display:flex;flex-wrap:nowrap}.u-midellipsis > *{display:inline-block;overflow:hidden;white-space:pre}.u-midellipsis > :first-child{text-overflow:ellipsis}.u-midellipsis > :last-child{text-overflow:clip;direction:rtl}@supports (text-overflow:'[...]'){.u-midellipsis > :first-child{text-overflow:'[...]'}}.u-link:link{color:var(--primaryColor) !important;text-decoration:none !important}.u-link:visited,.u-link:active,.u-link:hover,.u-link:focus{color:var(--primaryColorDark) !important}.u-lh-tiny{line-height:1 !important}.u-lh-xsmall{line-height:1.1 !important}.u-lh-small{line-height:1.2 !important}.u-lh-medium{line-height:1.3 !important}.u-lh-large{line-height:1.4 !important}.u-lh-xlarge{line-height:1.5 !important}.u-fz-tiny{font-size:.75rem !important;line-height:1.3 !important}.u-fz-xsmall{font-size:.813rem !important;line-height:1.4 !important}.u-fz-small{font-size:.875rem !important;line-height:1.4 !important}.u-fz-medium{font-size:1rem !important;line-height:1.5 !important}.u-fz-large{font-size:1.125rem !important;line-height:1.5 !important}@media (max-width:30rem){.u-fz-tiny-t{font-size:.75rem !important;line-height:1.3 !important}.u-fz-xsmall-t{font-size:.813rem !important;line-height:1.4 !important}.u-fz-small-t{font-size:.875rem !important;line-height:1.4 !important}.u-fz-medium-t{font-size:1rem !important;line-height:1.5 !important}.u-fz-large-t{font-size:1.125rem !important;line-height:1.5 !important}}@media (max-width:48rem){.u-fz-tiny-s{font-size:.75rem !important;line-height:1.3 !important}.u-fz-xsmall-s{font-size:.813rem !important;line-height:1.4 !important}.u-fz-small-s{font-size:.875rem !important;line-height:1.4 !important}.u-fz-medium-s{font-size:1rem !important;line-height:1.5 !important}.u-fz-large-s{font-size:1.125rem !important;line-height:1.5 !important}}@media (max-width:63.938rem){.u-fz-tiny-m{font-size:.75rem !important;line-height:1.3 !important}.u-fz-xsmall-m{font-size:.813rem !important;line-height:1.4 !important}.u-fz-small-m{font-size:.875rem !important;line-height:1.4 !important}.u-fz-medium-m{font-size:1rem !important;line-height:1.5 !important}.u-fz-large-m{font-size:1.125rem !important;line-height:1.5 !important}}.u-ta-left{text-align:left !important}.u-ta-right{text-align:right !important}.u-ta-center{text-align:center !important}.u-ta-justify{text-align:justify !important}@media (max-width:30rem){.u-ta-left-t{text-align:left !important}.u-ta-right-t{text-align:right !important}.u-ta-center-t{text-align:center !important}.u-ta-justify-t{text-align:justify !important}}@media (max-width:48rem){.u-ta-left-s{text-align:left !important}.u-ta-right-s{text-align:right !important}.u-ta-center-s{text-align:center !important}.u-ta-justify-s{text-align:justify !important}}@media (max-width:63.938rem){.u-ta-left-m{text-align:left !important}.u-ta-right-m{text-align:right !important}.u-ta-center-m{text-align:center !important}.u-ta-justify-m{text-align:justify !important}}.u-fs-normal{font-style:normal !important}.u-fs-italic{font-style:italic !important}@media (max-width:30rem){.u-fs-normal-t{font-style:normal !important}.u-fs-italic-t{font-style:italic !important}}@media (max-width:48rem){.u-fs-normal-s{font-style:normal !important}.u-fs-italic-s{font-style:italic !important}}@media (max-width:63.938rem){.u-fs-normal-m{font-style:normal !important}.u-fs-italic-m{font-style:italic !important}}.u-fw-normal{font-weight:normal}.u-fw-bold{font-weight:bold}@media (max-width:30rem){.u-fw-normal-t{font-weight:normal}.u-fw-bold-t{font-weight:bold}}@media (max-width:48rem){.u-fw-normal-s{font-weight:normal}.u-fw-bold-s{font-weight:bold}}@media (max-width:63.938rem){.u-fw-normal-m{font-weight:normal}.u-fw-bold-m{font-weight:bold}}.u-title-h1,.u-title-h2,.u-title-h3,.u-title-h4{font-weight:bold;color:var(--primaryTextColor)}.u-title-h1{font-size:1.5rem;letter-spacing:-.012rem}@media (max-width:48rem){.u-title-h1{font-size:1.25rem}}.u-title-h2{font-size:1.25rem}@media (max-width:48rem){.u-title-h2{font-size:1.125rem}}.u-title-h3{font-size:1.125rem}@media (max-width:48rem){.u-title-h3{font-size:1rem}}.u-title-h4{font-size:1rem}@media (max-width:48rem){.u-title-h4{font-weight:bold;color:var(--primaryTextColor)}}.u-text{font-size:1rem;line-height:1.3;color:var(--primaryTextColor)}.u-caption{font-size:.75rem;line-height:1.2;color:var(--coolGrey)}.u-subtitle{font-size:.75rem;line-height:1.313}.u-uppercase{text-transform:uppercase}.u-lowercase{text-transform:lowercase}.u-subtitle{font-size:.75rem;text-transform:uppercase;font-weight:bold}html,.TwakeTheme--light-normal{--primaryColorLightest:#e3f1ff;--primaryColorLight:#d2e9ff;--primaryColor:#0a84ff;--primaryColorDark:#006bd8;--primaryContrastTextColor:#fff;--primaryBackground:rgba(10,132,255,0.12);--secondaryColorLightest:#e8f0fa;--secondaryColorLight:#d1e0f2;--secondaryColor:#5c9ce6;--secondaryColorDark:#5085c3;--secondaryContrastTextColor:#fff;--secondaryBackground:rgba(92,156,230,0.12);--primaryBackgroundLight:#f6fbff;--paperBackgroundColor:#fff;--defaultBackgroundColor:#f3f6f9;--contrastBackgroundColor:rgba(66,66,68,0.048);--primaryTextColor:rgba(66,66,68,0.9);--secondaryTextColor:rgba(66,66,68,0.64);--disabledTextColor:rgba(66,66,68,0.32);--hintTextColor:rgba(66,66,68,0.32);--iconTextColor:rgba(66,66,68,0.72);--actionColorActive:rgba(66,66,68,0.56);--actionColorHover:rgba(66,66,68,0.04);--actionColorSelected:rgba(66,66,68,0.08);--actionColorDisabled:rgba(66,66,68,0.24);--actionColorDisabledBackground:rgba(66,66,68,0.12);--actionColorFocus:rgba(66,66,68,0.12);--actionColorGhost:rgba(66,66,68,0.08);--actionColorHoverGhost:rgba(66,66,68,0.16);--borderMainColor:rgba(66,66,68,0.16);--borderDisabledColor:rgba(66,66,68,0.08);--borderGhostColor:rgba(66,66,68,0.48);--borderGhostDisabledColor:rgba(66,66,68,0.16);--dividerColor:rgba(66,66,68,0.12);--successColorLight:#b9f6ca;--successColor:#00c853;--successColorDark:#00ad48;--successColorContrastText:#fff;--successBackground:rgba(0,200,83,0.12);--warningColorLight:#ffe082;--warningColor:#ff8f00;--warningColorDark:#ff6f00;--warningColorContrastText:#fff;--errorColorLightest:#fceeee;--errorColorLight:#ffd2d7;--errorColor:#ff3347;--errorColorDark:#d32c3c;--errorBackground:rgba(255,51,71,0.12);--errorColorContrastText:#fff;--infoColorLight:#affdff;--infoColor:#00bfa5;--infoColorDark:#00796b;--infoColorContrastText:#fff;--shadow0:none;--shadow1:0 2px 4px 0 rgba(66,66,68,0.08),0 4px 16px 0 rgba(66,66,68,0.06),0 0 0 .5px rgba(66,66,68,0.12);--shadow2:0 3px 5px 0 rgba(66,66,68,0.09),0 4px 17px 0 rgba(66,66,68,0.07),0 0 0 .5px rgba(66,66,68,0.12);--shadow3:0 3px 5px -1px rgba(66,66,68,0.09),0 5px 19px 1px rgba(66,66,68,0.08),0 0 0 .5px rgba(66,66,68,0.12);--shadow4:0 3px 6px -1px rgba(66,66,68,0.1),0 5px 20px 1px rgba(66,66,68,0.08),0 0 0 .5px rgba(66,66,68,0.12);--shadow5:0 4px 6px -1px rgba(66,66,68,0.11),0 5px 22px 1px rgba(66,66,68,0.09),0 0 0 .5px rgba(66,66,68,0.12);--shadow6:0 4px 7px -2px rgba(66,66,68,0.11),0 6px 23px 2px rgba(66,66,68,0.1),0 0 0 .5px rgba(66,66,68,0.12);--shadow7:0 5px 7px -2px rgba(66,66,68,0.12),0 6px 24px 2px rgba(66,66,68,0.11),0 0 0 .5px rgba(66,66,68,0.12);--shadow8:0 5px 8px -2px rgba(66,66,68,0.13),0 6px 26px 2px rgba(66,66,68,0.11),0 0 0 .5px rgba(66,66,68,0.12);--shadow9:0 5px 8px -3px rgba(66,66,68,0.14),0 7px 27px 3px rgba(66,66,68,0.12),0 0 0 .5px rgba(66,66,68,0.12);--shadow10:0 6px 9px -3px rgba(66,66,68,0.14),0 7px 29px 3px rgba(66,66,68,0.13),0 0 0 .5px rgba(66,66,68,0.12);--shadow11:0 6px 9px -3px rgba(66,66,68,0.15),0 7px 30px 3px rgba(66,66,68,0.14),0 0 0 .5px rgba(66,66,68,0.12);--shadow12:0 7px 10px -4px rgba(66,66,68,0.16),0 8px 31px 4px rgba(66,66,68,0.15),0 0 0 .5px rgba(66,66,68,0.12);--shadow13:0 7px 10px -4px rgba(66,66,68,0.16),0 8px 33px 4px rgba(66,66,68,0.15),0 0 0 .5px rgba(66,66,68,0.12);--shadow14:0 8px 11px -5px rgba(66,66,68,0.17),0 9px 34px 5px rgba(66,66,68,0.16),0 0 0 .5px rgba(66,66,68,0.12);--shadow15:0 8px 11px -5px rgba(66,66,68,0.18),0 9px 35px 5px rgba(66,66,68,0.17),0 0 0 .5px rgba(66,66,68,0.12);--shadow16:0 9px 12px -5px rgba(66,66,68,0.18),0 9px 37px 5px rgba(66,66,68,0.18),0 0 0 .5px rgba(66,66,68,0.12);--shadow17:0 9px 12px -6px rgba(66,66,68,0.19),0 10px 38px 6px rgba(66,66,68,0.19),0 0 0 .5px rgba(66,66,68,0.12);--shadow18:0 9px 13px -6px rgba(66,66,68,0.2),0 10px 40px 6px rgba(66,66,68,0.19),0 0 0 .5px rgba(66,66,68,0.12);--shadow19:0 10px 13px -6px rgba(66,66,68,0.21),0 10px 41px 6px rgba(66,66,68,0.2),0 0 0 .5px rgba(66,66,68,0.12);--shadow20:0 10px 14px -7px rgba(66,66,68,0.21),0 11px 42px 7px rgba(66,66,68,0.21),0 0 0 .5px rgba(66,66,68,0.12);--shadow21:0 11px 14px -7px rgba(66,66,68,0.22),0 11px 44px 7px rgba(66,66,68,0.22),0 0 0 .5px rgba(66,66,68,0.12);--shadow22:0 11px 15px -7px rgba(66,66,68,0.23),0 11px 45px 7px rgba(66,66,68,0.22),0 0 0 .5px rgba(66,66,68,0.12);--shadow23:0 12px 15px -8px rgba(66,66,68,0.23),0 12px 47px 8px rgba(66,66,68,0.23),0 0 0 .5px rgba(66,66,68,0.12);--shadow24:0 12px 16px -8px rgba(66,66,68,0.24),0 12px 48px 8px rgba(66,66,68,0.24),0 0 0 .5px rgba(66,66,68,0.12);--shadow25:0 1px 4px rgba(66,66,68,0.04)}.TwakeTheme--light-inverted{--primaryTextColor:#fff;--secondaryTextColor:rgba(255,255,255,0.64);--disabledTextColor:rgba(255,255,255,0.4);--hintTextColor:rgba(255,255,255,0.4);--iconTextColor:#fff;--actionColorActive:#fff;--actionColorHover:rgba(255,255,255,0.08);--actionColorSelected:rgba(255,255,255,0.16);--actionColorDisabled:rgba(255,255,255,0.32);--actionColorDisabledBackground:rgba(255,255,255,0.12);--actionColorFocus:rgba(255,255,255,0.24);--actionColorGhost:rgba(255,255,255,0.08);--actionColorHoverGhost:rgba(255,255,255,0.16);--dividerColor:rgba(255,255,255,0.16);--borderMainColor:rgba(255,255,255,0.24);--borderDisabledColor:rgba(255,255,255,0.12);--borderGhostColor:rgba(255,255,255,0.48);--borderGhostDisabledColor:rgba(255,255,255,0.24);--paperBackgroundColor:#2c3039;--defaultBackgroundColor:#2c3039;--contrastBackgroundColor:rgba(255,255,255,0.12);--primaryColorLight:#fff;--primaryColor:#fff;--primaryColorDark:#e3f1ff;--primaryContrastTextColor:#2c3039;--primaryBackground:rgba(255,255,255,0.24);--secondaryColorLight:#d1e0f2;--secondaryColor:#5c9ce6;--secondaryColorDark:#5085c3;--secondaryContrastTextColor:#fff;--secondaryBackground:rgba(92,156,230,0.12);--errorColorLight:#fceeee;--errorColor:#ffd2d7;--errorColorDark:#ff939d;--errorColorContrastText:rgba(66,66,68,0.9);--errorBackground:#d32c3c;--errorBackground:rgba(255,210,215,0.24);--warningColorLight:#ffecb3;--warningColor:#ffe082;--warningColorDark:#ffd54f;--warningColorContrastText:rgba(66,66,68,0.9);--successColorLight:#e3ffe7;--successColor:#b9f6ca;--successColorDark:#97eca1;--successColorContrastText:rgba(66,66,68,0.9);--successBackground:rgba(185,246,202,0.24);--infoColorLight:#d4feff;--infoColor:#affdff;--infoColorDark:#86f5f7;--infoColorContrastText:rgba(66,66,68,0.9);--shadow0:none;--shadow1:0 2px 4px 0 rgba(0,0,0,0.08),0 4px 16px 0 rgba(0,0,0,0.06),0 0 0 .5px rgba(0,0,0,0.12);--shadow2:0 3px 5px 0 rgba(0,0,0,0.09),0 4px 17px 0 rgba(0,0,0,0.07),0 0 0 .5px rgba(0,0,0,0.12);--shadow3:0 3px 5px -1px rgba(0,0,0,0.09),0 5px 19px 1px rgba(0,0,0,0.08),0 0 0 .5px rgba(0,0,0,0.12);--shadow4:0 3px 6px -1px rgba(0,0,0,0.1),0 5px 20px 1px rgba(0,0,0,0.08),0 0 0 .5px rgba(0,0,0,0.12);--shadow5:0 4px 6px -1px rgba(0,0,0,0.11),0 5px 22px 1px rgba(0,0,0,0.09),0 0 0 .5px rgba(0,0,0,0.12);--shadow6:0 4px 7px -2px rgba(0,0,0,0.11),0 6px 23px 2px rgba(0,0,0,0.1),0 0 0 .5px rgba(0,0,0,0.12);--shadow7:0 5px 7px -2px rgba(0,0,0,0.12),0 6px 24px 2px rgba(0,0,0,0.11),0 0 0 .5px rgba(0,0,0,0.12);--shadow8:0 5px 8px -2px rgba(0,0,0,0.13),0 6px 26px 2px rgba(0,0,0,0.11),0 0 0 .5px rgba(0,0,0,0.12);--shadow9:0 5px 8px -3px rgba(0,0,0,0.14),0 7px 27px 3px rgba(0,0,0,0.12),0 0 0 .5px rgba(0,0,0,0.12);--shadow10:0 6px 9px -3px rgba(0,0,0,0.14),0 7px 29px 3px rgba(0,0,0,0.13),0 0 0 .5px rgba(0,0,0,0.12);--shadow11:0 6px 9px -3px rgba(0,0,0,0.15),0 7px 30px 3px rgba(0,0,0,0.14),0 0 0 .5px rgba(0,0,0,0.12);--shadow12:0 7px 10px -4px rgba(0,0,0,0.16),0 8px 31px 4px rgba(0,0,0,0.15),0 0 0 .5px rgba(0,0,0,0.12);--shadow13:0 7px 10px -4px rgba(0,0,0,0.16),0 8px 33px 4px rgba(0,0,0,0.15),0 0 0 .5px rgba(0,0,0,0.12);--shadow14:0 8px 11px -5px rgba(0,0,0,0.17),0 9px 34px 5px rgba(0,0,0,0.16),0 0 0 .5px rgba(0,0,0,0.12);--shadow15:0 8px 11px -5px rgba(0,0,0,0.18),0 9px 35px 5px rgba(0,0,0,0.17),0 0 0 .5px rgba(0,0,0,0.12);--shadow16:0 9px 12px -5px rgba(0,0,0,0.18),0 9px 37px 5px rgba(0,0,0,0.18),0 0 0 .5px rgba(0,0,0,0.12);--shadow17:0 9px 12px -6px rgba(0,0,0,0.19),0 10px 38px 6px rgba(0,0,0,0.19),0 0 0 .5px rgba(0,0,0,0.12);--shadow18:0 9px 13px -6px rgba(0,0,0,0.2),0 10px 40px 6px rgba(0,0,0,0.19),0 0 0 .5px rgba(0,0,0,0.12);--shadow19:0 10px 13px -6px rgba(0,0,0,0.21),0 10px 41px 6px rgba(0,0,0,0.2),0 0 0 .5px rgba(0,0,0,0.12);--shadow20:0 10px 14px -7px rgba(0,0,0,0.21),0 11px 42px 7px rgba(0,0,0,0.21),0 0 0 .5px rgba(0,0,0,0.12);--shadow21:0 11px 14px -7px rgba(0,0,0,0.22),0 11px 44px 7px rgba(0,0,0,0.22),0 0 0 .5px rgba(0,0,0,0.12);--shadow22:0 11px 15px -7px rgba(0,0,0,0.23),0 11px 45px 7px rgba(0,0,0,0.22),0 0 0 .5px rgba(0,0,0,0.12);--shadow23:0 12px 15px -8px rgba(0,0,0,0.23),0 12px 47px 8px rgba(0,0,0,0.23),0 0 0 .5px rgba(0,0,0,0.12);--shadow24:0 12px 16px -8px rgba(0,0,0,0.24),0 12px 48px 8px rgba(0,0,0,0.24),0 0 0 .5px rgba(0,0,0,0.12);--shadow25:0 1px 4px rgba(0,0,0,0.04)}.TwakeTheme--dark-normal{--primaryTextColor:#fff;--secondaryTextColor:rgba(255,255,255,0.64);--disabledTextColor:rgba(255,255,255,0.4);--hintTextColor:rgba(255,255,255,0.4);--iconTextColor:#fff;--actionColorActive:#fff;--actionColorHover:rgba(255,255,255,0.08);--actionColorSelected:rgba(255,255,255,0.16);--actionColorDisabled:rgba(255,255,255,0.32);--actionColorDisabledBackground:rgba(255,255,255,0.12);--actionColorFocus:rgba(255,255,255,0.24);--actionColorGhost:rgba(255,255,255,0.08);--actionColorHoverGhost:rgba(255,255,255,0.16);--dividerColor:rgba(255,255,255,0.16);--borderMainColor:rgba(255,255,255,0.24);--borderDisabledColor:rgba(255,255,255,0.12);--borderGhostColor:rgba(255,255,255,0.48);--borderGhostDisabledColor:rgba(255,255,255,0.24);--paperBackgroundColor:#4e5052;--defaultBackgroundColor:#2c3039;--contrastBackgroundColor:rgba(255,255,255,0.072);--primaryColorLight:#bfdfff;--primaryColor:#7bbdff;--primaryColorDark:#46a2ff;--primaryContrastTextColor:rgba(66,66,68,0.9);--primaryBackground:rgba(123,189,255,0.24);--secondaryColorLight:#e1e3e6;--secondaryColor:#c5c7ca;--secondaryColorDark:#aaacae;--secondaryContrastTextColor:rgba(66,66,68,0.9);--secondaryBackground:rgba(197,199,202,0.24);--errorColorLight:#ff939d;--errorColor:#ff7a87;--errorColorDark:#ff4d5e;--errorColorContrastText:rgba(66,66,68,0.9);--errorBackground:rgba(255,122,135,0.24);--warningColorLight:#ffd54f;--warningColor:#ffca28;--warningColorDark:#ffb300;--warningColorContrastText:rgba(66,66,68,0.9);--successColorLight:#97eca1;--successColor:#66e475;--successColorDark:#38c949;--successColorContrastText:rgba(66,66,68,0.9);--successBackground:rgba(102,228,117,0.24);--infoColorLight:#86f5f7;--infoColor:#4ee2e5;--infoColorDark:#1de9b6;--infoColorContrastText:rgba(66,66,68,0.9);--shadow0:none;--shadow1:0 2px 4px 0 rgba(0,0,0,0.08),0 4px 16px 0 rgba(0,0,0,0.06),0 0 0 .5px rgba(0,0,0,0.12);--shadow2:0 3px 5px 0 rgba(0,0,0,0.09),0 4px 17px 0 rgba(0,0,0,0.07),0 0 0 .5px rgba(0,0,0,0.12);--shadow3:0 3px 5px -1px rgba(0,0,0,0.09),0 5px 19px 1px rgba(0,0,0,0.08),0 0 0 .5px rgba(0,0,0,0.12);--shadow4:0 3px 6px -1px rgba(0,0,0,0.1),0 5px 20px 1px rgba(0,0,0,0.08),0 0 0 .5px rgba(0,0,0,0.12);--shadow5:0 4px 6px -1px rgba(0,0,0,0.11),0 5px 22px 1px rgba(0,0,0,0.09),0 0 0 .5px rgba(0,0,0,0.12);--shadow6:0 4px 7px -2px rgba(0,0,0,0.11),0 6px 23px 2px rgba(0,0,0,0.1),0 0 0 .5px rgba(0,0,0,0.12);--shadow7:0 5px 7px -2px rgba(0,0,0,0.12),0 6px 24px 2px rgba(0,0,0,0.11),0 0 0 .5px rgba(0,0,0,0.12);--shadow8:0 5px 8px -2px rgba(0,0,0,0.13),0 6px 26px 2px rgba(0,0,0,0.11),0 0 0 .5px rgba(0,0,0,0.12);--shadow9:0 5px 8px -3px rgba(0,0,0,0.14),0 7px 27px 3px rgba(0,0,0,0.12),0 0 0 .5px rgba(0,0,0,0.12);--shadow10:0 6px 9px -3px rgba(0,0,0,0.14),0 7px 29px 3px rgba(0,0,0,0.13),0 0 0 .5px rgba(0,0,0,0.12);--shadow11:0 6px 9px -3px rgba(0,0,0,0.15),0 7px 30px 3px rgba(0,0,0,0.14),0 0 0 .5px rgba(0,0,0,0.12);--shadow12:0 7px 10px -4px rgba(0,0,0,0.16),0 8px 31px 4px rgba(0,0,0,0.15),0 0 0 .5px rgba(0,0,0,0.12);--shadow13:0 7px 10px -4px rgba(0,0,0,0.16),0 8px 33px 4px rgba(0,0,0,0.15),0 0 0 .5px rgba(0,0,0,0.12);--shadow14:0 8px 11px -5px rgba(0,0,0,0.17),0 9px 34px 5px rgba(0,0,0,0.16),0 0 0 .5px rgba(0,0,0,0.12);--shadow15:0 8px 11px -5px rgba(0,0,0,0.18),0 9px 35px 5px rgba(0,0,0,0.17),0 0 0 .5px rgba(0,0,0,0.12);--shadow16:0 9px 12px -5px rgba(0,0,0,0.18),0 9px 37px 5px rgba(0,0,0,0.18),0 0 0 .5px rgba(0,0,0,0.12);--shadow17:0 9px 12px -6px rgba(0,0,0,0.19),0 10px 38px 6px rgba(0,0,0,0.19),0 0 0 .5px rgba(0,0,0,0.12);--shadow18:0 9px 13px -6px rgba(0,0,0,0.2),0 10px 40px 6px rgba(0,0,0,0.19),0 0 0 .5px rgba(0,0,0,0.12);--shadow19:0 10px 13px -6px rgba(0,0,0,0.21),0 10px 41px 6px rgba(0,0,0,0.2),0 0 0 .5px rgba(0,0,0,0.12);--shadow20:0 10px 14px -7px rgba(0,0,0,0.21),0 11px 42px 7px rgba(0,0,0,0.21),0 0 0 .5px rgba(0,0,0,0.12);--shadow21:0 11px 14px -7px rgba(0,0,0,0.22),0 11px 44px 7px rgba(0,0,0,0.22),0 0 0 .5px rgba(0,0,0,0.12);--shadow22:0 11px 15px -7px rgba(0,0,0,0.23),0 11px 45px 7px rgba(0,0,0,0.22),0 0 0 .5px rgba(0,0,0,0.12);--shadow23:0 12px 15px -8px rgba(0,0,0,0.23),0 12px 47px 8px rgba(0,0,0,0.23),0 0 0 .5px rgba(0,0,0,0.12);--shadow24:0 12px 16px -8px rgba(0,0,0,0.24),0 12px 48px 8px rgba(0,0,0,0.24),0 0 0 .5px rgba(0,0,0,0.12);--shadow25:0 1px 4px rgba(0,0,0,0.04)}.TwakeTheme--dark-inverted{--primaryTextColor:rgba(66,66,68,0.9);--secondaryTextColor:rgba(66,66,68,0.48);--disabledTextColor:rgba(66,66,68,0.32);--hintTextColor:rgba(66,66,68,0.32);--iconTextColor:rgba(66,66,68,0.72);--actionColorActive:rgba(66,66,68,0.56);--actionColorHover:rgba(66,66,68,0.04);--actionColorSelected:rgba(66,66,68,0.08);--actionColorDisabled:rgba(66,66,68,0.24);--actionColorDisabledBackground:rgba(66,66,68,0.12);--actionColorFocus:rgba(66,66,68,0.12);--actionColorGhost:rgba(66,66,68,0.08);--actionColorHoverGhost:rgba(66,66,68,0.16);--dividerColor:rgba(66,66,68,0.12);--borderMainColor:rgba(66,66,68,0.16);--borderDisabledColor:rgba(66,66,68,0.08);--borderGhostColor:rgba(66,66,68,0.48);--borderGhostDisabledColor:rgba(66,66,68,0.16);--paperBackgroundColor:#7bbdff;--defaultBackgroundColor:#7bbdff;--contrastBackgroundColor:rgba(66,66,68,0.08);--primaryColorLight:#757779;--primaryColor:#4e5052;--primaryColorDark:#2c3039;--primaryContrastTextColor:#fff;--primaryBackground:rgba(78,80,82,0.12);--secondaryColorLight:#757779;--secondaryColor:#4e5052;--secondaryColorDark:#2c3039;--secondaryContrastTextColor:#fff;--secondaryBackground:rgba(78,80,82,0.12);--errorColorLight:#d32c3c;--errorColor:#b52c39;--errorColorDark:;--errorColorContrastText:#fff;--errorBackground:;--errorBackground:rgba(181,44,57,0.12);--warningColorLight:#ff6f00;--warningColor:#b5672c;--warningColorDark:;--warningColorContrastText:#fff;--successColorLight:#00ad48;--successColor:#245538;--successColorDark:;--successColorContrastText:#fff;--successBackground:rgba(36,85,56,0.12);--infoColorLight:#00796b;--infoColor:#004345;--infoColorDark:;--infoColorContrastText:#fff;--shadow0:none;--shadow1:0 2px 4px 0 rgba(0,0,0,0.08),0 4px 16px 0 rgba(0,0,0,0.06),0 0 0 .5px rgba(0,0,0,0.12);--shadow2:0 3px 5px 0 rgba(0,0,0,0.09),0 4px 17px 0 rgba(0,0,0,0.07),0 0 0 .5px rgba(0,0,0,0.12);--shadow3:0 3px 5px -1px rgba(0,0,0,0.09),0 5px 19px 1px rgba(0,0,0,0.08),0 0 0 .5px rgba(0,0,0,0.12);--shadow4:0 3px 6px -1px rgba(0,0,0,0.1),0 5px 20px 1px rgba(0,0,0,0.08),0 0 0 .5px rgba(0,0,0,0.12);--shadow5:0 4px 6px -1px rgba(0,0,0,0.11),0 5px 22px 1px rgba(0,0,0,0.09),0 0 0 .5px rgba(0,0,0,0.12);--shadow6:0 4px 7px -2px rgba(0,0,0,0.11),0 6px 23px 2px rgba(0,0,0,0.1),0 0 0 .5px rgba(0,0,0,0.12);--shadow7:0 5px 7px -2px rgba(0,0,0,0.12),0 6px 24px 2px rgba(0,0,0,0.11),0 0 0 .5px rgba(0,0,0,0.12);--shadow8:0 5px 8px -2px rgba(0,0,0,0.13),0 6px 26px 2px rgba(0,0,0,0.11),0 0 0 .5px rgba(0,0,0,0.12);--shadow9:0 5px 8px -3px rgba(0,0,0,0.14),0 7px 27px 3px rgba(0,0,0,0.12),0 0 0 .5px rgba(0,0,0,0.12);--shadow10:0 6px 9px -3px rgba(0,0,0,0.14),0 7px 29px 3px rgba(0,0,0,0.13),0 0 0 .5px rgba(0,0,0,0.12);--shadow11:0 6px 9px -3px rgba(0,0,0,0.15),0 7px 30px 3px rgba(0,0,0,0.14),0 0 0 .5px rgba(0,0,0,0.12);--shadow12:0 7px 10px -4px rgba(0,0,0,0.16),0 8px 31px 4px rgba(0,0,0,0.15),0 0 0 .5px rgba(0,0,0,0.12);--shadow13:0 7px 10px -4px rgba(0,0,0,0.16),0 8px 33px 4px rgba(0,0,0,0.15),0 0 0 .5px rgba(0,0,0,0.12);--shadow14:0 8px 11px -5px rgba(0,0,0,0.17),0 9px 34px 5px rgba(0,0,0,0.16),0 0 0 .5px rgba(0,0,0,0.12);--shadow15:0 8px 11px -5px rgba(0,0,0,0.18),0 9px 35px 5px rgba(0,0,0,0.17),0 0 0 .5px rgba(0,0,0,0.12);--shadow16:0 9px 12px -5px rgba(0,0,0,0.18),0 9px 37px 5px rgba(0,0,0,0.18),0 0 0 .5px rgba(0,0,0,0.12);--shadow17:0 9px 12px -6px rgba(0,0,0,0.19),0 10px 38px 6px rgba(0,0,0,0.19),0 0 0 .5px rgba(0,0,0,0.12);--shadow18:0 9px 13px -6px rgba(0,0,0,0.2),0 10px 40px 6px rgba(0,0,0,0.19),0 0 0 .5px rgba(0,0,0,0.12);--shadow19:0 10px 13px -6px rgba(0,0,0,0.21),0 10px 41px 6px rgba(0,0,0,0.2),0 0 0 .5px rgba(0,0,0,0.12);--shadow20:0 10px 14px -7px rgba(0,0,0,0.21),0 11px 42px 7px rgba(0,0,0,0.21),0 0 0 .5px rgba(0,0,0,0.12);--shadow21:0 11px 14px -7px rgba(0,0,0,0.22),0 11px 44px 7px rgba(0,0,0,0.22),0 0 0 .5px rgba(0,0,0,0.12);--shadow22:0 11px 15px -7px rgba(0,0,0,0.23),0 11px 45px 7px rgba(0,0,0,0.22),0 0 0 .5px rgba(0,0,0,0.12);--shadow23:0 12px 15px -8px rgba(0,0,0,0.23),0 12px 47px 8px rgba(0,0,0,0.23),0 0 0 .5px rgba(0,0,0,0.12);--shadow24:0 12px 16px -8px rgba(0,0,0,0.24),0 12px 48px 8px rgba(0,0,0,0.24),0 0 0 .5px rgba(0,0,0,0.12);--shadow25:0 1px 4px rgba(0,0,0,0.04)}html{--grey0:#fff;--grey50:#fbfdff;--grey100:#f3f6f9;--grey200:#edf2f7;--grey300:#e1e3e6;--grey400:#c5c7ca;--grey500:#aaacae;--grey600:#909294;--grey700:#757779;--grey800:#4e5052;--grey900:#424244;--greyA100:#fcfcfc;--greyA200:#e5ecf3;--greyA400:#2c3039;--greyA700:#5d6169;--white:#fff;--paleGrey:#f5f6f7;--silver:#d6d8da;--coolGrey:#95999d;--slateGrey:#5d6165;--charcoalGrey:#32363f;--black:#000;--overlay:rgba(50,54,63,0.5);--zircon:#f5faff;--dodgerBlue:#297ef2;--scienceBlue:#0b61d6;--weirdGreen:#40de8e;--emerald:#35ce68;--malachite:#08b442;--mango:#ff962f;--chablis:#fff2f2;--yourPink:#fdcbcb;--fuchsia:#fc4c83;--pomegranate:#f52d2d;--monza:#dd0505}html{--zIndex-below:-1;--zIndex-app:0;--zIndex-low:1;--zIndex-alertMobile:10;--zIndex-nav:20;--zIndex-bar:31;--zIndex-selection:40;--zIndex-popover:30;--zIndex-overlay:50;--zIndex-fileActionMenu:60;--zIndex-drawer:60;--zIndex-modal:70;--zIndex-modal-footer:71;--zIndex-modal-toolbar:72;--zIndex-alert:80}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cozy-ui",
|
|
3
|
-
"version": "131.
|
|
3
|
+
"version": "131.2.0",
|
|
4
4
|
"description": "Cozy apps UI SDK",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"bin": {
|
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
"copyfiles": "2.4.1",
|
|
97
97
|
"cozy-client": "^60.5.0",
|
|
98
98
|
"cozy-device-helper": "2.0.0",
|
|
99
|
-
"cozy-flags": "^
|
|
99
|
+
"cozy-flags": "^2.10.1",
|
|
100
100
|
"cozy-intent": "^2.29.1",
|
|
101
101
|
"cozy-logger": "^1.9.0",
|
|
102
102
|
"cozy-stack-client": "^60.1.0",
|
|
@@ -192,6 +192,10 @@
|
|
|
192
192
|
"rooks": "7.14.1"
|
|
193
193
|
},
|
|
194
194
|
"peerDependencies": {
|
|
195
|
+
"cozy-client": ">=60.5.0",
|
|
196
|
+
"cozy-device-helper": ">=2.0.0",
|
|
197
|
+
"cozy-flags": ">=2.10.1",
|
|
198
|
+
"cozy-intent": ">=2.29.1",
|
|
195
199
|
"react": "^16 || ^17 || ^18",
|
|
196
200
|
"react-dnd": "^16.0.1",
|
|
197
201
|
"react-dnd-html5-backend": "^16.0.1",
|