@cnamts/synapse 0.0.10-alpha → 0.0.11-alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/design-system-v3.js +4291 -3815
- package/dist/design-system-v3.umd.cjs +1 -1
- package/dist/src/components/BackBtn/AccessibiliteItems.d.ts +29 -0
- package/dist/src/components/BackBtn/BackBtn.d.ts +14 -0
- package/dist/src/components/BackBtn/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/BackBtn/locales.d.ts +3 -0
- package/dist/src/components/BackBtn/tests/BackBtn.spec.d.ts +1 -0
- package/dist/src/components/BackToTopBtn/AccessibiliteItems.d.ts +29 -0
- package/dist/src/components/BackToTopBtn/BackToTopBtn.d.ts +23 -0
- package/dist/src/components/BackToTopBtn/config.d.ts +12 -0
- package/dist/src/components/BackToTopBtn/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/BackToTopBtn/locales.d.ts +3 -0
- package/dist/src/components/BackToTopBtn/tests/BackToTopBtn.spec.d.ts +1 -0
- package/dist/src/components/ChipList/AccessibiliteItems.d.ts +29 -0
- package/dist/src/components/ChipList/ChipList.d.ts +47 -0
- package/dist/src/components/ChipList/config.d.ts +8 -0
- package/dist/src/components/ChipList/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/ChipList/locales.d.ts +6 -0
- package/dist/src/components/ChipList/tests/chipList.spec.d.ts +1 -0
- package/dist/src/components/ChipList/types.d.ts +6 -0
- package/dist/src/components/CollapsibleList/AccessibiliteItems.d.ts +46 -0
- package/dist/src/components/CollapsibleList/CollapsibleList.d.ts +7 -0
- package/dist/src/components/CollapsibleList/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/CollapsibleList/tests/CollapsibleList.spec.d.ts +1 -0
- package/dist/src/components/CollapsibleList/types.d.ts +5 -0
- package/dist/src/components/ContextualMenu/AccessibiliteItems.d.ts +46 -0
- package/dist/src/components/ContextualMenu/ContextualMenu.d.ts +13 -0
- package/dist/src/components/ContextualMenu/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/ContextualMenu/tests/ContextualMenu.spec.d.ts +1 -0
- package/dist/src/components/ContextualMenu/types.d.ts +5 -0
- package/dist/src/components/CookieBanner/AccessibiliteItems.d.ts +79 -0
- package/dist/src/components/CookieBanner/CookieBanner.d.ts +28 -0
- package/dist/src/components/CookieBanner/config.d.ts +40 -0
- package/dist/src/components/CookieBanner/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/CookieBanner/locales.d.ts +11 -0
- package/dist/src/components/CookieBanner/tests/CookieBanner.spec.d.ts +1 -0
- package/dist/src/components/CookiesSelection/CookiesInformation/CookiesInformation.d.ts +19 -0
- package/dist/src/components/CookiesSelection/CookiesInformation/locales.d.ts +19 -0
- package/dist/src/components/CookiesSelection/CookiesInformation/tests/CookiesInformation.spec.d.ts +1 -0
- package/dist/src/components/CookiesSelection/CookiesTable/CookiesTable.d.ts +13 -0
- package/dist/src/components/CookiesSelection/CookiesTable/headers.d.ts +10 -0
- package/dist/src/components/CookiesSelection/CookiesTable/tests/CookiesTable.spec.d.ts +1 -0
- package/dist/src/components/CookiesSelection/locales.d.ts +8 -0
- package/dist/src/components/CookiesSelection/tests/CookiesSelection.spec.d.ts +1 -0
- package/dist/src/components/CookiesSelection/types.d.ts +12 -0
- package/dist/src/components/CopyBtn/AccessibiliteItems.d.ts +29 -0
- package/dist/src/components/CopyBtn/CopyBtn.d.ts +28 -0
- package/dist/src/components/CopyBtn/config.d.ts +17 -0
- package/dist/src/components/CopyBtn/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/CopyBtn/locales.d.ts +3 -0
- package/dist/src/components/CopyBtn/tests/CopyBtn.spec.d.ts +1 -0
- package/dist/src/components/Customs/SyBtnSelect/AccessibiliteItems.d.ts +29 -0
- package/dist/src/components/Customs/SyBtnSelect/SyBtnSelect.d.ts +164 -0
- package/dist/src/components/Customs/SyBtnSelect/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/Customs/SyBtnSelect/tests/SyBtnSelect.spec.d.ts +1 -0
- package/dist/src/components/Customs/SyInputSelect/AccessibiliteItems.d.ts +29 -0
- package/dist/src/components/Customs/SyInputSelect/SyInputSelect.d.ts +36 -0
- package/dist/src/components/Customs/SyInputSelect/config.d.ts +9 -0
- package/dist/src/components/Customs/SyInputSelect/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/Customs/SyInputSelect/tests/SyInputSelect.spec.d.ts +1 -0
- package/dist/src/components/Customs/SySelect/AccessibiliteItems.d.ts +54 -0
- package/dist/src/components/Customs/SySelect/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/Customs/SySelect/tests/SySelect.spec.d.ts +1 -0
- package/dist/src/components/Customs/SyTextField/AccessibiliteItems.d.ts +70 -0
- package/dist/src/components/Customs/SyTextField/SyTextField.d.ts +160 -0
- package/dist/src/components/Customs/SyTextField/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/Customs/SyTextField/tests/SyTextField.spec.d.ts +1 -0
- package/dist/src/components/Customs/SyTextField/types.d.ts +3 -0
- package/dist/src/components/DataList/AccessibiliteItems.d.ts +29 -0
- package/dist/src/components/DataList/DataList.d.ts +134 -0
- package/dist/src/components/DataList/DataListLoading/DataListLoading.d.ts +32 -0
- package/dist/src/components/DataList/DataListLoading/tests/DataListLoading.spec.d.ts +1 -0
- package/dist/src/components/DataList/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/DataList/locales.d.ts +3 -0
- package/dist/src/components/DataList/tests/DataList.spec.d.ts +1 -0
- package/dist/src/components/DataList/types.d.ts +22 -0
- package/dist/src/components/DataListGroup/AccessibiliteItems.d.ts +29 -0
- package/dist/src/components/DataListGroup/DataListGroup.d.ts +56 -0
- package/dist/src/components/DataListGroup/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/DataListGroup/tests/DataListGroup.spec.d.ts +1 -0
- package/dist/src/components/DataListGroup/tests/data/dataListGroupItems.d.ts +5 -0
- package/dist/src/components/DataListGroup/types.d.ts +14 -0
- package/dist/src/components/DataListItem/DataListItem.d.ts +37 -0
- package/dist/src/components/DataListItem/config.d.ts +16 -0
- package/dist/src/components/DataListItem/locales.d.ts +3 -0
- package/dist/src/components/DataListItem/tests/DataListItem.spec.d.ts +1 -0
- package/dist/src/components/DataListItem/types.d.ts +22 -0
- package/dist/src/components/DatePicker/AccessibiliteItems.d.ts +54 -0
- package/dist/src/components/DatePicker/DatePicker.d.ts +594 -0
- package/dist/src/components/DatePicker/DateTextInput.d.ts +462 -0
- package/dist/src/components/DatePicker/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/DatePicker/tests/DatePicker.spec.d.ts +1 -0
- package/dist/src/components/DatePicker/tests/DateTextInput.spec.d.ts +1 -0
- package/dist/src/components/DialogBox/AccessibiliteItems.d.ts +54 -0
- package/dist/src/components/DialogBox/config.d.ts +25 -0
- package/dist/src/components/DialogBox/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/DialogBox/locales.d.ts +5 -0
- package/dist/src/components/DialogBox/tests/DialogBox.spec.d.ts +1 -0
- package/dist/src/components/DownloadBtn/AccessibiliteItems.d.ts +29 -0
- package/dist/src/components/DownloadBtn/DownloadBtn.d.ts +39 -0
- package/dist/src/components/DownloadBtn/config.d.ts +13 -0
- package/dist/src/components/DownloadBtn/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/DownloadBtn/tests/DownloadBtn.spec.d.ts +1 -0
- package/dist/src/components/DownloadBtn/tests/data/filePromise.d.ts +5 -0
- package/dist/src/components/ErrorPage/AccessibiliteItems.d.ts +65 -0
- package/dist/src/components/ErrorPage/ErrorPage.d.ts +31 -0
- package/dist/src/components/ErrorPage/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/ErrorPage/locales.d.ts +5 -0
- package/dist/src/components/ErrorPage/tests/ErrorPage.spec.d.ts +1 -0
- package/dist/src/components/ExternalLinks/AccessibiliteItems.d.ts +55 -0
- package/dist/src/components/ExternalLinks/ExternalLinks.d.ts +31 -0
- package/dist/src/components/ExternalLinks/config.d.ts +32 -0
- package/dist/src/components/ExternalLinks/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/ExternalLinks/locales.d.ts +4 -0
- package/dist/src/components/ExternalLinks/tests/ExternalLinks.spec.d.ts +1 -0
- package/dist/src/components/FileList/AccessibiliteItems.d.ts +29 -0
- package/dist/src/components/FileList/FileList.d.ts +44 -0
- package/dist/src/components/FileList/UploadItem/UploadItem.d.ts +58 -0
- package/dist/src/components/FileList/UploadItem/locales.d.ts +9 -0
- package/dist/src/components/FileList/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/FileList/tests/FileList.spec.d.ts +1 -0
- package/dist/src/components/FilePreview/AccessibiliteItems.d.ts +16 -0
- package/dist/src/components/FilePreview/FilePreview.d.ts +28 -0
- package/dist/src/components/FilePreview/config.d.ts +9 -0
- package/dist/src/components/FilePreview/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/FilePreview/locales.d.ts +4 -0
- package/dist/src/components/FilePreview/tests/FilePreview.spec.d.ts +1 -0
- package/dist/src/components/FileUpload/AccessibiliteItems.d.ts +16 -0
- package/dist/src/components/FileUpload/FileUpload.d.ts +49 -0
- package/dist/src/components/FileUpload/FileUploadContent.d.ts +20 -0
- package/dist/src/components/FileUpload/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/FileUpload/locales.d.ts +9 -0
- package/dist/src/components/FileUpload/tests/FileUpload.spec.d.ts +1 -0
- package/dist/src/components/FileUpload/useFileDrop.d.ts +2 -0
- package/dist/src/components/FileUpload/validateFiles.d.ts +4 -0
- package/dist/src/components/FilterInline/FilterInline.d.ts +28 -0
- package/dist/src/components/FilterInline/locales.d.ts +3 -0
- package/dist/src/components/FilterInline/tests/FilterInline.spec.d.ts +1 -0
- package/dist/src/components/FooterBar/A11yCompliance.d.ts +3 -0
- package/dist/src/components/FooterBar/AccessibiliteItems.d.ts +110 -0
- package/dist/src/components/FooterBar/FooterBar.d.ts +57 -0
- package/dist/src/components/FooterBar/config.d.ts +18 -0
- package/dist/src/components/FooterBar/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/FooterBar/defaultSocialMediaLinks.d.ts +2 -0
- package/dist/src/components/FooterBar/locales.d.ts +11 -0
- package/dist/src/components/FooterBar/tests/FooterBar.spec.d.ts +1 -0
- package/dist/src/components/FooterBar/tests/FooterBarConfig.spec.d.ts +1 -0
- package/dist/src/components/FooterBar/types.d.ts +9 -0
- package/dist/src/components/FranceConnectBtn/AccessibiliteItems.d.ts +45 -0
- package/dist/src/components/FranceConnectBtn/FranceConnectBtn.d.ts +10 -0
- package/dist/src/components/FranceConnectBtn/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/FranceConnectBtn/locales.d.ts +4 -0
- package/dist/src/components/FranceConnectBtn/tests/FranceConnectBtn.spec.d.ts +1 -0
- package/dist/src/components/HeaderBar/AccessibiliteItems.d.ts +91 -0
- package/dist/src/components/HeaderBar/HeaderBar.d.ts +67 -0
- package/dist/src/components/HeaderBar/HeaderBurgerMenu/AccessibiliteItems.d.ts +77 -0
- package/dist/src/components/HeaderBar/HeaderBurgerMenu/HeaderBurgerMenu.d.ts +67 -0
- package/dist/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuItem/HeaderMenuItem.d.ts +9 -0
- package/dist/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuItem/tests/HeaderMenuItem.spec.d.ts +1 -0
- package/dist/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuSection/HeaderMenuSection.d.ts +13 -0
- package/dist/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuSection/tests/HeaderMenuSection.spec.d.ts +1 -0
- package/dist/src/components/HeaderBar/HeaderBurgerMenu/HeaderSubMenu/HeaderSubMenu.d.ts +10 -0
- package/dist/src/components/HeaderBar/HeaderBurgerMenu/HeaderSubMenu/tests/HeaderSubMenu.spec.d.ts +1 -0
- package/dist/src/components/HeaderBar/HeaderBurgerMenu/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/HeaderBar/HeaderBurgerMenu/conts.d.ts +1 -0
- package/dist/src/components/HeaderBar/HeaderBurgerMenu/locals.d.ts +5 -0
- package/dist/src/components/HeaderBar/HeaderBurgerMenu/tests/HeaderBurgerMenu.spec.d.ts +1 -0
- package/dist/src/components/HeaderBar/HeaderBurgerMenu/tests/useHandleSubMenus.spec.d.ts +1 -0
- package/dist/src/components/HeaderBar/HeaderBurgerMenu/useHandleSubMenus.d.ts +4 -0
- package/dist/src/components/HeaderBar/HeaderLogo/HeaderLogo.d.ts +31 -0
- package/dist/src/components/HeaderBar/HeaderLogo/locales.d.ts +3 -0
- package/dist/src/components/HeaderBar/HeaderLogo/logos/Logo-mobile.d.ts +2 -0
- package/dist/src/components/HeaderBar/HeaderLogo/logos/Logo.d.ts +2 -0
- package/dist/src/components/HeaderBar/HeaderLogo/tests/HeaderLogo.spec.d.ts +1 -0
- package/dist/src/components/HeaderBar/HeaderMenuBtn/HeaderMenuBtn.d.ts +14 -0
- package/dist/src/components/HeaderBar/HeaderMenuBtn/locals.d.ts +5 -0
- package/dist/src/components/HeaderBar/HeaderMenuBtn/tests/HeaderMenuBtn.spec.d.ts +1 -0
- package/dist/src/components/HeaderBar/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/HeaderBar/consts.d.ts +2 -0
- package/dist/src/components/HeaderBar/locales.d.ts +3 -0
- package/dist/src/components/HeaderBar/tests/HeaderBar.spec.d.ts +1 -0
- package/dist/src/components/HeaderBar/tests/useHeaderResponsiveMode.spec.d.ts +1 -0
- package/dist/src/components/HeaderBar/tests/useScrollDirection.spec.d.ts +1 -0
- package/dist/src/components/HeaderBar/useHeaderResponsiveMode.d.ts +3 -0
- package/dist/src/components/HeaderBar/useScrollDirection.d.ts +3 -0
- package/dist/src/components/HeaderLoading/AccessibiliteItems.d.ts +16 -0
- package/dist/src/components/HeaderLoading/HeaderLoading.d.ts +23 -0
- package/dist/src/components/HeaderLoading/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/HeaderLoading/tests/HeaderLoading.spec.d.ts +1 -0
- package/dist/src/components/HeaderNavigationBar/HeaderNavigationBar.d.ts +84 -0
- package/dist/src/components/HeaderNavigationBar/HorizontalNavbar/HorizontalNavbar.d.ts +20 -0
- package/dist/src/components/HeaderNavigationBar/HorizontalNavbar/config.d.ts +16 -0
- package/dist/src/components/HeaderNavigationBar/tests/HeaderNavigationBar.spec.d.ts +1 -0
- package/dist/src/components/HeaderNavigationBar/types.d.ts +6 -0
- package/dist/src/components/HeaderToolbar/AccessibiliteItems.d.ts +46 -0
- package/dist/src/components/HeaderToolbar/HeaderToolbar.d.ts +103 -0
- package/dist/src/components/HeaderToolbar/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/HeaderToolbar/tests/HeaderToolbar.spec.d.ts +1 -0
- package/dist/src/components/HeaderToolbar/types.d.ts +19 -0
- package/dist/src/components/LangBtn/AccessibiliteItems.d.ts +16 -0
- package/dist/src/components/LangBtn/LangBtn.d.ts +31 -0
- package/dist/src/components/LangBtn/config.d.ts +15 -0
- package/dist/src/components/LangBtn/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/LangBtn/locales.d.ts +3 -0
- package/dist/src/components/LangBtn/tests/Config.spec.d.ts +1 -0
- package/dist/src/components/LangBtn/tests/LangBtn.spec.d.ts +1 -0
- package/dist/src/components/LangBtn/types.d.ts +7 -0
- package/dist/src/components/Logo/AccessibiliteItems.d.ts +65 -0
- package/dist/src/components/Logo/Logo.d.ts +71 -0
- package/dist/src/components/Logo/LogoSize.d.ts +6 -0
- package/dist/src/components/Logo/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/Logo/locales.d.ts +6 -0
- package/dist/src/components/Logo/logoDimensionsMapping.d.ts +3 -0
- package/dist/src/components/Logo/tests/Logo.spec.d.ts +1 -0
- package/dist/src/components/Logo/types.d.ts +7 -0
- package/dist/src/components/LogoBrandSection/AccessibiliteItems.d.ts +91 -0
- package/dist/src/components/LogoBrandSection/LogoBrandSection.d.ts +38 -0
- package/dist/src/components/LogoBrandSection/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/LogoBrandSection/dividerDimensionsMapping.d.ts +14 -0
- package/dist/src/components/LogoBrandSection/locales.d.ts +14 -0
- package/dist/src/components/LogoBrandSection/secondaryLogoMapping.d.ts +18 -0
- package/dist/src/components/LogoBrandSection/tests/LogoBrandSection.spec.d.ts +1 -0
- package/dist/src/components/LogoBrandSection/types.d.ts +1 -0
- package/dist/src/components/MaintenancePage/AccessibiliteItems.d.ts +65 -0
- package/dist/src/components/MaintenancePage/MaintenancePage.d.ts +2 -0
- package/dist/src/components/MaintenancePage/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/MaintenancePage/index.d.ts +2 -0
- package/dist/src/components/MaintenancePage/locales.d.ts +4 -0
- package/dist/src/components/MaintenancePage/tests/MaintenancePage.spec.d.ts +1 -0
- package/dist/src/components/NirField/AccessibiliteItems.d.ts +79 -0
- package/dist/src/components/NirField/config.d.ts +15 -0
- package/dist/src/components/NirField/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/NirField/locales.d.ts +12 -0
- package/dist/src/components/NirField/nirValidation.d.ts +5 -0
- package/dist/src/components/NirField/tests/NirField.spec.d.ts +1 -0
- package/dist/src/components/NotFoundPage/AccessibiliteItems.d.ts +65 -0
- package/dist/src/components/NotFoundPage/NotFoundPage.d.ts +14 -0
- package/dist/src/components/NotFoundPage/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/NotFoundPage/locales.d.ts +6 -0
- package/dist/src/components/NotFoundPage/tests/NotFoundPage.spec.d.ts +1 -0
- package/dist/src/components/NotificationBar/AccessibiliteItems.d.ts +29 -0
- package/dist/src/components/NotificationBar/NotificationBar.d.ts +37 -0
- package/dist/src/components/NotificationBar/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/NotificationBar/options.d.ts +13 -0
- package/dist/src/components/NotificationBar/tests/NotificationBar.spec.d.ts +1 -0
- package/dist/src/components/NotificationBar/types.d.ts +7 -0
- package/dist/src/components/PageContainer/AccessibiliteItems.d.ts +29 -0
- package/dist/src/components/PageContainer/PageContainer.d.ts +21 -0
- package/dist/src/components/PageContainer/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/PageContainer/tests/PageContainer.spec.d.ts +1 -0
- package/dist/src/components/PaginatedTable/AccessibiliteItems.d.ts +97 -0
- package/dist/src/components/PaginatedTable/PaginatedTable.d.ts +57 -0
- package/dist/src/components/PaginatedTable/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/PaginatedTable/constants/StateEnum.d.ts +6 -0
- package/dist/src/components/PaginatedTable/tests/PaginatedTable.spec.d.ts +1 -0
- package/dist/src/components/PaginatedTable/types.d.ts +26 -0
- package/dist/src/components/PasswordField/AccessibiliteItems.d.ts +54 -0
- package/dist/src/components/PasswordField/PasswordField.d.ts +25 -0
- package/dist/src/components/PasswordField/config.d.ts +9 -0
- package/dist/src/components/PasswordField/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/PasswordField/locales.d.ts +4 -0
- package/dist/src/components/PasswordField/tests/PasswordField.spec.d.ts +1 -0
- package/dist/src/components/PeriodField/AccessibiliteItems.d.ts +54 -0
- package/dist/src/components/PeriodField/PeriodField.d.ts +1381 -0
- package/dist/src/components/PeriodField/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/PeriodField/tests/PeriodField.spec.d.ts +1 -0
- package/dist/src/components/PhoneField/AccessibiliteItems.d.ts +94 -0
- package/dist/src/components/PhoneField/PhoneField.d.ts +129 -0
- package/dist/src/components/PhoneField/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/PhoneField/indicatifs.d.ts +7 -0
- package/dist/src/components/PhoneField/locales.d.ts +4 -0
- package/dist/src/components/PhoneField/tests/PhoneField.spec.d.ts +1 -0
- package/dist/src/components/RangeField/AccessibiliteItems.d.ts +54 -0
- package/dist/src/components/RangeField/RangeField.d.ts +19 -0
- package/dist/src/components/RangeField/RangeSlider/RangeSlider.d.ts +286 -0
- package/dist/src/components/RangeField/RangeSlider/Tooltip/Tooltip.d.ts +20 -0
- package/dist/src/components/RangeField/RangeSlider/tests/rangeSlider.spec.d.ts +1 -0
- package/dist/src/components/RangeField/RangeSlider/tests/useDoubleSlider.spec.d.ts +1 -0
- package/dist/src/components/RangeField/RangeSlider/tests/useMouseSlide.spec.d.ts +1 -0
- package/dist/src/components/RangeField/RangeSlider/tests/useThumb.spec.d.ts +1 -0
- package/dist/src/components/RangeField/RangeSlider/tests/useThumbKeyboard.spec.d.ts +1 -0
- package/dist/src/components/RangeField/RangeSlider/tests/useTooltipsNudge.spec.d.ts +1 -0
- package/dist/src/components/RangeField/RangeSlider/tests/useTrack.spec.d.ts +1 -0
- package/dist/src/components/RangeField/RangeSlider/tests/vAnimateClick.spec.d.ts +1 -0
- package/dist/src/components/RangeField/RangeSlider/types.d.ts +13 -0
- package/dist/src/components/RangeField/RangeSlider/useMouseSlide.d.ts +18 -0
- package/dist/src/components/RangeField/RangeSlider/useRangeSlider.d.ts +17 -0
- package/dist/src/components/RangeField/RangeSlider/useThumb.d.ts +6 -0
- package/dist/src/components/RangeField/RangeSlider/useThumbKeyboard.d.ts +12 -0
- package/dist/src/components/RangeField/RangeSlider/useTooltipsNudge.d.ts +16 -0
- package/dist/src/components/RangeField/RangeSlider/useTrack.d.ts +13 -0
- package/dist/src/components/RangeField/RangeSlider/vAnimateClick.d.ts +3 -0
- package/dist/src/components/RangeField/config.d.ts +6 -0
- package/dist/src/components/RangeField/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/RangeField/locales.d.ts +4 -0
- package/dist/src/components/RangeField/tests/RangeField.spec.d.ts +1 -0
- package/dist/src/components/RatingPicker/AccessibiliteItems.d.ts +80 -0
- package/dist/src/components/RatingPicker/EmotionPicker/EmotionPicker.d.ts +65 -0
- package/dist/src/components/RatingPicker/EmotionPicker/locales.d.ts +3 -0
- package/dist/src/components/RatingPicker/EmotionPicker/tests/EmotionPicker.spec.d.ts +1 -0
- package/dist/src/components/RatingPicker/NumberPicker/NumberPicker.d.ts +64 -0
- package/dist/src/components/RatingPicker/NumberPicker/locales.d.ts +3 -0
- package/dist/src/components/RatingPicker/NumberPicker/tests/NumberPicker.spec.d.ts +1 -0
- package/dist/src/components/RatingPicker/Rating.d.ts +25 -0
- package/dist/src/components/RatingPicker/RatingPicker.d.ts +82 -0
- package/dist/src/components/RatingPicker/StarsPicker/StarsPicker.d.ts +54 -0
- package/dist/src/components/RatingPicker/StarsPicker/tests/StarsPicker.spec.d.ts +1 -0
- package/dist/src/components/RatingPicker/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/RatingPicker/locales.d.ts +3 -0
- package/dist/src/components/RatingPicker/tests/Rating.spec.d.ts +1 -0
- package/dist/src/components/RatingPicker/tests/RatingPicker.spec.d.ts +1 -0
- package/dist/src/components/SearchListField/AccessibiliteItems.d.ts +90 -0
- package/dist/src/components/SearchListField/SearchListField.d.ts +42 -0
- package/dist/src/components/SearchListField/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/SearchListField/locales.d.ts +5 -0
- package/dist/src/components/SearchListField/tests/SearchListField.spec.d.ts +1 -0
- package/dist/src/components/SearchListField/types.d.ts +4 -0
- package/dist/src/components/SelectBtnField/AccessibiliteItems.d.ts +79 -0
- package/dist/src/components/SelectBtnField/SelectBtnField.d.ts +33 -0
- package/dist/src/components/SelectBtnField/config.d.ts +11 -0
- package/dist/src/components/SelectBtnField/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/SelectBtnField/tests/SelectBtnField.spec.d.ts +1 -0
- package/dist/src/components/SelectBtnField/types.d.ts +11 -0
- package/dist/src/components/SkipLink/AccessibiliteItems.d.ts +16 -0
- package/dist/src/components/SkipLink/SkipLink.d.ts +18 -0
- package/dist/src/components/SkipLink/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/SkipLink/locales.d.ts +3 -0
- package/dist/src/components/SkipLink/tests/skipLink.spec.d.ts +1 -0
- package/dist/src/components/SocialMediaLinks/AccessibiliteItems.d.ts +46 -0
- package/dist/src/components/SocialMediaLinks/DefaultSocialMediaLinks.d.ts +2 -0
- package/dist/src/components/SocialMediaLinks/SocialMediaLinks.d.ts +16 -0
- package/dist/src/components/SocialMediaLinks/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/SocialMediaLinks/locales.d.ts +3 -0
- package/dist/src/components/SocialMediaLinks/tests/DefaultSocialMediaLinks.spec.d.ts +1 -0
- package/dist/src/components/SocialMediaLinks/tests/SocialMediaLinks.spec.d.ts +1 -0
- package/dist/src/components/SocialMediaLinks/types.d.ts +5 -0
- package/dist/src/components/SubHeader/AccessibiliteItems.d.ts +29 -0
- package/dist/src/components/SubHeader/SubHeader.d.ts +40 -0
- package/dist/src/components/SubHeader/config.d.ts +11 -0
- package/dist/src/components/SubHeader/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/SubHeader/locales.d.ts +3 -0
- package/dist/src/components/SubHeader/tests/SubHeader.spec.d.ts +1 -0
- package/dist/src/components/SyAlert/AccessibiliteItems.d.ts +29 -0
- package/dist/src/components/SyAlert/SyAlert.d.ts +32 -0
- package/dist/src/components/SyAlert/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/SyAlert/locales.d.ts +3 -0
- package/dist/src/components/SyAlert/tests/SyAlert.spec.d.ts +1 -0
- package/dist/src/components/TableToolbar/AccessibiliteItems.d.ts +71 -0
- package/dist/src/components/TableToolbar/TableToolbar.d.ts +40 -0
- package/dist/src/components/TableToolbar/config.d.ts +24 -0
- package/dist/src/components/TableToolbar/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/TableToolbar/locales.d.ts +5 -0
- package/dist/src/components/TableToolbar/tests/TableToolbar.spec.d.ts +1 -0
- package/dist/src/components/UserMenuBtn/AccessibiliteItems.d.ts +54 -0
- package/dist/src/components/UserMenuBtn/UserMenuBtn.d.ts +32 -0
- package/dist/src/components/UserMenuBtn/config.d.ts +24 -0
- package/dist/src/components/UserMenuBtn/constants/ExpertiseLevelEnum.d.ts +4 -0
- package/dist/src/components/UserMenuBtn/tests/UserMenuBtn.spec.d.ts +1 -0
- package/dist/src/components/index.d.ts +63 -0
- package/dist/src/composables/index.d.ts +3 -0
- package/dist/src/composables/rules/tests/useFieldValidation.spec.d.ts +1 -0
- package/dist/src/composables/rules/useFieldValidation.d.ts +27 -0
- package/dist/src/composables/useCustomizableOptions.d.ts +13 -0
- package/dist/src/composables/useFilterable/useFilterable.d.ts +32 -0
- package/dist/src/composables/useFilterable/useFilterable.spec.d.ts +1 -0
- package/dist/src/composables/widthable/index.d.ts +13 -0
- package/dist/src/composables/widthable/tests/widthable.spec.d.ts +1 -0
- package/dist/src/constants/icons.d.ts +3 -0
- package/dist/src/designTokens/index.d.ts +9 -0
- package/dist/src/designTokens/tokens/cnam/cnamColors.d.ts +171 -0
- package/dist/src/designTokens/tokens/cnam/cnamContextual.d.ts +58 -0
- package/dist/src/designTokens/tokens/cnam/cnamDarkTheme.d.ts +3 -0
- package/dist/src/designTokens/tokens/cnam/cnamLightTheme.d.ts +90 -0
- package/dist/src/designTokens/tokens/cnam/cnamSemantic.d.ts +87 -0
- package/dist/src/designTokens/tokens/pa/paColors.d.ts +171 -0
- package/dist/src/designTokens/tokens/pa/paContextual.d.ts +58 -0
- package/dist/src/designTokens/tokens/pa/paDarkTheme.d.ts +3 -0
- package/dist/src/designTokens/tokens/pa/paLightTheme.d.ts +120 -0
- package/dist/src/designTokens/tokens/pa/paSemantic.d.ts +87 -0
- package/dist/src/designTokens/utils/convertGaps.d.ts +5 -0
- package/dist/src/designTokens/utils/convertSemanticsToken.d.ts +12 -0
- package/dist/src/designTokens/utils/createFlattenTheme.d.ts +7 -0
- package/dist/src/designTokens/utils/index.d.ts +3 -0
- package/dist/src/directives/clickOutside.d.ts +1 -0
- package/dist/src/main.d.ts +3 -0
- package/dist/src/modules.d.ts +4 -0
- package/dist/src/services/NotificationService.d.ts +19 -0
- package/dist/src/services/index.d.ts +1 -0
- package/dist/src/stories/Accessibilite/Vuetify/VuetifyItems.d.ts +58 -0
- package/dist/src/stories/EcoConception/ecoDesignItems.d.ts +4 -0
- package/dist/src/types/vuetifyTypes.d.ts +3 -0
- package/dist/src/utils/calcHumanFileSize/index.d.ts +2 -0
- package/dist/src/utils/calcHumanFileSize/tests/calcHumanFileSize.spec.d.ts +1 -0
- package/dist/src/utils/convertToUnit/index.d.ts +2 -0
- package/dist/src/utils/convertToUnit/test/convertToUnit.spec.d.ts +1 -0
- package/dist/src/utils/functions/copyToClipboard/index.d.ts +2 -0
- package/dist/src/utils/functions/copyToClipboard/tests/copyToClipboard.spec.d.ts +1 -0
- package/dist/src/utils/functions/deepCopy/index.d.ts +4 -0
- package/dist/src/utils/functions/deepCopy/tests/deepCopy.spec.d.ts +1 -0
- package/dist/src/utils/functions/downloadFile/index.d.ts +3 -0
- package/dist/src/utils/functions/downloadFile/tests/downloadFile.spec.d.ts +1 -0
- package/dist/src/utils/functions/downloadFile/types.d.ts +1 -0
- package/dist/src/utils/functions/isEmailValid/index.d.ts +4 -0
- package/dist/src/utils/functions/isEmailValid/tests/isEmailValid.spec.d.ts +1 -0
- package/dist/src/utils/functions/throttleDisplayFn/tests/throttleDisplayFn.spec.d.ts +1 -0
- package/dist/src/utils/functions/throttleDisplayFn/throttleDisplayFn.d.ts +4 -0
- package/dist/src/utils/localStorageUtility/index.d.ts +28 -0
- package/dist/src/utils/localStorageUtility/tests/localStorageUtility.spec.d.ts +1 -0
- package/dist/src/utils/propValidator/index.d.ts +2 -0
- package/dist/src/utils/propValidator/tests/propValidator.spec.d.ts +1 -0
- package/dist/src/utils/ruleMessage/index.d.ts +3 -0
- package/dist/src/utils/ruleMessage/tests/ruleMessages.spec.d.ts +1 -0
- package/dist/src/utils/rules/email/index.d.ts +4 -0
- package/dist/src/utils/rules/email/locales.d.ts +2 -0
- package/dist/src/utils/rules/email/tests/email.spec.d.ts +1 -0
- package/dist/src/utils/rules/exactLength/index.d.ts +4 -0
- package/dist/src/utils/rules/exactLength/locales.d.ts +2 -0
- package/dist/src/utils/rules/required/index.d.ts +4 -0
- package/dist/src/utils/rules/required/locales.d.ts +2 -0
- package/dist/src/utils/rules/required/ruleMessageHelper.d.ts +3 -0
- package/dist/src/utils/rules/required/tests/index.spec.d.ts +1 -0
- package/dist/src/utils/rules/required/tests/rulesMessageHelper.spec.d.ts +1 -0
- package/dist/src/utils/rules/types.d.ts +15 -0
- package/dist/style.css +1 -1
- package/package.json +23 -21
- package/src/assets/settings.scss +11 -0
- package/src/components/BackBtn/Usages.mdx +9 -0
- package/src/components/BackBtn/Usages.stories.ts +37 -0
- package/src/components/BackToTopBtn/Usages.mdx +9 -0
- package/src/components/BackToTopBtn/Usages.stories.ts +41 -0
- package/src/components/ChipList/Accessibilite.mdx +14 -0
- package/src/components/ChipList/Accessibilite.stories.ts +216 -0
- package/src/components/ChipList/AccessibiliteItems.ts +119 -0
- package/src/components/ChipList/ChipList.mdx +59 -0
- package/src/components/ChipList/ChipList.stories.ts +1257 -0
- package/src/components/ChipList/ChipList.vue +246 -0
- package/src/components/ChipList/config.ts +27 -0
- package/src/{stories/Guidelines/Accessibilite → components/ChipList}/constants/ExpertiseLevelEnum.ts +0 -1
- package/src/components/ChipList/locales.ts +6 -0
- package/src/components/ChipList/tests/chipList.spec.ts +300 -0
- package/src/components/ChipList/types.ts +7 -0
- package/src/components/ContextualMenu/Usages.mdx +9 -0
- package/src/components/ContextualMenu/Usages.stories.ts +38 -0
- package/src/components/CopyBtn/Usages.mdx +9 -0
- package/src/components/CopyBtn/Usages.stories.ts +41 -0
- package/src/components/Customs/SySelect/SySelect.vue +4 -1
- package/src/components/Customs/SySelect/Usages.mdx +9 -0
- package/src/components/Customs/SySelect/Usages.stories.ts +41 -0
- package/src/components/Customs/SyTextField/SyTextField.mdx +21 -0
- package/src/components/Customs/SyTextField/SyTextField.stories.ts +402 -231
- package/src/components/Customs/SyTextField/SyTextField.vue +217 -19
- package/src/components/Customs/SyTextField/Usages.mdx +9 -0
- package/src/components/Customs/SyTextField/Usages.stories.ts +41 -0
- package/src/components/Customs/SyTextField/tests/SyTextField.spec.ts +9 -8
- package/src/components/Customs/SyTextField/tests/__snapshots__/SyTextField.spec.ts.snap +23 -25
- package/src/components/DatePicker/DatePicker.mdx +37 -1
- package/src/components/DatePicker/DatePicker.stories.ts +374 -5
- package/src/components/DatePicker/DatePicker.vue +119 -47
- package/src/components/DatePicker/DateTextInput.vue +567 -290
- package/src/components/DatePicker/Usages.mdx +9 -0
- package/src/components/DatePicker/Usages.stories.ts +43 -0
- package/src/components/DatePicker/tests/DatePicker.spec.ts +5 -5
- package/src/components/DatePicker/tests/DateTextInput.spec.ts +282 -0
- package/src/components/DialogBox/DialogBox.mdx +1 -1
- package/src/components/DialogBox/Usages.mdx +9 -0
- package/src/components/DialogBox/Usages.stories.ts +45 -0
- package/src/components/ErrorPage/ErrorPage.mdx +1 -1
- package/src/components/ExternalLinks/Usages.mdx +9 -0
- package/src/components/ExternalLinks/Usages.stories.ts +40 -0
- package/src/components/FileList/Accessibilite.mdx +14 -0
- package/src/components/FileList/Accessibilite.stories.ts +216 -0
- package/src/components/FileList/AccessibiliteItems.ts +110 -0
- package/src/components/FileList/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/FilePreview/Accessibilite.mdx +14 -0
- package/src/components/FilePreview/Accessibilite.stories.ts +216 -0
- package/src/components/FilePreview/AccessibiliteItems.ts +27 -0
- package/src/components/FilePreview/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/FileUpload/Accessibilite.mdx +14 -0
- package/src/components/FileUpload/Accessibilite.stories.ts +216 -0
- package/src/components/FileUpload/AccessibiliteItems.ts +27 -0
- package/src/components/FileUpload/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/FilterInline/FilterInline.mdx +91 -0
- package/src/components/FilterInline/FilterInline.stories.ts +406 -0
- package/src/components/FilterInline/FilterInline.vue +108 -0
- package/src/components/FilterInline/locales.ts +4 -0
- package/src/components/FilterInline/tests/FilterInline.spec.ts +68 -0
- package/src/components/FilterInline/tests/__snapshots__/FilterInline.spec.ts.snap +38 -0
- package/src/components/HeaderBar/Usages.mdx +7 -2
- package/src/components/HeaderBar/Usages.stories.ts +39 -0
- package/src/components/NirField/NirField.stories.ts +1 -1
- package/src/components/NirField/NirField.vue +10 -4
- package/src/components/NirField/Usages.mdx +9 -0
- package/src/components/NirField/Usages.stories.ts +42 -0
- package/src/components/NotificationBar/Usages.mdx +9 -0
- package/src/components/NotificationBar/Usages.stories.ts +41 -0
- package/src/components/PaginatedTable/Accessibilite.mdx +14 -0
- package/src/components/PaginatedTable/Accessibilite.stories.ts +216 -0
- package/src/components/PaginatedTable/AccessibiliteItems.ts +352 -0
- package/src/components/PaginatedTable/PaginatedTable.mdx +54 -0
- package/src/components/PaginatedTable/PaginatedTable.stories.ts +591 -0
- package/src/components/PaginatedTable/PaginatedTable.vue +243 -0
- package/src/components/PaginatedTable/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/PaginatedTable/constants/StateEnum.ts +6 -0
- package/src/components/PaginatedTable/tests/PaginatedTable.spec.ts +257 -0
- package/src/components/PaginatedTable/tests/__snapshots__/PaginatedTable.spec.ts.snap +249 -0
- package/src/components/PaginatedTable/types.ts +30 -0
- package/src/components/PeriodField/Accessibilite.mdx +14 -0
- package/src/components/PeriodField/Accessibilite.stories.ts +216 -0
- package/src/components/PeriodField/AccessibiliteItems.ts +269 -0
- package/src/components/PeriodField/PeriodField.vue +62 -77
- package/src/components/PeriodField/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/PeriodField/tests/PeriodField.spec.ts +11 -19
- package/src/components/PhoneField/PhoneField.mdx +1 -1
- package/src/components/PhoneField/Usages.mdx +9 -0
- package/src/components/PhoneField/Usages.stories.ts +38 -0
- package/src/components/RangeField/RangeField.vue +0 -4
- package/src/components/SearchListField/SearchListField.mdx +1 -2
- package/src/components/SelectBtnField/Usages.mdx +9 -0
- package/src/components/SelectBtnField/Usages.stories.ts +40 -0
- package/src/components/SkipLink/Usages.mdx +9 -0
- package/src/components/SkipLink/Usages.stories.ts +41 -0
- package/src/components/SyAlert/Usages.mdx +9 -0
- package/src/components/SyAlert/Usages.stories.ts +40 -0
- package/src/components/TableToolbar/Accessibilite.mdx +14 -0
- package/src/components/TableToolbar/Accessibilite.stories.ts +216 -0
- package/src/components/TableToolbar/AccessibiliteItems.ts +283 -0
- package/src/components/TableToolbar/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/Usages/Usages.vue +95 -0
- package/src/components/index.ts +3 -0
- package/src/composables/rules/useFieldValidation.ts +84 -12
- package/src/composables/useFilterable/__snapshots__/useFilterable.spec.ts.snap +3 -0
- package/src/composables/useFilterable/useFilterable.spec.ts +635 -0
- package/src/composables/useFilterable/useFilterable.ts +196 -0
- package/src/constants/icons.ts +5 -0
- package/src/designTokens/tokens/cnam/cnamLightTheme.ts +3 -3
- package/src/stories/Accessibilite/Aculturation/SensibilisationAccessibilite.mdx +63 -0
- package/src/stories/Accessibilite/Audit/RGAA.mdx +29 -0
- package/src/stories/Accessibilite/Introduction.mdx +27 -0
- package/src/stories/Accessibilite/KitDePreAudit/Echantillonnage.mdx +40 -0
- package/src/stories/Accessibilite/KitDePreAudit/Introduction.mdx +32 -0
- package/src/stories/Accessibilite/KitDePreAudit/Outils/Introduction.mdx +33 -0
- package/src/stories/Accessibilite/KitDePreAudit/Outils/Tanaguru.mdx +33 -0
- package/src/stories/Accessibilite/KitDePreAudit/Preaudit.mdx +100 -0
- package/src/stories/{Guidelines → Accessibilite}/Vuetify/Vuetify.mdx +1 -1
- package/src/stories/{Guidelines → Accessibilite}/Vuetify/Vuetify.stories.ts +1 -1
- package/src/stories/Components/Components.mdx +8 -0
- package/src/stories/Components/Components.stories.ts +398 -0
- package/src/stories/Demarrer/Accueil.mdx +8 -3
- package/src/stories/Demarrer/Accueil.stories.ts +126 -16
- package/src/stories/Demarrer/Introduction.mdx +12 -0
- package/src/stories/Demarrer/Introduction.stories.ts +151 -0
- package/src/stories/{GuideDuDev → Demarrer}/components.stories.ts +2 -2
- package/src/stories/{Fondamentaux → DesignTokens}/Arrondis.mdx +1 -1
- package/src/stories/{Fondamentaux → DesignTokens}/Colors.mdx +4 -4
- package/src/stories/DesignTokens/Conteneurs.mdx +18 -0
- package/src/stories/DesignTokens/Conteneurs.stories.ts +103 -0
- package/src/stories/{Fondamentaux → DesignTokens}/Elevations.mdx +1 -1
- package/src/stories/{Fondamentaux → DesignTokens}/Espacements.mdx +1 -1
- package/src/stories/{Fondamentaux → DesignTokens}/Introduction.mdx +1 -1
- package/src/stories/{Fondamentaux → DesignTokens}/StylesTypographiques.mdx +1 -1
- package/src/stories/{Fondamentaux/CustomisationEtThemes.mdx → DesignTokens/ThemePA.mdx} +6 -2
- package/src/stories/{Fondamentaux → DesignTokens}/Typographie.mdx +14 -1
- package/src/stories/{Guidelines/EcoConception/EcoConception.mdx → EcoConception/Introduction.mdx} +2 -2
- package/src/stories/{Guidelines/EcoConception/Econception.stories.ts → EcoConception/econception.stories.ts} +2 -2
- package/src/stories/GuideDuDev/MigrationDepuisBridge.mdx +432 -0
- package/src/stories/GuideDuDev/MigrationDepuisVue2.mdx +415 -0
- package/src/stories/GuideDuDev/UtiliserLesRules.mdx +1 -13
- package/src/stories/Templates/Templates.mdx +8 -0
- package/src/stories/Templates/Templates.stories.ts +85 -0
- package/src/utils/functions/deepCopy/index.ts +20 -0
- package/src/utils/functions/deepCopy/tests/deepCopy.spec.ts +58 -0
- package/src/utils/functions/isEmailValid/index.ts +8 -0
- package/src/utils/functions/isEmailValid/tests/isEmailValid.spec.ts +22 -0
- package/src/utils/localStorageUtility/index.ts +201 -0
- package/src/utils/localStorageUtility/tests/localStorageUtility.spec.ts +180 -0
- package/src/utils/ruleMessage/index.ts +14 -0
- package/src/utils/ruleMessage/tests/ruleMessages.spec.ts +28 -0
- package/src/utils/rules/email/index.ts +26 -0
- package/src/utils/rules/email/locales.ts +5 -0
- package/src/utils/rules/email/tests/email.spec.ts +24 -0
- package/dist/design-system-v3.d.ts +0 -2925
- package/src/stories/Fondamentaux/Conteneurs.mdx +0 -7
- package/src/stories/Guidelines/Accessibilite/Accessibilite.mdx +0 -51
- package/src/stories/Guidelines/Accessibilite/Accessibilite.stories.ts +0 -36
- package/src/stories/Guidelines/Accessibilite/AccessibiliteItems.ts +0 -706
- package/src/stories/Guidelines/Accessibilite/constants/RGAALevelEnum.ts +0 -4
- /package/src/stories/{Guidelines → Accessibilite}/Vuetify/VuetifyItems.ts +0 -0
- /package/src/stories/{GuideDuDev → Demarrer}/CreerUneIssue.mdx +0 -0
- /package/src/stories/{Guidelines/EcoConception → EcoConception}/ecoDesignItems.ts +0 -0
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.title[data-v-cfdbdf11]{font-size:24px!important}.alt-title[data-v-cfdbdf11]{font-size:20px!important}.body-text[data-v-cfdbdf11]{font-size:16px!important}.link-label[data-v-cfdbdf11]{font-size:14px!important}h1[data-v-cfdbdf11]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-cfdbdf11]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-cfdbdf11]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-cfdbdf11]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-cfdbdf11]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-cfdbdf11]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-cfdbdf11]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-cfdbdf11]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-cfdbdf11]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-cfdbdf11]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-cfdbdf11]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-cfdbdf11]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-cfdbdf11],.elevation-2[data-v-cfdbdf11],.elevation-3[data-v-cfdbdf11],.elevation-4[data-v-cfdbdf11],.elevation-5[data-v-cfdbdf11],.elevation-6[data-v-cfdbdf11],.elevation-7[data-v-cfdbdf11],.elevation-8[data-v-cfdbdf11],.elevation-9[data-v-cfdbdf11],.elevation-10[data-v-cfdbdf11],.elevation-11[data-v-cfdbdf11],.elevation-12[data-v-cfdbdf11],.elevation-13[data-v-cfdbdf11],.elevation-14[data-v-cfdbdf11],.elevation-15[data-v-cfdbdf11],.elevation-16[data-v-cfdbdf11],.elevation-17[data-v-cfdbdf11],.elevation-18[data-v-cfdbdf11],.elevation-19[data-v-cfdbdf11],.elevation-20[data-v-cfdbdf11],.elevation-21[data-v-cfdbdf11],.elevation-22[data-v-cfdbdf11],.elevation-23[data-v-cfdbdf11],.elevation-24[data-v-cfdbdf11]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-cfdbdf11]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-cfdbdf11]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-cfdbdf11]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-cfdbdf11]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.label-hidden-on-focus:focus+label[data-v-cfdbdf11]{display:none}.dp-width[data-v-cfdbdf11]{min-width:345px}.v-messages__message--success[data-v-cfdbdf11] .v-input__control,.v-messages__message--success[data-v-cfdbdf11] .v-messages__message{color:#224e2d!important;--v-medium-emphasis-opacity: 1}.v-field--active .v-messages__message--success[data-v-cfdbdf11]{color:#224e2d!important}.v-messages__message--error[data-v-cfdbdf11] .v-input__control,.v-messages__message--error[data-v-cfdbdf11] .v-messages__message,.v-field--active .v-messages__message--error[data-v-cfdbdf11]{color:#b33f2e!important}.v-messages__message--warning[data-v-cfdbdf11] .v-input__control{color:#60480e!important;--v-medium-emphasis-opacity: 1}.v-messages__message--warning[data-v-cfdbdf11] .v-messages__message,.v-field--active .v-messages__message--warning[data-v-cfdbdf11]{color:#60480e!important}[data-v-cfdbdf11] .v-btn__content{font-size:19px;font-weight:700}[data-v-cfdbdf11] .v-messages{opacity:1}[data-v-cfdbdf11] .v-field--dirty,[data-v-cfdbdf11] .v-field--focused{opacity:1!important;--v-medium-emphasis-opacity: 1}.date-picker-container[data-v-cfdbdf11]{max-width:345px;position:relative}.date-picker-container[data-v-cfdbdf11] .v-date-picker{width:345px;position:absolute;top:56px;left:0;z-index:2;box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f!important}[data-v-cfdbdf11] .v-date-picker-month__day--selected{opacity:1}.fade-enter-active[data-v-cfdbdf11],.fade-leave-active[data-v-cfdbdf11]{transition:opacity .5s ease}.fade-enter-from[data-v-cfdbdf11],.fade-leave-to[data-v-cfdbdf11]{opacity:0}.v-btn.v-theme--light[data-v-86fe77d5] .v-btn__underlay,.v-btn.v-theme--light[data-v-86fe77d5] .v-btn__overlay{display:none}.vd-back-to-top-btn[data-v-316d8462]{position:sticky;z-index:999;opacity:1;float:right}.v-btn--variant-outlined[data-v-316d8462]{background:#fff}.vd-panel[data-v-a4e2c3b6]{background-color:transparent}.vd-panel-title[data-v-a4e2c3b6] .v-expansion-panel-title__overlay{background:transparent!important}.vd-panel-text[data-v-a4e2c3b6] .v-expansion-panel-text__wrapper{padding:0}li[data-v-a4e2c3b6]{list-style:none}a[data-v-a4e2c3b6]{transition:.15s;padding-top:1px;border-bottom:1px solid transparent;color:#000}a[data-v-a4e2c3b6]:hover,a[data-v-a4e2c3b6]:focus{border-color:currentcolor}.v-theme--dark a[data-v-a4e2c3b6]{color:#fff}.vd-collapse-list a[data-v-a4e2c3b6]{color:#000}.vd-collapse-list[data-v-a4e2c3b6] .text-subtitle-1{font-size:1.125rem!important;letter-spacing:.0015em!important;line-height:1.75rem}.vd-collapse-list.theme--dark[data-v-a4e2c3b6] h4,.vd-collapse-list.theme--dark[data-v-a4e2c3b6] ul,.vd-collapse-list.theme--dark[data-v-a4e2c3b6] a,.vd-collapse-list.theme--dark[data-v-a4e2c3b6] button{color:#fff!important}.vd-collapse-list-mobile[data-v-a4e2c3b6] .text-subtitle-2{font-size:1rem!important;letter-spacing:.001em!important;line-height:1.375rem;font-weight:600}.vd-collapse-list-mobile[data-v-a4e2c3b6] button{color:red!important}.vd-collapse-list-mobile[data-v-a4e2c3b6] .v-icon{color:#0000008a!important}.vd-collapse-list-mobile.theme--dark[data-v-a4e2c3b6] button{color:#fff!important}ul[data-v-4af557c1]{list-style:none}a[data-v-4af557c1]{position:relative;transition:none}a[data-v-4af557c1]:before{content:"";width:2px;background:#0009;position:absolute;left:0;height:100%}a[data-v-4af557c1]:after{content:"";width:4px;border-radius:0 2px 2px 0;background:currentcolor;position:absolute;left:0;height:100%;opacity:0}a.active[data-v-4af557c1]:after{opacity:1}.vd-cookie-table[data-v-395de867] table{table-layout:fixed}.title[data-v-b88c0006]{font-size:24px!important}.alt-title[data-v-b88c0006]{font-size:20px!important}.body-text[data-v-b88c0006]{font-size:16px!important}.link-label[data-v-b88c0006]{font-size:14px!important}h1[data-v-b88c0006]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-b88c0006]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-b88c0006]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-b88c0006]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-b88c0006]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-b88c0006]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-b88c0006]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-b88c0006]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-b88c0006]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-b88c0006]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-b88c0006]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-b88c0006]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-b88c0006],.elevation-2[data-v-b88c0006],.elevation-3[data-v-b88c0006],.elevation-4[data-v-b88c0006],.elevation-5[data-v-b88c0006],.elevation-6[data-v-b88c0006],.elevation-7[data-v-b88c0006],.elevation-8[data-v-b88c0006],.elevation-9[data-v-b88c0006],.elevation-10[data-v-b88c0006],.elevation-11[data-v-b88c0006],.elevation-12[data-v-b88c0006],.elevation-13[data-v-b88c0006],.elevation-14[data-v-b88c0006],.elevation-15[data-v-b88c0006],.elevation-16[data-v-b88c0006],.elevation-17[data-v-b88c0006],.elevation-18[data-v-b88c0006],.elevation-19[data-v-b88c0006],.elevation-20[data-v-b88c0006],.elevation-21[data-v-b88c0006],.elevation-22[data-v-b88c0006],.elevation-23[data-v-b88c0006],.elevation-24[data-v-b88c0006]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-b88c0006]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-b88c0006]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-b88c0006]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-b88c0006]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}details>summary[data-v-b88c0006]{cursor:pointer;list-style:none;-webkit-user-select:none;user-select:none}details>summary[data-v-b88c0006]::marker,details>summary[data-v-b88c0006]::-webkit-details-marker{display:none}.vd-cookies-information__radio-group[data-v-b88c0006]{margin-top:0}.vd-cookies-information__radio-group[data-v-b88c0006] .v-input__details{padding:0}.vd-cookies-information__radio-group[data-v-b88c0006] .v-messages{text-align:end}.vd-cookies-information__radio-group[data-v-b88c0006] .v-label{justify-content:end}.vd-cookie-banner[data-v-f308fef2]{position:fixed;left:50%;bottom:0;display:flex;transform:translate(-50%);z-index:20;max-height:calc(100dvh - 64px);width:calc(100% - 64px);max-width:1200px;margin-bottom:32px}.vd-cookie-banner__inner[data-v-f308fef2]{display:flex;flex-direction:column;width:100%;background:transparent}.vd-cookie-banner-content[data-v-f308fef2]{overflow-y:auto;padding-right:8px;background:transparent}.vd-cookie-banner-content div[data-v-f308fef2]{background:transparent}.vd-cookie-banner-action-ctn .v-btn[data-v-f308fef2]{flex:1 1 auto}.v-btn--icon[data-v-f308fef2]{color:#0000008a;position:absolute;right:24px}.height-enter-active[data-v-f308fef2],.height-leave-active[data-v-f308fef2]{box-sizing:border-box;transition:height 2s ease;interpolate-size:allow-keywords;overflow:hidden;background-color:#fff}.height-enter-active[data-v-f308fef2]{transition:height .5s ease}.height-leave-active[data-v-f308fef2]{transition:height .1s ease}.height-enter-from[data-v-f308fef2],.height-leave-to[data-v-f308fef2]{height:0}.height-enter-to[data-v-f308fef2],.height-leave-from[data-v-f308fef2]{height:auto}.title{font-size:24px!important}.alt-title{font-size:20px!important}.body-text{font-size:16px!important}.link-label{font-size:14px!important}h1{font-size:32px!important;line-height:130%!important}.h1-bold{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2{font-size:28px!important;line-height:130%!important}.h2-bold{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3{font-size:24px!important;line-height:130%!important}.h3-bold{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4{font-size:20px!important;line-height:130%!important}.h4-bold{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1{font-size:40px!important;line-height:130%!important}.display-1-bold{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2{font-size:30px!important;line-height:130%!important}.display-2-bold{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1,.elevation-2,.elevation-3,.elevation-4,.elevation-5,.elevation-6,.elevation-7,.elevation-8,.elevation-9,.elevation-10,.elevation-11,.elevation-12,.elevation-13,.elevation-14,.elevation-15,.elevation-16,.elevation-17,.elevation-18,.elevation-19,.elevation-20,.elevation-21,.elevation-22,.elevation-23,.elevation-24{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.vd-copy-tooltip-menu{padding:6px 16px;box-shadow:none;margin-top:2px;background:#545859f2;color:#fff}.v-btn--icon .v-icon{color:#76797a}.title[data-v-27dd5864]{font-size:24px!important}.alt-title[data-v-27dd5864]{font-size:20px!important}.body-text[data-v-27dd5864]{font-size:16px!important}.link-label[data-v-27dd5864]{font-size:14px!important}h1[data-v-27dd5864]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-27dd5864]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-27dd5864]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-27dd5864]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-27dd5864]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-27dd5864]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-27dd5864]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-27dd5864]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-27dd5864]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-27dd5864]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-27dd5864]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-27dd5864]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-27dd5864],.elevation-2[data-v-27dd5864],.elevation-3[data-v-27dd5864],.elevation-4[data-v-27dd5864],.elevation-5[data-v-27dd5864],.elevation-6[data-v-27dd5864],.elevation-7[data-v-27dd5864],.elevation-8[data-v-27dd5864],.elevation-9[data-v-27dd5864],.elevation-10[data-v-27dd5864],.elevation-11[data-v-27dd5864],.elevation-12[data-v-27dd5864],.elevation-13[data-v-27dd5864],.elevation-14[data-v-27dd5864],.elevation-15[data-v-27dd5864],.elevation-16[data-v-27dd5864],.elevation-17[data-v-27dd5864],.elevation-18[data-v-27dd5864],.elevation-19[data-v-27dd5864],.elevation-20[data-v-27dd5864],.elevation-21[data-v-27dd5864],.elevation-22[data-v-27dd5864],.elevation-23[data-v-27dd5864],.elevation-24[data-v-27dd5864]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-27dd5864]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-27dd5864]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-27dd5864]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-27dd5864]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.vd-user-menu-btn-ctn[data-v-27dd5864]{position:relative;z-index:1}.vd-user-menu-btn-ctn .v-btn.v-btn--density-default[data-v-27dd5864]{height:auto!important}.vd-user-menu-btn-ctn .v-btn[data-v-27dd5864]{text-transform:none!important}.vd-user-menu-btn[data-v-27dd5864]{outline:none;padding:12px!important}.vd-user-menu-btn[data-v-27dd5864]:hover:before{background:#000;opacity:.05}.vd-user-menu-btn[data-v-27dd5864]:focus:before{background:#0c419a;opacity:.08}.vd-user-menu-btn[data-v-27dd5864]:focus{background:#0c419a14!important}[data-v-27dd5864] .vd-user-menu-btn:focus>.v-btn__overlay{opacity:0!important}.title[data-v-c84cf88c]{font-size:24px!important}.alt-title[data-v-c84cf88c]{font-size:20px!important}.body-text[data-v-c84cf88c]{font-size:16px!important}.link-label[data-v-c84cf88c]{font-size:14px!important}h1[data-v-c84cf88c]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-c84cf88c]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-c84cf88c]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-c84cf88c]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-c84cf88c]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-c84cf88c]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-c84cf88c]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-c84cf88c]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-c84cf88c]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-c84cf88c]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-c84cf88c]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-c84cf88c]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-c84cf88c],.elevation-2[data-v-c84cf88c],.elevation-3[data-v-c84cf88c],.elevation-4[data-v-c84cf88c],.elevation-5[data-v-c84cf88c],.elevation-6[data-v-c84cf88c],.elevation-7[data-v-c84cf88c],.elevation-8[data-v-c84cf88c],.elevation-9[data-v-c84cf88c],.elevation-10[data-v-c84cf88c],.elevation-11[data-v-c84cf88c],.elevation-12[data-v-c84cf88c],.elevation-13[data-v-c84cf88c],.elevation-14[data-v-c84cf88c],.elevation-15[data-v-c84cf88c],.elevation-16[data-v-c84cf88c],.elevation-17[data-v-c84cf88c],.elevation-18[data-v-c84cf88c],.elevation-19[data-v-c84cf88c],.elevation-20[data-v-c84cf88c],.elevation-21[data-v-c84cf88c],.elevation-22[data-v-c84cf88c],.elevation-23[data-v-c84cf88c],.elevation-24[data-v-c84cf88c]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-c84cf88c]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-c84cf88c]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-c84cf88c]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-c84cf88c]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.sy-input-select[data-v-c84cf88c]{text-transform:none!important;font-size:16px}.v-input[data-v-c84cf88c]{cursor:pointer;position:relative}.v-list[data-v-c84cf88c]{position:absolute;width:100%;z-index:1;background-color:#fff;min-width:fit-content;max-width:100px;padding:0;box-shadow:0 2px 5px #0000001f,0 2px 10px #00000014;border-radius:4px;overflow-y:auto;max-height:300px}.v-list-item[data-v-c84cf88c]:hover{background-color:#0000000a}[data-v-c84cf88c] .v-list-item[aria-selected=true]{background-color:#00000014}[data-v-c84cf88c] .v-list-item[aria-selected=true] .v-list-item-title{font-weight:700}.error[data-v-c84cf88c]{border-color:#b33f2e}.v-btn[data-v-c84cf88c],.text-color[data-v-c84cf88c]{color:#0c419a}.title[data-v-d5496da0]{font-size:24px!important}.alt-title[data-v-d5496da0]{font-size:20px!important}.body-text[data-v-d5496da0]{font-size:16px!important}.link-label[data-v-d5496da0]{font-size:14px!important}h1[data-v-d5496da0]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-d5496da0]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-d5496da0]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-d5496da0]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-d5496da0]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-d5496da0]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-d5496da0]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-d5496da0]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-d5496da0]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-d5496da0]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-d5496da0]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-d5496da0]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-d5496da0],.elevation-2[data-v-d5496da0],.elevation-3[data-v-d5496da0],.elevation-4[data-v-d5496da0],.elevation-5[data-v-d5496da0],.elevation-6[data-v-d5496da0],.elevation-7[data-v-d5496da0],.elevation-8[data-v-d5496da0],.elevation-9[data-v-d5496da0],.elevation-10[data-v-d5496da0],.elevation-11[data-v-d5496da0],.elevation-12[data-v-d5496da0],.elevation-13[data-v-d5496da0],.elevation-14[data-v-d5496da0],.elevation-15[data-v-d5496da0],.elevation-16[data-v-d5496da0],.elevation-17[data-v-d5496da0],.elevation-18[data-v-d5496da0],.elevation-19[data-v-d5496da0],.elevation-20[data-v-d5496da0],.elevation-21[data-v-d5496da0],.elevation-22[data-v-d5496da0],.elevation-23[data-v-d5496da0],.elevation-24[data-v-d5496da0]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-d5496da0]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-d5496da0]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-d5496da0]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-d5496da0]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.sy-select[data-v-d5496da0]{display:flex;flex-direction:column}.v-field[data-v-d5496da0]{position:relative}.v-field--focused .v-icon.arrow[data-v-d5496da0]{transform:rotateX(180deg)}.v-list[data-v-d5496da0]{position:absolute;left:inherit!important;margin-top:-22px;background-color:#fff;max-height:300px;padding:0;box-shadow:0 2px 5px #0000001f,0 2px 10px #00000014;border-radius:4px;overflow-y:auto;z-index:2}.v-list-item[data-v-d5496da0]:hover{background-color:#0000000a}.v-list-item[aria-selected=true][data-v-d5496da0]{background-color:#00000014}.v-icon[data-v-d5496da0]{position:absolute;right:10px;color:#434647}[data-v-d5496da0] .v-field__input{color:#434647}.hidden-label[data-v-d5496da0]{visibility:hidden;position:absolute;white-space:nowrap}.vd-row[data-v-bca44d3d]{display:flex;flex-wrap:wrap}.vd-row .vd-data-list-item-label[data-v-bca44d3d]{align-self:center}.vd-row .vd-data-list-item-label[data-v-bca44d3d]:after{content:":";margin:0 4px}.vd-data-list-item-action-btn.v-btn[data-v-bca44d3d]{min-width:0;margin:0 -1px}.v-icon.v-theme--light[data-v-bca44d3d]{color:#0000008a}.vd-header-loading[data-v-abf44671]{background:transparent}.vd-header-loading[data-v-abf44671] .v-skeleton-loader__heading{width:100%;height:100%;border-radius:35px;margin:0;background:rgba(128,128,128,var(--v-border-opacity))}.vd-header-loading.v-skeleton-loader--tile[data-v-abf44671] .v-skeleton-loader__heading{border-radius:0}[data-v-674d3ac2] ul{list-style:none}.title[data-v-72e0adc9]{font-size:24px!important}.alt-title[data-v-72e0adc9]{font-size:20px!important}.body-text[data-v-72e0adc9]{font-size:16px!important}.link-label[data-v-72e0adc9]{font-size:14px!important}h1[data-v-72e0adc9]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-72e0adc9]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-72e0adc9]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-72e0adc9]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-72e0adc9]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-72e0adc9]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-72e0adc9]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-72e0adc9]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-72e0adc9]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-72e0adc9]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-72e0adc9]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-72e0adc9]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-72e0adc9],.elevation-2[data-v-72e0adc9],.elevation-3[data-v-72e0adc9],.elevation-4[data-v-72e0adc9],.elevation-5[data-v-72e0adc9],.elevation-6[data-v-72e0adc9],.elevation-7[data-v-72e0adc9],.elevation-8[data-v-72e0adc9],.elevation-9[data-v-72e0adc9],.elevation-10[data-v-72e0adc9],.elevation-11[data-v-72e0adc9],.elevation-12[data-v-72e0adc9],.elevation-13[data-v-72e0adc9],.elevation-14[data-v-72e0adc9],.elevation-15[data-v-72e0adc9],.elevation-16[data-v-72e0adc9],.elevation-17[data-v-72e0adc9],.elevation-18[data-v-72e0adc9],.elevation-19[data-v-72e0adc9],.elevation-20[data-v-72e0adc9],.elevation-21[data-v-72e0adc9],.elevation-22[data-v-72e0adc9],.elevation-23[data-v-72e0adc9],.elevation-24[data-v-72e0adc9]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-72e0adc9]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-72e0adc9]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-72e0adc9]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-72e0adc9]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.v-card__title[data-v-72e0adc9]>*{line-height:1em}.v-btn--icon[data-v-72e0adc9]{color:#222324;position:absolute;right:24px}h2[data-v-72e0adc9]{word-break:break-word;text-wrap:balance}.vd-dialog-box-actions-ctn[data-v-72e0adc9]{display:flex;flex-direction:column-reverse;justify-content:stretch;gap:16px}@media screen and (min-width: 600px){.vd-dialog-box-actions-ctn[data-v-72e0adc9]{flex-direction:row}}.vd-download-btn[data-v-dab2a719] .v-btn__content{flex-wrap:wrap}.vd-download-btn[data-v-dab2a719] .v-icon{flex:none}.outlined-style[data-v-dab2a719]{border:1px solid currentcolor}.vd-page-container[data-v-cbb17930]{flex:1;width:100%;max-width:1712px;margin:0 auto}.vd-code[data-v-8a08901d]{font-size:6rem;line-height:6rem;font-weight:400}.vd-external-links-btn[data-v-91ee355f]{max-width:none}.vd-external-links-btn[data-v-91ee355f] .v-btn__content{flex-direction:inherit;justify-content:space-between;width:100%}.vd-external-links-btn .v-icon[data-v-91ee355f]{font-size:1.5rem}.vd-external-links--left[data-v-91ee355f] .v-overlay__content{left:0!important;right:auto!important}.vd-external-links--right[data-v-91ee355f] .v-overlay__content{right:0!important;left:auto!important}.vd-external-links[data-v-91ee355f]>.v-overlay__content{border-radius:0}.vd-external-links-list[data-v-91ee355f]{max-height:248px;overflow-y:auto;border-radius:0}@media only screen and (height <= 340px){.vd-external-links-btn[data-v-91ee355f]{z-index:4!important}}.title[data-v-ca15665e]{font-size:24px!important}.alt-title[data-v-ca15665e]{font-size:20px!important}.body-text[data-v-ca15665e]{font-size:16px!important}.link-label[data-v-ca15665e]{font-size:14px!important}h1[data-v-ca15665e]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-ca15665e]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-ca15665e]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-ca15665e]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-ca15665e]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-ca15665e]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-ca15665e]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-ca15665e]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-ca15665e]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-ca15665e]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-ca15665e]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-ca15665e]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-ca15665e],.elevation-2[data-v-ca15665e],.elevation-3[data-v-ca15665e],.elevation-4[data-v-ca15665e],.elevation-5[data-v-ca15665e],.elevation-6[data-v-ca15665e],.elevation-7[data-v-ca15665e],.elevation-8[data-v-ca15665e],.elevation-9[data-v-ca15665e],.elevation-10[data-v-ca15665e],.elevation-11[data-v-ca15665e],.elevation-12[data-v-ca15665e],.elevation-13[data-v-ca15665e],.elevation-14[data-v-ca15665e],.elevation-15[data-v-ca15665e],.elevation-16[data-v-ca15665e],.elevation-17[data-v-ca15665e],.elevation-18[data-v-ca15665e],.elevation-19[data-v-ca15665e],.elevation-20[data-v-ca15665e],.elevation-21[data-v-ca15665e],.elevation-22[data-v-ca15665e],.elevation-23[data-v-ca15665e],.elevation-24[data-v-ca15665e]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-ca15665e]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-ca15665e]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-ca15665e]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-ca15665e]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.file-item[data-v-ca15665e]{display:flex;flex-direction:column;gap:12px;padding-block:16px;border-bottom:1px solid #dddede}.file-item__title[data-v-ca15665e]{font-size:16px}.file-item__name[data-v-ca15665e]{font-size:.875rem;color:#222324}.file-item__description[data-v-ca15665e]{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap}.file-item__description[data-v-ca15665e]>*{grid-column:1/-1}.file-item__description[data-v-ca15665e]>*:nth-child(1),.file-item__description[data-v-ca15665e]>*:nth-child(2){grid-column:1/2}.file-item__description>.file-item__actions[data-v-ca15665e]{grid-column-start:2;grid-row:span 2}.file-item__content[data-v-ca15665e]{display:flex;gap:16px;align-items:center}.file-item__actions[data-v-ca15665e]{display:flex;flex-direction:column;align-items:end;justify-content:center;margin-left:auto;height:100%;gap:4px}@media screen and (min-width: 960px){.file-item__actions[data-v-ca15665e]{flex-direction:row}}.file-item__action[data-v-ca15665e]{display:flex;justify-content:end;text-transform:unset;padding:.625rem 1.25rem;font-weight:700}.file-item__message[data-v-ca15665e]{font-size:.875rem;color:#545859}.file-item__message-success[data-v-ca15665e],.file-item__message-error[data-v-ca15665e]{margin-top:12px}.file-item__message-error[data-v-ca15665e]{display:flex;align-items:center;gap:16px}.title[data-v-86b61c7a]{font-size:24px!important}.alt-title[data-v-86b61c7a]{font-size:20px!important}.body-text[data-v-86b61c7a]{font-size:16px!important}.link-label[data-v-86b61c7a]{font-size:14px!important}h1[data-v-86b61c7a]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-86b61c7a]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-86b61c7a]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-86b61c7a]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-86b61c7a]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-86b61c7a]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-86b61c7a]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-86b61c7a]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-86b61c7a]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-86b61c7a]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-86b61c7a]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-86b61c7a]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-86b61c7a],.elevation-2[data-v-86b61c7a],.elevation-3[data-v-86b61c7a],.elevation-4[data-v-86b61c7a],.elevation-5[data-v-86b61c7a],.elevation-6[data-v-86b61c7a],.elevation-7[data-v-86b61c7a],.elevation-8[data-v-86b61c7a],.elevation-9[data-v-86b61c7a],.elevation-10[data-v-86b61c7a],.elevation-11[data-v-86b61c7a],.elevation-12[data-v-86b61c7a],.elevation-13[data-v-86b61c7a],.elevation-14[data-v-86b61c7a],.elevation-15[data-v-86b61c7a],.elevation-16[data-v-86b61c7a],.elevation-17[data-v-86b61c7a],.elevation-18[data-v-86b61c7a],.elevation-19[data-v-86b61c7a],.elevation-20[data-v-86b61c7a],.elevation-21[data-v-86b61c7a],.elevation-22[data-v-86b61c7a],.elevation-23[data-v-86b61c7a],.elevation-24[data-v-86b61c7a]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-86b61c7a]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-86b61c7a]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-86b61c7a]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-86b61c7a]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.upload-list[data-v-86b61c7a]{display:flex;flex-direction:column;margin:0;padding:0;list-style:none}.title[data-v-03a3b5b3]{font-size:24px!important}.alt-title[data-v-03a3b5b3]{font-size:20px!important}.body-text[data-v-03a3b5b3]{font-size:16px!important}.link-label[data-v-03a3b5b3]{font-size:14px!important}h1[data-v-03a3b5b3]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-03a3b5b3]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-03a3b5b3]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-03a3b5b3]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-03a3b5b3]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-03a3b5b3]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-03a3b5b3]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-03a3b5b3]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-03a3b5b3]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-03a3b5b3]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-03a3b5b3]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-03a3b5b3]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-03a3b5b3],.elevation-2[data-v-03a3b5b3],.elevation-3[data-v-03a3b5b3],.elevation-4[data-v-03a3b5b3],.elevation-5[data-v-03a3b5b3],.elevation-6[data-v-03a3b5b3],.elevation-7[data-v-03a3b5b3],.elevation-8[data-v-03a3b5b3],.elevation-9[data-v-03a3b5b3],.elevation-10[data-v-03a3b5b3],.elevation-11[data-v-03a3b5b3],.elevation-12[data-v-03a3b5b3],.elevation-13[data-v-03a3b5b3],.elevation-14[data-v-03a3b5b3],.elevation-15[data-v-03a3b5b3],.elevation-16[data-v-03a3b5b3],.elevation-17[data-v-03a3b5b3],.elevation-18[data-v-03a3b5b3],.elevation-19[data-v-03a3b5b3],.elevation-20[data-v-03a3b5b3],.elevation-21[data-v-03a3b5b3],.elevation-22[data-v-03a3b5b3],.elevation-23[data-v-03a3b5b3],.elevation-24[data-v-03a3b5b3]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-03a3b5b3]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-03a3b5b3]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-03a3b5b3]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-03a3b5b3]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.sy-file-upload-placeholder[data-v-03a3b5b3]{display:flex;align-items:center;flex-direction:column}.sy-file-upload-caption[data-v-03a3b5b3]{font-size:.875rem;color:#545859}.sy-file-upload-btn[data-v-03a3b5b3]{border-radius:4px;transition:background .25s;font-weight:700!important;font-size:16px;padding:10px 16px}.title[data-v-8df33257]{font-size:24px!important}.alt-title[data-v-8df33257]{font-size:20px!important}.body-text[data-v-8df33257]{font-size:16px!important}.link-label[data-v-8df33257]{font-size:14px!important}h1[data-v-8df33257]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-8df33257]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-8df33257]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-8df33257]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-8df33257]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-8df33257]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-8df33257]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-8df33257]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-8df33257]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-8df33257]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-8df33257]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-8df33257]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-8df33257],.elevation-2[data-v-8df33257],.elevation-3[data-v-8df33257],.elevation-4[data-v-8df33257],.elevation-5[data-v-8df33257],.elevation-6[data-v-8df33257],.elevation-7[data-v-8df33257],.elevation-8[data-v-8df33257],.elevation-9[data-v-8df33257],.elevation-10[data-v-8df33257],.elevation-11[data-v-8df33257],.elevation-12[data-v-8df33257],.elevation-13[data-v-8df33257],.elevation-14[data-v-8df33257],.elevation-15[data-v-8df33257],.elevation-16[data-v-8df33257],.elevation-17[data-v-8df33257],.elevation-18[data-v-8df33257],.elevation-19[data-v-8df33257],.elevation-20[data-v-8df33257],.elevation-21[data-v-8df33257],.elevation-22[data-v-8df33257],.elevation-23[data-v-8df33257],.elevation-24[data-v-8df33257]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-8df33257]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-8df33257]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-8df33257]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-8df33257]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.sy-file-upload[data-v-8df33257]{cursor:pointer;position:relative;border:1px dashed #0c419a;border-radius:8px;transition:background .25s}.sy-file-upload[data-v-8df33257]:hover,.sy-file-upload[data-v-8df33257]:focus-within,.sy-file-upload.dragover[data-v-8df33257]{background:#e7ecf5}.sy-file-upload.dark-mode[data-v-8df33257]:hover,.sy-file-upload.dark-mode[data-v-8df33257]:focus-within,.sy-file-upload.dark-mode.dragover[data-v-8df33257]{background:#303030}.sy-file-upload.sy-file-upload--disabled[data-v-8df33257]{opacity:.5;cursor:default}.sy-file-upload.sy-file-upload--disabled[data-v-8df33257]:hover,.sy-file-upload.sy-file-upload--disabled[data-v-8df33257]:focus-within,.sy-file-upload.sy-file-upload--disabled.dragover[data-v-8df33257]{background:inherit}.sy-file-upload.sy-file-upload--disabled.dark-mode[data-v-8df33257]:hover,.sy-file-upload.sy-file-upload--disabled.dark-mode[data-v-8df33257]:focus-within,.sy-file-upload.sy-file-upload--disabled.dark-mode.dragover[data-v-8df33257]{background:#303030}.sy-file-upload-input[data-v-8df33257]{position:absolute;width:1px;height:1px;white-space:nowrap;overflow:hidden;clip:rect(1px,1px,1px,1px)}.title[data-v-9639b916]{font-size:24px!important}.alt-title[data-v-9639b916]{font-size:20px!important}.body-text[data-v-9639b916]{font-size:16px!important}.link-label[data-v-9639b916]{font-size:14px!important}h1[data-v-9639b916]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-9639b916]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-9639b916]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-9639b916]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-9639b916]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-9639b916]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-9639b916]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-9639b916]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-9639b916]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-9639b916]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-9639b916]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-9639b916]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-9639b916],.elevation-2[data-v-9639b916],.elevation-3[data-v-9639b916],.elevation-4[data-v-9639b916],.elevation-5[data-v-9639b916],.elevation-6[data-v-9639b916],.elevation-7[data-v-9639b916],.elevation-8[data-v-9639b916],.elevation-9[data-v-9639b916],.elevation-10[data-v-9639b916],.elevation-11[data-v-9639b916],.elevation-12[data-v-9639b916],.elevation-13[data-v-9639b916],.elevation-14[data-v-9639b916],.elevation-15[data-v-9639b916],.elevation-16[data-v-9639b916],.elevation-17[data-v-9639b916],.elevation-18[data-v-9639b916],.elevation-19[data-v-9639b916],.elevation-20[data-v-9639b916],.elevation-21[data-v-9639b916],.elevation-22[data-v-9639b916],.elevation-23[data-v-9639b916],.elevation-24[data-v-9639b916]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-9639b916]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-9639b916]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-9639b916]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-9639b916]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.vd-social-media-links[data-v-9639b916]{display:flex;flex-direction:column}li[data-v-9639b916]{list-style:none}.vd-social-media-links-label.text--primary[data-v-9639b916]{color:#0c419a;font-weight:600}.v-theme--dark .vd-social-media-links-label.text--primary[data-v-9639b916]{color:#fff}.vd-social-media-links-icon[data-v-9639b916]{color:#545859}.v-btn--icon[data-v-9639b916]{width:calc(var(--v-btn-height) + 5px);height:calc(var(--v-btn-height) + 5px);border:0}.v-theme--dark .v-btn--variant-text[data-v-9639b916]:hover{background:#ffffff1a}@media (width >= 768px){.vd-social-media-links-label[data-v-9639b916]{text-align:right}.vd-social-media-links-content[data-v-9639b916]{justify-content:flex-end}}@media (width <= 767px){.vd-social-media-links-label[data-v-9639b916]{text-align:left}.vd-social-media-links-content[data-v-9639b916]{justify-content:flex-start}}.title[data-v-a1074b6c]{font-size:24px!important}.alt-title[data-v-a1074b6c]{font-size:20px!important}.body-text[data-v-a1074b6c]{font-size:16px!important}.link-label[data-v-a1074b6c]{font-size:14px!important}h1[data-v-a1074b6c]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-a1074b6c]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-a1074b6c]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-a1074b6c]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-a1074b6c]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-a1074b6c]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-a1074b6c]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-a1074b6c]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-a1074b6c]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-a1074b6c]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-a1074b6c]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-a1074b6c]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-a1074b6c],.elevation-2[data-v-a1074b6c],.elevation-3[data-v-a1074b6c],.elevation-4[data-v-a1074b6c],.elevation-5[data-v-a1074b6c],.elevation-6[data-v-a1074b6c],.elevation-7[data-v-a1074b6c],.elevation-8[data-v-a1074b6c],.elevation-9[data-v-a1074b6c],.elevation-10[data-v-a1074b6c],.elevation-11[data-v-a1074b6c],.elevation-12[data-v-a1074b6c],.elevation-13[data-v-a1074b6c],.elevation-14[data-v-a1074b6c],.elevation-15[data-v-a1074b6c],.elevation-16[data-v-a1074b6c],.elevation-17[data-v-a1074b6c],.elevation-18[data-v-a1074b6c],.elevation-19[data-v-a1074b6c],.elevation-20[data-v-a1074b6c],.elevation-21[data-v-a1074b6c],.elevation-22[data-v-a1074b6c],.elevation-23[data-v-a1074b6c],.elevation-24[data-v-a1074b6c]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-a1074b6c]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-a1074b6c]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-a1074b6c]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-a1074b6c]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}a[data-v-a1074b6c]{cursor:pointer}.v-btn--icon[data-v-a1074b6c]{border:0}.v-footer[data-v-a1074b6c]{flex-grow:0!important;justify-content:center}.v-footer .container[data-v-a1074b6c]{width:100%;max-width:1712px;margin:0 auto}.vd-footer-bar[data-v-a1074b6c] .vd-footer-bar-links a,.vd-footer-bar[data-v-a1074b6c] p,.vd-footer-bar[data-v-a1074b6c] .text--primary{color:#000000de}.vd-footer-bar[data-v-a1074b6c] .text--secondary{color:#0009}.vd-footer-bar[data-v-a1074b6c] .social .text--primary{color:rgb(var(--v-theme-primary))}.vd-footer-bar[data-v-a1074b6c] .social a.v-btn:hover,.vd-footer-bar[data-v-a1074b6c] button.v-btn:hover{background:#0000000d}.vd-footer-bar[data-v-a1074b6c] a.text--primary{color:rgb(var(--v-theme-primary))}.vd-footer-bar[data-v-a1074b6c] .v-divider{border-color:#2f384d}.vd-footer-bar[data-v-a1074b6c] svg.logo{fill:rgb(var(--v-theme-primary))}.vd-footer-bar[data-v-a1074b6c] .scroll{color:rgb(var(--v-theme-primary))!important}.vd-footer-bar.v-theme--dark[data-v-a1074b6c] .vd-footer-bar-links a{color:#fff}.vd-footer-bar.v-theme--dark[data-v-a1074b6c] p,.vd-footer-bar.v-theme--dark[data-v-a1074b6c] .text--primary{color:#ffffffde}.vd-footer-bar.v-theme--dark[data-v-a1074b6c] .text--secondary{color:#fff9}.vd-footer-bar.v-theme--dark[data-v-a1074b6c] a.text--primary{color:#fff}.vd-footer-bar.v-theme--dark[data-v-a1074b6c] .v-divider{border-color:#fff}.vd-footer-bar.v-theme--dark[data-v-a1074b6c] svg{fill:#fff}.vd-footer-bar-links[data-v-a1074b6c] li{list-style:none;display:flex}.vd-footer-bar-links[data-v-a1074b6c] a{transition:.15s;text-decoration:none;padding-top:1px;border-bottom:1px solid transparent}.vd-footer-bar-links[data-v-a1074b6c] a:hover,.vd-footer-bar-links[data-v-a1074b6c] a:focus{border-color:currentcolor}.vd-footer-bar-links[data-v-a1074b6c] p{padding:1px 0}.v-theme--dark button.v-btn[data-v-a1074b6c]:hover{background:#ffffff1a}.vd-france-connect-btn a[data-v-5bd47a0e]{color:#000091}.vd-france-connect-btn a[data-v-5bd47a0e]:focus{outline-offset:3px}.vd-france-connect-link[data-v-5bd47a0e]{background:#000091}.vd-france-connect-link[data-v-5bd47a0e]:hover{background:#1212ff;transition:all .2s ease-in-out}.vd-france-connect-link[data-v-5bd47a0e]:active{background:#2323ff}.vd-france-connect-link[data-v-5bd47a0e]:focus{outline-offset:3px}.vd-france-connect-btn--dark .vd-france-connect-link[data-v-5bd47a0e]{color:#fff;background-color:#8585f6}.vd-france-connect-btn--dark .vd-france-connect-link[data-v-5bd47a0e]:hover{background-color:#b1b1f9}.vd-france-connect-btn--dark .vd-france-connect-link[data-v-5bd47a0e]:active{background-color:#c6c6fb}.vd-france-connect-btn--dark .vd-france-connect-info-link[data-v-5bd47a0e]{color:#8585f6}.vd-france-connect-info-link[data-v-5bd47a0e]{background-image:linear-gradient(currentcolor,currentcolor);background-position:0% 100%;background-repeat:no-repeat;background-size:100% 1px}.vd-france-connect-info-link[data-v-5bd47a0e]:hover{background-size:100% 2px}[data-v-5bd47a0e] :scope:focus{border-radius:0!important}.cls-2[data-v-51224cf0],.cls-2[data-v-e01c8927]{fill:#0c419a}.title[data-v-8295d36d]{font-size:24px!important}.alt-title[data-v-8295d36d]{font-size:20px!important}.body-text[data-v-8295d36d]{font-size:16px!important}.link-label[data-v-8295d36d]{font-size:14px!important}h1[data-v-8295d36d]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-8295d36d]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-8295d36d]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-8295d36d]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-8295d36d]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-8295d36d]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-8295d36d]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-8295d36d]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-8295d36d]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-8295d36d]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-8295d36d]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-8295d36d]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-8295d36d],.elevation-2[data-v-8295d36d],.elevation-3[data-v-8295d36d],.elevation-4[data-v-8295d36d],.elevation-5[data-v-8295d36d],.elevation-6[data-v-8295d36d],.elevation-7[data-v-8295d36d],.elevation-8[data-v-8295d36d],.elevation-9[data-v-8295d36d],.elevation-10[data-v-8295d36d],.elevation-11[data-v-8295d36d],.elevation-12[data-v-8295d36d],.elevation-13[data-v-8295d36d],.elevation-14[data-v-8295d36d],.elevation-15[data-v-8295d36d],.elevation-16[data-v-8295d36d],.elevation-17[data-v-8295d36d],.elevation-18[data-v-8295d36d],.elevation-19[data-v-8295d36d],.elevation-20[data-v-8295d36d],.elevation-21[data-v-8295d36d],.elevation-22[data-v-8295d36d],.elevation-23[data-v-8295d36d],.elevation-24[data-v-8295d36d]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-8295d36d]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-8295d36d]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-8295d36d]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-8295d36d]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.logo[data-v-8295d36d]{display:flex;height:52px;align-items:center;color:rgb(var(--v-theme-primary));line-height:1.45;font-family:Cabin,Arial,Helvetica,sans-serif;text-decoration:none;cursor:pointer}.logo[data-v-8295d36d] svg{flex-grow:0;flex-shrink:0}.service-title[data-v-8295d36d]{font-size:.875rem;font-weight:500}.service-subtitle[data-v-8295d36d]{font-size:.875rem;font-weight:400}@media screen and (min-width: 990px){.service-title[data-v-8295d36d]{font-size:1.125rem}.service-subtitle[data-v-8295d36d]{font-size:.75rem}}.title[data-v-639c8426]{font-size:24px!important}.alt-title[data-v-639c8426]{font-size:20px!important}.body-text[data-v-639c8426]{font-size:16px!important}.link-label[data-v-639c8426]{font-size:14px!important}h1[data-v-639c8426]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-639c8426]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-639c8426]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-639c8426]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-639c8426]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-639c8426]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-639c8426]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-639c8426]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-639c8426]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-639c8426]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-639c8426]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-639c8426]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-639c8426],.elevation-2[data-v-639c8426],.elevation-3[data-v-639c8426],.elevation-4[data-v-639c8426],.elevation-5[data-v-639c8426],.elevation-6[data-v-639c8426],.elevation-7[data-v-639c8426],.elevation-8[data-v-639c8426],.elevation-9[data-v-639c8426],.elevation-10[data-v-639c8426],.elevation-11[data-v-639c8426],.elevation-12[data-v-639c8426],.elevation-13[data-v-639c8426],.elevation-14[data-v-639c8426],.elevation-15[data-v-639c8426],.elevation-16[data-v-639c8426],.elevation-17[data-v-639c8426],.elevation-18[data-v-639c8426],.elevation-19[data-v-639c8426],.elevation-20[data-v-639c8426],.elevation-21[data-v-639c8426],.elevation-22[data-v-639c8426],.elevation-23[data-v-639c8426],.elevation-24[data-v-639c8426]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-639c8426]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-639c8426]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-639c8426]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-639c8426]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.header[data-v-639c8426]{position:relative;z-index:1}.sticky-header[data-v-639c8426]{background-color:#fff;width:100%;z-index:1000}.inner-header[data-v-639c8426]{display:flex;align-items:center;height:77px;max-width:1712px;margin:0 auto;border-bottom:solid 1px #ced9eb}.header-side[data-v-639c8426]{display:flex;align-items:center;margin-left:auto}@media screen and (width >= 340px){.menu+.header-logo[data-v-639c8426]{padding-left:16px!important}}@media screen and (min-width: 990px){.inner-header[data-v-639c8426]{height:95px}}.title[data-v-82f2559e]{font-size:24px!important}.alt-title[data-v-82f2559e]{font-size:20px!important}.body-text[data-v-82f2559e]{font-size:16px!important}.link-label[data-v-82f2559e]{font-size:14px!important}h1[data-v-82f2559e]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-82f2559e]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-82f2559e]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-82f2559e]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-82f2559e]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-82f2559e]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-82f2559e]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-82f2559e]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-82f2559e]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-82f2559e]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-82f2559e]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-82f2559e]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-82f2559e],.elevation-2[data-v-82f2559e],.elevation-3[data-v-82f2559e],.elevation-4[data-v-82f2559e],.elevation-5[data-v-82f2559e],.elevation-6[data-v-82f2559e],.elevation-7[data-v-82f2559e],.elevation-8[data-v-82f2559e],.elevation-9[data-v-82f2559e],.elevation-10[data-v-82f2559e],.elevation-11[data-v-82f2559e],.elevation-12[data-v-82f2559e],.elevation-13[data-v-82f2559e],.elevation-14[data-v-82f2559e],.elevation-15[data-v-82f2559e],.elevation-16[data-v-82f2559e],.elevation-17[data-v-82f2559e],.elevation-18[data-v-82f2559e],.elevation-19[data-v-82f2559e],.elevation-20[data-v-82f2559e],.elevation-21[data-v-82f2559e],.elevation-22[data-v-82f2559e],.elevation-23[data-v-82f2559e],.elevation-24[data-v-82f2559e]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-82f2559e]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-82f2559e]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-82f2559e]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-82f2559e]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.header-menu-btn[data-v-82f2559e]{text-transform:capitalize;height:77px;width:82px;display:flex;flex-direction:column;align-items:center;flex-shrink:0;justify-content:center;font-weight:700;background-color:rgb(var(--v-theme-primary));color:#fff;border-bottom:solid 1px #ced9eb;transition:color .15s .1s,background-color .15s .1s,border-bottom .15s .1s}.header-menu-btn[data-v-82f2559e]:focus-visible{background-color:#fff;color:rgb(var(--v-theme-primary))}.header-menu-btn__open[data-v-82f2559e]{background-color:#fff;color:rgb(var(--v-theme-primary));border-color:#fff}@media screen and (max-width: 991px){.header-menu-btn__label[data-v-82f2559e]{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}}@media screen and (min-width: 990px){.header-menu-btn[data-v-82f2559e]{height:95px;width:95px}}.title[data-v-8bfe741c]{font-size:24px!important}.alt-title[data-v-8bfe741c]{font-size:20px!important}.body-text[data-v-8bfe741c]{font-size:16px!important}.link-label[data-v-8bfe741c]{font-size:14px!important}h1[data-v-8bfe741c]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-8bfe741c]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-8bfe741c]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-8bfe741c]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-8bfe741c]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-8bfe741c]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-8bfe741c]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-8bfe741c]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-8bfe741c]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-8bfe741c]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-8bfe741c]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-8bfe741c]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-8bfe741c],.elevation-2[data-v-8bfe741c],.elevation-3[data-v-8bfe741c],.elevation-4[data-v-8bfe741c],.elevation-5[data-v-8bfe741c],.elevation-6[data-v-8bfe741c],.elevation-7[data-v-8bfe741c],.elevation-8[data-v-8bfe741c],.elevation-9[data-v-8bfe741c],.elevation-10[data-v-8bfe741c],.elevation-11[data-v-8bfe741c],.elevation-12[data-v-8bfe741c],.elevation-13[data-v-8bfe741c],.elevation-14[data-v-8bfe741c],.elevation-15[data-v-8bfe741c],.elevation-16[data-v-8bfe741c],.elevation-17[data-v-8bfe741c],.elevation-18[data-v-8bfe741c],.elevation-19[data-v-8bfe741c],.elevation-20[data-v-8bfe741c],.elevation-21[data-v-8bfe741c],.elevation-22[data-v-8bfe741c],.elevation-23[data-v-8bfe741c],.elevation-24[data-v-8bfe741c]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-8bfe741c]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-8bfe741c]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-8bfe741c]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-8bfe741c]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.overlay[data-v-8bfe741c]{top:0;right:0;bottom:0;left:0;position:fixed;z-index:1000;background-color:#03102580;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px)}.menu-wrapper[data-v-8bfe741c]{height:100dvh;background-color:#fff;display:flex;flex-direction:column}.header-menu-wrapper[data-v-8bfe741c]{height:calc(100% - 77px);display:grid;position:relative;overflow:auto}.header-menu-wrapper--submenu-open[data-v-8bfe741c]{overflow:clip}@media screen and (min-width: 990px){.menu-wrapper[data-v-8bfe741c]{position:absolute;background-color:transparent}.header-menu-wrapper[data-v-8bfe741c]{width:350px;overflow:visible}.header-menu[data-v-8bfe741c]{background-color:#fff;overflow:hidden auto;height:100%}}.menu-enter-active[data-v-8bfe741c]{transition:opacity .15s ease-in}.menu-enter-active .header-menu-wrapper[data-v-8bfe741c]{transition:transform .1s ease-in}.menu-leave-active[data-v-8bfe741c]{transition:opacity .15s ease-out}.menu-leave-active .header-menu-wrapper[data-v-8bfe741c]{transition:transform .1s ease-out}.menu-enter-from[data-v-8bfe741c],.menu-leave-to[data-v-8bfe741c]{opacity:0}@media screen and (min-width: 990px){.menu-enter-from .header-menu-wrapper[data-v-8bfe741c],.menu-leave-to .header-menu-wrapper[data-v-8bfe741c]{transform:translateY(10px)}}@media (prefers-reduced-motion: reduce){.menu-enter-active[data-v-8bfe741c],.menu-leave-active[data-v-8bfe741c]{transition:opacity 0s}.menu-enter-from .header-menu-wrapper[data-v-8bfe741c],.menu-leave-to .header-menu-wrapper[data-v-8bfe741c]{transform:none}}.title[data-v-eebfe4fb]{font-size:24px!important}.alt-title[data-v-eebfe4fb]{font-size:20px!important}.body-text[data-v-eebfe4fb]{font-size:16px!important}.link-label[data-v-eebfe4fb]{font-size:14px!important}h1[data-v-eebfe4fb]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-eebfe4fb]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-eebfe4fb]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-eebfe4fb]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-eebfe4fb]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-eebfe4fb]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-eebfe4fb]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-eebfe4fb]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-eebfe4fb]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-eebfe4fb]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-eebfe4fb]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-eebfe4fb]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-eebfe4fb],.elevation-2[data-v-eebfe4fb],.elevation-3[data-v-eebfe4fb],.elevation-4[data-v-eebfe4fb],.elevation-5[data-v-eebfe4fb],.elevation-6[data-v-eebfe4fb],.elevation-7[data-v-eebfe4fb],.elevation-8[data-v-eebfe4fb],.elevation-9[data-v-eebfe4fb],.elevation-10[data-v-eebfe4fb],.elevation-11[data-v-eebfe4fb],.elevation-12[data-v-eebfe4fb],.elevation-13[data-v-eebfe4fb],.elevation-14[data-v-eebfe4fb],.elevation-15[data-v-eebfe4fb],.elevation-16[data-v-eebfe4fb],.elevation-17[data-v-eebfe4fb],.elevation-18[data-v-eebfe4fb],.elevation-19[data-v-eebfe4fb],.elevation-20[data-v-eebfe4fb],.elevation-21[data-v-eebfe4fb],.elevation-22[data-v-eebfe4fb],.elevation-23[data-v-eebfe4fb],.elevation-24[data-v-eebfe4fb]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-eebfe4fb]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-eebfe4fb]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-eebfe4fb]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-eebfe4fb]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.header-menu-item[data-v-eebfe4fb]{color:rgb(var(--v-theme-primary));list-style-type:none;margin:0;padding:0;min-height:44px;font-weight:700}.header-menu-item[data-v-eebfe4fb]>a{display:flex;flex-direction:column;padding:16px 50px 16px 20px;text-decoration:none;color:currentcolor}.header-menu-item[data-v-eebfe4fb]>a:hover{text-decoration:underline}.header-menu-item[data-v-eebfe4fb]>a:visited{color:currentcolor}.header-menu-item[data-v-eebfe4fb]>a:first-letter{text-transform:uppercase}.header-menu-item[data-v-eebfe4fb]:hover{background-color:rgb(var(--v-theme-primary));color:#fff}.header-menu-item[data-v-eebfe4fb]:hover>a>*{color:#fff!important}.title[data-v-fe759639]{font-size:24px!important}.alt-title[data-v-fe759639]{font-size:20px!important}.body-text[data-v-fe759639]{font-size:16px!important}.link-label[data-v-fe759639]{font-size:14px!important}h1[data-v-fe759639]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-fe759639]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-fe759639]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-fe759639]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-fe759639]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-fe759639]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-fe759639]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-fe759639]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-fe759639]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-fe759639]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-fe759639]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-fe759639]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-fe759639],.elevation-2[data-v-fe759639],.elevation-3[data-v-fe759639],.elevation-4[data-v-fe759639],.elevation-5[data-v-fe759639],.elevation-6[data-v-fe759639],.elevation-7[data-v-fe759639],.elevation-8[data-v-fe759639],.elevation-9[data-v-fe759639],.elevation-10[data-v-fe759639],.elevation-11[data-v-fe759639],.elevation-12[data-v-fe759639],.elevation-13[data-v-fe759639],.elevation-14[data-v-fe759639],.elevation-15[data-v-fe759639],.elevation-16[data-v-fe759639],.elevation-17[data-v-fe759639],.elevation-18[data-v-fe759639],.elevation-19[data-v-fe759639],.elevation-20[data-v-fe759639],.elevation-21[data-v-fe759639],.elevation-22[data-v-fe759639],.elevation-23[data-v-fe759639],.elevation-24[data-v-fe759639]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-fe759639]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-fe759639]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-fe759639]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-fe759639]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.header-menu-section[data-v-fe759639]{list-style-type:none;padding:0;margin:0}.header-menu-section-title[data-v-fe759639]{padding:40px 16px 8px 20px;border-bottom:1px solid #e0e0e0;font-size:1.1rem;margin-bottom:8px;color:#212529;text-transform:capitalize;font-weight:700}.title[data-v-fa108bc3]{font-size:24px!important}.alt-title[data-v-fa108bc3]{font-size:20px!important}.body-text[data-v-fa108bc3]{font-size:16px!important}.link-label[data-v-fa108bc3]{font-size:14px!important}h1[data-v-fa108bc3]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-fa108bc3]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-fa108bc3]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-fa108bc3]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-fa108bc3]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-fa108bc3]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-fa108bc3]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-fa108bc3]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-fa108bc3]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-fa108bc3]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-fa108bc3]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-fa108bc3]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-fa108bc3],.elevation-2[data-v-fa108bc3],.elevation-3[data-v-fa108bc3],.elevation-4[data-v-fa108bc3],.elevation-5[data-v-fa108bc3],.elevation-6[data-v-fa108bc3],.elevation-7[data-v-fa108bc3],.elevation-8[data-v-fa108bc3],.elevation-9[data-v-fa108bc3],.elevation-10[data-v-fa108bc3],.elevation-11[data-v-fa108bc3],.elevation-12[data-v-fa108bc3],.elevation-13[data-v-fa108bc3],.elevation-14[data-v-fa108bc3],.elevation-15[data-v-fa108bc3],.elevation-16[data-v-fa108bc3],.elevation-17[data-v-fa108bc3],.elevation-18[data-v-fa108bc3],.elevation-19[data-v-fa108bc3],.elevation-20[data-v-fa108bc3],.elevation-21[data-v-fa108bc3],.elevation-22[data-v-fa108bc3],.elevation-23[data-v-fa108bc3],.elevation-24[data-v-fa108bc3]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-fa108bc3]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-fa108bc3]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-fa108bc3]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-fa108bc3]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.sub-menu-btn[data-v-fa108bc3]{display:flex;justify-content:center;flex-direction:column;width:100%;padding:16px 50px 16px 20px;text-align:left;color:rgb(var(--v-theme-primary))}.sub-menu-btn[data-v-fa108bc3]:hover{background-color:rgb(var(--v-theme-primary));color:#fff;text-decoration:underline}.sub-menu-btn[data-v-fa108bc3]:hover>*{color:#fff!important}.sub-menu-btn[data-v-fa108bc3]:first-letter{text-transform:uppercase}.sub-menu-btn__icon[data-v-fa108bc3]{position:absolute;right:20px}@media screen and (max-width: 989px){.sub-menu--open[data-v-fa108bc3]{position:absolute;left:0;top:0;width:100%;height:100%;overflow-y:auto;background-color:#fff;padding-top:40px;z-index:10}.sub-menu--child-open[data-v-fa108bc3]{overflow-y:clip}.sub-menu--open>.sub-menu-btn[data-v-fa108bc3]{padding:0 16px 8px 40px;border-bottom:1px solid #e0e0e0;color:#000;background-color:transparent}.sub-menu--open>.sub-menu-btn[data-v-fa108bc3]:hover{color:#000}.sub-menu--open>.sub-menu-btn[data-v-fa108bc3]:hover>*{color:#000!important}.sub-menu--open>.sub-menu-btn[data-v-fa108bc3]>.sub-menu-btn__icon{left:10px;right:auto}}@media screen and (min-width: 990px){.sub-menu-btn[data-v-fa108bc3]{position:relative}.sub-menu--open>.sub-menu-btn[data-v-fa108bc3]{background-color:rgb(var(--v-theme-primary));color:#fff;transition:color .15s linear,background-color .15s linear}.sub-menu--open>.sub-menu-btn[data-v-fa108bc3]>*{color:#fff!important}.sub-menu-content-wrapper[data-v-fa108bc3]{position:absolute;top:0;bottom:0;left:350px}.sub-menu-content[data-v-fa108bc3]{width:351px;height:100%;background:#f9f9f9;border-left:1px solid #e0e0e0;overflow:hidden auto}.sub-menu-content>.sub-menu--open .sub-menu-content[data-v-fa108bc3]{left:700px}.sub-menu-content>.sub-menu--open .sub-menu-content>.sub-menu--open .sub-menu-content[data-v-fa108bc3]{left:1050px}.slide-fade-enter-active[data-v-fa108bc3]{transition:opacity .17s ease-out,transform .17s ease-out}.slide-fade-leave-active[data-v-fa108bc3]{transition:opacity .08s ease-in,transform .08s ease-in}.slide-fade-enter-from[data-v-fa108bc3],.slide-fade-leave-to[data-v-fa108bc3]{opacity:0;transform:translate(-10px)}}@media screen and (min-width: 990px) and (prefers-reduced-motion){.slide-fade-enter-active[data-v-fa108bc3],.slide-fade-leave-active[data-v-fa108bc3]{transition:none}}.title[data-v-a37442cd]{font-size:24px!important}.alt-title[data-v-a37442cd]{font-size:20px!important}.body-text[data-v-a37442cd]{font-size:16px!important}.link-label[data-v-a37442cd]{font-size:14px!important}h1[data-v-a37442cd]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-a37442cd]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-a37442cd]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-a37442cd]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-a37442cd]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-a37442cd]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-a37442cd]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-a37442cd]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-a37442cd]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-a37442cd]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-a37442cd]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-a37442cd]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-a37442cd],.elevation-2[data-v-a37442cd],.elevation-3[data-v-a37442cd],.elevation-4[data-v-a37442cd],.elevation-5[data-v-a37442cd],.elevation-6[data-v-a37442cd],.elevation-7[data-v-a37442cd],.elevation-8[data-v-a37442cd],.elevation-9[data-v-a37442cd],.elevation-10[data-v-a37442cd],.elevation-11[data-v-a37442cd],.elevation-12[data-v-a37442cd],.elevation-13[data-v-a37442cd],.elevation-14[data-v-a37442cd],.elevation-15[data-v-a37442cd],.elevation-16[data-v-a37442cd],.elevation-17[data-v-a37442cd],.elevation-18[data-v-a37442cd],.elevation-19[data-v-a37442cd],.elevation-20[data-v-a37442cd],.elevation-21[data-v-a37442cd],.elevation-22[data-v-a37442cd],.elevation-23[data-v-a37442cd],.elevation-24[data-v-a37442cd]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-a37442cd]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-a37442cd]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-a37442cd]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-a37442cd]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.horizontal-menu[data-v-a37442cd]{display:flex;align-items:center;max-width:1712px;margin:0 auto}.horizontal-menu__tabs[data-v-a37442cd]{flex:1 1 0}.horizontal-menu__item[data-v-a37442cd]{cursor:pointer}.horizontal-menu__item-link[data-v-a37442cd]{font-size:.875rem;font-weight:700}.v-tab-item--selected span[data-v-a37442cd]{color:#fff}.inner-vertical-menu[data-v-1d872dbc]{display:flex;flex-direction:column;height:100%}.inner-vertical-menu__main-content[data-v-1d872dbc]{flex:1}.title[data-v-e2d11fb5]{font-size:24px!important}.alt-title[data-v-e2d11fb5]{font-size:20px!important}.body-text[data-v-e2d11fb5]{font-size:16px!important}.link-label[data-v-e2d11fb5]{font-size:14px!important}h1[data-v-e2d11fb5]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-e2d11fb5]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-e2d11fb5]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-e2d11fb5]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-e2d11fb5]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-e2d11fb5]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-e2d11fb5]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-e2d11fb5]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-e2d11fb5]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-e2d11fb5]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-e2d11fb5]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-e2d11fb5]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-e2d11fb5],.elevation-2[data-v-e2d11fb5],.elevation-3[data-v-e2d11fb5],.elevation-4[data-v-e2d11fb5],.elevation-5[data-v-e2d11fb5],.elevation-6[data-v-e2d11fb5],.elevation-7[data-v-e2d11fb5],.elevation-8[data-v-e2d11fb5],.elevation-9[data-v-e2d11fb5],.elevation-10[data-v-e2d11fb5],.elevation-11[data-v-e2d11fb5],.elevation-12[data-v-e2d11fb5],.elevation-13[data-v-e2d11fb5],.elevation-14[data-v-e2d11fb5],.elevation-15[data-v-e2d11fb5],.elevation-16[data-v-e2d11fb5],.elevation-17[data-v-e2d11fb5],.elevation-18[data-v-e2d11fb5],.elevation-19[data-v-e2d11fb5],.elevation-20[data-v-e2d11fb5],.elevation-21[data-v-e2d11fb5],.elevation-22[data-v-e2d11fb5],.elevation-23[data-v-e2d11fb5],.elevation-24[data-v-e2d11fb5]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-e2d11fb5]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-e2d11fb5]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-e2d11fb5]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-e2d11fb5]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.toolbar[data-v-e2d11fb5]{background:#e7ecf5;position:relative;display:flex;align-items:center;justify-content:center;z-index:100}.toolbar .container[data-v-e2d11fb5]{width:100%;max-height:45px;max-width:1712px;display:flex;align-items:center;justify-content:space-between}@media (width <= 768px){.toolbar .container[data-v-e2d11fb5]{max-height:41px}}.toolbar .container[data-v-e2d11fb5] ul{display:flex;align-items:center;justify-content:flex-start;list-style:none;text-decoration:none}.toolbar .container[data-v-e2d11fb5] ul li{text-align:center}.toolbar .container[data-v-e2d11fb5] ul>li>a{display:block;color:#07275c;text-decoration:none;padding:10px 16px;cursor:pointer}.toolbar .container[data-v-e2d11fb5] ul>li>a:hover{text-decoration:underline}@media (width <= 768px){.toolbar .container[data-v-e2d11fb5] ul>li>a{font-size:12px}}.toolbar .container[data-v-e2d11fb5] .sy-input-select{width:100%;display:flex;justify-content:space-between}@media (width <= 768px){.toolbar .container[data-v-e2d11fb5] .sy-input-select{font-size:12px}.toolbar .container[data-v-e2d11fb5] .sy-input-select span{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}}.toolbar #left-menu ul>li>a[data-v-e2d11fb5]{font-weight:700;color:#07275c}.toolbar #left-menu ul>li>a[data-v-e2d11fb5]:hover{text-decoration:none}.toolbar #left-menu li[data-v-e2d11fb5]:first-child{min-width:95px;background:transparent}@media (max-width: 990px){.toolbar #left-menu li[data-v-e2d11fb5]:first-child{min-width:82px}}.toolbar #left-menu li[data-v-e2d11fb5]:nth-child(2){z-index:2;max-height:44px;min-width:260px}@media (width <= 768px){.toolbar #left-menu li[data-v-e2d11fb5]:nth-child(2){max-height:38px;min-width:152px}}.toolbar #left-menu li:nth-child(2) a[data-v-e2d11fb5]{max-height:44px}@media (width <= 768px){.toolbar #left-menu li:nth-child(2) a[data-v-e2d11fb5]{max-height:38px}}.toolbar #left-menu li[data-v-e2d11fb5]:nth-child(3){background:transparent}.toolbar #left-menu li:first-child a[data-v-e2d11fb5]:hover,.toolbar #left-menu li:first-child.active[data-v-e2d11fb5]{background:#ed76b3}.toolbar #left-menu li:nth-child(2) a[data-v-e2d11fb5]:hover,.toolbar #left-menu .highlight[data-v-e2d11fb5]{background:#66c9ec}.toolbar #left-menu li:nth-child(3) a[data-v-e2d11fb5]:hover,.toolbar #left-menu li:nth-child(3).active[data-v-e2d11fb5]{background:#f0b323}@media (width <= 1000px){.toolbar #right-menu[data-v-e2d11fb5]{display:none}}.toolbar #right-menu ul[data-v-e2d11fb5]{white-space:nowrap;overflow:hidden}.toolbar #right-menu ul li[data-v-e2d11fb5]{display:inline-block}.toolbar[data-v-e2d11fb5] .v-input .v-input__details{display:none}.toolbar[data-v-e2d11fb5] .v-input .v-input__control{font-weight:700}.toolbar[data-v-e2d11fb5] .v-input .v-input__control .text-color{color:#051a3e!important}.toolbar[data-v-e2d11fb5] .v-input .v-input__control .v-icon{margin-left:10px}.toolbar[data-v-e2d11fb5] .v-input .v-input__control .custom-select{display:flex;justify-content:space-between;width:100%}.toolbar[data-v-e2d11fb5] .v-input .v-input__control .custom-select span{max-width:260px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}@media (width <= 768px){.toolbar[data-v-e2d11fb5] .v-input .v-input__control .custom-select span{max-width:182px}}@media (width <= 768px){.toolbar[data-v-e2d11fb5] .v-input .v-input__control{font-size:12px}}.toolbar[data-v-e2d11fb5] .v-input .v-list{top:34px!important;left:-16px!important;text-align:left;min-width:260px;max-width:fit-content!important;border-radius:0}@media (width <= 768px){.toolbar[data-v-e2d11fb5] .v-input .v-list{position:fixed;top:38px!important;left:0!important;min-width:100%!important;box-shadow:none!important}}.toolbar[data-v-e2d11fb5] .v-input .v-list .v-list-item--density-default.v-list-item--one-line{min-height:40px}.toolbar .overlay[data-v-e2d11fb5]{position:fixed;display:block;top:0;left:0;width:100%;height:100%;background-color:#03102580;cursor:default;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px);z-index:1}@media (width <= 768px){.toolbar .overlay[data-v-e2d11fb5]{display:none}}.right-menu-item[data-v-e2d11fb5]{color:#051a3e}.title[data-v-06ec7485]{font-size:24px!important}.alt-title[data-v-06ec7485]{font-size:20px!important}.body-text[data-v-06ec7485]{font-size:16px!important}.link-label[data-v-06ec7485]{font-size:14px!important}h1[data-v-06ec7485]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-06ec7485]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-06ec7485]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-06ec7485]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-06ec7485]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-06ec7485]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-06ec7485]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-06ec7485]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-06ec7485]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-06ec7485]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-06ec7485]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-06ec7485]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-06ec7485],.elevation-2[data-v-06ec7485],.elevation-3[data-v-06ec7485],.elevation-4[data-v-06ec7485],.elevation-5[data-v-06ec7485],.elevation-6[data-v-06ec7485],.elevation-7[data-v-06ec7485],.elevation-8[data-v-06ec7485],.elevation-9[data-v-06ec7485],.elevation-10[data-v-06ec7485],.elevation-11[data-v-06ec7485],.elevation-12[data-v-06ec7485],.elevation-13[data-v-06ec7485],.elevation-14[data-v-06ec7485],.elevation-15[data-v-06ec7485],.elevation-16[data-v-06ec7485],.elevation-17[data-v-06ec7485],.elevation-18[data-v-06ec7485],.elevation-19[data-v-06ec7485],.elevation-20[data-v-06ec7485],.elevation-21[data-v-06ec7485],.elevation-22[data-v-06ec7485],.elevation-23[data-v-06ec7485],.elevation-24[data-v-06ec7485]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-06ec7485]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-06ec7485]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-06ec7485]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-06ec7485]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.v-list-item[data-v-06ec7485]:hover{background-color:#00000001}.vd-lang-btn[data-v-06ec7485]{font-size:16px;--hover-color: rgba(tokens.$colors-overlay, .5);text-transform:none;letter-spacing:inherit}.vd-logo-brand-section .vd-title-container[data-v-ca95c6a8]{overflow:hidden}.vd-logo-brand-section[data-v-ca95c6a8] .vd-title{line-height:1.45!important}.vd-logo-brand-section .vd-compte-entreprise-title[data-v-ca95c6a8]{font-weight:700!important}.vd-logo-brand-section .vd-compte-entreprise-title span[data-v-ca95c6a8]{color:#cd545b}.vd-logo-brand-section[data-v-ca95c6a8] img{width:auto;height:100%;flex:none}.vd-logo-brand-section svg[data-v-ca95c6a8],.vd-logo-brand-section .vd-home-link[data-v-ca95c6a8]{flex:none}.vd-logo-brand-section .vd-home-link[data-v-ca95c6a8]{cursor:pointer}img[data-v-aea9e609]{max-height:290px}.title[data-v-8c3682ea]{font-size:24px!important}.alt-title[data-v-8c3682ea]{font-size:20px!important}.body-text[data-v-8c3682ea]{font-size:16px!important}.link-label[data-v-8c3682ea]{font-size:14px!important}h1[data-v-8c3682ea]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-8c3682ea]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-8c3682ea]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-8c3682ea]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-8c3682ea]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-8c3682ea]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-8c3682ea]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-8c3682ea]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-8c3682ea]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-8c3682ea]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-8c3682ea]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-8c3682ea]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-8c3682ea],.elevation-2[data-v-8c3682ea],.elevation-3[data-v-8c3682ea],.elevation-4[data-v-8c3682ea],.elevation-5[data-v-8c3682ea],.elevation-6[data-v-8c3682ea],.elevation-7[data-v-8c3682ea],.elevation-8[data-v-8c3682ea],.elevation-9[data-v-8c3682ea],.elevation-10[data-v-8c3682ea],.elevation-11[data-v-8c3682ea],.elevation-12[data-v-8c3682ea],.elevation-13[data-v-8c3682ea],.elevation-14[data-v-8c3682ea],.elevation-15[data-v-8c3682ea],.elevation-16[data-v-8c3682ea],.elevation-17[data-v-8c3682ea],.elevation-18[data-v-8c3682ea],.elevation-19[data-v-8c3682ea],.elevation-20[data-v-8c3682ea],.elevation-21[data-v-8c3682ea],.elevation-22[data-v-8c3682ea],.elevation-23[data-v-8c3682ea],.elevation-24[data-v-8c3682ea]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-8c3682ea]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-8c3682ea]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-8c3682ea]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-8c3682ea]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.v-messages__message--success[data-v-8c3682ea],.v-field--active .v-messages__message--success[data-v-8c3682ea]{color:#224e2d!important}.v-messages__message--error[data-v-8c3682ea],.v-field--active .v-messages__message--error[data-v-8c3682ea]{color:#b33f2e}[data-v-8c3682ea] .v-field.v-field--active .v-label.v-field-label--floating{opacity:1}.multi-line[data-v-8c3682ea]{white-space:pre-line!important}.vd-number-field[data-v-8c3682ea]{max-width:296px}.vd-key-field[data-v-8c3682ea]{width:104px;flex:none;margin-left:2%}.custom-counter[data-v-8c3682ea]{color:#0000008a}.vd-nir-field[data-v-8c3682ea] .v-input__append-inner,.vd-tooltip-icon[data-v-8c3682ea]{flex:none;color:#0000008a}[data-v-8c3682ea] .v-overlay__content{background:#545859f2!important}.vd-nir-field--outlined[data-v-8c3682ea] .v-messages.error--text{padding:6px}.vd-nir-field[data-v-8c3682ea]{container-name:nirfieldwrapper}[data-v-8c3682ea] .v-input__append{margin-inline-start:0!important}[data-v-8c3682ea] .vd-number-field>.v-input__prepend{margin-right:0!important}@media screen and (width <= 360px){[data-v-8c3682ea] .vd-key-field>.v-input__prepend{margin-inline-end:0!important}}[data-v-8c3682ea] .v-text-field .v-input__details{padding-inline:0!important;flex:none!important}[data-v-8c3682ea] .v-text-field .v-input__details .v-messages{color:#000!important}@container nirFieldwrapper (max-width: 300px){.vd-nir-field__fields-wrapper[data-v-8c3682ea]>.v-input__control{justify-content:start;flex-wrap:wrap;gap:4px;margin-bottom:4px}.vd-nir-field__fields-wrapper[data-v-8c3682ea]>.v-input__control .vd-number-field{flex:100% 0 0}}@media screen and (width <= 360px){.vd-nir-field__fields-wrapper[data-v-8c3682ea]>.v-input__control{justify-content:start;flex-wrap:wrap;gap:4px;margin-bottom:4px}.vd-nir-field__fields-wrapper[data-v-8c3682ea]>.v-input__control .vd-number-field{flex:100% 0 0}}.v-text-field .v-input__append-inner[data-v-8c3682ea]{padding-left:0!important}[data-v-8c3682ea] .v-text-field>.v-input__control>.v-input__slot>.v-text-field__slot{width:min-content!important}img[data-v-8e9d618a]{max-height:290px}.title[data-v-f2e50ac9]{font-size:24px!important}.alt-title[data-v-f2e50ac9]{font-size:20px!important}.body-text[data-v-f2e50ac9]{font-size:16px!important}.link-label[data-v-f2e50ac9]{font-size:14px!important}h1[data-v-f2e50ac9]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-f2e50ac9]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-f2e50ac9]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-f2e50ac9]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-f2e50ac9]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-f2e50ac9]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-f2e50ac9]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-f2e50ac9]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-f2e50ac9]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-f2e50ac9]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-f2e50ac9]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-f2e50ac9]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-f2e50ac9],.elevation-2[data-v-f2e50ac9],.elevation-3[data-v-f2e50ac9],.elevation-4[data-v-f2e50ac9],.elevation-5[data-v-f2e50ac9],.elevation-6[data-v-f2e50ac9],.elevation-7[data-v-f2e50ac9],.elevation-8[data-v-f2e50ac9],.elevation-9[data-v-f2e50ac9],.elevation-10[data-v-f2e50ac9],.elevation-11[data-v-f2e50ac9],.elevation-12[data-v-f2e50ac9],.elevation-13[data-v-f2e50ac9],.elevation-14[data-v-f2e50ac9],.elevation-15[data-v-f2e50ac9],.elevation-16[data-v-f2e50ac9],.elevation-17[data-v-f2e50ac9],.elevation-18[data-v-f2e50ac9],.elevation-19[data-v-f2e50ac9],.elevation-20[data-v-f2e50ac9],.elevation-21[data-v-f2e50ac9],.elevation-22[data-v-f2e50ac9],.elevation-23[data-v-f2e50ac9],.elevation-24[data-v-f2e50ac9]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-f2e50ac9]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-f2e50ac9]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-f2e50ac9]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-f2e50ac9]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.vd-notification-content[data-v-f2e50ac9]{display:flex;align-items:center}.vd-notification-bar[data-v-f2e50ac9] .v-snack__wrapper{padding:16px;min-width:0;max-width:none}[data-v-f2e50ac9] .v-snackbar__content{padding:16px!important}[data-v-f2e50ac9] .v-snackbar__actions{margin-inline-end:10px}.vd-notification-bar.v-snackbar--vertical[data-v-f2e50ac9] .v-snackbar--vertical .v-snackbar__wrapper .v-snackbar__actions{width:100%!important;align-self:auto}.vd-notification-bar.v-snackbar--vertical[data-v-f2e50ac9] .v-snack__wrapper{align-items:stretch;flex-direction:row}.vd-notification-bar.v-snackbar--vertical[data-v-f2e50ac9] .v-snack__action{align-self:stretch;align-items:stretch;flex-direction:column}.vd-notification-bar.v-snackbar--vertical[data-v-f2e50ac9] .v-snackbar__content{margin:0;width:100%;display:flex}.vd-notification-bar.v-snackbar--vertical[data-v-f2e50ac9] .vd-notification-content{flex-direction:column;display:flex}.long-text[data-v-f2e50ac9] .v-snackbar__actions{width:98%!important}.short-text[data-v-f2e50ac9] .v-snackbar__actions{width:48%!important}.action-section-long-text[data-v-f2e50ac9]{justify-content:space-around}.action-section-short-text[data-v-f2e50ac9]{justify-content:end!important}.title[data-v-c7bb2d94]{font-size:24px!important}.alt-title[data-v-c7bb2d94]{font-size:20px!important}.body-text[data-v-c7bb2d94]{font-size:16px!important}.link-label[data-v-c7bb2d94]{font-size:14px!important}h1[data-v-c7bb2d94]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-c7bb2d94]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-c7bb2d94]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-c7bb2d94]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-c7bb2d94]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-c7bb2d94]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-c7bb2d94]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-c7bb2d94]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-c7bb2d94]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-c7bb2d94]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-c7bb2d94]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-c7bb2d94]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-c7bb2d94],.elevation-2[data-v-c7bb2d94],.elevation-3[data-v-c7bb2d94],.elevation-4[data-v-c7bb2d94],.elevation-5[data-v-c7bb2d94],.elevation-6[data-v-c7bb2d94],.elevation-7[data-v-c7bb2d94],.elevation-8[data-v-c7bb2d94],.elevation-9[data-v-c7bb2d94],.elevation-10[data-v-c7bb2d94],.elevation-11[data-v-c7bb2d94],.elevation-12[data-v-c7bb2d94],.elevation-13[data-v-c7bb2d94],.elevation-14[data-v-c7bb2d94],.elevation-15[data-v-c7bb2d94],.elevation-16[data-v-c7bb2d94],.elevation-17[data-v-c7bb2d94],.elevation-18[data-v-c7bb2d94],.elevation-19[data-v-c7bb2d94],.elevation-20[data-v-c7bb2d94],.elevation-21[data-v-c7bb2d94],.elevation-22[data-v-c7bb2d94],.elevation-23[data-v-c7bb2d94],.elevation-24[data-v-c7bb2d94]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-c7bb2d94]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-c7bb2d94]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-c7bb2d94]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-c7bb2d94]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.vd-password .v-btn--icon.v-btn--density-default[data-v-c7bb2d94]{width:var(--v-btn-height);height:var(--v-btn-height)}.vd-password[data-v-c7bb2d94] .v-field.v-field--variant-underlined .v-field__append-inner{padding-top:0;padding-bottom:0;display:flex;align-items:center}.vd-password[data-v-c7bb2d94] .v-field.v-field--variant-underlined .v-field__input{padding-top:calc(var(--v-field-input-padding-top) - 15px)}.v-messages__message--success[data-v-c7bb2d94],.v-field--active .v-messages__message--success[data-v-c7bb2d94]{color:#224e2d!important}.period-field[data-v-fc0430c8]{display:flex;gap:10px}.phone-field-container[data-v-1abcba51]{display:flex;flex-direction:column;align-items:flex-start;width:100%}.phone-field[data-v-1abcba51]{width:100%}.custom-select[data-v-1abcba51]{width:30%}@media (width >= 600px){.phone-field-container[data-v-1abcba51]{flex-direction:row;align-items:center}.custom-select[data-v-1abcba51]{margin-right:1rem;margin-bottom:0;min-width:144px}.phone-field[data-v-1abcba51]{min-width:350px}}[data-v-1abcba51] .v-list{position:absolute;left:inherit!important;background-color:#fff;max-height:300px;padding:0;box-shadow:0 2px 5px #0000001f,0 2px 10px #00000014;border-radius:4px;overflow-y:auto;z-index:2}.tooltip-wrapper[data-v-fdf9eaf9]{position:absolute;top:0;left:20px}.tooltip-wrapper[data-v-fdf9eaf9]:before{content:"";position:absolute;top:100%;left:50%;transform:translate(-50%);border:6px solid transparent;border-top-color:#000000b3}.tooltip[data-v-fdf9eaf9]{position:absolute;bottom:0;background-color:#000000b3;color:#fff;padding:4px 8px;border-radius:4px;will-change:transform}.title[data-v-efdf07f6]{font-size:24px!important}.alt-title[data-v-efdf07f6]{font-size:20px!important}.body-text[data-v-efdf07f6]{font-size:16px!important}.link-label[data-v-efdf07f6]{font-size:14px!important}h1[data-v-efdf07f6]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-efdf07f6]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-efdf07f6]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-efdf07f6]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-efdf07f6]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-efdf07f6]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-efdf07f6]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-efdf07f6]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-efdf07f6]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-efdf07f6]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-efdf07f6]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-efdf07f6]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-efdf07f6],.elevation-2[data-v-efdf07f6],.elevation-3[data-v-efdf07f6],.elevation-4[data-v-efdf07f6],.elevation-5[data-v-efdf07f6],.elevation-6[data-v-efdf07f6],.elevation-7[data-v-efdf07f6],.elevation-8[data-v-efdf07f6],.elevation-9[data-v-efdf07f6],.elevation-10[data-v-efdf07f6],.elevation-11[data-v-efdf07f6],.elevation-12[data-v-efdf07f6],.elevation-13[data-v-efdf07f6],.elevation-14[data-v-efdf07f6],.elevation-15[data-v-efdf07f6],.elevation-16[data-v-efdf07f6],.elevation-17[data-v-efdf07f6],.elevation-18[data-v-efdf07f6],.elevation-19[data-v-efdf07f6],.elevation-20[data-v-efdf07f6],.elevation-21[data-v-efdf07f6],.elevation-22[data-v-efdf07f6],.elevation-23[data-v-efdf07f6],.elevation-24[data-v-efdf07f6]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-efdf07f6]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-efdf07f6]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-efdf07f6]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-efdf07f6]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.wrapper[data-v-efdf07f6]{--sy-track-height: 4px;--sy-thumb-size: 20px;--sy-thumb-color: var(--3564209b);--sy-track-color: var(--3e537b74);--sy-track-fill-color: var(--71c52d03);position:relative;margin-inline:var(--sy-thumb-size);width:calc(100% - var(--sy-thumb-size) * 2)}.track[data-v-efdf07f6]{height:32px;cursor:pointer}.track[data-v-efdf07f6]:before{content:"";position:absolute;top:50%;left:0;transform:translateY(-50%);width:100%;height:var(--sy-track-height);background-color:var(--sy-track-color)}.thumb-min[data-v-efdf07f6],.thumb-max[data-v-efdf07f6]{cursor:pointer;position:absolute;top:50%;left:0;z-index:2;width:40px;height:40px;border-radius:50%;transition:left .1s;will-change:left}.thumb-min[data-v-efdf07f6]:before,.thumb-max[data-v-efdf07f6]:before{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:var(--sy-thumb-size);height:var(--sy-thumb-size);background-color:var(--sy-thumb-color);border-radius:50%;transform-origin:bottom right;transition:transform .1s;opacity:.4}.thumb-min[data-v-efdf07f6]:after,.thumb-max[data-v-efdf07f6]:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:var(--sy-thumb-size);height:var(--sy-thumb-size);background-color:var(--sy-thumb-color);opacity:.4;border-radius:50%;transform-origin:bottom right;transition:transform .1s ease-in,opacity .1s ease-in}.thumb-min[data-v-efdf07f6]:focus:before,.thumb-min[data-v-efdf07f6]:hover:before,.thumb-max[data-v-efdf07f6]:focus:before,.thumb-max[data-v-efdf07f6]:hover:before{transform:scale(2)}.inner-thumb[data-v-efdf07f6]{position:absolute;top:50%;left:50%;z-index:2;transform:translate(-50%,-50%);width:var(--sy-thumb-size);height:var(--sy-thumb-size);background-color:var(--sy-thumb-color);border-radius:50%;box-shadow:0 1px 5px #0000001f,0 2px 2px #00000024,0 3px 1px -2px #0003}.thumb-min[data-v-efdf07f6]{transform:translate(calc((20px + var(--sy-thumb-size) / 2) * -1),-50%)}.thumb-max[data-v-efdf07f6]{transform:translate(calc((var(--sy-thumb-size) - 40px) / 2),-50%)}.filled-track[data-v-efdf07f6]{position:absolute;top:50%;left:0;transform:translateY(-50%);width:100%;height:var(--sy-track-height);background-color:var(--sy-track-fill-color);transition:all .1s}.animate-click[data-v-efdf07f6]:after{transform:scale(2);opacity:.4;transition:transform .25s ease-out,opacity .25s ease-out}.fake-thumb[data-v-efdf07f6]{visibility:hidden;transition:none!important;cursor:default;z-index:-1;-webkit-user-select:none;user-select:none}.title[data-v-d8875a0f]{font-size:24px!important}.alt-title[data-v-d8875a0f]{font-size:20px!important}.body-text[data-v-d8875a0f]{font-size:16px!important}.link-label[data-v-d8875a0f]{font-size:14px!important}h1[data-v-d8875a0f]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-d8875a0f]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-d8875a0f]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-d8875a0f]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-d8875a0f]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-d8875a0f]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-d8875a0f]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-d8875a0f]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-d8875a0f]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-d8875a0f]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-d8875a0f]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-d8875a0f]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-d8875a0f],.elevation-2[data-v-d8875a0f],.elevation-3[data-v-d8875a0f],.elevation-4[data-v-d8875a0f],.elevation-5[data-v-d8875a0f],.elevation-6[data-v-d8875a0f],.elevation-7[data-v-d8875a0f],.elevation-8[data-v-d8875a0f],.elevation-9[data-v-d8875a0f],.elevation-10[data-v-d8875a0f],.elevation-11[data-v-d8875a0f],.elevation-12[data-v-d8875a0f],.elevation-13[data-v-d8875a0f],.elevation-14[data-v-d8875a0f],.elevation-15[data-v-d8875a0f],.elevation-16[data-v-d8875a0f],.elevation-17[data-v-d8875a0f],.elevation-18[data-v-d8875a0f],.elevation-19[data-v-d8875a0f],.elevation-20[data-v-d8875a0f],.elevation-21[data-v-d8875a0f],.elevation-22[data-v-d8875a0f],.elevation-23[data-v-d8875a0f],.elevation-24[data-v-d8875a0f]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-d8875a0f]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-d8875a0f]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-d8875a0f]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-d8875a0f]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.vd-emotion-picker[data-v-d8875a0f]{border:0}.v-rating .v-btn[data-v-d8875a0f]{transition:.2s;border:1px solid transparent;opacity:1;background:transparent}.v-rating .v-btn[data-v-d8875a0f] .v-btn__content{flex-direction:column}.v-rating .v-btn .text-secondary[data-v-d8875a0f]{color:#434647!important}.v-rating .v-btn.sad[data-v-d8875a0f]{color:#862f22!important}.v-rating .v-btn.neutral[data-v-d8875a0f]{color:#906b15!important}.v-rating .v-btn.happy[data-v-d8875a0f]{color:#006755!important}.v-rating .v-btn--active.v-btn--disabled .v-icon[data-v-d8875a0f]{color:currentcolor!important}.v-rating .v-btn[data-v-d8875a0f]:focus,.v-rating .v-btn--active[data-v-d8875a0f]{border-color:currentcolor!important}.v-rating .v-btn[data-v-d8875a0f]:hover .v-btn__overlay,.v-rating .v-btn[data-v-d8875a0f]:focus .v-btn__overlay,.v-rating .v-btn--active[data-v-d8875a0f] .v-btn__overlay{display:none}.v-rating .v-btn:hover.sad[data-v-d8875a0f],.v-rating .v-btn:focus.sad[data-v-d8875a0f],.v-rating .v-btn--active.sad[data-v-d8875a0f]{background:#fcedeb}.v-rating .v-btn:hover.neutral[data-v-d8875a0f],.v-rating .v-btn:focus.neutral[data-v-d8875a0f],.v-rating .v-btn--active.neutral[data-v-d8875a0f]{background:#fdf7e9}.v-rating .v-btn:hover.happy[data-v-d8875a0f],.v-rating .v-btn:focus.happy[data-v-d8875a0f],.v-rating .v-btn--active.happy[data-v-d8875a0f]{background:#e5f7f4}.v-theme--light.v-btn--disabled[data-v-d8875a0f] .v-icon{color:#76797a!important}.vd-number-picker[data-v-c3142f79]{border:0}.vd-btn-answer.v-btn.v-btn--disabled[data-v-c3142f79]{opacity:1}.title[data-v-14e84c18]{font-size:24px!important}.alt-title[data-v-14e84c18]{font-size:20px!important}.body-text[data-v-14e84c18]{font-size:16px!important}.link-label[data-v-14e84c18]{font-size:14px!important}h1[data-v-14e84c18]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-14e84c18]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-14e84c18]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-14e84c18]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-14e84c18]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-14e84c18]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-14e84c18]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-14e84c18]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-14e84c18]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-14e84c18]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-14e84c18]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-14e84c18]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-14e84c18],.elevation-2[data-v-14e84c18],.elevation-3[data-v-14e84c18],.elevation-4[data-v-14e84c18],.elevation-5[data-v-14e84c18],.elevation-6[data-v-14e84c18],.elevation-7[data-v-14e84c18],.elevation-8[data-v-14e84c18],.elevation-9[data-v-14e84c18],.elevation-10[data-v-14e84c18],.elevation-11[data-v-14e84c18],.elevation-12[data-v-14e84c18],.elevation-13[data-v-14e84c18],.elevation-14[data-v-14e84c18],.elevation-15[data-v-14e84c18],.elevation-16[data-v-14e84c18],.elevation-17[data-v-14e84c18],.elevation-18[data-v-14e84c18],.elevation-19[data-v-14e84c18],.elevation-20[data-v-14e84c18],.elevation-21[data-v-14e84c18],.elevation-22[data-v-14e84c18],.elevation-23[data-v-14e84c18],.elevation-24[data-v-14e84c18]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-14e84c18]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-14e84c18]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-14e84c18]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-14e84c18]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.vd-stars-picker[data-v-14e84c18]{border:0}.v-rating .v-icon[data-v-14e84c18]{width:52px!important;height:36px!important}.v-rating .v-icon--disabled.text-primary[data-v-14e84c18]{color:#0c419a!important}.v-rating .v-icon.text-blue-lighten[data-v-14e84c18],.v-rating .v-icon--disabled.text-blue-lighten[data-v-14e84c18]{color:#9eb3d7!important}.title[data-v-19edec6a]{font-size:24px!important}.alt-title[data-v-19edec6a]{font-size:20px!important}.body-text[data-v-19edec6a]{font-size:16px!important}.link-label[data-v-19edec6a]{font-size:14px!important}h1[data-v-19edec6a]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-19edec6a]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-19edec6a]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-19edec6a]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-19edec6a]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-19edec6a]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-19edec6a]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-19edec6a]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-19edec6a]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-19edec6a]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-19edec6a]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-19edec6a]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-19edec6a],.elevation-2[data-v-19edec6a],.elevation-3[data-v-19edec6a],.elevation-4[data-v-19edec6a],.elevation-5[data-v-19edec6a],.elevation-6[data-v-19edec6a],.elevation-7[data-v-19edec6a],.elevation-8[data-v-19edec6a],.elevation-9[data-v-19edec6a],.elevation-10[data-v-19edec6a],.elevation-11[data-v-19edec6a],.elevation-12[data-v-19edec6a],.elevation-13[data-v-19edec6a],.elevation-14[data-v-19edec6a],.elevation-15[data-v-19edec6a],.elevation-16[data-v-19edec6a],.elevation-17[data-v-19edec6a],.elevation-18[data-v-19edec6a],.elevation-19[data-v-19edec6a],.elevation-20[data-v-19edec6a],.elevation-21[data-v-19edec6a],.elevation-22[data-v-19edec6a],.elevation-23[data-v-19edec6a],.elevation-24[data-v-19edec6a]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-19edec6a]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-19edec6a]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-19edec6a]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-19edec6a]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.alert[data-v-19edec6a]{padding:16px}.alert-icon[data-v-19edec6a]{border-radius:50%}[data-v-19edec6a] .v-alert__underlay{display:none}[data-v-19edec6a] .v-alert__close{align-self:center}[data-v-19edec6a] .v-btn--variant-text .v-btn__overlay{background:transparent!important}.alert-icon[data-v-19edec6a] .v-icon__svg{height:1.5rem!important}.alert-close-btn[data-v-19edec6a]{cursor:pointer;line-height:0}.alert-close-btn .v-btn__overlay[data-v-19edec6a]{display:none}.v-btn[data-v-19edec6a]{text-transform:none;font-weight:700;font-size:.75rem;letter-spacing:normal}@media screen and (width <= 440px){.alert[data-v-19edec6a]{display:flex;flex-direction:column;background-color:#fff}.alert[data-v-19edec6a] .v-alert__content{align-self:flex-start!important;margin-top:24px}.alert[data-v-19edec6a] .v-alert__close{margin-top:16px;align-self:flex-end}.alert .v-alert__prepend>.v-icon[data-v-19edec6a]{background:none!important}}@media screen and (width >= 441px){.alert .alert-icon[data-v-19edec6a]{width:3.5rem!important;height:3.5rem!important;display:grid;place-items:center}}.v-alert.alert--warning.v-alert--variant-tonal[data-v-19edec6a]{background:#fcf0d3!important;color:#222324!important}.v-alert.alert--warning.v-alert--variant-tonal[data-v-19edec6a] .v-alert__border{border-color:#60480e!important;opacity:1!important;border-inline-start-width:4px}.v-alert.alert--warning.v-alert--variant-outlined[data-v-19edec6a]{background:transparent!important}.v-alert.alert--warning.v-alert--variant-outlined[data-v-19edec6a] .v-alert__border{border-color:#60480e!important;opacity:1!important}.v-alert.alert--warning .v-alert__prepend>.v-icon[data-v-19edec6a],.v-alert.text-warning .v-alert__prepend>.v-icon[data-v-19edec6a]{background:#fdf7e9}.v-alert.alert--warning .v-alert__prepend>.v-icon[data-v-19edec6a] svg,.v-alert.text-warning .v-alert__prepend>.v-icon[data-v-19edec6a] svg{fill:#60480e}.v-alert.text-warning[data-v-19edec6a]{color:#60480e!important;border-color:#60480e!important}.v-alert.alert--success.v-alert--variant-tonal[data-v-19edec6a]{background:#cceee8!important;color:#222324!important}.v-alert.alert--success.v-alert--variant-tonal[data-v-19edec6a] .v-alert__border{border-color:#224e2d!important;opacity:1!important;border-inline-start-width:4px}.v-alert.alert--success.v-alert--variant-outlined[data-v-19edec6a]{background:transparent!important}.v-alert.alert--success.v-alert--variant-outlined[data-v-19edec6a] .v-alert__border{border-color:#224e2d!important;opacity:1!important}.v-alert.alert--success .v-alert__prepend>.v-icon[data-v-19edec6a],.v-alert.text-success .v-alert__prepend>.v-icon[data-v-19edec6a]{background:#e5f7f4}.v-alert.alert--success .v-alert__prepend>.v-icon[data-v-19edec6a] svg,.v-alert.text-success .v-alert__prepend>.v-icon[data-v-19edec6a] svg{fill:#224e2d}.v-alert.text-success[data-v-19edec6a]{color:#224e2d!important;border-color:#224e2d!important}.v-alert.alert--error.v-alert--variant-tonal[data-v-19edec6a]{background:#f9dcd7!important;color:#222324!important}.v-alert.alert--error.v-alert--variant-tonal[data-v-19edec6a] .v-alert__border{border-color:#b33f2e!important;opacity:1!important;border-inline-start-width:4px}.v-alert.alert--error.v-alert--variant-outlined[data-v-19edec6a]{background:transparent!important}.v-alert.alert--error.v-alert--variant-outlined[data-v-19edec6a] .v-alert__border{border-color:#b33f2e!important;opacity:1!important}.v-alert.alert--error .v-alert__prepend>.v-icon[data-v-19edec6a],.v-alert.text-error .v-alert__prepend>.v-icon[data-v-19edec6a]{background:#fcedeb}.v-alert.alert--error .v-alert__prepend>.v-icon[data-v-19edec6a] svg,.v-alert.text-error .v-alert__prepend>.v-icon[data-v-19edec6a] svg{fill:#b33f2e}.v-alert.text-error[data-v-19edec6a]{color:#b33f2e!important;border-color:#b33f2e!important}.v-alert.alert--info.v-alert--variant-tonal[data-v-19edec6a]{background:#ced9eb!important;color:#222324!important}.v-alert.alert--info.v-alert--variant-tonal[data-v-19edec6a] .v-alert__border{border-color:#0c419a!important;opacity:1!important;border-inline-start-width:4px}.v-alert.alert--info.v-alert--variant-outlined[data-v-19edec6a]{background:transparent!important}.v-alert.alert--info.v-alert--variant-outlined[data-v-19edec6a] .v-alert__border{border-color:#0c419a!important;opacity:1!important}.v-alert.alert--info .v-alert__prepend>.v-icon[data-v-19edec6a],.v-alert.text-info .v-alert__prepend>.v-icon[data-v-19edec6a]{background:#e7ecf5}.v-alert.alert--info .v-alert__prepend>.v-icon[data-v-19edec6a] svg,.v-alert.text-info .v-alert__prepend>.v-icon[data-v-19edec6a] svg{fill:#0c419a}.v-alert.text-info[data-v-19edec6a]{color:#0c419a!important;border-color:#0c419a!important}.title[data-v-86fce8e6]{font-size:24px!important}.alt-title[data-v-86fce8e6]{font-size:20px!important}.body-text[data-v-86fce8e6]{font-size:16px!important}.link-label[data-v-86fce8e6]{font-size:14px!important}h1[data-v-86fce8e6]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-86fce8e6]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-86fce8e6]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-86fce8e6]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-86fce8e6]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-86fce8e6]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-86fce8e6]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-86fce8e6]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-86fce8e6]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-86fce8e6]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-86fce8e6]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-86fce8e6]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-86fce8e6],.elevation-2[data-v-86fce8e6],.elevation-3[data-v-86fce8e6],.elevation-4[data-v-86fce8e6],.elevation-5[data-v-86fce8e6],.elevation-6[data-v-86fce8e6],.elevation-7[data-v-86fce8e6],.elevation-8[data-v-86fce8e6],.elevation-9[data-v-86fce8e6],.elevation-10[data-v-86fce8e6],.elevation-11[data-v-86fce8e6],.elevation-12[data-v-86fce8e6],.elevation-13[data-v-86fce8e6],.elevation-14[data-v-86fce8e6],.elevation-15[data-v-86fce8e6],.elevation-16[data-v-86fce8e6],.elevation-17[data-v-86fce8e6],.elevation-18[data-v-86fce8e6],.elevation-19[data-v-86fce8e6],.elevation-20[data-v-86fce8e6],.elevation-21[data-v-86fce8e6],.elevation-22[data-v-86fce8e6],.elevation-23[data-v-86fce8e6],.elevation-24[data-v-86fce8e6]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-86fce8e6]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-86fce8e6]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-86fce8e6]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-86fce8e6]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}[data-v-86fce8e6] .v-btn-group{height:auto!important}[data-v-86fce8e6] .v-btn-group .v-btn__content{display:flex;width:100%;justify-content:space-between}[data-v-86fce8e6] .v-btn-group .v-btn:not(:first-child){border-inline-start:inherit}[data-v-86fce8e6] .v-btn-group .v-btn:last-child{border-end-end-radius:4px;border-start-end-radius:4px;margin-right:0}[data-v-86fce8e6] .v-btn-group .v-btn:first-child{border-start-start-radius:4px;border-end-start-radius:4px;margin-right:8px}.select-btn-field-toggle[data-v-86fce8e6]{background:none!important;padding-left:0!important}.select-btn-field-toggle .v-btn[data-v-86fce8e6]{background:#fff;border-width:1px!important;min-width:48px!important;text-wrap:auto;text-align:left;padding-top:0!important;padding-bottom:0!important}.select-btn-field-toggle .v-btn.v-btn--active[data-v-86fce8e6]:before{opacity:0!important}.select-btn-field-toggle .v-btn[data-v-86fce8e6] .v-btn__content{flex-shrink:1!important;padding:5px 0!important}.select-btn-field-toggle .v-icon[data-v-86fce8e6]{height:1.5rem;width:1.5rem}.select-btn-field-toggle.flex-column .v-btn[data-v-86fce8e6]{border-radius:4px!important;border-width:1px!important}.select-btn-field-toggle.flex-column .select-list-item+.select-list-item .v-btn[data-v-86fce8e6]{margin-top:8px}.select-btn-field-toggle .select-list-item[data-v-86fce8e6]{all:unset;display:contents}.select-btn-field-toggle.theme--dark .v-btn[data-v-86fce8e6]{background:#1e1e1e}.select-btn-field-toggle:not(.v-btn-toggle--group) .v-btn.v-btn[data-v-86fce8e6]{border-color:#0c419a!important}.select-btn-field-toggle:not(.v-btn-toggle--group) .v-btn.v-btn.text-error[data-v-86fce8e6]{border-color:#b33f2e!important}.select-btn-field-toggle[data-v-86fce8e6] .v-btn--disabled{opacity:1}.select-btn-field-toggle[data-v-86fce8e6] .v-btn--disabled.v-btn--variant-flat .v-btn__overlay{opacity:0}.select-btn-field-toggle[data-v-86fce8e6] .bg-primary{--v-theme-overlay-multiplier: 1}.title[data-v-aa139979]{font-size:24px!important}.alt-title[data-v-aa139979]{font-size:20px!important}.body-text[data-v-aa139979]{font-size:16px!important}.link-label[data-v-aa139979]{font-size:14px!important}h1[data-v-aa139979]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-aa139979]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-aa139979]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-aa139979]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-aa139979]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-aa139979]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-aa139979]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-aa139979]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-aa139979]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-aa139979]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-aa139979]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-aa139979]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-aa139979],.elevation-2[data-v-aa139979],.elevation-3[data-v-aa139979],.elevation-4[data-v-aa139979],.elevation-5[data-v-aa139979],.elevation-6[data-v-aa139979],.elevation-7[data-v-aa139979],.elevation-8[data-v-aa139979],.elevation-9[data-v-aa139979],.elevation-10[data-v-aa139979],.elevation-11[data-v-aa139979],.elevation-12[data-v-aa139979],.elevation-13[data-v-aa139979],.elevation-14[data-v-aa139979],.elevation-15[data-v-aa139979],.elevation-16[data-v-aa139979],.elevation-17[data-v-aa139979],.elevation-18[data-v-aa139979],.elevation-19[data-v-aa139979],.elevation-20[data-v-aa139979],.elevation-21[data-v-aa139979],.elevation-22[data-v-aa139979],.elevation-23[data-v-aa139979],.elevation-24[data-v-aa139979]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-aa139979]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-aa139979]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-aa139979]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-aa139979]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.vd-skip-link[data-v-aa139979]{z-index:150;position:fixed;top:0;right:0;transition:none;width:100%;background:#fff;outline:none;border:2px solid #051a3e}.vd-sub-header[data-v-69f0b82b]{overflow-x:auto}.vd-sub-header-back-btn[data-v-69f0b82b]{margin:0 -6px}.vd-data-list-group[data-v-69f0b82b],.vd-sub-header-informations[data-v-69f0b82b]{max-width:none}.vd-data-list-group[data-v-69f0b82b] .vd-data-list{max-width:200px}.vd-data-list-group[data-v-69f0b82b] .vd-data-list:not(:last-child){margin-right:80px!important}.vd-data-list-group[data-v-69f0b82b] .vd-data-list .vd-key{display:inline-block;font-size:.75rem!important}.vd-data-list-group[data-v-69f0b82b] .vd-data-list .vd-data-list-item-label{color:#ffffffb3!important}.vd-data-list-group[data-v-69f0b82b] .vd-data-list .vd-data-list-item-action-btn{color:#fff!important}.vd-subheader-loading[data-v-69f0b82b]{background:transparent}.vd-subheader-loading[data-v-69f0b82b] .v-skeleton-loader__button{margin:0;min-height:28px;height:auto;background:rgba(255,255,255,var(--v-border-opacity))}.title[data-v-eae274b3]{font-size:24px!important}.alt-title[data-v-eae274b3]{font-size:20px!important}.body-text[data-v-eae274b3]{font-size:16px!important}.link-label[data-v-eae274b3]{font-size:14px!important}h1[data-v-eae274b3]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-eae274b3]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-eae274b3]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-eae274b3]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-eae274b3]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-eae274b3]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-eae274b3]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-eae274b3]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-eae274b3]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-eae274b3]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-eae274b3]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-eae274b3]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-eae274b3],.elevation-2[data-v-eae274b3],.elevation-3[data-v-eae274b3],.elevation-4[data-v-eae274b3],.elevation-5[data-v-eae274b3],.elevation-6[data-v-eae274b3],.elevation-7[data-v-eae274b3],.elevation-8[data-v-eae274b3],.elevation-9[data-v-eae274b3],.elevation-10[data-v-eae274b3],.elevation-11[data-v-eae274b3],.elevation-12[data-v-eae274b3],.elevation-13[data-v-eae274b3],.elevation-14[data-v-eae274b3],.elevation-15[data-v-eae274b3],.elevation-16[data-v-eae274b3],.elevation-17[data-v-eae274b3],.elevation-18[data-v-eae274b3],.elevation-19[data-v-eae274b3],.elevation-20[data-v-eae274b3],.elevation-21[data-v-eae274b3],.elevation-22[data-v-eae274b3],.elevation-23[data-v-eae274b3],.elevation-24[data-v-eae274b3]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-eae274b3]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-eae274b3]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-eae274b3]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-eae274b3]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.vd-user-icon[data-v-eae274b3]{width:40px;height:40px;background:#eee;border-radius:50%}.vd-user-icon svg[data-v-eae274b3],.vd-user-icon .v-icon__svg[data-v-eae274b3]{width:24px;height:24px}
|
|
1
|
+
.v-btn{text-transform:inherit!important;font-weight:700!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.v-btn.v-tab{text-transform:uppercase!important}.title[data-v-9fdffc72]{font-size:24px!important}.alt-title[data-v-9fdffc72]{font-size:20px!important}.body-text[data-v-9fdffc72]{font-size:16px!important}.link-label[data-v-9fdffc72]{font-size:14px!important}h1[data-v-9fdffc72]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-9fdffc72]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-9fdffc72]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-9fdffc72]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-9fdffc72]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-9fdffc72]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-9fdffc72]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-9fdffc72]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-9fdffc72]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-9fdffc72]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-9fdffc72]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-9fdffc72]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-9fdffc72],.elevation-2[data-v-9fdffc72],.elevation-3[data-v-9fdffc72],.elevation-4[data-v-9fdffc72],.elevation-5[data-v-9fdffc72],.elevation-6[data-v-9fdffc72],.elevation-7[data-v-9fdffc72],.elevation-8[data-v-9fdffc72],.elevation-9[data-v-9fdffc72],.elevation-10[data-v-9fdffc72],.elevation-11[data-v-9fdffc72],.elevation-12[data-v-9fdffc72],.elevation-13[data-v-9fdffc72],.elevation-14[data-v-9fdffc72],.elevation-15[data-v-9fdffc72],.elevation-16[data-v-9fdffc72],.elevation-17[data-v-9fdffc72],.elevation-18[data-v-9fdffc72],.elevation-19[data-v-9fdffc72],.elevation-20[data-v-9fdffc72],.elevation-21[data-v-9fdffc72],.elevation-22[data-v-9fdffc72],.elevation-23[data-v-9fdffc72],.elevation-24[data-v-9fdffc72]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-9fdffc72]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-9fdffc72]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-9fdffc72]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-9fdffc72]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}[data-v-9fdffc72] .v-field__input input::placeholder,[data-v-9fdffc72] input.v-field__input::placeholder,[data-v-9fdffc72] textarea.v-field__input::placeholder{opacity:0}.warning-field[data-v-9fdffc72] .v-input__details>.v-icon,.warning-field[data-v-9fdffc72] .v-input__prepend>.v-icon,.warning-field[data-v-9fdffc72] .v-input__append>.v-icon{opacity:1!important}.warning-field[data-v-9fdffc72] .v-field,.warning-field[data-v-9fdffc72] .v-field .v-field__outline{color:#60480e!important}.warning-field[data-v-9fdffc72] .v-messages{opacity:1!important}.warning-field[data-v-9fdffc72] .v-messages .v-messages__message{color:#60480e!important}.error-field[data-v-9fdffc72] .v-input__control,.error-field[data-v-9fdffc72] .v-messages__message,.v-field--active .error-field[data-v-9fdffc72]{color:#b33f2e!important}.success-field[data-v-9fdffc72] .v-input__details>.v-icon,.success-field[data-v-9fdffc72] .v-input__prepend>.v-icon,.success-field[data-v-9fdffc72] .v-input__append>.v-icon{opacity:1!important}.success-field[data-v-9fdffc72] .v-field,.success-field[data-v-9fdffc72] .v-field .v-field__outline{color:#224e2d!important}.success-field[data-v-9fdffc72] .v-messages{opacity:1!important}.success-field[data-v-9fdffc72] .v-messages .v-messages__message{color:#224e2d!important}.title[data-v-3dfeb86a]{font-size:24px!important}.alt-title[data-v-3dfeb86a]{font-size:20px!important}.body-text[data-v-3dfeb86a]{font-size:16px!important}.link-label[data-v-3dfeb86a]{font-size:14px!important}h1[data-v-3dfeb86a]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-3dfeb86a]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-3dfeb86a]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-3dfeb86a]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-3dfeb86a]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-3dfeb86a]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-3dfeb86a]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-3dfeb86a]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-3dfeb86a]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-3dfeb86a]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-3dfeb86a]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-3dfeb86a]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-3dfeb86a],.elevation-2[data-v-3dfeb86a],.elevation-3[data-v-3dfeb86a],.elevation-4[data-v-3dfeb86a],.elevation-5[data-v-3dfeb86a],.elevation-6[data-v-3dfeb86a],.elevation-7[data-v-3dfeb86a],.elevation-8[data-v-3dfeb86a],.elevation-9[data-v-3dfeb86a],.elevation-10[data-v-3dfeb86a],.elevation-11[data-v-3dfeb86a],.elevation-12[data-v-3dfeb86a],.elevation-13[data-v-3dfeb86a],.elevation-14[data-v-3dfeb86a],.elevation-15[data-v-3dfeb86a],.elevation-16[data-v-3dfeb86a],.elevation-17[data-v-3dfeb86a],.elevation-18[data-v-3dfeb86a],.elevation-19[data-v-3dfeb86a],.elevation-20[data-v-3dfeb86a],.elevation-21[data-v-3dfeb86a],.elevation-22[data-v-3dfeb86a],.elevation-23[data-v-3dfeb86a],.elevation-24[data-v-3dfeb86a]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-3dfeb86a]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-3dfeb86a]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-3dfeb86a]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-3dfeb86a]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}[data-v-3dfeb86a] .v-icon__svg{cursor:default}.warning-field[data-v-3dfeb86a] .v-input__details>.v-icon,.warning-field[data-v-3dfeb86a] .v-input__prepend>.v-icon,.warning-field[data-v-3dfeb86a] .v-input__append>.v-icon{opacity:1!important}.warning-field[data-v-3dfeb86a] .v-field,.warning-field[data-v-3dfeb86a] .v-field .v-field__outline{color:#60480e!important}.warning-field[data-v-3dfeb86a] .v-messages{opacity:1!important}.warning-field[data-v-3dfeb86a] .v-messages .v-messages__message{color:#60480e!important}.error-field[data-v-3dfeb86a] .v-input__control,.error-field[data-v-3dfeb86a] .v-messages__message,.v-field--active .error-field[data-v-3dfeb86a]{color:#b33f2e!important}.success-field[data-v-3dfeb86a] .v-input__details>.v-icon,.success-field[data-v-3dfeb86a] .v-input__prepend>.v-icon,.success-field[data-v-3dfeb86a] .v-input__append>.v-icon{opacity:1!important}.success-field[data-v-3dfeb86a] .v-field,.success-field[data-v-3dfeb86a] .v-field .v-field__outline{color:#224e2d!important}.success-field[data-v-3dfeb86a] .v-messages{opacity:1!important}.success-field[data-v-3dfeb86a] .v-messages .v-messages__message{color:#224e2d!important}.title[data-v-8e962e1b]{font-size:24px!important}.alt-title[data-v-8e962e1b]{font-size:20px!important}.body-text[data-v-8e962e1b]{font-size:16px!important}.link-label[data-v-8e962e1b]{font-size:14px!important}h1[data-v-8e962e1b]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-8e962e1b]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-8e962e1b]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-8e962e1b]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-8e962e1b]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-8e962e1b]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-8e962e1b]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-8e962e1b]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-8e962e1b]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-8e962e1b]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-8e962e1b]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-8e962e1b]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-8e962e1b],.elevation-2[data-v-8e962e1b],.elevation-3[data-v-8e962e1b],.elevation-4[data-v-8e962e1b],.elevation-5[data-v-8e962e1b],.elevation-6[data-v-8e962e1b],.elevation-7[data-v-8e962e1b],.elevation-8[data-v-8e962e1b],.elevation-9[data-v-8e962e1b],.elevation-10[data-v-8e962e1b],.elevation-11[data-v-8e962e1b],.elevation-12[data-v-8e962e1b],.elevation-13[data-v-8e962e1b],.elevation-14[data-v-8e962e1b],.elevation-15[data-v-8e962e1b],.elevation-16[data-v-8e962e1b],.elevation-17[data-v-8e962e1b],.elevation-18[data-v-8e962e1b],.elevation-19[data-v-8e962e1b],.elevation-20[data-v-8e962e1b],.elevation-21[data-v-8e962e1b],.elevation-22[data-v-8e962e1b],.elevation-23[data-v-8e962e1b],.elevation-24[data-v-8e962e1b]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-8e962e1b]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-8e962e1b]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-8e962e1b]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-8e962e1b]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.label-hidden-on-focus:focus+label[data-v-8e962e1b]{display:none}.dp-width[data-v-8e962e1b]{width:var(--16095d78)}.v-messages__message--success[data-v-8e962e1b] .v-input__control,.v-messages__message--success[data-v-8e962e1b] .v-messages__message{color:#224e2d!important;--v-medium-emphasis-opacity: 1}.v-field--active .v-messages__message--success[data-v-8e962e1b]{color:#224e2d!important}.v-messages__message--error[data-v-8e962e1b] .v-input__control,.v-messages__message--error[data-v-8e962e1b] .v-messages__message,.v-field--active .v-messages__message--error[data-v-8e962e1b]{color:#b33f2e!important}.v-messages__message--warning[data-v-8e962e1b] .v-input__control{color:#60480e!important;--v-medium-emphasis-opacity: 1}.v-messages__message--warning[data-v-8e962e1b] .v-messages__message,.v-field--active .v-messages__message--warning[data-v-8e962e1b]{color:#60480e!important}[data-v-8e962e1b] .v-btn__content{font-size:19px;font-weight:700}[data-v-8e962e1b] .v-messages{opacity:1}[data-v-8e962e1b] .v-field--dirty,[data-v-8e962e1b] .v-field--focused{opacity:1!important;--v-medium-emphasis-opacity: 1}.date-picker-container[data-v-8e962e1b]{max-width:100%;position:relative}.date-picker-container[data-v-8e962e1b] .v-date-picker{max-width:445px;position:absolute;top:56px;left:0;z-index:2;box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f!important}[data-v-8e962e1b] .v-date-picker-month__day--selected{opacity:1}.fade-enter-active[data-v-8e962e1b],.fade-leave-active[data-v-8e962e1b]{transition:opacity .5s ease}.fade-enter-from[data-v-8e962e1b],.fade-leave-to[data-v-8e962e1b]{opacity:0}.v-btn.v-theme--light[data-v-86fe77d5] .v-btn__underlay,.v-btn.v-theme--light[data-v-86fe77d5] .v-btn__overlay{display:none}.vd-back-to-top-btn[data-v-316d8462]{position:sticky;z-index:999;opacity:1;float:right}.v-btn--variant-outlined[data-v-316d8462]{background:#fff}.title[data-v-a63146a8]{font-size:24px!important}.alt-title[data-v-a63146a8]{font-size:20px!important}.body-text[data-v-a63146a8]{font-size:16px!important}.link-label[data-v-a63146a8]{font-size:14px!important}h1[data-v-a63146a8]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-a63146a8]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-a63146a8]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-a63146a8]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-a63146a8]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-a63146a8]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-a63146a8]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-a63146a8]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-a63146a8]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-a63146a8]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-a63146a8]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-a63146a8]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-a63146a8],.elevation-2[data-v-a63146a8],.elevation-3[data-v-a63146a8],.elevation-4[data-v-a63146a8],.elevation-5[data-v-a63146a8],.elevation-6[data-v-a63146a8],.elevation-7[data-v-a63146a8],.elevation-8[data-v-a63146a8],.elevation-9[data-v-a63146a8],.elevation-10[data-v-a63146a8],.elevation-11[data-v-a63146a8],.elevation-12[data-v-a63146a8],.elevation-13[data-v-a63146a8],.elevation-14[data-v-a63146a8],.elevation-15[data-v-a63146a8],.elevation-16[data-v-a63146a8],.elevation-17[data-v-a63146a8],.elevation-18[data-v-a63146a8],.elevation-19[data-v-a63146a8],.elevation-20[data-v-a63146a8],.elevation-21[data-v-a63146a8],.elevation-22[data-v-a63146a8],.elevation-23[data-v-a63146a8],.elevation-24[data-v-a63146a8]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-a63146a8]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-a63146a8]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-a63146a8]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-a63146a8]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.sy-chip-success[data-v-a63146a8]{color:#224e2d!important;border:1px solid #224e2d!important}.sy-chip-error[data-v-a63146a8]{color:#b33f2e!important;border:1px solid #b33f2e!important}.sy-chip-info[data-v-a63146a8]{color:#0c419a!important;border:1px solid #0c419a!important}.sy-chip-warning[data-v-a63146a8]{color:#60480e!important;border:1px solid #60480e!important}.overflow-chip[data-v-a63146a8]{border:1px solid #e5f6fc!important}.overflow-btn[data-v-a63146a8] .v-btn__overlay{display:none}.vd-panel[data-v-a4e2c3b6]{background-color:transparent}.vd-panel-title[data-v-a4e2c3b6] .v-expansion-panel-title__overlay{background:transparent!important}.vd-panel-text[data-v-a4e2c3b6] .v-expansion-panel-text__wrapper{padding:0}li[data-v-a4e2c3b6]{list-style:none}a[data-v-a4e2c3b6]{transition:.15s;padding-top:1px;border-bottom:1px solid transparent;color:#000}a[data-v-a4e2c3b6]:hover,a[data-v-a4e2c3b6]:focus{border-color:currentcolor}.v-theme--dark a[data-v-a4e2c3b6]{color:#fff}.vd-collapse-list a[data-v-a4e2c3b6]{color:#000}.vd-collapse-list[data-v-a4e2c3b6] .text-subtitle-1{font-size:1.125rem!important;letter-spacing:.0015em!important;line-height:1.75rem}.vd-collapse-list.theme--dark[data-v-a4e2c3b6] h4,.vd-collapse-list.theme--dark[data-v-a4e2c3b6] ul,.vd-collapse-list.theme--dark[data-v-a4e2c3b6] a,.vd-collapse-list.theme--dark[data-v-a4e2c3b6] button{color:#fff!important}.vd-collapse-list-mobile[data-v-a4e2c3b6] .text-subtitle-2{font-size:1rem!important;letter-spacing:.001em!important;line-height:1.375rem;font-weight:600}.vd-collapse-list-mobile[data-v-a4e2c3b6] button{color:red!important}.vd-collapse-list-mobile[data-v-a4e2c3b6] .v-icon{color:#0000008a!important}.vd-collapse-list-mobile.theme--dark[data-v-a4e2c3b6] button{color:#fff!important}ul[data-v-4af557c1]{list-style:none}a[data-v-4af557c1]{position:relative;transition:none}a[data-v-4af557c1]:before{content:"";width:2px;background:#0009;position:absolute;left:0;height:100%}a[data-v-4af557c1]:after{content:"";width:4px;border-radius:0 2px 2px 0;background:currentcolor;position:absolute;left:0;height:100%;opacity:0}a.active[data-v-4af557c1]:after{opacity:1}.vd-cookie-table[data-v-395de867] table{table-layout:fixed}.title[data-v-b88c0006]{font-size:24px!important}.alt-title[data-v-b88c0006]{font-size:20px!important}.body-text[data-v-b88c0006]{font-size:16px!important}.link-label[data-v-b88c0006]{font-size:14px!important}h1[data-v-b88c0006]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-b88c0006]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-b88c0006]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-b88c0006]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-b88c0006]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-b88c0006]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-b88c0006]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-b88c0006]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-b88c0006]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-b88c0006]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-b88c0006]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-b88c0006]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-b88c0006],.elevation-2[data-v-b88c0006],.elevation-3[data-v-b88c0006],.elevation-4[data-v-b88c0006],.elevation-5[data-v-b88c0006],.elevation-6[data-v-b88c0006],.elevation-7[data-v-b88c0006],.elevation-8[data-v-b88c0006],.elevation-9[data-v-b88c0006],.elevation-10[data-v-b88c0006],.elevation-11[data-v-b88c0006],.elevation-12[data-v-b88c0006],.elevation-13[data-v-b88c0006],.elevation-14[data-v-b88c0006],.elevation-15[data-v-b88c0006],.elevation-16[data-v-b88c0006],.elevation-17[data-v-b88c0006],.elevation-18[data-v-b88c0006],.elevation-19[data-v-b88c0006],.elevation-20[data-v-b88c0006],.elevation-21[data-v-b88c0006],.elevation-22[data-v-b88c0006],.elevation-23[data-v-b88c0006],.elevation-24[data-v-b88c0006]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-b88c0006]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-b88c0006]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-b88c0006]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-b88c0006]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}details>summary[data-v-b88c0006]{cursor:pointer;list-style:none;-webkit-user-select:none;user-select:none}details>summary[data-v-b88c0006]::marker,details>summary[data-v-b88c0006]::-webkit-details-marker{display:none}.vd-cookies-information__radio-group[data-v-b88c0006]{margin-top:0}.vd-cookies-information__radio-group[data-v-b88c0006] .v-input__details{padding:0}.vd-cookies-information__radio-group[data-v-b88c0006] .v-messages{text-align:end}.vd-cookies-information__radio-group[data-v-b88c0006] .v-label{justify-content:end}.vd-cookie-banner[data-v-f308fef2]{position:fixed;left:50%;bottom:0;display:flex;transform:translate(-50%);z-index:20;max-height:calc(100dvh - 64px);width:calc(100% - 64px);max-width:1200px;margin-bottom:32px}.vd-cookie-banner__inner[data-v-f308fef2]{display:flex;flex-direction:column;width:100%;background:transparent}.vd-cookie-banner-content[data-v-f308fef2]{overflow-y:auto;padding-right:8px;background:transparent}.vd-cookie-banner-content div[data-v-f308fef2]{background:transparent}.vd-cookie-banner-action-ctn .v-btn[data-v-f308fef2]{flex:1 1 auto}.v-btn--icon[data-v-f308fef2]{color:#0000008a;position:absolute;right:24px}.height-enter-active[data-v-f308fef2],.height-leave-active[data-v-f308fef2]{box-sizing:border-box;transition:height 2s ease;interpolate-size:allow-keywords;overflow:hidden;background-color:#fff}.height-enter-active[data-v-f308fef2]{transition:height .5s ease}.height-leave-active[data-v-f308fef2]{transition:height .1s ease}.height-enter-from[data-v-f308fef2],.height-leave-to[data-v-f308fef2]{height:0}.height-enter-to[data-v-f308fef2],.height-leave-from[data-v-f308fef2]{height:auto}.vd-copy-tooltip-menu{padding:6px 16px;box-shadow:none;margin-top:2px;background:#545859f2;color:#fff}.v-btn--icon .v-icon{color:#76797a}.title[data-v-27dd5864]{font-size:24px!important}.alt-title[data-v-27dd5864]{font-size:20px!important}.body-text[data-v-27dd5864]{font-size:16px!important}.link-label[data-v-27dd5864]{font-size:14px!important}h1[data-v-27dd5864]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-27dd5864]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-27dd5864]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-27dd5864]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-27dd5864]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-27dd5864]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-27dd5864]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-27dd5864]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-27dd5864]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-27dd5864]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-27dd5864]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-27dd5864]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-27dd5864],.elevation-2[data-v-27dd5864],.elevation-3[data-v-27dd5864],.elevation-4[data-v-27dd5864],.elevation-5[data-v-27dd5864],.elevation-6[data-v-27dd5864],.elevation-7[data-v-27dd5864],.elevation-8[data-v-27dd5864],.elevation-9[data-v-27dd5864],.elevation-10[data-v-27dd5864],.elevation-11[data-v-27dd5864],.elevation-12[data-v-27dd5864],.elevation-13[data-v-27dd5864],.elevation-14[data-v-27dd5864],.elevation-15[data-v-27dd5864],.elevation-16[data-v-27dd5864],.elevation-17[data-v-27dd5864],.elevation-18[data-v-27dd5864],.elevation-19[data-v-27dd5864],.elevation-20[data-v-27dd5864],.elevation-21[data-v-27dd5864],.elevation-22[data-v-27dd5864],.elevation-23[data-v-27dd5864],.elevation-24[data-v-27dd5864]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-27dd5864]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-27dd5864]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-27dd5864]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-27dd5864]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.vd-user-menu-btn-ctn[data-v-27dd5864]{position:relative;z-index:1}.vd-user-menu-btn-ctn .v-btn.v-btn--density-default[data-v-27dd5864]{height:auto!important}.vd-user-menu-btn-ctn .v-btn[data-v-27dd5864]{text-transform:none!important}.vd-user-menu-btn[data-v-27dd5864]{outline:none;padding:12px!important}.vd-user-menu-btn[data-v-27dd5864]:hover:before{background:#000;opacity:.05}.vd-user-menu-btn[data-v-27dd5864]:focus:before{background:#0c419a;opacity:.08}.vd-user-menu-btn[data-v-27dd5864]:focus{background:#0c419a14!important}[data-v-27dd5864] .vd-user-menu-btn:focus>.v-btn__overlay{opacity:0!important}.title[data-v-c84cf88c]{font-size:24px!important}.alt-title[data-v-c84cf88c]{font-size:20px!important}.body-text[data-v-c84cf88c]{font-size:16px!important}.link-label[data-v-c84cf88c]{font-size:14px!important}h1[data-v-c84cf88c]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-c84cf88c]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-c84cf88c]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-c84cf88c]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-c84cf88c]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-c84cf88c]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-c84cf88c]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-c84cf88c]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-c84cf88c]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-c84cf88c]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-c84cf88c]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-c84cf88c]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-c84cf88c],.elevation-2[data-v-c84cf88c],.elevation-3[data-v-c84cf88c],.elevation-4[data-v-c84cf88c],.elevation-5[data-v-c84cf88c],.elevation-6[data-v-c84cf88c],.elevation-7[data-v-c84cf88c],.elevation-8[data-v-c84cf88c],.elevation-9[data-v-c84cf88c],.elevation-10[data-v-c84cf88c],.elevation-11[data-v-c84cf88c],.elevation-12[data-v-c84cf88c],.elevation-13[data-v-c84cf88c],.elevation-14[data-v-c84cf88c],.elevation-15[data-v-c84cf88c],.elevation-16[data-v-c84cf88c],.elevation-17[data-v-c84cf88c],.elevation-18[data-v-c84cf88c],.elevation-19[data-v-c84cf88c],.elevation-20[data-v-c84cf88c],.elevation-21[data-v-c84cf88c],.elevation-22[data-v-c84cf88c],.elevation-23[data-v-c84cf88c],.elevation-24[data-v-c84cf88c]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-c84cf88c]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-c84cf88c]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-c84cf88c]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-c84cf88c]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.sy-input-select[data-v-c84cf88c]{text-transform:none!important;font-size:16px}.v-input[data-v-c84cf88c]{cursor:pointer;position:relative}.v-list[data-v-c84cf88c]{position:absolute;width:100%;z-index:1;background-color:#fff;min-width:fit-content;max-width:100px;padding:0;box-shadow:0 2px 5px #0000001f,0 2px 10px #00000014;border-radius:4px;overflow-y:auto;max-height:300px}.v-list-item[data-v-c84cf88c]:hover{background-color:#0000000a}[data-v-c84cf88c] .v-list-item[aria-selected=true]{background-color:#00000014}[data-v-c84cf88c] .v-list-item[aria-selected=true] .v-list-item-title{font-weight:700}.error[data-v-c84cf88c]{border-color:#b33f2e}.v-btn[data-v-c84cf88c],.text-color[data-v-c84cf88c]{color:#0c419a}.title[data-v-769bb474]{font-size:24px!important}.alt-title[data-v-769bb474]{font-size:20px!important}.body-text[data-v-769bb474]{font-size:16px!important}.link-label[data-v-769bb474]{font-size:14px!important}h1[data-v-769bb474]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-769bb474]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-769bb474]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-769bb474]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-769bb474]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-769bb474]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-769bb474]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-769bb474]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-769bb474]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-769bb474]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-769bb474]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-769bb474]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-769bb474],.elevation-2[data-v-769bb474],.elevation-3[data-v-769bb474],.elevation-4[data-v-769bb474],.elevation-5[data-v-769bb474],.elevation-6[data-v-769bb474],.elevation-7[data-v-769bb474],.elevation-8[data-v-769bb474],.elevation-9[data-v-769bb474],.elevation-10[data-v-769bb474],.elevation-11[data-v-769bb474],.elevation-12[data-v-769bb474],.elevation-13[data-v-769bb474],.elevation-14[data-v-769bb474],.elevation-15[data-v-769bb474],.elevation-16[data-v-769bb474],.elevation-17[data-v-769bb474],.elevation-18[data-v-769bb474],.elevation-19[data-v-769bb474],.elevation-20[data-v-769bb474],.elevation-21[data-v-769bb474],.elevation-22[data-v-769bb474],.elevation-23[data-v-769bb474],.elevation-24[data-v-769bb474]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-769bb474]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-769bb474]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-769bb474]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-769bb474]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.sy-select[data-v-769bb474]{display:flex;flex-direction:column}.v-field[data-v-769bb474]{position:relative}.v-field--focused .v-icon.arrow[data-v-769bb474]{transform:rotateX(180deg)}.v-list[data-v-769bb474]{position:absolute;left:inherit!important;margin-top:-22px;background-color:#fff;max-height:300px;padding:0;box-shadow:0 2px 5px #0000001f,0 2px 10px #00000014;border-radius:4px;overflow-y:auto;z-index:2}.v-list-item[data-v-769bb474]:hover{background-color:#0000000a}.v-list-item[aria-selected=true][data-v-769bb474]{background-color:#00000014}.v-icon[data-v-769bb474]{position:absolute;right:10px;color:#434647}[data-v-769bb474] .v-field__input{color:#434647}.hidden-label[data-v-769bb474]{visibility:hidden;position:absolute;white-space:nowrap}.vd-row[data-v-bca44d3d]{display:flex;flex-wrap:wrap}.vd-row .vd-data-list-item-label[data-v-bca44d3d]{align-self:center}.vd-row .vd-data-list-item-label[data-v-bca44d3d]:after{content:":";margin:0 4px}.vd-data-list-item-action-btn.v-btn[data-v-bca44d3d]{min-width:0;margin:0 -1px}.v-icon.v-theme--light[data-v-bca44d3d]{color:#0000008a}.vd-header-loading[data-v-abf44671]{background:transparent}.vd-header-loading[data-v-abf44671] .v-skeleton-loader__heading{width:100%;height:100%;border-radius:35px;margin:0;background:rgba(128,128,128,var(--v-border-opacity))}.vd-header-loading.v-skeleton-loader--tile[data-v-abf44671] .v-skeleton-loader__heading{border-radius:0}[data-v-674d3ac2] ul{list-style:none}.title[data-v-72e0adc9]{font-size:24px!important}.alt-title[data-v-72e0adc9]{font-size:20px!important}.body-text[data-v-72e0adc9]{font-size:16px!important}.link-label[data-v-72e0adc9]{font-size:14px!important}h1[data-v-72e0adc9]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-72e0adc9]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-72e0adc9]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-72e0adc9]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-72e0adc9]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-72e0adc9]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-72e0adc9]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-72e0adc9]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-72e0adc9]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-72e0adc9]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-72e0adc9]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-72e0adc9]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-72e0adc9],.elevation-2[data-v-72e0adc9],.elevation-3[data-v-72e0adc9],.elevation-4[data-v-72e0adc9],.elevation-5[data-v-72e0adc9],.elevation-6[data-v-72e0adc9],.elevation-7[data-v-72e0adc9],.elevation-8[data-v-72e0adc9],.elevation-9[data-v-72e0adc9],.elevation-10[data-v-72e0adc9],.elevation-11[data-v-72e0adc9],.elevation-12[data-v-72e0adc9],.elevation-13[data-v-72e0adc9],.elevation-14[data-v-72e0adc9],.elevation-15[data-v-72e0adc9],.elevation-16[data-v-72e0adc9],.elevation-17[data-v-72e0adc9],.elevation-18[data-v-72e0adc9],.elevation-19[data-v-72e0adc9],.elevation-20[data-v-72e0adc9],.elevation-21[data-v-72e0adc9],.elevation-22[data-v-72e0adc9],.elevation-23[data-v-72e0adc9],.elevation-24[data-v-72e0adc9]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-72e0adc9]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-72e0adc9]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-72e0adc9]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-72e0adc9]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.v-card__title[data-v-72e0adc9]>*{line-height:1em}.v-btn--icon[data-v-72e0adc9]{color:#222324;position:absolute;right:24px}h2[data-v-72e0adc9]{word-break:break-word;text-wrap:balance}.vd-dialog-box-actions-ctn[data-v-72e0adc9]{display:flex;flex-direction:column-reverse;justify-content:stretch;gap:16px}@media screen and (min-width: 600px){.vd-dialog-box-actions-ctn[data-v-72e0adc9]{flex-direction:row}}.vd-download-btn[data-v-dab2a719] .v-btn__content{flex-wrap:wrap}.vd-download-btn[data-v-dab2a719] .v-icon{flex:none}.outlined-style[data-v-dab2a719]{border:1px solid currentcolor}.vd-page-container[data-v-cbb17930]{flex:1;width:100%;max-width:1712px;margin:0 auto}.vd-code[data-v-8a08901d]{font-size:6rem;line-height:6rem;font-weight:400}.vd-external-links-btn[data-v-91ee355f]{max-width:none}.vd-external-links-btn[data-v-91ee355f] .v-btn__content{flex-direction:inherit;justify-content:space-between;width:100%}.vd-external-links-btn .v-icon[data-v-91ee355f]{font-size:1.5rem}.vd-external-links--left[data-v-91ee355f] .v-overlay__content{left:0!important;right:auto!important}.vd-external-links--right[data-v-91ee355f] .v-overlay__content{right:0!important;left:auto!important}.vd-external-links[data-v-91ee355f]>.v-overlay__content{border-radius:0}.vd-external-links-list[data-v-91ee355f]{max-height:248px;overflow-y:auto;border-radius:0}@media only screen and (height <= 340px){.vd-external-links-btn[data-v-91ee355f]{z-index:4!important}}.title[data-v-ca15665e]{font-size:24px!important}.alt-title[data-v-ca15665e]{font-size:20px!important}.body-text[data-v-ca15665e]{font-size:16px!important}.link-label[data-v-ca15665e]{font-size:14px!important}h1[data-v-ca15665e]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-ca15665e]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-ca15665e]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-ca15665e]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-ca15665e]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-ca15665e]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-ca15665e]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-ca15665e]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-ca15665e]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-ca15665e]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-ca15665e]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-ca15665e]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-ca15665e],.elevation-2[data-v-ca15665e],.elevation-3[data-v-ca15665e],.elevation-4[data-v-ca15665e],.elevation-5[data-v-ca15665e],.elevation-6[data-v-ca15665e],.elevation-7[data-v-ca15665e],.elevation-8[data-v-ca15665e],.elevation-9[data-v-ca15665e],.elevation-10[data-v-ca15665e],.elevation-11[data-v-ca15665e],.elevation-12[data-v-ca15665e],.elevation-13[data-v-ca15665e],.elevation-14[data-v-ca15665e],.elevation-15[data-v-ca15665e],.elevation-16[data-v-ca15665e],.elevation-17[data-v-ca15665e],.elevation-18[data-v-ca15665e],.elevation-19[data-v-ca15665e],.elevation-20[data-v-ca15665e],.elevation-21[data-v-ca15665e],.elevation-22[data-v-ca15665e],.elevation-23[data-v-ca15665e],.elevation-24[data-v-ca15665e]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-ca15665e]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-ca15665e]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-ca15665e]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-ca15665e]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.file-item[data-v-ca15665e]{display:flex;flex-direction:column;gap:12px;padding-block:16px;border-bottom:1px solid #dddede}.file-item__title[data-v-ca15665e]{font-size:16px}.file-item__name[data-v-ca15665e]{font-size:.875rem;color:#222324}.file-item__description[data-v-ca15665e]{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap}.file-item__description[data-v-ca15665e]>*{grid-column:1/-1}.file-item__description[data-v-ca15665e]>*:nth-child(1),.file-item__description[data-v-ca15665e]>*:nth-child(2){grid-column:1/2}.file-item__description>.file-item__actions[data-v-ca15665e]{grid-column-start:2;grid-row:span 2}.file-item__content[data-v-ca15665e]{display:flex;gap:16px;align-items:center}.file-item__actions[data-v-ca15665e]{display:flex;flex-direction:column;align-items:end;justify-content:center;margin-left:auto;height:100%;gap:4px}@media screen and (min-width: 960px){.file-item__actions[data-v-ca15665e]{flex-direction:row}}.file-item__action[data-v-ca15665e]{display:flex;justify-content:end;text-transform:unset;padding:.625rem 1.25rem;font-weight:700}.file-item__message[data-v-ca15665e]{font-size:.875rem;color:#545859}.file-item__message-success[data-v-ca15665e],.file-item__message-error[data-v-ca15665e]{margin-top:12px}.file-item__message-error[data-v-ca15665e]{display:flex;align-items:center;gap:16px}.title[data-v-86b61c7a]{font-size:24px!important}.alt-title[data-v-86b61c7a]{font-size:20px!important}.body-text[data-v-86b61c7a]{font-size:16px!important}.link-label[data-v-86b61c7a]{font-size:14px!important}h1[data-v-86b61c7a]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-86b61c7a]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-86b61c7a]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-86b61c7a]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-86b61c7a]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-86b61c7a]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-86b61c7a]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-86b61c7a]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-86b61c7a]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-86b61c7a]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-86b61c7a]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-86b61c7a]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-86b61c7a],.elevation-2[data-v-86b61c7a],.elevation-3[data-v-86b61c7a],.elevation-4[data-v-86b61c7a],.elevation-5[data-v-86b61c7a],.elevation-6[data-v-86b61c7a],.elevation-7[data-v-86b61c7a],.elevation-8[data-v-86b61c7a],.elevation-9[data-v-86b61c7a],.elevation-10[data-v-86b61c7a],.elevation-11[data-v-86b61c7a],.elevation-12[data-v-86b61c7a],.elevation-13[data-v-86b61c7a],.elevation-14[data-v-86b61c7a],.elevation-15[data-v-86b61c7a],.elevation-16[data-v-86b61c7a],.elevation-17[data-v-86b61c7a],.elevation-18[data-v-86b61c7a],.elevation-19[data-v-86b61c7a],.elevation-20[data-v-86b61c7a],.elevation-21[data-v-86b61c7a],.elevation-22[data-v-86b61c7a],.elevation-23[data-v-86b61c7a],.elevation-24[data-v-86b61c7a]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-86b61c7a]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-86b61c7a]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-86b61c7a]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-86b61c7a]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.upload-list[data-v-86b61c7a]{display:flex;flex-direction:column;margin:0;padding:0;list-style:none}.title[data-v-03a3b5b3]{font-size:24px!important}.alt-title[data-v-03a3b5b3]{font-size:20px!important}.body-text[data-v-03a3b5b3]{font-size:16px!important}.link-label[data-v-03a3b5b3]{font-size:14px!important}h1[data-v-03a3b5b3]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-03a3b5b3]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-03a3b5b3]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-03a3b5b3]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-03a3b5b3]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-03a3b5b3]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-03a3b5b3]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-03a3b5b3]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-03a3b5b3]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-03a3b5b3]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-03a3b5b3]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-03a3b5b3]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-03a3b5b3],.elevation-2[data-v-03a3b5b3],.elevation-3[data-v-03a3b5b3],.elevation-4[data-v-03a3b5b3],.elevation-5[data-v-03a3b5b3],.elevation-6[data-v-03a3b5b3],.elevation-7[data-v-03a3b5b3],.elevation-8[data-v-03a3b5b3],.elevation-9[data-v-03a3b5b3],.elevation-10[data-v-03a3b5b3],.elevation-11[data-v-03a3b5b3],.elevation-12[data-v-03a3b5b3],.elevation-13[data-v-03a3b5b3],.elevation-14[data-v-03a3b5b3],.elevation-15[data-v-03a3b5b3],.elevation-16[data-v-03a3b5b3],.elevation-17[data-v-03a3b5b3],.elevation-18[data-v-03a3b5b3],.elevation-19[data-v-03a3b5b3],.elevation-20[data-v-03a3b5b3],.elevation-21[data-v-03a3b5b3],.elevation-22[data-v-03a3b5b3],.elevation-23[data-v-03a3b5b3],.elevation-24[data-v-03a3b5b3]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-03a3b5b3]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-03a3b5b3]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-03a3b5b3]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-03a3b5b3]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.sy-file-upload-placeholder[data-v-03a3b5b3]{display:flex;align-items:center;flex-direction:column}.sy-file-upload-caption[data-v-03a3b5b3]{font-size:.875rem;color:#545859}.sy-file-upload-btn[data-v-03a3b5b3]{border-radius:4px;transition:background .25s;font-weight:700!important;font-size:16px;padding:10px 16px}.title[data-v-8df33257]{font-size:24px!important}.alt-title[data-v-8df33257]{font-size:20px!important}.body-text[data-v-8df33257]{font-size:16px!important}.link-label[data-v-8df33257]{font-size:14px!important}h1[data-v-8df33257]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-8df33257]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-8df33257]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-8df33257]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-8df33257]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-8df33257]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-8df33257]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-8df33257]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-8df33257]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-8df33257]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-8df33257]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-8df33257]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-8df33257],.elevation-2[data-v-8df33257],.elevation-3[data-v-8df33257],.elevation-4[data-v-8df33257],.elevation-5[data-v-8df33257],.elevation-6[data-v-8df33257],.elevation-7[data-v-8df33257],.elevation-8[data-v-8df33257],.elevation-9[data-v-8df33257],.elevation-10[data-v-8df33257],.elevation-11[data-v-8df33257],.elevation-12[data-v-8df33257],.elevation-13[data-v-8df33257],.elevation-14[data-v-8df33257],.elevation-15[data-v-8df33257],.elevation-16[data-v-8df33257],.elevation-17[data-v-8df33257],.elevation-18[data-v-8df33257],.elevation-19[data-v-8df33257],.elevation-20[data-v-8df33257],.elevation-21[data-v-8df33257],.elevation-22[data-v-8df33257],.elevation-23[data-v-8df33257],.elevation-24[data-v-8df33257]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-8df33257]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-8df33257]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-8df33257]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-8df33257]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.sy-file-upload[data-v-8df33257]{cursor:pointer;position:relative;border:1px dashed #0c419a;border-radius:8px;transition:background .25s}.sy-file-upload[data-v-8df33257]:hover,.sy-file-upload[data-v-8df33257]:focus-within,.sy-file-upload.dragover[data-v-8df33257]{background:#e7ecf5}.sy-file-upload.dark-mode[data-v-8df33257]:hover,.sy-file-upload.dark-mode[data-v-8df33257]:focus-within,.sy-file-upload.dark-mode.dragover[data-v-8df33257]{background:#303030}.sy-file-upload.sy-file-upload--disabled[data-v-8df33257]{opacity:.5;cursor:default}.sy-file-upload.sy-file-upload--disabled[data-v-8df33257]:hover,.sy-file-upload.sy-file-upload--disabled[data-v-8df33257]:focus-within,.sy-file-upload.sy-file-upload--disabled.dragover[data-v-8df33257]{background:inherit}.sy-file-upload.sy-file-upload--disabled.dark-mode[data-v-8df33257]:hover,.sy-file-upload.sy-file-upload--disabled.dark-mode[data-v-8df33257]:focus-within,.sy-file-upload.sy-file-upload--disabled.dark-mode.dragover[data-v-8df33257]{background:#303030}.sy-file-upload-input[data-v-8df33257]{position:absolute;width:1px;height:1px;white-space:nowrap;overflow:hidden;clip:rect(1px,1px,1px,1px)}.title[data-v-2da581a4]{font-size:24px!important}.alt-title[data-v-2da581a4]{font-size:20px!important}.body-text[data-v-2da581a4]{font-size:16px!important}.link-label[data-v-2da581a4]{font-size:14px!important}h1[data-v-2da581a4]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-2da581a4]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-2da581a4]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-2da581a4]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-2da581a4]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-2da581a4]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-2da581a4]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-2da581a4]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-2da581a4]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-2da581a4]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-2da581a4]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-2da581a4]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-2da581a4],.elevation-2[data-v-2da581a4],.elevation-3[data-v-2da581a4],.elevation-4[data-v-2da581a4],.elevation-5[data-v-2da581a4],.elevation-6[data-v-2da581a4],.elevation-7[data-v-2da581a4],.elevation-8[data-v-2da581a4],.elevation-9[data-v-2da581a4],.elevation-10[data-v-2da581a4],.elevation-11[data-v-2da581a4],.elevation-12[data-v-2da581a4],.elevation-13[data-v-2da581a4],.elevation-14[data-v-2da581a4],.elevation-15[data-v-2da581a4],.elevation-16[data-v-2da581a4],.elevation-17[data-v-2da581a4],.elevation-18[data-v-2da581a4],.elevation-19[data-v-2da581a4],.elevation-20[data-v-2da581a4],.elevation-21[data-v-2da581a4],.elevation-22[data-v-2da581a4],.elevation-23[data-v-2da581a4],.elevation-24[data-v-2da581a4]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-2da581a4]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-2da581a4]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-2da581a4]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-2da581a4]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.v-badge[data-v-2da581a4] .v-badge__badge{color:#006386!important;background-color:#fff}.title[data-v-9639b916]{font-size:24px!important}.alt-title[data-v-9639b916]{font-size:20px!important}.body-text[data-v-9639b916]{font-size:16px!important}.link-label[data-v-9639b916]{font-size:14px!important}h1[data-v-9639b916]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-9639b916]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-9639b916]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-9639b916]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-9639b916]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-9639b916]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-9639b916]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-9639b916]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-9639b916]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-9639b916]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-9639b916]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-9639b916]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-9639b916],.elevation-2[data-v-9639b916],.elevation-3[data-v-9639b916],.elevation-4[data-v-9639b916],.elevation-5[data-v-9639b916],.elevation-6[data-v-9639b916],.elevation-7[data-v-9639b916],.elevation-8[data-v-9639b916],.elevation-9[data-v-9639b916],.elevation-10[data-v-9639b916],.elevation-11[data-v-9639b916],.elevation-12[data-v-9639b916],.elevation-13[data-v-9639b916],.elevation-14[data-v-9639b916],.elevation-15[data-v-9639b916],.elevation-16[data-v-9639b916],.elevation-17[data-v-9639b916],.elevation-18[data-v-9639b916],.elevation-19[data-v-9639b916],.elevation-20[data-v-9639b916],.elevation-21[data-v-9639b916],.elevation-22[data-v-9639b916],.elevation-23[data-v-9639b916],.elevation-24[data-v-9639b916]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-9639b916]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-9639b916]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-9639b916]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-9639b916]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.vd-social-media-links[data-v-9639b916]{display:flex;flex-direction:column}li[data-v-9639b916]{list-style:none}.vd-social-media-links-label.text--primary[data-v-9639b916]{color:#0c419a;font-weight:600}.v-theme--dark .vd-social-media-links-label.text--primary[data-v-9639b916]{color:#fff}.vd-social-media-links-icon[data-v-9639b916]{color:#545859}.v-btn--icon[data-v-9639b916]{width:calc(var(--v-btn-height) + 5px);height:calc(var(--v-btn-height) + 5px);border:0}.v-theme--dark .v-btn--variant-text[data-v-9639b916]:hover{background:#ffffff1a}@media (width >= 768px){.vd-social-media-links-label[data-v-9639b916]{text-align:right}.vd-social-media-links-content[data-v-9639b916]{justify-content:flex-end}}@media (width <= 767px){.vd-social-media-links-label[data-v-9639b916]{text-align:left}.vd-social-media-links-content[data-v-9639b916]{justify-content:flex-start}}.title[data-v-a1074b6c]{font-size:24px!important}.alt-title[data-v-a1074b6c]{font-size:20px!important}.body-text[data-v-a1074b6c]{font-size:16px!important}.link-label[data-v-a1074b6c]{font-size:14px!important}h1[data-v-a1074b6c]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-a1074b6c]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-a1074b6c]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-a1074b6c]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-a1074b6c]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-a1074b6c]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-a1074b6c]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-a1074b6c]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-a1074b6c]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-a1074b6c]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-a1074b6c]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-a1074b6c]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-a1074b6c],.elevation-2[data-v-a1074b6c],.elevation-3[data-v-a1074b6c],.elevation-4[data-v-a1074b6c],.elevation-5[data-v-a1074b6c],.elevation-6[data-v-a1074b6c],.elevation-7[data-v-a1074b6c],.elevation-8[data-v-a1074b6c],.elevation-9[data-v-a1074b6c],.elevation-10[data-v-a1074b6c],.elevation-11[data-v-a1074b6c],.elevation-12[data-v-a1074b6c],.elevation-13[data-v-a1074b6c],.elevation-14[data-v-a1074b6c],.elevation-15[data-v-a1074b6c],.elevation-16[data-v-a1074b6c],.elevation-17[data-v-a1074b6c],.elevation-18[data-v-a1074b6c],.elevation-19[data-v-a1074b6c],.elevation-20[data-v-a1074b6c],.elevation-21[data-v-a1074b6c],.elevation-22[data-v-a1074b6c],.elevation-23[data-v-a1074b6c],.elevation-24[data-v-a1074b6c]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-a1074b6c]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-a1074b6c]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-a1074b6c]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-a1074b6c]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}a[data-v-a1074b6c]{cursor:pointer}.v-btn--icon[data-v-a1074b6c]{border:0}.v-footer[data-v-a1074b6c]{flex-grow:0!important;justify-content:center}.v-footer .container[data-v-a1074b6c]{width:100%;max-width:1712px;margin:0 auto}.vd-footer-bar[data-v-a1074b6c] .vd-footer-bar-links a,.vd-footer-bar[data-v-a1074b6c] p,.vd-footer-bar[data-v-a1074b6c] .text--primary{color:#000000de}.vd-footer-bar[data-v-a1074b6c] .text--secondary{color:#0009}.vd-footer-bar[data-v-a1074b6c] .social .text--primary{color:rgb(var(--v-theme-primary))}.vd-footer-bar[data-v-a1074b6c] .social a.v-btn:hover,.vd-footer-bar[data-v-a1074b6c] button.v-btn:hover{background:#0000000d}.vd-footer-bar[data-v-a1074b6c] a.text--primary{color:rgb(var(--v-theme-primary))}.vd-footer-bar[data-v-a1074b6c] .v-divider{border-color:#2f384d}.vd-footer-bar[data-v-a1074b6c] svg.logo{fill:rgb(var(--v-theme-primary))}.vd-footer-bar[data-v-a1074b6c] .scroll{color:rgb(var(--v-theme-primary))!important}.vd-footer-bar.v-theme--dark[data-v-a1074b6c] .vd-footer-bar-links a{color:#fff}.vd-footer-bar.v-theme--dark[data-v-a1074b6c] p,.vd-footer-bar.v-theme--dark[data-v-a1074b6c] .text--primary{color:#ffffffde}.vd-footer-bar.v-theme--dark[data-v-a1074b6c] .text--secondary{color:#fff9}.vd-footer-bar.v-theme--dark[data-v-a1074b6c] a.text--primary{color:#fff}.vd-footer-bar.v-theme--dark[data-v-a1074b6c] .v-divider{border-color:#fff}.vd-footer-bar.v-theme--dark[data-v-a1074b6c] svg{fill:#fff}.vd-footer-bar-links[data-v-a1074b6c] li{list-style:none;display:flex}.vd-footer-bar-links[data-v-a1074b6c] a{transition:.15s;text-decoration:none;padding-top:1px;border-bottom:1px solid transparent}.vd-footer-bar-links[data-v-a1074b6c] a:hover,.vd-footer-bar-links[data-v-a1074b6c] a:focus{border-color:currentcolor}.vd-footer-bar-links[data-v-a1074b6c] p{padding:1px 0}.v-theme--dark button.v-btn[data-v-a1074b6c]:hover{background:#ffffff1a}.vd-france-connect-btn a[data-v-5bd47a0e]{color:#000091}.vd-france-connect-btn a[data-v-5bd47a0e]:focus{outline-offset:3px}.vd-france-connect-link[data-v-5bd47a0e]{background:#000091}.vd-france-connect-link[data-v-5bd47a0e]:hover{background:#1212ff;transition:all .2s ease-in-out}.vd-france-connect-link[data-v-5bd47a0e]:active{background:#2323ff}.vd-france-connect-link[data-v-5bd47a0e]:focus{outline-offset:3px}.vd-france-connect-btn--dark .vd-france-connect-link[data-v-5bd47a0e]{color:#fff;background-color:#8585f6}.vd-france-connect-btn--dark .vd-france-connect-link[data-v-5bd47a0e]:hover{background-color:#b1b1f9}.vd-france-connect-btn--dark .vd-france-connect-link[data-v-5bd47a0e]:active{background-color:#c6c6fb}.vd-france-connect-btn--dark .vd-france-connect-info-link[data-v-5bd47a0e]{color:#8585f6}.vd-france-connect-info-link[data-v-5bd47a0e]{background-image:linear-gradient(currentcolor,currentcolor);background-position:0% 100%;background-repeat:no-repeat;background-size:100% 1px}.vd-france-connect-info-link[data-v-5bd47a0e]:hover{background-size:100% 2px}[data-v-5bd47a0e] :scope:focus{border-radius:0!important}.cls-2[data-v-51224cf0],.cls-2[data-v-e01c8927]{fill:#0c419a}.title[data-v-8295d36d]{font-size:24px!important}.alt-title[data-v-8295d36d]{font-size:20px!important}.body-text[data-v-8295d36d]{font-size:16px!important}.link-label[data-v-8295d36d]{font-size:14px!important}h1[data-v-8295d36d]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-8295d36d]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-8295d36d]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-8295d36d]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-8295d36d]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-8295d36d]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-8295d36d]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-8295d36d]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-8295d36d]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-8295d36d]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-8295d36d]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-8295d36d]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-8295d36d],.elevation-2[data-v-8295d36d],.elevation-3[data-v-8295d36d],.elevation-4[data-v-8295d36d],.elevation-5[data-v-8295d36d],.elevation-6[data-v-8295d36d],.elevation-7[data-v-8295d36d],.elevation-8[data-v-8295d36d],.elevation-9[data-v-8295d36d],.elevation-10[data-v-8295d36d],.elevation-11[data-v-8295d36d],.elevation-12[data-v-8295d36d],.elevation-13[data-v-8295d36d],.elevation-14[data-v-8295d36d],.elevation-15[data-v-8295d36d],.elevation-16[data-v-8295d36d],.elevation-17[data-v-8295d36d],.elevation-18[data-v-8295d36d],.elevation-19[data-v-8295d36d],.elevation-20[data-v-8295d36d],.elevation-21[data-v-8295d36d],.elevation-22[data-v-8295d36d],.elevation-23[data-v-8295d36d],.elevation-24[data-v-8295d36d]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-8295d36d]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-8295d36d]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-8295d36d]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-8295d36d]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.logo[data-v-8295d36d]{display:flex;height:52px;align-items:center;color:rgb(var(--v-theme-primary));line-height:1.45;font-family:Cabin,Arial,Helvetica,sans-serif;text-decoration:none;cursor:pointer}.logo[data-v-8295d36d] svg{flex-grow:0;flex-shrink:0}.service-title[data-v-8295d36d]{font-size:.875rem;font-weight:500}.service-subtitle[data-v-8295d36d]{font-size:.875rem;font-weight:400}@media screen and (min-width: 990px){.service-title[data-v-8295d36d]{font-size:1.125rem}.service-subtitle[data-v-8295d36d]{font-size:.75rem}}.title[data-v-639c8426]{font-size:24px!important}.alt-title[data-v-639c8426]{font-size:20px!important}.body-text[data-v-639c8426]{font-size:16px!important}.link-label[data-v-639c8426]{font-size:14px!important}h1[data-v-639c8426]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-639c8426]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-639c8426]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-639c8426]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-639c8426]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-639c8426]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-639c8426]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-639c8426]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-639c8426]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-639c8426]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-639c8426]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-639c8426]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-639c8426],.elevation-2[data-v-639c8426],.elevation-3[data-v-639c8426],.elevation-4[data-v-639c8426],.elevation-5[data-v-639c8426],.elevation-6[data-v-639c8426],.elevation-7[data-v-639c8426],.elevation-8[data-v-639c8426],.elevation-9[data-v-639c8426],.elevation-10[data-v-639c8426],.elevation-11[data-v-639c8426],.elevation-12[data-v-639c8426],.elevation-13[data-v-639c8426],.elevation-14[data-v-639c8426],.elevation-15[data-v-639c8426],.elevation-16[data-v-639c8426],.elevation-17[data-v-639c8426],.elevation-18[data-v-639c8426],.elevation-19[data-v-639c8426],.elevation-20[data-v-639c8426],.elevation-21[data-v-639c8426],.elevation-22[data-v-639c8426],.elevation-23[data-v-639c8426],.elevation-24[data-v-639c8426]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-639c8426]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-639c8426]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-639c8426]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-639c8426]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.header[data-v-639c8426]{position:relative;z-index:1}.sticky-header[data-v-639c8426]{background-color:#fff;width:100%;z-index:1000}.inner-header[data-v-639c8426]{display:flex;align-items:center;height:77px;max-width:1712px;margin:0 auto;border-bottom:solid 1px #ced9eb}.header-side[data-v-639c8426]{display:flex;align-items:center;margin-left:auto}@media screen and (width >= 340px){.menu+.header-logo[data-v-639c8426]{padding-left:16px!important}}@media screen and (min-width: 990px){.inner-header[data-v-639c8426]{height:95px}}.title[data-v-82f2559e]{font-size:24px!important}.alt-title[data-v-82f2559e]{font-size:20px!important}.body-text[data-v-82f2559e]{font-size:16px!important}.link-label[data-v-82f2559e]{font-size:14px!important}h1[data-v-82f2559e]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-82f2559e]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-82f2559e]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-82f2559e]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-82f2559e]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-82f2559e]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-82f2559e]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-82f2559e]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-82f2559e]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-82f2559e]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-82f2559e]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-82f2559e]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-82f2559e],.elevation-2[data-v-82f2559e],.elevation-3[data-v-82f2559e],.elevation-4[data-v-82f2559e],.elevation-5[data-v-82f2559e],.elevation-6[data-v-82f2559e],.elevation-7[data-v-82f2559e],.elevation-8[data-v-82f2559e],.elevation-9[data-v-82f2559e],.elevation-10[data-v-82f2559e],.elevation-11[data-v-82f2559e],.elevation-12[data-v-82f2559e],.elevation-13[data-v-82f2559e],.elevation-14[data-v-82f2559e],.elevation-15[data-v-82f2559e],.elevation-16[data-v-82f2559e],.elevation-17[data-v-82f2559e],.elevation-18[data-v-82f2559e],.elevation-19[data-v-82f2559e],.elevation-20[data-v-82f2559e],.elevation-21[data-v-82f2559e],.elevation-22[data-v-82f2559e],.elevation-23[data-v-82f2559e],.elevation-24[data-v-82f2559e]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-82f2559e]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-82f2559e]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-82f2559e]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-82f2559e]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.header-menu-btn[data-v-82f2559e]{text-transform:capitalize;height:77px;width:82px;display:flex;flex-direction:column;align-items:center;flex-shrink:0;justify-content:center;font-weight:700;background-color:rgb(var(--v-theme-primary));color:#fff;border-bottom:solid 1px #ced9eb;transition:color .15s .1s,background-color .15s .1s,border-bottom .15s .1s}.header-menu-btn[data-v-82f2559e]:focus-visible{background-color:#fff;color:rgb(var(--v-theme-primary))}.header-menu-btn__open[data-v-82f2559e]{background-color:#fff;color:rgb(var(--v-theme-primary));border-color:#fff}@media screen and (max-width: 991px){.header-menu-btn__label[data-v-82f2559e]{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}}@media screen and (min-width: 990px){.header-menu-btn[data-v-82f2559e]{height:95px;width:95px}}.title[data-v-8bfe741c]{font-size:24px!important}.alt-title[data-v-8bfe741c]{font-size:20px!important}.body-text[data-v-8bfe741c]{font-size:16px!important}.link-label[data-v-8bfe741c]{font-size:14px!important}h1[data-v-8bfe741c]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-8bfe741c]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-8bfe741c]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-8bfe741c]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-8bfe741c]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-8bfe741c]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-8bfe741c]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-8bfe741c]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-8bfe741c]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-8bfe741c]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-8bfe741c]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-8bfe741c]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-8bfe741c],.elevation-2[data-v-8bfe741c],.elevation-3[data-v-8bfe741c],.elevation-4[data-v-8bfe741c],.elevation-5[data-v-8bfe741c],.elevation-6[data-v-8bfe741c],.elevation-7[data-v-8bfe741c],.elevation-8[data-v-8bfe741c],.elevation-9[data-v-8bfe741c],.elevation-10[data-v-8bfe741c],.elevation-11[data-v-8bfe741c],.elevation-12[data-v-8bfe741c],.elevation-13[data-v-8bfe741c],.elevation-14[data-v-8bfe741c],.elevation-15[data-v-8bfe741c],.elevation-16[data-v-8bfe741c],.elevation-17[data-v-8bfe741c],.elevation-18[data-v-8bfe741c],.elevation-19[data-v-8bfe741c],.elevation-20[data-v-8bfe741c],.elevation-21[data-v-8bfe741c],.elevation-22[data-v-8bfe741c],.elevation-23[data-v-8bfe741c],.elevation-24[data-v-8bfe741c]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-8bfe741c]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-8bfe741c]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-8bfe741c]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-8bfe741c]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.overlay[data-v-8bfe741c]{top:0;right:0;bottom:0;left:0;position:fixed;z-index:1000;background-color:#03102580;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px)}.menu-wrapper[data-v-8bfe741c]{height:100dvh;background-color:#fff;display:flex;flex-direction:column}.header-menu-wrapper[data-v-8bfe741c]{height:calc(100% - 77px);display:grid;position:relative;overflow:auto}.header-menu-wrapper--submenu-open[data-v-8bfe741c]{overflow:clip}@media screen and (min-width: 990px){.menu-wrapper[data-v-8bfe741c]{position:absolute;background-color:transparent}.header-menu-wrapper[data-v-8bfe741c]{width:350px;overflow:visible}.header-menu[data-v-8bfe741c]{background-color:#fff;overflow:hidden auto;height:100%}}.menu-enter-active[data-v-8bfe741c]{transition:opacity .15s ease-in}.menu-enter-active .header-menu-wrapper[data-v-8bfe741c]{transition:transform .1s ease-in}.menu-leave-active[data-v-8bfe741c]{transition:opacity .15s ease-out}.menu-leave-active .header-menu-wrapper[data-v-8bfe741c]{transition:transform .1s ease-out}.menu-enter-from[data-v-8bfe741c],.menu-leave-to[data-v-8bfe741c]{opacity:0}@media screen and (min-width: 990px){.menu-enter-from .header-menu-wrapper[data-v-8bfe741c],.menu-leave-to .header-menu-wrapper[data-v-8bfe741c]{transform:translateY(10px)}}@media (prefers-reduced-motion: reduce){.menu-enter-active[data-v-8bfe741c],.menu-leave-active[data-v-8bfe741c]{transition:opacity 0s}.menu-enter-from .header-menu-wrapper[data-v-8bfe741c],.menu-leave-to .header-menu-wrapper[data-v-8bfe741c]{transform:none}}.title[data-v-eebfe4fb]{font-size:24px!important}.alt-title[data-v-eebfe4fb]{font-size:20px!important}.body-text[data-v-eebfe4fb]{font-size:16px!important}.link-label[data-v-eebfe4fb]{font-size:14px!important}h1[data-v-eebfe4fb]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-eebfe4fb]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-eebfe4fb]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-eebfe4fb]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-eebfe4fb]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-eebfe4fb]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-eebfe4fb]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-eebfe4fb]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-eebfe4fb]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-eebfe4fb]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-eebfe4fb]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-eebfe4fb]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-eebfe4fb],.elevation-2[data-v-eebfe4fb],.elevation-3[data-v-eebfe4fb],.elevation-4[data-v-eebfe4fb],.elevation-5[data-v-eebfe4fb],.elevation-6[data-v-eebfe4fb],.elevation-7[data-v-eebfe4fb],.elevation-8[data-v-eebfe4fb],.elevation-9[data-v-eebfe4fb],.elevation-10[data-v-eebfe4fb],.elevation-11[data-v-eebfe4fb],.elevation-12[data-v-eebfe4fb],.elevation-13[data-v-eebfe4fb],.elevation-14[data-v-eebfe4fb],.elevation-15[data-v-eebfe4fb],.elevation-16[data-v-eebfe4fb],.elevation-17[data-v-eebfe4fb],.elevation-18[data-v-eebfe4fb],.elevation-19[data-v-eebfe4fb],.elevation-20[data-v-eebfe4fb],.elevation-21[data-v-eebfe4fb],.elevation-22[data-v-eebfe4fb],.elevation-23[data-v-eebfe4fb],.elevation-24[data-v-eebfe4fb]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-eebfe4fb]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-eebfe4fb]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-eebfe4fb]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-eebfe4fb]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.header-menu-item[data-v-eebfe4fb]{color:rgb(var(--v-theme-primary));list-style-type:none;margin:0;padding:0;min-height:44px;font-weight:700}.header-menu-item[data-v-eebfe4fb]>a{display:flex;flex-direction:column;padding:16px 50px 16px 20px;text-decoration:none;color:currentcolor}.header-menu-item[data-v-eebfe4fb]>a:hover{text-decoration:underline}.header-menu-item[data-v-eebfe4fb]>a:visited{color:currentcolor}.header-menu-item[data-v-eebfe4fb]>a:first-letter{text-transform:uppercase}.header-menu-item[data-v-eebfe4fb]:hover{background-color:rgb(var(--v-theme-primary));color:#fff}.header-menu-item[data-v-eebfe4fb]:hover>a>*{color:#fff!important}.title[data-v-fe759639]{font-size:24px!important}.alt-title[data-v-fe759639]{font-size:20px!important}.body-text[data-v-fe759639]{font-size:16px!important}.link-label[data-v-fe759639]{font-size:14px!important}h1[data-v-fe759639]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-fe759639]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-fe759639]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-fe759639]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-fe759639]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-fe759639]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-fe759639]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-fe759639]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-fe759639]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-fe759639]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-fe759639]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-fe759639]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-fe759639],.elevation-2[data-v-fe759639],.elevation-3[data-v-fe759639],.elevation-4[data-v-fe759639],.elevation-5[data-v-fe759639],.elevation-6[data-v-fe759639],.elevation-7[data-v-fe759639],.elevation-8[data-v-fe759639],.elevation-9[data-v-fe759639],.elevation-10[data-v-fe759639],.elevation-11[data-v-fe759639],.elevation-12[data-v-fe759639],.elevation-13[data-v-fe759639],.elevation-14[data-v-fe759639],.elevation-15[data-v-fe759639],.elevation-16[data-v-fe759639],.elevation-17[data-v-fe759639],.elevation-18[data-v-fe759639],.elevation-19[data-v-fe759639],.elevation-20[data-v-fe759639],.elevation-21[data-v-fe759639],.elevation-22[data-v-fe759639],.elevation-23[data-v-fe759639],.elevation-24[data-v-fe759639]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-fe759639]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-fe759639]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-fe759639]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-fe759639]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.header-menu-section[data-v-fe759639]{list-style-type:none;padding:0;margin:0}.header-menu-section-title[data-v-fe759639]{padding:40px 16px 8px 20px;border-bottom:1px solid #e0e0e0;font-size:1.1rem;margin-bottom:8px;color:#212529;text-transform:capitalize;font-weight:700}.title[data-v-fa108bc3]{font-size:24px!important}.alt-title[data-v-fa108bc3]{font-size:20px!important}.body-text[data-v-fa108bc3]{font-size:16px!important}.link-label[data-v-fa108bc3]{font-size:14px!important}h1[data-v-fa108bc3]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-fa108bc3]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-fa108bc3]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-fa108bc3]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-fa108bc3]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-fa108bc3]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-fa108bc3]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-fa108bc3]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-fa108bc3]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-fa108bc3]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-fa108bc3]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-fa108bc3]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-fa108bc3],.elevation-2[data-v-fa108bc3],.elevation-3[data-v-fa108bc3],.elevation-4[data-v-fa108bc3],.elevation-5[data-v-fa108bc3],.elevation-6[data-v-fa108bc3],.elevation-7[data-v-fa108bc3],.elevation-8[data-v-fa108bc3],.elevation-9[data-v-fa108bc3],.elevation-10[data-v-fa108bc3],.elevation-11[data-v-fa108bc3],.elevation-12[data-v-fa108bc3],.elevation-13[data-v-fa108bc3],.elevation-14[data-v-fa108bc3],.elevation-15[data-v-fa108bc3],.elevation-16[data-v-fa108bc3],.elevation-17[data-v-fa108bc3],.elevation-18[data-v-fa108bc3],.elevation-19[data-v-fa108bc3],.elevation-20[data-v-fa108bc3],.elevation-21[data-v-fa108bc3],.elevation-22[data-v-fa108bc3],.elevation-23[data-v-fa108bc3],.elevation-24[data-v-fa108bc3]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-fa108bc3]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-fa108bc3]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-fa108bc3]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-fa108bc3]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.sub-menu-btn[data-v-fa108bc3]{display:flex;justify-content:center;flex-direction:column;width:100%;padding:16px 50px 16px 20px;text-align:left;color:rgb(var(--v-theme-primary))}.sub-menu-btn[data-v-fa108bc3]:hover{background-color:rgb(var(--v-theme-primary));color:#fff;text-decoration:underline}.sub-menu-btn[data-v-fa108bc3]:hover>*{color:#fff!important}.sub-menu-btn[data-v-fa108bc3]:first-letter{text-transform:uppercase}.sub-menu-btn__icon[data-v-fa108bc3]{position:absolute;right:20px}@media screen and (max-width: 989px){.sub-menu--open[data-v-fa108bc3]{position:absolute;left:0;top:0;width:100%;height:100%;overflow-y:auto;background-color:#fff;padding-top:40px;z-index:10}.sub-menu--child-open[data-v-fa108bc3]{overflow-y:clip}.sub-menu--open>.sub-menu-btn[data-v-fa108bc3]{padding:0 16px 8px 40px;border-bottom:1px solid #e0e0e0;color:#000;background-color:transparent}.sub-menu--open>.sub-menu-btn[data-v-fa108bc3]:hover{color:#000}.sub-menu--open>.sub-menu-btn[data-v-fa108bc3]:hover>*{color:#000!important}.sub-menu--open>.sub-menu-btn[data-v-fa108bc3]>.sub-menu-btn__icon{left:10px;right:auto}}@media screen and (min-width: 990px){.sub-menu-btn[data-v-fa108bc3]{position:relative}.sub-menu--open>.sub-menu-btn[data-v-fa108bc3]{background-color:rgb(var(--v-theme-primary));color:#fff;transition:color .15s linear,background-color .15s linear}.sub-menu--open>.sub-menu-btn[data-v-fa108bc3]>*{color:#fff!important}.sub-menu-content-wrapper[data-v-fa108bc3]{position:absolute;top:0;bottom:0;left:350px}.sub-menu-content[data-v-fa108bc3]{width:351px;height:100%;background:#f9f9f9;border-left:1px solid #e0e0e0;overflow:hidden auto}.sub-menu-content>.sub-menu--open .sub-menu-content[data-v-fa108bc3]{left:700px}.sub-menu-content>.sub-menu--open .sub-menu-content>.sub-menu--open .sub-menu-content[data-v-fa108bc3]{left:1050px}.slide-fade-enter-active[data-v-fa108bc3]{transition:opacity .17s ease-out,transform .17s ease-out}.slide-fade-leave-active[data-v-fa108bc3]{transition:opacity .08s ease-in,transform .08s ease-in}.slide-fade-enter-from[data-v-fa108bc3],.slide-fade-leave-to[data-v-fa108bc3]{opacity:0;transform:translate(-10px)}}@media screen and (min-width: 990px) and (prefers-reduced-motion){.slide-fade-enter-active[data-v-fa108bc3],.slide-fade-leave-active[data-v-fa108bc3]{transition:none}}.title[data-v-a37442cd]{font-size:24px!important}.alt-title[data-v-a37442cd]{font-size:20px!important}.body-text[data-v-a37442cd]{font-size:16px!important}.link-label[data-v-a37442cd]{font-size:14px!important}h1[data-v-a37442cd]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-a37442cd]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-a37442cd]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-a37442cd]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-a37442cd]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-a37442cd]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-a37442cd]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-a37442cd]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-a37442cd]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-a37442cd]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-a37442cd]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-a37442cd]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-a37442cd],.elevation-2[data-v-a37442cd],.elevation-3[data-v-a37442cd],.elevation-4[data-v-a37442cd],.elevation-5[data-v-a37442cd],.elevation-6[data-v-a37442cd],.elevation-7[data-v-a37442cd],.elevation-8[data-v-a37442cd],.elevation-9[data-v-a37442cd],.elevation-10[data-v-a37442cd],.elevation-11[data-v-a37442cd],.elevation-12[data-v-a37442cd],.elevation-13[data-v-a37442cd],.elevation-14[data-v-a37442cd],.elevation-15[data-v-a37442cd],.elevation-16[data-v-a37442cd],.elevation-17[data-v-a37442cd],.elevation-18[data-v-a37442cd],.elevation-19[data-v-a37442cd],.elevation-20[data-v-a37442cd],.elevation-21[data-v-a37442cd],.elevation-22[data-v-a37442cd],.elevation-23[data-v-a37442cd],.elevation-24[data-v-a37442cd]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-a37442cd]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-a37442cd]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-a37442cd]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-a37442cd]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.horizontal-menu[data-v-a37442cd]{display:flex;align-items:center;max-width:1712px;margin:0 auto}.horizontal-menu__tabs[data-v-a37442cd]{flex:1 1 0}.horizontal-menu__item[data-v-a37442cd]{cursor:pointer}.horizontal-menu__item-link[data-v-a37442cd]{font-size:.875rem;font-weight:700}.v-tab-item--selected span[data-v-a37442cd]{color:#fff}.inner-vertical-menu[data-v-1d872dbc]{display:flex;flex-direction:column;height:100%}.inner-vertical-menu__main-content[data-v-1d872dbc]{flex:1}.title[data-v-e2d11fb5]{font-size:24px!important}.alt-title[data-v-e2d11fb5]{font-size:20px!important}.body-text[data-v-e2d11fb5]{font-size:16px!important}.link-label[data-v-e2d11fb5]{font-size:14px!important}h1[data-v-e2d11fb5]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-e2d11fb5]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-e2d11fb5]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-e2d11fb5]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-e2d11fb5]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-e2d11fb5]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-e2d11fb5]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-e2d11fb5]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-e2d11fb5]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-e2d11fb5]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-e2d11fb5]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-e2d11fb5]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-e2d11fb5],.elevation-2[data-v-e2d11fb5],.elevation-3[data-v-e2d11fb5],.elevation-4[data-v-e2d11fb5],.elevation-5[data-v-e2d11fb5],.elevation-6[data-v-e2d11fb5],.elevation-7[data-v-e2d11fb5],.elevation-8[data-v-e2d11fb5],.elevation-9[data-v-e2d11fb5],.elevation-10[data-v-e2d11fb5],.elevation-11[data-v-e2d11fb5],.elevation-12[data-v-e2d11fb5],.elevation-13[data-v-e2d11fb5],.elevation-14[data-v-e2d11fb5],.elevation-15[data-v-e2d11fb5],.elevation-16[data-v-e2d11fb5],.elevation-17[data-v-e2d11fb5],.elevation-18[data-v-e2d11fb5],.elevation-19[data-v-e2d11fb5],.elevation-20[data-v-e2d11fb5],.elevation-21[data-v-e2d11fb5],.elevation-22[data-v-e2d11fb5],.elevation-23[data-v-e2d11fb5],.elevation-24[data-v-e2d11fb5]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-e2d11fb5]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-e2d11fb5]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-e2d11fb5]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-e2d11fb5]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.toolbar[data-v-e2d11fb5]{background:#e7ecf5;position:relative;display:flex;align-items:center;justify-content:center;z-index:100}.toolbar .container[data-v-e2d11fb5]{width:100%;max-height:45px;max-width:1712px;display:flex;align-items:center;justify-content:space-between}@media (width <= 768px){.toolbar .container[data-v-e2d11fb5]{max-height:41px}}.toolbar .container[data-v-e2d11fb5] ul{display:flex;align-items:center;justify-content:flex-start;list-style:none;text-decoration:none}.toolbar .container[data-v-e2d11fb5] ul li{text-align:center}.toolbar .container[data-v-e2d11fb5] ul>li>a{display:block;color:#07275c;text-decoration:none;padding:10px 16px;cursor:pointer}.toolbar .container[data-v-e2d11fb5] ul>li>a:hover{text-decoration:underline}@media (width <= 768px){.toolbar .container[data-v-e2d11fb5] ul>li>a{font-size:12px}}.toolbar .container[data-v-e2d11fb5] .sy-input-select{width:100%;display:flex;justify-content:space-between}@media (width <= 768px){.toolbar .container[data-v-e2d11fb5] .sy-input-select{font-size:12px}.toolbar .container[data-v-e2d11fb5] .sy-input-select span{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}}.toolbar #left-menu ul>li>a[data-v-e2d11fb5]{font-weight:700;color:#07275c}.toolbar #left-menu ul>li>a[data-v-e2d11fb5]:hover{text-decoration:none}.toolbar #left-menu li[data-v-e2d11fb5]:first-child{min-width:95px;background:transparent}@media (max-width: 990px){.toolbar #left-menu li[data-v-e2d11fb5]:first-child{min-width:82px}}.toolbar #left-menu li[data-v-e2d11fb5]:nth-child(2){z-index:2;max-height:44px;min-width:260px}@media (width <= 768px){.toolbar #left-menu li[data-v-e2d11fb5]:nth-child(2){max-height:38px;min-width:152px}}.toolbar #left-menu li:nth-child(2) a[data-v-e2d11fb5]{max-height:44px}@media (width <= 768px){.toolbar #left-menu li:nth-child(2) a[data-v-e2d11fb5]{max-height:38px}}.toolbar #left-menu li[data-v-e2d11fb5]:nth-child(3){background:transparent}.toolbar #left-menu li:first-child a[data-v-e2d11fb5]:hover,.toolbar #left-menu li:first-child.active[data-v-e2d11fb5]{background:#ed76b3}.toolbar #left-menu li:nth-child(2) a[data-v-e2d11fb5]:hover,.toolbar #left-menu .highlight[data-v-e2d11fb5]{background:#66c9ec}.toolbar #left-menu li:nth-child(3) a[data-v-e2d11fb5]:hover,.toolbar #left-menu li:nth-child(3).active[data-v-e2d11fb5]{background:#f0b323}@media (width <= 1000px){.toolbar #right-menu[data-v-e2d11fb5]{display:none}}.toolbar #right-menu ul[data-v-e2d11fb5]{white-space:nowrap;overflow:hidden}.toolbar #right-menu ul li[data-v-e2d11fb5]{display:inline-block}.toolbar[data-v-e2d11fb5] .v-input .v-input__details{display:none}.toolbar[data-v-e2d11fb5] .v-input .v-input__control{font-weight:700}.toolbar[data-v-e2d11fb5] .v-input .v-input__control .text-color{color:#051a3e!important}.toolbar[data-v-e2d11fb5] .v-input .v-input__control .v-icon{margin-left:10px}.toolbar[data-v-e2d11fb5] .v-input .v-input__control .custom-select{display:flex;justify-content:space-between;width:100%}.toolbar[data-v-e2d11fb5] .v-input .v-input__control .custom-select span{max-width:260px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}@media (width <= 768px){.toolbar[data-v-e2d11fb5] .v-input .v-input__control .custom-select span{max-width:182px}}@media (width <= 768px){.toolbar[data-v-e2d11fb5] .v-input .v-input__control{font-size:12px}}.toolbar[data-v-e2d11fb5] .v-input .v-list{top:34px!important;left:-16px!important;text-align:left;min-width:260px;max-width:fit-content!important;border-radius:0}@media (width <= 768px){.toolbar[data-v-e2d11fb5] .v-input .v-list{position:fixed;top:38px!important;left:0!important;min-width:100%!important;box-shadow:none!important}}.toolbar[data-v-e2d11fb5] .v-input .v-list .v-list-item--density-default.v-list-item--one-line{min-height:40px}.toolbar .overlay[data-v-e2d11fb5]{position:fixed;display:block;top:0;left:0;width:100%;height:100%;background-color:#03102580;cursor:default;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px);z-index:1}@media (width <= 768px){.toolbar .overlay[data-v-e2d11fb5]{display:none}}.right-menu-item[data-v-e2d11fb5]{color:#051a3e}.title[data-v-06ec7485]{font-size:24px!important}.alt-title[data-v-06ec7485]{font-size:20px!important}.body-text[data-v-06ec7485]{font-size:16px!important}.link-label[data-v-06ec7485]{font-size:14px!important}h1[data-v-06ec7485]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-06ec7485]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-06ec7485]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-06ec7485]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-06ec7485]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-06ec7485]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-06ec7485]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-06ec7485]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-06ec7485]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-06ec7485]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-06ec7485]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-06ec7485]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-06ec7485],.elevation-2[data-v-06ec7485],.elevation-3[data-v-06ec7485],.elevation-4[data-v-06ec7485],.elevation-5[data-v-06ec7485],.elevation-6[data-v-06ec7485],.elevation-7[data-v-06ec7485],.elevation-8[data-v-06ec7485],.elevation-9[data-v-06ec7485],.elevation-10[data-v-06ec7485],.elevation-11[data-v-06ec7485],.elevation-12[data-v-06ec7485],.elevation-13[data-v-06ec7485],.elevation-14[data-v-06ec7485],.elevation-15[data-v-06ec7485],.elevation-16[data-v-06ec7485],.elevation-17[data-v-06ec7485],.elevation-18[data-v-06ec7485],.elevation-19[data-v-06ec7485],.elevation-20[data-v-06ec7485],.elevation-21[data-v-06ec7485],.elevation-22[data-v-06ec7485],.elevation-23[data-v-06ec7485],.elevation-24[data-v-06ec7485]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-06ec7485]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-06ec7485]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-06ec7485]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-06ec7485]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.v-list-item[data-v-06ec7485]:hover{background-color:#00000001}.vd-lang-btn[data-v-06ec7485]{font-size:16px;--hover-color: rgba(tokens.$colors-overlay, .5);text-transform:none;letter-spacing:inherit}.vd-logo-brand-section .vd-title-container[data-v-ca95c6a8]{overflow:hidden}.vd-logo-brand-section[data-v-ca95c6a8] .vd-title{line-height:1.45!important}.vd-logo-brand-section .vd-compte-entreprise-title[data-v-ca95c6a8]{font-weight:700!important}.vd-logo-brand-section .vd-compte-entreprise-title span[data-v-ca95c6a8]{color:#cd545b}.vd-logo-brand-section[data-v-ca95c6a8] img{width:auto;height:100%;flex:none}.vd-logo-brand-section svg[data-v-ca95c6a8],.vd-logo-brand-section .vd-home-link[data-v-ca95c6a8]{flex:none}.vd-logo-brand-section .vd-home-link[data-v-ca95c6a8]{cursor:pointer}img[data-v-aea9e609]{max-height:290px}.title[data-v-d4a7bd1a]{font-size:24px!important}.alt-title[data-v-d4a7bd1a]{font-size:20px!important}.body-text[data-v-d4a7bd1a]{font-size:16px!important}.link-label[data-v-d4a7bd1a]{font-size:14px!important}h1[data-v-d4a7bd1a]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-d4a7bd1a]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-d4a7bd1a]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-d4a7bd1a]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-d4a7bd1a]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-d4a7bd1a]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-d4a7bd1a]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-d4a7bd1a]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-d4a7bd1a]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-d4a7bd1a]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-d4a7bd1a]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-d4a7bd1a]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-d4a7bd1a],.elevation-2[data-v-d4a7bd1a],.elevation-3[data-v-d4a7bd1a],.elevation-4[data-v-d4a7bd1a],.elevation-5[data-v-d4a7bd1a],.elevation-6[data-v-d4a7bd1a],.elevation-7[data-v-d4a7bd1a],.elevation-8[data-v-d4a7bd1a],.elevation-9[data-v-d4a7bd1a],.elevation-10[data-v-d4a7bd1a],.elevation-11[data-v-d4a7bd1a],.elevation-12[data-v-d4a7bd1a],.elevation-13[data-v-d4a7bd1a],.elevation-14[data-v-d4a7bd1a],.elevation-15[data-v-d4a7bd1a],.elevation-16[data-v-d4a7bd1a],.elevation-17[data-v-d4a7bd1a],.elevation-18[data-v-d4a7bd1a],.elevation-19[data-v-d4a7bd1a],.elevation-20[data-v-d4a7bd1a],.elevation-21[data-v-d4a7bd1a],.elevation-22[data-v-d4a7bd1a],.elevation-23[data-v-d4a7bd1a],.elevation-24[data-v-d4a7bd1a]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-d4a7bd1a]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-d4a7bd1a]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-d4a7bd1a]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-d4a7bd1a]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.nir-container[data-v-d4a7bd1a]{width:var(--1a08e1ba)}.v-messages__message--success[data-v-d4a7bd1a],.v-field--active .v-messages__message--success[data-v-d4a7bd1a]{color:#224e2d!important}.v-messages__message--error[data-v-d4a7bd1a],.v-field--active .v-messages__message--error[data-v-d4a7bd1a]{color:#b33f2e}[data-v-d4a7bd1a] .v-field.v-field--active .v-label.v-field-label--floating{opacity:1}.multi-line[data-v-d4a7bd1a]{white-space:pre-line!important}.vd-number-field[data-v-d4a7bd1a]{min-width:296px}.vd-key-field[data-v-d4a7bd1a]{min-width:104px;flex:none;margin-left:1rem}.custom-counter[data-v-d4a7bd1a]{color:#0000008a}.vd-nir-field[data-v-d4a7bd1a] .v-input__append-inner,.vd-tooltip-icon[data-v-d4a7bd1a]{flex:none;color:#0000008a}[data-v-d4a7bd1a] .v-overlay__content{background:#545859f2!important}.vd-nir-field--outlined[data-v-d4a7bd1a] .v-messages.error--text{padding:6px}.vd-nir-field[data-v-d4a7bd1a]{container-name:nirfieldwrapper}[data-v-d4a7bd1a] .v-input__append{margin-inline-start:0!important}[data-v-d4a7bd1a] .vd-number-field>.v-input__prepend{margin-right:0!important}@media screen and (width <= 360px){[data-v-d4a7bd1a] .vd-key-field>.v-input__prepend{margin-inline-end:0!important}}[data-v-d4a7bd1a] .v-text-field .v-input__details{padding-inline:0!important;flex:none!important}[data-v-d4a7bd1a] .v-text-field .v-input__details .v-messages{color:#000!important}@container nirFieldwrapper (max-width: 300px){.vd-nir-field__fields-wrapper[data-v-d4a7bd1a]>.v-input__control{justify-content:start;flex-wrap:wrap;gap:4px;margin-bottom:4px}.vd-nir-field__fields-wrapper[data-v-d4a7bd1a]>.v-input__control .vd-number-field{flex:100% 0 0}}@media screen and (width <= 360px){.vd-nir-field__fields-wrapper[data-v-d4a7bd1a]>.v-input__control{justify-content:start;flex-wrap:wrap;gap:4px;margin-bottom:4px}.vd-nir-field__fields-wrapper[data-v-d4a7bd1a]>.v-input__control .vd-number-field{flex:100% 0 0}}.v-text-field .v-input__append-inner[data-v-d4a7bd1a]{padding-left:0!important}[data-v-d4a7bd1a] .v-text-field>.v-input__control>.v-input__slot>.v-text-field__slot{width:min-content!important}img[data-v-8e9d618a]{max-height:290px}.title[data-v-f2e50ac9]{font-size:24px!important}.alt-title[data-v-f2e50ac9]{font-size:20px!important}.body-text[data-v-f2e50ac9]{font-size:16px!important}.link-label[data-v-f2e50ac9]{font-size:14px!important}h1[data-v-f2e50ac9]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-f2e50ac9]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-f2e50ac9]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-f2e50ac9]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-f2e50ac9]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-f2e50ac9]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-f2e50ac9]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-f2e50ac9]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-f2e50ac9]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-f2e50ac9]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-f2e50ac9]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-f2e50ac9]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-f2e50ac9],.elevation-2[data-v-f2e50ac9],.elevation-3[data-v-f2e50ac9],.elevation-4[data-v-f2e50ac9],.elevation-5[data-v-f2e50ac9],.elevation-6[data-v-f2e50ac9],.elevation-7[data-v-f2e50ac9],.elevation-8[data-v-f2e50ac9],.elevation-9[data-v-f2e50ac9],.elevation-10[data-v-f2e50ac9],.elevation-11[data-v-f2e50ac9],.elevation-12[data-v-f2e50ac9],.elevation-13[data-v-f2e50ac9],.elevation-14[data-v-f2e50ac9],.elevation-15[data-v-f2e50ac9],.elevation-16[data-v-f2e50ac9],.elevation-17[data-v-f2e50ac9],.elevation-18[data-v-f2e50ac9],.elevation-19[data-v-f2e50ac9],.elevation-20[data-v-f2e50ac9],.elevation-21[data-v-f2e50ac9],.elevation-22[data-v-f2e50ac9],.elevation-23[data-v-f2e50ac9],.elevation-24[data-v-f2e50ac9]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-f2e50ac9]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-f2e50ac9]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-f2e50ac9]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-f2e50ac9]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.vd-notification-content[data-v-f2e50ac9]{display:flex;align-items:center}.vd-notification-bar[data-v-f2e50ac9] .v-snack__wrapper{padding:16px;min-width:0;max-width:none}[data-v-f2e50ac9] .v-snackbar__content{padding:16px!important}[data-v-f2e50ac9] .v-snackbar__actions{margin-inline-end:10px}.vd-notification-bar.v-snackbar--vertical[data-v-f2e50ac9] .v-snackbar--vertical .v-snackbar__wrapper .v-snackbar__actions{width:100%!important;align-self:auto}.vd-notification-bar.v-snackbar--vertical[data-v-f2e50ac9] .v-snack__wrapper{align-items:stretch;flex-direction:row}.vd-notification-bar.v-snackbar--vertical[data-v-f2e50ac9] .v-snack__action{align-self:stretch;align-items:stretch;flex-direction:column}.vd-notification-bar.v-snackbar--vertical[data-v-f2e50ac9] .v-snackbar__content{margin:0;width:100%;display:flex}.vd-notification-bar.v-snackbar--vertical[data-v-f2e50ac9] .vd-notification-content{flex-direction:column;display:flex}.long-text[data-v-f2e50ac9] .v-snackbar__actions{width:98%!important}.short-text[data-v-f2e50ac9] .v-snackbar__actions{width:48%!important}.action-section-long-text[data-v-f2e50ac9]{justify-content:space-around}.action-section-short-text[data-v-f2e50ac9]{justify-content:end!important}.title{font-size:24px!important}.alt-title{font-size:20px!important}.body-text{font-size:16px!important}.link-label{font-size:14px!important}h1{font-size:32px!important;line-height:130%!important}.h1-bold{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2{font-size:28px!important;line-height:130%!important}.h2-bold{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3{font-size:24px!important;line-height:130%!important}.h3-bold{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4{font-size:20px!important;line-height:130%!important}.h4-bold{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1{font-size:40px!important;line-height:130%!important}.display-1-bold{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2{font-size:30px!important;line-height:130%!important}.display-2-bold{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1,.elevation-2,.elevation-3,.elevation-4,.elevation-5,.elevation-6,.elevation-7,.elevation-8,.elevation-9,.elevation-10,.elevation-11,.elevation-12,.elevation-13,.elevation-14,.elevation-15,.elevation-16,.elevation-17,.elevation-18,.elevation-19,.elevation-20,.elevation-21,.elevation-22,.elevation-23,.elevation-24{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.vd-data-table table thead tr,.v-data-table table thead tr{white-space:nowrap}.vd-data-table table thead th .v-data-table-header__content,.v-data-table table thead th .v-data-table-header__content{opacity:.65;font-size:.875rem;font-weight:700!important}.vd-data-table table :not(thead) tr:hover,.v-data-table table :not(thead) tr:hover{background-color:#0c419a1a}.vd-data-table.row-clickable table tbody tr,.v-data-table.row-clickable table tbody tr{cursor:pointer}.vd-data-table.fixed-min-height .v-data-table__wrapper,.v-data-table.fixed-min-height .v-data-table__wrapper{min-height:540px}.vd-data-table.no-mobile-header .v-data-table-header-mobile,.v-data-table.no-mobile-header .v-data-table-header-mobile{display:none}.vd-data-table.no-mobile-header table,.v-data-table.no-mobile-header table{border-top:2px solid #eee}.vd-data-table .v-data-table-progress .v-progress-linear,.v-data-table .v-data-table-progress .v-progress-linear{height:4px!important}.vd-data-table .v-data-table-progress .v-progress-linear__background,.vd-data-table .v-data-table-progress .v-progress-linear__indeterminate,.v-data-table .v-data-table-progress .v-progress-linear__background,.v-data-table .v-data-table-progress .v-progress-linear__indeterminate{background:#0c419a}.vd-data-table .v-field--active .v-field__prepend-inner>.v-icon,.vd-data-table .v-field--active .v-field__append-inner>.v-icon,.vd-data-table .v-field--active .v-field__clearable>.v-icon,.v-data-table .v-field--active .v-field__prepend-inner>.v-icon,.v-data-table .v-field--active .v-field__append-inner>.v-icon,.v-data-table .v-field--active .v-field__clearable>.v-icon{opacity:1;color:#0c419a}.vd-data-table .v-field--focused,.v-data-table .v-field--focused{border-color:#0c419a;color:#0c419a}.title[data-v-c7bb2d94]{font-size:24px!important}.alt-title[data-v-c7bb2d94]{font-size:20px!important}.body-text[data-v-c7bb2d94]{font-size:16px!important}.link-label[data-v-c7bb2d94]{font-size:14px!important}h1[data-v-c7bb2d94]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-c7bb2d94]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-c7bb2d94]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-c7bb2d94]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-c7bb2d94]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-c7bb2d94]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-c7bb2d94]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-c7bb2d94]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-c7bb2d94]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-c7bb2d94]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-c7bb2d94]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-c7bb2d94]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-c7bb2d94],.elevation-2[data-v-c7bb2d94],.elevation-3[data-v-c7bb2d94],.elevation-4[data-v-c7bb2d94],.elevation-5[data-v-c7bb2d94],.elevation-6[data-v-c7bb2d94],.elevation-7[data-v-c7bb2d94],.elevation-8[data-v-c7bb2d94],.elevation-9[data-v-c7bb2d94],.elevation-10[data-v-c7bb2d94],.elevation-11[data-v-c7bb2d94],.elevation-12[data-v-c7bb2d94],.elevation-13[data-v-c7bb2d94],.elevation-14[data-v-c7bb2d94],.elevation-15[data-v-c7bb2d94],.elevation-16[data-v-c7bb2d94],.elevation-17[data-v-c7bb2d94],.elevation-18[data-v-c7bb2d94],.elevation-19[data-v-c7bb2d94],.elevation-20[data-v-c7bb2d94],.elevation-21[data-v-c7bb2d94],.elevation-22[data-v-c7bb2d94],.elevation-23[data-v-c7bb2d94],.elevation-24[data-v-c7bb2d94]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-c7bb2d94]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-c7bb2d94]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-c7bb2d94]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-c7bb2d94]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.vd-password .v-btn--icon.v-btn--density-default[data-v-c7bb2d94]{width:var(--v-btn-height);height:var(--v-btn-height)}.vd-password[data-v-c7bb2d94] .v-field.v-field--variant-underlined .v-field__append-inner{padding-top:0;padding-bottom:0;display:flex;align-items:center}.vd-password[data-v-c7bb2d94] .v-field.v-field--variant-underlined .v-field__input{padding-top:calc(var(--v-field-input-padding-top) - 15px)}.v-messages__message--success[data-v-c7bb2d94],.v-field--active .v-messages__message--success[data-v-c7bb2d94]{color:#224e2d!important}.period-field[data-v-dcc57c6d]{display:flex;gap:10px}.phone-field-container[data-v-1abcba51]{display:flex;flex-direction:column;align-items:flex-start;width:100%}.phone-field[data-v-1abcba51]{width:100%}.custom-select[data-v-1abcba51]{width:30%}@media (width >= 600px){.phone-field-container[data-v-1abcba51]{flex-direction:row;align-items:center}.custom-select[data-v-1abcba51]{margin-right:1rem;margin-bottom:0;min-width:144px}.phone-field[data-v-1abcba51]{min-width:350px}}[data-v-1abcba51] .v-list{position:absolute;left:inherit!important;background-color:#fff;max-height:300px;padding:0;box-shadow:0 2px 5px #0000001f,0 2px 10px #00000014;border-radius:4px;overflow-y:auto;z-index:2}.tooltip-wrapper[data-v-fdf9eaf9]{position:absolute;top:0;left:20px}.tooltip-wrapper[data-v-fdf9eaf9]:before{content:"";position:absolute;top:100%;left:50%;transform:translate(-50%);border:6px solid transparent;border-top-color:#000000b3}.tooltip[data-v-fdf9eaf9]{position:absolute;bottom:0;background-color:#000000b3;color:#fff;padding:4px 8px;border-radius:4px;will-change:transform}.title[data-v-efdf07f6]{font-size:24px!important}.alt-title[data-v-efdf07f6]{font-size:20px!important}.body-text[data-v-efdf07f6]{font-size:16px!important}.link-label[data-v-efdf07f6]{font-size:14px!important}h1[data-v-efdf07f6]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-efdf07f6]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-efdf07f6]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-efdf07f6]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-efdf07f6]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-efdf07f6]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-efdf07f6]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-efdf07f6]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-efdf07f6]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-efdf07f6]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-efdf07f6]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-efdf07f6]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-efdf07f6],.elevation-2[data-v-efdf07f6],.elevation-3[data-v-efdf07f6],.elevation-4[data-v-efdf07f6],.elevation-5[data-v-efdf07f6],.elevation-6[data-v-efdf07f6],.elevation-7[data-v-efdf07f6],.elevation-8[data-v-efdf07f6],.elevation-9[data-v-efdf07f6],.elevation-10[data-v-efdf07f6],.elevation-11[data-v-efdf07f6],.elevation-12[data-v-efdf07f6],.elevation-13[data-v-efdf07f6],.elevation-14[data-v-efdf07f6],.elevation-15[data-v-efdf07f6],.elevation-16[data-v-efdf07f6],.elevation-17[data-v-efdf07f6],.elevation-18[data-v-efdf07f6],.elevation-19[data-v-efdf07f6],.elevation-20[data-v-efdf07f6],.elevation-21[data-v-efdf07f6],.elevation-22[data-v-efdf07f6],.elevation-23[data-v-efdf07f6],.elevation-24[data-v-efdf07f6]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-efdf07f6]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-efdf07f6]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-efdf07f6]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-efdf07f6]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.wrapper[data-v-efdf07f6]{--sy-track-height: 4px;--sy-thumb-size: 20px;--sy-thumb-color: var(--3564209b);--sy-track-color: var(--3e537b74);--sy-track-fill-color: var(--71c52d03);position:relative;margin-inline:var(--sy-thumb-size);width:calc(100% - var(--sy-thumb-size) * 2)}.track[data-v-efdf07f6]{height:32px;cursor:pointer}.track[data-v-efdf07f6]:before{content:"";position:absolute;top:50%;left:0;transform:translateY(-50%);width:100%;height:var(--sy-track-height);background-color:var(--sy-track-color)}.thumb-min[data-v-efdf07f6],.thumb-max[data-v-efdf07f6]{cursor:pointer;position:absolute;top:50%;left:0;z-index:2;width:40px;height:40px;border-radius:50%;transition:left .1s;will-change:left}.thumb-min[data-v-efdf07f6]:before,.thumb-max[data-v-efdf07f6]:before{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:var(--sy-thumb-size);height:var(--sy-thumb-size);background-color:var(--sy-thumb-color);border-radius:50%;transform-origin:bottom right;transition:transform .1s;opacity:.4}.thumb-min[data-v-efdf07f6]:after,.thumb-max[data-v-efdf07f6]:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:var(--sy-thumb-size);height:var(--sy-thumb-size);background-color:var(--sy-thumb-color);opacity:.4;border-radius:50%;transform-origin:bottom right;transition:transform .1s ease-in,opacity .1s ease-in}.thumb-min[data-v-efdf07f6]:focus:before,.thumb-min[data-v-efdf07f6]:hover:before,.thumb-max[data-v-efdf07f6]:focus:before,.thumb-max[data-v-efdf07f6]:hover:before{transform:scale(2)}.inner-thumb[data-v-efdf07f6]{position:absolute;top:50%;left:50%;z-index:2;transform:translate(-50%,-50%);width:var(--sy-thumb-size);height:var(--sy-thumb-size);background-color:var(--sy-thumb-color);border-radius:50%;box-shadow:0 1px 5px #0000001f,0 2px 2px #00000024,0 3px 1px -2px #0003}.thumb-min[data-v-efdf07f6]{transform:translate(calc((20px + var(--sy-thumb-size) / 2) * -1),-50%)}.thumb-max[data-v-efdf07f6]{transform:translate(calc((var(--sy-thumb-size) - 40px) / 2),-50%)}.filled-track[data-v-efdf07f6]{position:absolute;top:50%;left:0;transform:translateY(-50%);width:100%;height:var(--sy-track-height);background-color:var(--sy-track-fill-color);transition:all .1s}.animate-click[data-v-efdf07f6]:after{transform:scale(2);opacity:.4;transition:transform .25s ease-out,opacity .25s ease-out}.fake-thumb[data-v-efdf07f6]{visibility:hidden;transition:none!important;cursor:default;z-index:-1;-webkit-user-select:none;user-select:none}.title[data-v-d8875a0f]{font-size:24px!important}.alt-title[data-v-d8875a0f]{font-size:20px!important}.body-text[data-v-d8875a0f]{font-size:16px!important}.link-label[data-v-d8875a0f]{font-size:14px!important}h1[data-v-d8875a0f]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-d8875a0f]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-d8875a0f]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-d8875a0f]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-d8875a0f]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-d8875a0f]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-d8875a0f]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-d8875a0f]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-d8875a0f]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-d8875a0f]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-d8875a0f]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-d8875a0f]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-d8875a0f],.elevation-2[data-v-d8875a0f],.elevation-3[data-v-d8875a0f],.elevation-4[data-v-d8875a0f],.elevation-5[data-v-d8875a0f],.elevation-6[data-v-d8875a0f],.elevation-7[data-v-d8875a0f],.elevation-8[data-v-d8875a0f],.elevation-9[data-v-d8875a0f],.elevation-10[data-v-d8875a0f],.elevation-11[data-v-d8875a0f],.elevation-12[data-v-d8875a0f],.elevation-13[data-v-d8875a0f],.elevation-14[data-v-d8875a0f],.elevation-15[data-v-d8875a0f],.elevation-16[data-v-d8875a0f],.elevation-17[data-v-d8875a0f],.elevation-18[data-v-d8875a0f],.elevation-19[data-v-d8875a0f],.elevation-20[data-v-d8875a0f],.elevation-21[data-v-d8875a0f],.elevation-22[data-v-d8875a0f],.elevation-23[data-v-d8875a0f],.elevation-24[data-v-d8875a0f]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-d8875a0f]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-d8875a0f]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-d8875a0f]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-d8875a0f]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.vd-emotion-picker[data-v-d8875a0f]{border:0}.v-rating .v-btn[data-v-d8875a0f]{transition:.2s;border:1px solid transparent;opacity:1;background:transparent}.v-rating .v-btn[data-v-d8875a0f] .v-btn__content{flex-direction:column}.v-rating .v-btn .text-secondary[data-v-d8875a0f]{color:#434647!important}.v-rating .v-btn.sad[data-v-d8875a0f]{color:#862f22!important}.v-rating .v-btn.neutral[data-v-d8875a0f]{color:#906b15!important}.v-rating .v-btn.happy[data-v-d8875a0f]{color:#006755!important}.v-rating .v-btn--active.v-btn--disabled .v-icon[data-v-d8875a0f]{color:currentcolor!important}.v-rating .v-btn[data-v-d8875a0f]:focus,.v-rating .v-btn--active[data-v-d8875a0f]{border-color:currentcolor!important}.v-rating .v-btn[data-v-d8875a0f]:hover .v-btn__overlay,.v-rating .v-btn[data-v-d8875a0f]:focus .v-btn__overlay,.v-rating .v-btn--active[data-v-d8875a0f] .v-btn__overlay{display:none}.v-rating .v-btn:hover.sad[data-v-d8875a0f],.v-rating .v-btn:focus.sad[data-v-d8875a0f],.v-rating .v-btn--active.sad[data-v-d8875a0f]{background:#fcedeb}.v-rating .v-btn:hover.neutral[data-v-d8875a0f],.v-rating .v-btn:focus.neutral[data-v-d8875a0f],.v-rating .v-btn--active.neutral[data-v-d8875a0f]{background:#fdf7e9}.v-rating .v-btn:hover.happy[data-v-d8875a0f],.v-rating .v-btn:focus.happy[data-v-d8875a0f],.v-rating .v-btn--active.happy[data-v-d8875a0f]{background:#e5f7f4}.v-theme--light.v-btn--disabled[data-v-d8875a0f] .v-icon{color:#76797a!important}.vd-number-picker[data-v-c3142f79]{border:0}.vd-btn-answer.v-btn.v-btn--disabled[data-v-c3142f79]{opacity:1}.title[data-v-14e84c18]{font-size:24px!important}.alt-title[data-v-14e84c18]{font-size:20px!important}.body-text[data-v-14e84c18]{font-size:16px!important}.link-label[data-v-14e84c18]{font-size:14px!important}h1[data-v-14e84c18]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-14e84c18]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-14e84c18]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-14e84c18]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-14e84c18]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-14e84c18]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-14e84c18]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-14e84c18]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-14e84c18]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-14e84c18]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-14e84c18]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-14e84c18]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-14e84c18],.elevation-2[data-v-14e84c18],.elevation-3[data-v-14e84c18],.elevation-4[data-v-14e84c18],.elevation-5[data-v-14e84c18],.elevation-6[data-v-14e84c18],.elevation-7[data-v-14e84c18],.elevation-8[data-v-14e84c18],.elevation-9[data-v-14e84c18],.elevation-10[data-v-14e84c18],.elevation-11[data-v-14e84c18],.elevation-12[data-v-14e84c18],.elevation-13[data-v-14e84c18],.elevation-14[data-v-14e84c18],.elevation-15[data-v-14e84c18],.elevation-16[data-v-14e84c18],.elevation-17[data-v-14e84c18],.elevation-18[data-v-14e84c18],.elevation-19[data-v-14e84c18],.elevation-20[data-v-14e84c18],.elevation-21[data-v-14e84c18],.elevation-22[data-v-14e84c18],.elevation-23[data-v-14e84c18],.elevation-24[data-v-14e84c18]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-14e84c18]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-14e84c18]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-14e84c18]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-14e84c18]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.vd-stars-picker[data-v-14e84c18]{border:0}.v-rating .v-icon[data-v-14e84c18]{width:52px!important;height:36px!important}.v-rating .v-icon--disabled.text-primary[data-v-14e84c18]{color:#0c419a!important}.v-rating .v-icon.text-blue-lighten[data-v-14e84c18],.v-rating .v-icon--disabled.text-blue-lighten[data-v-14e84c18]{color:#9eb3d7!important}.title[data-v-19edec6a]{font-size:24px!important}.alt-title[data-v-19edec6a]{font-size:20px!important}.body-text[data-v-19edec6a]{font-size:16px!important}.link-label[data-v-19edec6a]{font-size:14px!important}h1[data-v-19edec6a]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-19edec6a]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-19edec6a]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-19edec6a]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-19edec6a]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-19edec6a]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-19edec6a]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-19edec6a]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-19edec6a]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-19edec6a]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-19edec6a]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-19edec6a]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-19edec6a],.elevation-2[data-v-19edec6a],.elevation-3[data-v-19edec6a],.elevation-4[data-v-19edec6a],.elevation-5[data-v-19edec6a],.elevation-6[data-v-19edec6a],.elevation-7[data-v-19edec6a],.elevation-8[data-v-19edec6a],.elevation-9[data-v-19edec6a],.elevation-10[data-v-19edec6a],.elevation-11[data-v-19edec6a],.elevation-12[data-v-19edec6a],.elevation-13[data-v-19edec6a],.elevation-14[data-v-19edec6a],.elevation-15[data-v-19edec6a],.elevation-16[data-v-19edec6a],.elevation-17[data-v-19edec6a],.elevation-18[data-v-19edec6a],.elevation-19[data-v-19edec6a],.elevation-20[data-v-19edec6a],.elevation-21[data-v-19edec6a],.elevation-22[data-v-19edec6a],.elevation-23[data-v-19edec6a],.elevation-24[data-v-19edec6a]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-19edec6a]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-19edec6a]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-19edec6a]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-19edec6a]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.alert[data-v-19edec6a]{padding:16px}.alert-icon[data-v-19edec6a]{border-radius:50%}[data-v-19edec6a] .v-alert__underlay{display:none}[data-v-19edec6a] .v-alert__close{align-self:center}[data-v-19edec6a] .v-btn--variant-text .v-btn__overlay{background:transparent!important}.alert-icon[data-v-19edec6a] .v-icon__svg{height:1.5rem!important}.alert-close-btn[data-v-19edec6a]{cursor:pointer;line-height:0}.alert-close-btn .v-btn__overlay[data-v-19edec6a]{display:none}.v-btn[data-v-19edec6a]{text-transform:none;font-weight:700;font-size:.75rem;letter-spacing:normal}@media screen and (width <= 440px){.alert[data-v-19edec6a]{display:flex;flex-direction:column;background-color:#fff}.alert[data-v-19edec6a] .v-alert__content{align-self:flex-start!important;margin-top:24px}.alert[data-v-19edec6a] .v-alert__close{margin-top:16px;align-self:flex-end}.alert .v-alert__prepend>.v-icon[data-v-19edec6a]{background:none!important}}@media screen and (width >= 441px){.alert .alert-icon[data-v-19edec6a]{width:3.5rem!important;height:3.5rem!important;display:grid;place-items:center}}.v-alert.alert--warning.v-alert--variant-tonal[data-v-19edec6a]{background:#fcf0d3!important;color:#222324!important}.v-alert.alert--warning.v-alert--variant-tonal[data-v-19edec6a] .v-alert__border{border-color:#60480e!important;opacity:1!important;border-inline-start-width:4px}.v-alert.alert--warning.v-alert--variant-outlined[data-v-19edec6a]{background:transparent!important}.v-alert.alert--warning.v-alert--variant-outlined[data-v-19edec6a] .v-alert__border{border-color:#60480e!important;opacity:1!important}.v-alert.alert--warning .v-alert__prepend>.v-icon[data-v-19edec6a],.v-alert.text-warning .v-alert__prepend>.v-icon[data-v-19edec6a]{background:#fdf7e9}.v-alert.alert--warning .v-alert__prepend>.v-icon[data-v-19edec6a] svg,.v-alert.text-warning .v-alert__prepend>.v-icon[data-v-19edec6a] svg{fill:#60480e}.v-alert.text-warning[data-v-19edec6a]{color:#60480e!important;border-color:#60480e!important}.v-alert.alert--success.v-alert--variant-tonal[data-v-19edec6a]{background:#cceee8!important;color:#222324!important}.v-alert.alert--success.v-alert--variant-tonal[data-v-19edec6a] .v-alert__border{border-color:#224e2d!important;opacity:1!important;border-inline-start-width:4px}.v-alert.alert--success.v-alert--variant-outlined[data-v-19edec6a]{background:transparent!important}.v-alert.alert--success.v-alert--variant-outlined[data-v-19edec6a] .v-alert__border{border-color:#224e2d!important;opacity:1!important}.v-alert.alert--success .v-alert__prepend>.v-icon[data-v-19edec6a],.v-alert.text-success .v-alert__prepend>.v-icon[data-v-19edec6a]{background:#e5f7f4}.v-alert.alert--success .v-alert__prepend>.v-icon[data-v-19edec6a] svg,.v-alert.text-success .v-alert__prepend>.v-icon[data-v-19edec6a] svg{fill:#224e2d}.v-alert.text-success[data-v-19edec6a]{color:#224e2d!important;border-color:#224e2d!important}.v-alert.alert--error.v-alert--variant-tonal[data-v-19edec6a]{background:#f9dcd7!important;color:#222324!important}.v-alert.alert--error.v-alert--variant-tonal[data-v-19edec6a] .v-alert__border{border-color:#b33f2e!important;opacity:1!important;border-inline-start-width:4px}.v-alert.alert--error.v-alert--variant-outlined[data-v-19edec6a]{background:transparent!important}.v-alert.alert--error.v-alert--variant-outlined[data-v-19edec6a] .v-alert__border{border-color:#b33f2e!important;opacity:1!important}.v-alert.alert--error .v-alert__prepend>.v-icon[data-v-19edec6a],.v-alert.text-error .v-alert__prepend>.v-icon[data-v-19edec6a]{background:#fcedeb}.v-alert.alert--error .v-alert__prepend>.v-icon[data-v-19edec6a] svg,.v-alert.text-error .v-alert__prepend>.v-icon[data-v-19edec6a] svg{fill:#b33f2e}.v-alert.text-error[data-v-19edec6a]{color:#b33f2e!important;border-color:#b33f2e!important}.v-alert.alert--info.v-alert--variant-tonal[data-v-19edec6a]{background:#ced9eb!important;color:#222324!important}.v-alert.alert--info.v-alert--variant-tonal[data-v-19edec6a] .v-alert__border{border-color:#0c419a!important;opacity:1!important;border-inline-start-width:4px}.v-alert.alert--info.v-alert--variant-outlined[data-v-19edec6a]{background:transparent!important}.v-alert.alert--info.v-alert--variant-outlined[data-v-19edec6a] .v-alert__border{border-color:#0c419a!important;opacity:1!important}.v-alert.alert--info .v-alert__prepend>.v-icon[data-v-19edec6a],.v-alert.text-info .v-alert__prepend>.v-icon[data-v-19edec6a]{background:#e7ecf5}.v-alert.alert--info .v-alert__prepend>.v-icon[data-v-19edec6a] svg,.v-alert.text-info .v-alert__prepend>.v-icon[data-v-19edec6a] svg{fill:#0c419a}.v-alert.text-info[data-v-19edec6a]{color:#0c419a!important;border-color:#0c419a!important}.title[data-v-86fce8e6]{font-size:24px!important}.alt-title[data-v-86fce8e6]{font-size:20px!important}.body-text[data-v-86fce8e6]{font-size:16px!important}.link-label[data-v-86fce8e6]{font-size:14px!important}h1[data-v-86fce8e6]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-86fce8e6]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-86fce8e6]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-86fce8e6]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-86fce8e6]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-86fce8e6]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-86fce8e6]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-86fce8e6]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-86fce8e6]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-86fce8e6]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-86fce8e6]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-86fce8e6]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-86fce8e6],.elevation-2[data-v-86fce8e6],.elevation-3[data-v-86fce8e6],.elevation-4[data-v-86fce8e6],.elevation-5[data-v-86fce8e6],.elevation-6[data-v-86fce8e6],.elevation-7[data-v-86fce8e6],.elevation-8[data-v-86fce8e6],.elevation-9[data-v-86fce8e6],.elevation-10[data-v-86fce8e6],.elevation-11[data-v-86fce8e6],.elevation-12[data-v-86fce8e6],.elevation-13[data-v-86fce8e6],.elevation-14[data-v-86fce8e6],.elevation-15[data-v-86fce8e6],.elevation-16[data-v-86fce8e6],.elevation-17[data-v-86fce8e6],.elevation-18[data-v-86fce8e6],.elevation-19[data-v-86fce8e6],.elevation-20[data-v-86fce8e6],.elevation-21[data-v-86fce8e6],.elevation-22[data-v-86fce8e6],.elevation-23[data-v-86fce8e6],.elevation-24[data-v-86fce8e6]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-86fce8e6]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-86fce8e6]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-86fce8e6]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-86fce8e6]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}[data-v-86fce8e6] .v-btn-group{height:auto!important}[data-v-86fce8e6] .v-btn-group .v-btn__content{display:flex;width:100%;justify-content:space-between}[data-v-86fce8e6] .v-btn-group .v-btn:not(:first-child){border-inline-start:inherit}[data-v-86fce8e6] .v-btn-group .v-btn:last-child{border-end-end-radius:4px;border-start-end-radius:4px;margin-right:0}[data-v-86fce8e6] .v-btn-group .v-btn:first-child{border-start-start-radius:4px;border-end-start-radius:4px;margin-right:8px}.select-btn-field-toggle[data-v-86fce8e6]{background:none!important;padding-left:0!important}.select-btn-field-toggle .v-btn[data-v-86fce8e6]{background:#fff;border-width:1px!important;min-width:48px!important;text-wrap:auto;text-align:left;padding-top:0!important;padding-bottom:0!important}.select-btn-field-toggle .v-btn.v-btn--active[data-v-86fce8e6]:before{opacity:0!important}.select-btn-field-toggle .v-btn[data-v-86fce8e6] .v-btn__content{flex-shrink:1!important;padding:5px 0!important}.select-btn-field-toggle .v-icon[data-v-86fce8e6]{height:1.5rem;width:1.5rem}.select-btn-field-toggle.flex-column .v-btn[data-v-86fce8e6]{border-radius:4px!important;border-width:1px!important}.select-btn-field-toggle.flex-column .select-list-item+.select-list-item .v-btn[data-v-86fce8e6]{margin-top:8px}.select-btn-field-toggle .select-list-item[data-v-86fce8e6]{all:unset;display:contents}.select-btn-field-toggle.theme--dark .v-btn[data-v-86fce8e6]{background:#1e1e1e}.select-btn-field-toggle:not(.v-btn-toggle--group) .v-btn.v-btn[data-v-86fce8e6]{border-color:#0c419a!important}.select-btn-field-toggle:not(.v-btn-toggle--group) .v-btn.v-btn.text-error[data-v-86fce8e6]{border-color:#b33f2e!important}.select-btn-field-toggle[data-v-86fce8e6] .v-btn--disabled{opacity:1}.select-btn-field-toggle[data-v-86fce8e6] .v-btn--disabled.v-btn--variant-flat .v-btn__overlay{opacity:0}.select-btn-field-toggle[data-v-86fce8e6] .bg-primary{--v-theme-overlay-multiplier: 1}.title[data-v-aa139979]{font-size:24px!important}.alt-title[data-v-aa139979]{font-size:20px!important}.body-text[data-v-aa139979]{font-size:16px!important}.link-label[data-v-aa139979]{font-size:14px!important}h1[data-v-aa139979]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-aa139979]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-aa139979]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-aa139979]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-aa139979]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-aa139979]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-aa139979]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-aa139979]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-aa139979]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-aa139979]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-aa139979]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-aa139979]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-aa139979],.elevation-2[data-v-aa139979],.elevation-3[data-v-aa139979],.elevation-4[data-v-aa139979],.elevation-5[data-v-aa139979],.elevation-6[data-v-aa139979],.elevation-7[data-v-aa139979],.elevation-8[data-v-aa139979],.elevation-9[data-v-aa139979],.elevation-10[data-v-aa139979],.elevation-11[data-v-aa139979],.elevation-12[data-v-aa139979],.elevation-13[data-v-aa139979],.elevation-14[data-v-aa139979],.elevation-15[data-v-aa139979],.elevation-16[data-v-aa139979],.elevation-17[data-v-aa139979],.elevation-18[data-v-aa139979],.elevation-19[data-v-aa139979],.elevation-20[data-v-aa139979],.elevation-21[data-v-aa139979],.elevation-22[data-v-aa139979],.elevation-23[data-v-aa139979],.elevation-24[data-v-aa139979]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-aa139979]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-aa139979]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-aa139979]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-aa139979]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.vd-skip-link[data-v-aa139979]{z-index:150;position:fixed;top:0;right:0;transition:none;width:100%;background:#fff;outline:none;border:2px solid #051a3e}.vd-sub-header[data-v-69f0b82b]{overflow-x:auto}.vd-sub-header-back-btn[data-v-69f0b82b]{margin:0 -6px}.vd-data-list-group[data-v-69f0b82b],.vd-sub-header-informations[data-v-69f0b82b]{max-width:none}.vd-data-list-group[data-v-69f0b82b] .vd-data-list{max-width:200px}.vd-data-list-group[data-v-69f0b82b] .vd-data-list:not(:last-child){margin-right:80px!important}.vd-data-list-group[data-v-69f0b82b] .vd-data-list .vd-key{display:inline-block;font-size:.75rem!important}.vd-data-list-group[data-v-69f0b82b] .vd-data-list .vd-data-list-item-label{color:#ffffffb3!important}.vd-data-list-group[data-v-69f0b82b] .vd-data-list .vd-data-list-item-action-btn{color:#fff!important}.vd-subheader-loading[data-v-69f0b82b]{background:transparent}.vd-subheader-loading[data-v-69f0b82b] .v-skeleton-loader__button{margin:0;min-height:28px;height:auto;background:rgba(255,255,255,var(--v-border-opacity))}.title[data-v-eae274b3]{font-size:24px!important}.alt-title[data-v-eae274b3]{font-size:20px!important}.body-text[data-v-eae274b3]{font-size:16px!important}.link-label[data-v-eae274b3]{font-size:14px!important}h1[data-v-eae274b3]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-eae274b3]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-eae274b3]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-eae274b3]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-eae274b3]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-eae274b3]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-eae274b3]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-eae274b3]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-eae274b3]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-eae274b3]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-eae274b3]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-eae274b3]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-eae274b3],.elevation-2[data-v-eae274b3],.elevation-3[data-v-eae274b3],.elevation-4[data-v-eae274b3],.elevation-5[data-v-eae274b3],.elevation-6[data-v-eae274b3],.elevation-7[data-v-eae274b3],.elevation-8[data-v-eae274b3],.elevation-9[data-v-eae274b3],.elevation-10[data-v-eae274b3],.elevation-11[data-v-eae274b3],.elevation-12[data-v-eae274b3],.elevation-13[data-v-eae274b3],.elevation-14[data-v-eae274b3],.elevation-15[data-v-eae274b3],.elevation-16[data-v-eae274b3],.elevation-17[data-v-eae274b3],.elevation-18[data-v-eae274b3],.elevation-19[data-v-eae274b3],.elevation-20[data-v-eae274b3],.elevation-21[data-v-eae274b3],.elevation-22[data-v-eae274b3],.elevation-23[data-v-eae274b3],.elevation-24[data-v-eae274b3]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-eae274b3]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (width <= 600px){.page-container[data-v-eae274b3]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (width >= 601px) and (width <= 960px){.page-container[data-v-eae274b3]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (width >= 960px){.page-container[data-v-eae274b3]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.vd-user-icon[data-v-eae274b3]{width:40px;height:40px;background:#eee;border-radius:50%}.vd-user-icon svg[data-v-eae274b3],.vd-user-icon .v-icon__svg[data-v-eae274b3]{width:24px;height:24px}
|