@cnamts/synapse 0.0.4-alpha → 0.0.6-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.d.ts +1277 -499
- package/dist/design-system-v3.js +4193 -1573
- package/dist/design-system-v3.umd.cjs +8 -8
- package/dist/style.css +1 -1
- package/package.json +18 -17
- package/src/assets/settings.scss +3 -0
- package/src/assets/tokens.scss +16 -17
- package/src/components/BackBtn/Accessibilite.mdx +14 -0
- package/src/components/BackBtn/Accessibilite.stories.ts +166 -0
- package/src/components/BackBtn/AccessibiliteItems.ts +102 -0
- package/src/components/BackBtn/BackBtn.mdx +1 -1
- package/src/components/BackBtn/BackBtn.stories.ts +8 -8
- package/src/components/BackBtn/BackBtn.vue +0 -1
- package/src/components/BackBtn/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/BackToTopBtn/Accessibilite.mdx +14 -0
- package/src/components/BackToTopBtn/Accessibilite.stories.ts +166 -0
- package/src/components/BackToTopBtn/AccessibiliteItems.ts +52 -0
- package/src/components/BackToTopBtn/BackToTopBtn.mdx +1 -1
- package/src/components/BackToTopBtn/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/CollapsibleList/Accessibilite.mdx +14 -0
- package/src/components/CollapsibleList/Accessibilite.stories.ts +170 -0
- package/src/components/CollapsibleList/AccessibiliteItems.ts +122 -0
- package/src/components/CollapsibleList/CollapsibleList.stories.ts +1 -1
- package/src/components/CollapsibleList/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/CookieBanner/Accessibilite.mdx +14 -0
- package/src/components/CookieBanner/Accessibilite.stories.ts +219 -0
- package/src/components/CookieBanner/AccessibiliteItems.ts +356 -0
- package/src/components/CookieBanner/CookieBanner.mdx +219 -0
- package/src/components/CookieBanner/CookieBanner.stories.ts +678 -0
- package/src/components/CookieBanner/CookieBanner.vue +225 -0
- package/src/components/CookieBanner/config.ts +38 -0
- package/src/components/CookieBanner/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/CookieBanner/locales.ts +12 -0
- package/src/components/CookieBanner/tests/CookieBanner.spec.ts +129 -0
- package/src/components/CookieBanner/tests/__snapshots__/CookieBanner.spec.ts.snap +197 -0
- package/src/components/CookiesSelection/CookiesInformation/CookiesInformation.vue +123 -0
- package/src/components/CookiesSelection/CookiesInformation/locales.ts +21 -0
- package/src/components/CookiesSelection/CookiesInformation/tests/CookiesInformation.spec.ts +121 -0
- package/src/components/CookiesSelection/CookiesSelection.vue +127 -0
- package/src/components/CookiesSelection/CookiesTable/CookiesTable.vue +47 -0
- package/src/components/CookiesSelection/CookiesTable/headers.ts +14 -0
- package/src/components/CookiesSelection/CookiesTable/tests/CookiesTable.spec.ts +30 -0
- package/src/components/CookiesSelection/CookiesTable/tests/__snapshots__/CookiesTable.spec.ts.snap +3 -0
- package/src/components/CookiesSelection/locales.ts +10 -0
- package/src/components/CookiesSelection/tests/CookiesSelection.spec.ts +184 -0
- package/src/components/CookiesSelection/tests/__snapshots__/CookiesSelection.spec.ts.snap +192 -0
- package/src/components/CookiesSelection/types.ts +15 -0
- package/src/components/CopyBtn/Accessibilite.mdx +14 -0
- package/src/components/CopyBtn/Accessibilite.stories.ts +166 -0
- package/src/components/CopyBtn/AccessibiliteItems.ts +105 -0
- package/src/components/CopyBtn/CopyBtn.mdx +1 -1
- package/src/components/CopyBtn/CopyBtn.stories.ts +4 -4
- package/src/components/CopyBtn/CopyBtn.vue +0 -1
- package/src/components/CopyBtn/config.ts +2 -0
- package/src/components/CopyBtn/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/Customs/SyBtnSelect/Accessibilite.mdx +14 -0
- package/src/components/Customs/SyBtnSelect/Accessibilite.stories.ts +193 -0
- package/src/components/Customs/SyBtnSelect/AccessibiliteItems.ts +139 -0
- package/src/components/Customs/SyBtnSelect/SyBtnSelect.mdx +45 -0
- package/src/components/Customs/SyBtnSelect/SyBtnSelect.stories.ts +662 -0
- package/src/components/Customs/SyBtnSelect/SyBtnSelect.vue +254 -0
- package/src/components/Customs/SyBtnSelect/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/Customs/SyBtnSelect/tests/SyBtnSelect.spec.ts +168 -0
- package/src/components/Customs/SyInputSelect/Accessibilite.mdx +14 -0
- package/src/components/Customs/SyInputSelect/Accessibilite.stories.ts +166 -0
- package/src/components/Customs/SyInputSelect/AccessibiliteItems.ts +96 -0
- package/src/components/Customs/SyInputSelect/SyInputSelect.mdx +41 -0
- package/src/components/Customs/{CustomInputSelect/CustomInputSelect.stories.ts → SyInputSelect/SyInputSelect.stories.ts} +30 -83
- package/src/components/Customs/{CustomInputSelect/CustomInputSelect.vue → SyInputSelect/SyInputSelect.vue} +46 -6
- package/src/components/Customs/SyInputSelect/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/Customs/SyInputSelect/tests/SyInputSelect.spec.ts +140 -0
- package/src/components/Customs/SySelect/Accessibilite.mdx +14 -0
- package/src/components/Customs/SySelect/Accessibilite.stories.ts +217 -0
- package/src/components/Customs/SySelect/AccessibiliteItems.ts +173 -0
- package/src/components/Customs/{CustomSelect/CustomSelect.mdx → SySelect/SySelect.mdx} +9 -8
- package/src/components/Customs/{CustomSelect/CustomSelect.stories.ts → SySelect/SySelect.stories.ts} +25 -79
- package/src/components/Customs/{CustomSelect/CustomSelect.vue → SySelect/SySelect.vue} +44 -13
- package/src/components/Customs/SySelect/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/Customs/{CustomInputSelect/tests/CustomInputSelect.spec.ts → SySelect/tests/SySelect.spec.ts} +48 -71
- package/src/components/Customs/SyTextField/Accessibilite.mdx +14 -0
- package/src/components/Customs/SyTextField/Accessibilite.stories.ts +224 -0
- package/src/components/Customs/SyTextField/AccessibiliteItems.ts +198 -0
- package/src/components/Customs/SyTextField/SyTextField.mdx +44 -0
- package/src/components/Customs/{CustomTextField/CustomTextField.stories.ts → SyTextField/SyTextField.stories.ts} +145 -34
- package/src/components/Customs/{CustomTextField/CustomTextField.vue → SyTextField/SyTextField.vue} +27 -7
- package/src/components/Customs/SyTextField/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/Customs/{CustomTextField/tests/CustomTextField.spec.ts → SyTextField/tests/SyTextField.spec.ts} +3 -3
- package/src/components/Customs/{CustomTextField/tests/__snapshots__/CustomTextField.spec.ts.snap → SyTextField/tests/__snapshots__/SyTextField.spec.ts.snap} +5 -6
- package/src/components/DataList/Accessibilite.mdx +14 -0
- package/src/components/DataList/Accessibilite.stories.ts +166 -0
- package/src/components/DataList/AccessibiliteItems.ts +47 -0
- package/src/components/DataList/DataList.mdx +1 -1
- package/src/components/DataList/DataList.stories.ts +10 -10
- package/src/components/DataList/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/DataListGroup/Accessibilite.mdx +14 -0
- package/src/components/DataListGroup/Accessibilite.stories.ts +225 -0
- package/src/components/DataListGroup/AccessibiliteItems.ts +79 -0
- package/src/components/DataListGroup/DataListGroup.mdx +1 -1
- package/src/components/DataListGroup/DataListGroup.stories.ts +7 -7
- package/src/components/DataListGroup/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/DialogBox/Accessibilite.mdx +14 -0
- package/src/components/DialogBox/Accessibilite.stories.ts +189 -0
- package/src/components/DialogBox/AccessibiliteItems.ts +167 -0
- package/src/components/DialogBox/DialogBox.mdx +14 -0
- package/src/components/DialogBox/DialogBox.stories.ts +798 -0
- package/src/components/DialogBox/DialogBox.vue +181 -0
- package/src/components/DialogBox/config.ts +25 -0
- package/src/components/DialogBox/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/DialogBox/locales.ts +5 -0
- package/src/components/DialogBox/tests/DialogBox.spec.ts +329 -0
- package/src/components/DialogBox/tests/__snapshots__/DialogBox.spec.ts.snap +46 -0
- package/src/components/DownloadBtn/AccessibiliteItems.ts +1 -31
- package/src/components/DownloadBtn/DownloadBtn.mdx +3 -3
- package/src/components/DownloadBtn/DownloadBtn.stories.ts +6 -6
- package/src/components/ErrorPage/Accessibilite.mdx +14 -0
- package/src/components/ErrorPage/Accessibilite.stories.ts +189 -0
- package/src/components/ErrorPage/AccessibiliteItems.ts +205 -0
- package/src/components/ErrorPage/ErrorPage.mdx +21 -0
- package/src/components/ErrorPage/ErrorPage.stories.ts +133 -0
- package/src/components/ErrorPage/ErrorPage.vue +93 -0
- package/src/components/ErrorPage/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/ErrorPage/locales.ts +5 -0
- package/src/components/ErrorPage/tests/ErrorPage.spec.ts +40 -0
- package/src/components/ErrorPage/tests/__snapshots__/ErrorPage.spec.ts.snap +78 -0
- package/src/components/FooterBar/Accessibilite.mdx +14 -0
- package/src/components/FooterBar/Accessibilite.stories.ts +223 -0
- package/src/components/FooterBar/AccessibiliteItems.ts +257 -0
- package/src/components/FooterBar/FooterBar.mdx +2 -2
- package/src/components/FooterBar/FooterBar.stories.ts +556 -8
- package/src/components/FooterBar/FooterBar.vue +80 -73
- package/src/components/FooterBar/config.ts +2 -3
- package/src/components/FooterBar/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/FooterBar/tests/FooterBar.spec.ts +1 -1
- package/src/components/FooterBar/tests/FooterBarConfig.spec.ts +1 -1
- package/src/components/FooterBar/tests/__snapshots__/FooterBar.spec.ts.snap +24 -22
- package/src/components/FranceConnectBtn/Accessibilite.mdx +14 -0
- package/src/components/FranceConnectBtn/Accessibilite.stories.ts +194 -0
- package/src/components/FranceConnectBtn/AccessibiliteItems.ts +169 -0
- package/src/components/FranceConnectBtn/FranceConnectBtn.mdx +1 -1
- package/src/components/FranceConnectBtn/FranceConnectBtn.stories.ts +3 -3
- package/src/components/FranceConnectBtn/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/HeaderBar/Accessibilite.mdx +14 -0
- package/src/components/HeaderBar/Accessibilite.stories.ts +223 -0
- package/src/components/HeaderBar/AccessibiliteItems.ts +194 -0
- package/src/components/HeaderBar/HeaderBar.stories.ts +60 -2
- package/src/components/HeaderBar/HeaderBar.vue +1 -9
- package/src/components/HeaderBar/HeaderBurgerMenu/Accessibilite.mdx +14 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/Accessibilite.stories.ts +223 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/AccessibiliteItems.ts +174 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/HeaderBar/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/HeaderBar/tests/__snapshots__/HeaderBar.spec.ts.snap +1 -1
- package/src/components/HeaderLoading/Accessibilite.mdx +14 -0
- package/src/components/HeaderLoading/Accessibilite.stories.ts +167 -0
- package/src/components/HeaderLoading/AccessibiliteItems.ts +29 -0
- package/src/components/HeaderLoading/HeaderLoading.mdx +1 -1
- package/src/components/HeaderLoading/HeaderLoading.stories.ts +1 -1
- package/src/components/HeaderLoading/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/HeaderNavigationBar/HeaderNavigationBar.mdx +6 -6
- package/src/components/HeaderNavigationBar/HorizontalNavbar/HorizontalNavbar.vue +35 -33
- package/src/components/HeaderNavigationBar/tests/HeaderNavigationBar.spec.ts +1 -1
- package/src/components/HeaderToolbar/Accessibilite.mdx +14 -0
- package/src/components/HeaderToolbar/Accessibilite.stories.ts +203 -0
- package/src/components/HeaderToolbar/AccessibiliteItems.ts +200 -0
- package/src/components/HeaderToolbar/HeaderToolbar.mdx +1 -1
- package/src/components/HeaderToolbar/HeaderToolbar.stories.ts +2 -2
- package/src/components/HeaderToolbar/HeaderToolbar.vue +3 -2
- package/src/components/HeaderToolbar/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/HeaderToolbar/tests/HeaderToolbar.spec.ts +36 -2
- package/src/components/LangBtn/Accessibilite.mdx +14 -0
- package/src/components/LangBtn/Accessibilite.stories.ts +168 -0
- package/src/components/LangBtn/AccessibiliteItems.ts +101 -0
- package/src/components/LangBtn/LangBtn.mdx +1 -1
- package/src/components/LangBtn/LangBtn.stories.ts +4 -4
- package/src/components/LangBtn/LangBtn.vue +3 -2
- package/src/components/LangBtn/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/LangBtn/tests/LangBtn.spec.ts +1 -1
- package/src/components/LangBtn/tests/__snapshots__/LangBtn.spec.ts.snap +1 -1
- package/src/components/Logo/Accessibilite.mdx +14 -0
- package/src/components/Logo/Accessibilite.stories.ts +223 -0
- package/src/components/Logo/AccessibiliteItems.ts +155 -0
- package/src/components/Logo/Logo.mdx +1 -1
- package/src/components/Logo/Logo.stories.ts +8 -8
- package/src/components/Logo/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/LogoBrandSection/Accessibilite.mdx +14 -0
- package/src/components/LogoBrandSection/Accessibilite.stories.ts +223 -0
- package/src/components/LogoBrandSection/AccessibiliteItems.ts +194 -0
- package/src/components/LogoBrandSection/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/MaintenancePage/Accessibilite.mdx +14 -0
- package/src/components/MaintenancePage/Accessibilite.stories.ts +189 -0
- package/src/components/MaintenancePage/AccessibiliteItems.ts +173 -0
- package/src/components/MaintenancePage/MaintenancePage.mdx +11 -0
- package/src/components/MaintenancePage/MaintenancePage.stories.ts +41 -0
- package/src/components/MaintenancePage/MaintenancePage.vue +25 -0
- package/src/components/MaintenancePage/assets/maintenance.svg +1 -0
- package/src/components/MaintenancePage/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/MaintenancePage/index.ts +3 -0
- package/src/components/MaintenancePage/locales.ts +5 -0
- package/src/components/MaintenancePage/tests/MaintenancePage.spec.ts +12 -0
- package/src/components/MaintenancePage/tests/__snapshots__/MaintenancePage.spec.ts.snap +3 -0
- package/src/components/NirField/Accessibilite.mdx +14 -0
- package/src/components/NirField/Accessibilite.stories.ts +214 -0
- package/src/components/NirField/AccessibiliteItems.ts +243 -0
- package/src/components/NirField/NirField.mdx +216 -0
- package/src/components/NirField/NirField.stories.ts +359 -0
- package/src/components/NirField/NirField.vue +450 -0
- package/src/components/NirField/config.ts +16 -0
- package/src/components/NirField/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/NirField/locales.ts +12 -0
- package/src/components/NirField/nirValidation.ts +42 -0
- package/src/components/NirField/tests/NirField.spec.ts +119 -0
- package/src/components/NotFoundPage/Accessibilite.mdx +14 -0
- package/src/components/NotFoundPage/Accessibilite.stories.ts +190 -0
- package/src/components/NotFoundPage/AccessibiliteItems.ts +205 -0
- package/src/components/NotFoundPage/NotFoundPage.mdx +19 -0
- package/src/components/NotFoundPage/NotFoundPage.stories.ts +76 -0
- package/src/components/NotFoundPage/NotFoundPage.vue +52 -0
- package/src/components/NotFoundPage/assets/not-found.svg +1 -0
- package/src/components/NotFoundPage/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/NotFoundPage/locales.ts +6 -0
- package/src/components/NotFoundPage/tests/NotFoundPage.spec.ts +38 -0
- package/src/components/NotFoundPage/tests/__snapshots__/NotFoundPage.spec.ts.snap +76 -0
- package/src/components/NotificationBar/Accessibilite.mdx +14 -0
- package/src/components/NotificationBar/Accessibilite.stories.ts +166 -0
- package/src/components/NotificationBar/AccessibiliteItems.ts +144 -0
- package/src/components/NotificationBar/NotificationBar.mdx +1 -1
- package/src/components/NotificationBar/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/NotificationBar/options.ts +1 -0
- package/src/components/PageContainer/Accessibilite.mdx +14 -0
- package/src/components/PageContainer/Accessibilite.stories.ts +166 -0
- package/src/components/PageContainer/AccessibiliteItems.ts +52 -0
- package/src/components/PageContainer/PageContainer.mdx +1 -1
- package/src/components/PageContainer/PageContainer.stories.ts +4 -4
- package/src/components/PageContainer/PageContainer.vue +16 -15
- package/src/components/PageContainer/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/PageContainer/tests/PageContainer.spec.ts +1 -1
- package/src/components/PageContainer/tests/__snapshots__/PageContainer.spec.ts.snap +2 -2
- package/src/components/PhoneField/Accessibilite.mdx +14 -0
- package/src/components/PhoneField/Accessibilite.stories.ts +216 -0
- package/src/components/PhoneField/AccessibiliteItems.ts +238 -0
- package/src/components/PhoneField/PhoneField.mdx +1 -1
- package/src/components/PhoneField/PhoneField.stories.ts +2 -2
- package/src/components/PhoneField/PhoneField.vue +5 -6
- package/src/components/PhoneField/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/PhoneField/tests/PhoneField.spec.ts +3 -3
- package/src/components/SkipLink/Accessibilite.mdx +14 -0
- package/src/components/SkipLink/Accessibilite.stories.ts +167 -0
- package/src/components/SkipLink/AccessibiliteItems.ts +77 -0
- package/src/components/SkipLink/SkipLink.stories.ts +2 -2
- package/src/components/SkipLink/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/SocialMediaLinks/Accessibilite.mdx +14 -0
- package/src/components/SocialMediaLinks/Accessibilite.stories.ts +170 -0
- package/src/components/SocialMediaLinks/AccessibiliteItems.ts +160 -0
- package/src/components/SocialMediaLinks/SocialMediaLinks.mdx +18 -14
- package/src/components/SocialMediaLinks/SocialMediaLinks.stories.ts +3 -2
- package/src/components/SocialMediaLinks/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/SocialMediaLinks/tests/SocialMediaLinks.spec.ts +1 -1
- package/src/components/SocialMediaLinks/tests/__snapshots__/SocialMediaLinks.spec.ts.snap +2 -2
- package/src/components/SubHeader/Accessibilite.mdx +14 -0
- package/src/components/SubHeader/Accessibilite.stories.ts +166 -0
- package/src/components/SubHeader/AccessibiliteItems.ts +146 -0
- package/src/components/SubHeader/SubHeader.mdx +1 -1
- package/src/components/SubHeader/SubHeader.stories.ts +11 -11
- package/src/components/SubHeader/SubHeader.vue +1 -1
- package/src/components/SubHeader/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/SyAlert/Accessibilite.mdx +14 -0
- package/src/components/SyAlert/Accessibilite.stories.ts +166 -0
- package/src/components/SyAlert/AccessibiliteItems.ts +122 -0
- package/src/components/{Alert/Alert.mdx → SyAlert/SyAlert.mdx} +9 -9
- package/src/components/{Alert/Alert.stories.ts → SyAlert/SyAlert.stories.ts} +22 -22
- package/src/components/SyAlert/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/{Alert/tests/Alert.spec.ts → SyAlert/tests/SyAlert.spec.ts} +5 -5
- package/src/components/{Alert/tests/__snapshots__/Alert.spec.ts.snap → SyAlert/tests/__snapshots__/SyAlert.spec.ts.snap} +2 -2
- package/src/components/UserMenuBtn/Accessibilite.mdx +14 -0
- package/src/components/UserMenuBtn/Accessibilite.stories.ts +189 -0
- package/src/components/UserMenuBtn/AccessibiliteItems.ts +155 -0
- package/src/components/UserMenuBtn/UserMenuBtn.mdx +35 -0
- package/src/components/UserMenuBtn/UserMenuBtn.stories.ts +540 -0
- package/src/components/UserMenuBtn/UserMenuBtn.vue +101 -0
- package/src/components/UserMenuBtn/config.ts +24 -0
- package/src/components/UserMenuBtn/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/UserMenuBtn/tests/UserMenuBtn.spec.ts +125 -0
- package/src/components/index.ts +19 -4
- package/src/composables/index.ts +8 -0
- package/src/composables/rules/tests/useFieldValidation.spec.ts +84 -0
- package/src/composables/rules/useFieldValidation.ts +90 -0
- package/src/designTokens/index.ts +2 -0
- package/src/designTokens/tokens/cnam/cnamDarkTheme.ts +5 -0
- package/src/designTokens/tokens/cnam/cnamLightTheme.ts +1 -0
- package/src/main.ts +3 -0
- package/src/stories/Fondamentaux/Arrondis.mdx +24 -0
- package/src/stories/{Guidelines → Fondamentaux}/Colors.mdx +1 -1
- package/src/stories/Fondamentaux/Conteneurs.mdx +7 -0
- package/src/stories/Fondamentaux/CustomisationEtThemes.mdx +7 -0
- package/src/stories/Fondamentaux/Elevations.mdx +14 -0
- package/src/stories/Fondamentaux/Espacements.mdx +29 -0
- package/src/stories/{Guidelines → Fondamentaux}/Introduction.mdx +1 -1
- package/src/stories/Fondamentaux/StylesTypographiques.mdx +33 -0
- package/src/stories/Fondamentaux/Typographie.mdx +58 -0
- package/src/stories/GuideDuDev/CommentUtiliserLesRules.mdx +120 -0
- package/src/stories/GuideDuDev/components.stories.ts +5 -5
- package/src/stories/GuideDuDev/moduleDeNotification.mdx +1 -1
- package/src/stories/{Fondamentaux → Guidelines}/Accessibilite/Accessibilite.stories.ts +1 -1
- package/src/stories/{Fondamentaux → Guidelines}/EcoConception/Econception.stories.ts +2 -2
- package/src/stories/Guidelines/Vuetify/Vuetify.mdx +11 -0
- package/src/stories/Guidelines/Vuetify/Vuetify.stories.ts +138 -0
- package/src/stories/Guidelines/Vuetify/VuetifyItems.ts +350 -0
- package/src/components/Customs/CustomInputSelect/CustomInputSelect.mdx +0 -40
- package/src/components/Customs/CustomSelect/tests/CustomSelect.spec.ts +0 -236
- package/src/components/Customs/CustomTextField/CustomTextField.mdx +0 -44
- package/src/stories/Guidelines/CustomisationEtThemes.mdx +0 -3
- package/src/stories/Guidelines/Typo.mdx +0 -53
- /package/src/components/Customs/{CustomInputSelect → SyInputSelect}/config.ts +0 -0
- /package/src/components/Customs/{CustomTextField → SyTextField}/types.d.ts +0 -0
- /package/src/components/{Alert/Alert.vue → SyAlert/SyAlert.vue} +0 -0
- /package/src/components/{Alert → SyAlert}/locales.ts +0 -0
- /package/src/stories/{Fondamentaux → Guidelines}/Accessibilite/Accessibilite.mdx +0 -0
- /package/src/stories/{Fondamentaux → Guidelines}/Accessibilite/AccessibiliteItems.ts +0 -0
- /package/src/stories/{Fondamentaux → Guidelines}/Accessibilite/constants/ExpertiseLevelEnum.ts +0 -0
- /package/src/stories/{Fondamentaux → Guidelines}/Accessibilite/constants/RGAALevelEnum.ts +0 -0
- /package/src/stories/{Fondamentaux → Guidelines}/EcoConception/EcoConception.mdx +0 -0
- /package/src/stories/{Fondamentaux → Guidelines}/EcoConception/ecoDesignItems.ts +0 -0
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.title[data-v-6f216856]{font-size:24px!important}.alt-title[data-v-6f216856]{font-size:20px!important}.body-text[data-v-6f216856]{font-size:16px!important}.link-label[data-v-6f216856]{font-size:14px!important}h1[data-v-6f216856]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-6f216856]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-6f216856]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-6f216856]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-6f216856]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-6f216856]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-6f216856]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-6f216856]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-6f216856]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-6f216856]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-6f216856]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-6f216856]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-0[data-v-6f216856],.elevation-1[data-v-6f216856],.elevation-2[data-v-6f216856],.elevation-3[data-v-6f216856],.elevation-4[data-v-6f216856],.elevation-5[data-v-6f216856],.elevation-6[data-v-6f216856],.elevation-7[data-v-6f216856],.elevation-8[data-v-6f216856],.elevation-9[data-v-6f216856],.elevation-10[data-v-6f216856],.elevation-11[data-v-6f216856],.elevation-12[data-v-6f216856],.elevation-13[data-v-6f216856],.elevation-14[data-v-6f216856],.elevation-15[data-v-6f216856],.elevation-16[data-v-6f216856],.elevation-17[data-v-6f216856],.elevation-18[data-v-6f216856],.elevation-19[data-v-6f216856],.elevation-20[data-v-6f216856],.elevation-21[data-v-6f216856],.elevation-22[data-v-6f216856],.elevation-23[data-v-6f216856],.elevation-24[data-v-6f216856]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-6f216856]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-6f216856]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-6f216856]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-6f216856]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.alert[data-v-6f216856]{padding:16px}.alert-icon[data-v-6f216856]{border-radius:50%}[data-v-6f216856] .v-alert__underlay{display:none}[data-v-6f216856] .v-alert__close{align-self:center}[data-v-6f216856] .v-btn--variant-text .v-btn__overlay{background:transparent!important}.alert-icon[data-v-6f216856] .v-icon__svg{height:1.5rem!important}.alert-close-btn[data-v-6f216856]{cursor:pointer;line-height:0}.alert-close-btn .v-btn__overlay[data-v-6f216856]{display:none}@media screen and (max-width: 440px){.alert[data-v-6f216856]{display:flex;flex-direction:column;background-color:#fff}.alert[data-v-6f216856] .v-alert__content{align-self:flex-start!important;margin-top:24px}.alert[data-v-6f216856] .v-alert__close{margin-top:16px;align-self:flex-end}.alert .v-alert__prepend>.v-icon[data-v-6f216856]{background:none!important}}@media screen and (min-width: 441px){.alert .alert-icon[data-v-6f216856]{width:3.5rem!important;height:3.5rem!important;display:grid;place-items:center}}.v-alert.alert--warning.v-alert--variant-tonal[data-v-6f216856]{background:#fcf0d3!important;color:#222324!important}.v-alert.alert--warning.v-alert--variant-tonal[data-v-6f216856] .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-6f216856]{background:transparent!important}.v-alert.alert--warning.v-alert--variant-outlined[data-v-6f216856] .v-alert__border{border-color:#60480e!important;opacity:1!important}.v-alert.alert--warning .v-alert__prepend>.v-icon[data-v-6f216856],.v-alert.text-warning .v-alert__prepend>.v-icon[data-v-6f216856]{background:#fdf7e9}.v-alert.alert--warning .v-alert__prepend>.v-icon[data-v-6f216856] svg,.v-alert.text-warning .v-alert__prepend>.v-icon[data-v-6f216856] svg{fill:#60480e}.v-alert.text-warning[data-v-6f216856]{color:#60480e!important;border-color:#60480e!important}.v-alert.alert--success.v-alert--variant-tonal[data-v-6f216856]{background:#cceee8!important;color:#222324!important}.v-alert.alert--success.v-alert--variant-tonal[data-v-6f216856] .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-6f216856]{background:transparent!important}.v-alert.alert--success.v-alert--variant-outlined[data-v-6f216856] .v-alert__border{border-color:#224e2d!important;opacity:1!important}.v-alert.alert--success .v-alert__prepend>.v-icon[data-v-6f216856],.v-alert.text-success .v-alert__prepend>.v-icon[data-v-6f216856]{background:#e5f7f4}.v-alert.alert--success .v-alert__prepend>.v-icon[data-v-6f216856] svg,.v-alert.text-success .v-alert__prepend>.v-icon[data-v-6f216856] svg{fill:#224e2d}.v-alert.text-success[data-v-6f216856]{color:#224e2d!important;border-color:#224e2d!important}.v-alert.alert--error.v-alert--variant-tonal[data-v-6f216856]{background:#f9dcd7!important;color:#222324!important}.v-alert.alert--error.v-alert--variant-tonal[data-v-6f216856] .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-6f216856]{background:transparent!important}.v-alert.alert--error.v-alert--variant-outlined[data-v-6f216856] .v-alert__border{border-color:#b33f2e!important;opacity:1!important}.v-alert.alert--error .v-alert__prepend>.v-icon[data-v-6f216856],.v-alert.text-error .v-alert__prepend>.v-icon[data-v-6f216856]{background:#fcedeb}.v-alert.alert--error .v-alert__prepend>.v-icon[data-v-6f216856] svg,.v-alert.text-error .v-alert__prepend>.v-icon[data-v-6f216856] svg{fill:#b33f2e}.v-alert.text-error[data-v-6f216856]{color:#b33f2e!important;border-color:#b33f2e!important}.v-alert.alert--info.v-alert--variant-tonal[data-v-6f216856]{background:#ced9eb!important;color:#222324!important}.v-alert.alert--info.v-alert--variant-tonal[data-v-6f216856] .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-6f216856]{background:transparent!important}.v-alert.alert--info.v-alert--variant-outlined[data-v-6f216856] .v-alert__border{border-color:#0c419a!important;opacity:1!important}.v-alert.alert--info .v-alert__prepend>.v-icon[data-v-6f216856],.v-alert.text-info .v-alert__prepend>.v-icon[data-v-6f216856]{background:#e7ecf5}.v-alert.alert--info .v-alert__prepend>.v-icon[data-v-6f216856] svg,.v-alert.text-info .v-alert__prepend>.v-icon[data-v-6f216856] svg{fill:#0c419a}.v-alert.text-info[data-v-6f216856]{color:#0c419a!important;border-color:#0c419a!important}.v-btn.v-theme--light[data-v-b9c7d584] .v-btn__underlay,.v-btn.v-theme--light[data-v-b9c7d584] .v-btn__overlay{display:none}.vd-back-to-top-btn[data-v-c019b012]{position:sticky;z-index:999;opacity:1;float:right}.v-btn--variant-outlined[data-v-c019b012]{background:#fff}.vd-panel[data-v-8456c2b9]{background-color:transparent}.vd-panel-title[data-v-8456c2b9] .v-expansion-panel-title__overlay{background:transparent!important}.vd-panel-text[data-v-8456c2b9] .v-expansion-panel-text__wrapper{padding:0}li[data-v-8456c2b9]{list-style:none}a[data-v-8456c2b9]{transition:.15s;padding-top:1px;border-bottom:1px solid transparent;color:#000}a[data-v-8456c2b9]:hover,a[data-v-8456c2b9]:focus{border-color:currentColor}.v-theme--dark a[data-v-8456c2b9]{color:#fff}.vd-collapse-list a[data-v-8456c2b9]{color:#000}.vd-collapse-list[data-v-8456c2b9] .text-subtitle-1{font-size:1.125rem!important;letter-spacing:.0015em!important;line-height:1.75rem}.vd-collapse-list.theme--dark[data-v-8456c2b9] h4,.vd-collapse-list.theme--dark[data-v-8456c2b9] ul,.vd-collapse-list.theme--dark[data-v-8456c2b9] a,.vd-collapse-list.theme--dark[data-v-8456c2b9] button{color:#fff!important}.vd-collapse-list-mobile[data-v-8456c2b9] .text-subtitle-2{font-size:1rem!important;letter-spacing:.001em!important;line-height:1.375rem;font-weight:600}.vd-collapse-list-mobile[data-v-8456c2b9] .v-icon{color:#0000008a!important}.vd-collapse-list-mobile.theme--dark[data-v-8456c2b9] button{color:#fff!important}.vd-collapse-list-mobile[data-v-8456c2b9] button{color:red!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-0,.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 (max-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 (min-width: 601px) and (max-width: 960px){.page-container{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-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-4858239a]{font-size:24px!important}.alt-title[data-v-4858239a]{font-size:20px!important}.body-text[data-v-4858239a]{font-size:16px!important}.link-label[data-v-4858239a]{font-size:14px!important}h1[data-v-4858239a]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-4858239a]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-4858239a]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-4858239a]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-4858239a]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-4858239a]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-4858239a]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-4858239a]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-4858239a]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-4858239a]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-4858239a]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-4858239a]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-0[data-v-4858239a],.elevation-1[data-v-4858239a],.elevation-2[data-v-4858239a],.elevation-3[data-v-4858239a],.elevation-4[data-v-4858239a],.elevation-5[data-v-4858239a],.elevation-6[data-v-4858239a],.elevation-7[data-v-4858239a],.elevation-8[data-v-4858239a],.elevation-9[data-v-4858239a],.elevation-10[data-v-4858239a],.elevation-11[data-v-4858239a],.elevation-12[data-v-4858239a],.elevation-13[data-v-4858239a],.elevation-14[data-v-4858239a],.elevation-15[data-v-4858239a],.elevation-16[data-v-4858239a],.elevation-17[data-v-4858239a],.elevation-18[data-v-4858239a],.elevation-19[data-v-4858239a],.elevation-20[data-v-4858239a],.elevation-21[data-v-4858239a],.elevation-22[data-v-4858239a],.elevation-23[data-v-4858239a],.elevation-24[data-v-4858239a]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-4858239a]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-4858239a]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-4858239a]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-4858239a]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.v-input[data-v-4858239a]{cursor:pointer;position:relative}.v-list[data-v-4858239a]{position:absolute;width:100%;z-index:1;background-color:#fff;min-width:fit-content;max-width:150px;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-4858239a]:hover{background-color:#0000000a}.v-list-item[aria-selected=true][data-v-4858239a]{background-color:#00000014}.v-btn[data-v-4858239a],.text-color[data-v-4858239a]{color:#0c419a}.title[data-v-8e832a54]{font-size:24px!important}.alt-title[data-v-8e832a54]{font-size:20px!important}.body-text[data-v-8e832a54]{font-size:16px!important}.link-label[data-v-8e832a54]{font-size:14px!important}h1[data-v-8e832a54]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-8e832a54]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-8e832a54]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-8e832a54]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-8e832a54]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-8e832a54]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-8e832a54]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-8e832a54]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-8e832a54]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-8e832a54]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-8e832a54]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-8e832a54]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-0[data-v-8e832a54],.elevation-1[data-v-8e832a54],.elevation-2[data-v-8e832a54],.elevation-3[data-v-8e832a54],.elevation-4[data-v-8e832a54],.elevation-5[data-v-8e832a54],.elevation-6[data-v-8e832a54],.elevation-7[data-v-8e832a54],.elevation-8[data-v-8e832a54],.elevation-9[data-v-8e832a54],.elevation-10[data-v-8e832a54],.elevation-11[data-v-8e832a54],.elevation-12[data-v-8e832a54],.elevation-13[data-v-8e832a54],.elevation-14[data-v-8e832a54],.elevation-15[data-v-8e832a54],.elevation-16[data-v-8e832a54],.elevation-17[data-v-8e832a54],.elevation-18[data-v-8e832a54],.elevation-19[data-v-8e832a54],.elevation-20[data-v-8e832a54],.elevation-21[data-v-8e832a54],.elevation-22[data-v-8e832a54],.elevation-23[data-v-8e832a54],.elevation-24[data-v-8e832a54]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-8e832a54]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-8e832a54]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-8e832a54]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-8e832a54]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.custom-select[data-v-8e832a54]{display:flex;flex-direction:column;min-width:225px}.v-field[data-v-8e832a54]{position:relative}.v-field--focused .v-icon[data-v-8e832a54]{transform:rotateX(180deg)}.v-list[data-v-8e832a54]{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-8e832a54]:hover{background-color:#0000000a}.v-list-item[aria-selected=true][data-v-8e832a54]{background-color:#00000014}.v-icon[data-v-8e832a54]{position:absolute;right:10px;color:#434647}[data-v-8e832a54] .v-field__input{color:#434647}.vd-row[data-v-ac4bdcda]{display:flex;flex-wrap:wrap}.vd-row .vd-data-list-item-label[data-v-ac4bdcda]{align-self:center}.vd-row .vd-data-list-item-label[data-v-ac4bdcda]:after{content:":";margin:0 4px}.vd-data-list-item-action-btn.v-btn[data-v-ac4bdcda]{min-width:0;margin:0 -1px}.v-icon.v-theme--light[data-v-ac4bdcda]{color:#0000008a}.vd-header-loading[data-v-7d435f46]{background:transparent}.vd-header-loading[data-v-7d435f46] .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-7d435f46] .v-skeleton-loader__heading{border-radius:0}[data-v-ec7b0098] ul{list-style:none}.vd-download-btn[data-v-ef3f6e33] .v-btn__content{flex-wrap:wrap}.vd-download-btn[data-v-ef3f6e33] .v-icon{flex:none}.outlined-style[data-v-ef3f6e33]{border:1px solid currentColor}.title[data-v-82e1e286]{font-size:24px!important}.alt-title[data-v-82e1e286]{font-size:20px!important}.body-text[data-v-82e1e286]{font-size:16px!important}.link-label[data-v-82e1e286]{font-size:14px!important}h1[data-v-82e1e286]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-82e1e286]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-82e1e286]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-82e1e286]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-82e1e286]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-82e1e286]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-82e1e286]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-82e1e286]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-82e1e286]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-82e1e286]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-82e1e286]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-82e1e286]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-0[data-v-82e1e286],.elevation-1[data-v-82e1e286],.elevation-2[data-v-82e1e286],.elevation-3[data-v-82e1e286],.elevation-4[data-v-82e1e286],.elevation-5[data-v-82e1e286],.elevation-6[data-v-82e1e286],.elevation-7[data-v-82e1e286],.elevation-8[data-v-82e1e286],.elevation-9[data-v-82e1e286],.elevation-10[data-v-82e1e286],.elevation-11[data-v-82e1e286],.elevation-12[data-v-82e1e286],.elevation-13[data-v-82e1e286],.elevation-14[data-v-82e1e286],.elevation-15[data-v-82e1e286],.elevation-16[data-v-82e1e286],.elevation-17[data-v-82e1e286],.elevation-18[data-v-82e1e286],.elevation-19[data-v-82e1e286],.elevation-20[data-v-82e1e286],.elevation-21[data-v-82e1e286],.elevation-22[data-v-82e1e286],.elevation-23[data-v-82e1e286],.elevation-24[data-v-82e1e286]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-82e1e286]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-82e1e286]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-82e1e286]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-82e1e286]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.vd-social-media-links[data-v-82e1e286]{display:flex;flex-direction:column}li[data-v-82e1e286]{list-style:none}.vd-social-media-links-label.text--primary[data-v-82e1e286]{color:#0c419a;font-weight:600}.v-theme--dark .vd-social-media-links-label.text--primary[data-v-82e1e286]{color:#fff}.vd-social-media-links-icon[data-v-82e1e286]{color:#545859}.v-btn--icon[data-v-82e1e286]{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-82e1e286]:hover{background:#ffffff1a}@media (min-width: 768px){.vd-social-media-links-label[data-v-82e1e286]{text-align:right}}@media (max-width: 767px){.vd-social-media-links-label[data-v-82e1e286]{text-align:left}}.title[data-v-ccd9e76e]{font-size:24px!important}.alt-title[data-v-ccd9e76e]{font-size:20px!important}.body-text[data-v-ccd9e76e]{font-size:16px!important}.link-label[data-v-ccd9e76e]{font-size:14px!important}h1[data-v-ccd9e76e]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-ccd9e76e]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-ccd9e76e]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-ccd9e76e]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-ccd9e76e]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-ccd9e76e]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-ccd9e76e]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-ccd9e76e]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-ccd9e76e]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-ccd9e76e]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-ccd9e76e]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-ccd9e76e]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-0[data-v-ccd9e76e],.elevation-1[data-v-ccd9e76e],.elevation-2[data-v-ccd9e76e],.elevation-3[data-v-ccd9e76e],.elevation-4[data-v-ccd9e76e],.elevation-5[data-v-ccd9e76e],.elevation-6[data-v-ccd9e76e],.elevation-7[data-v-ccd9e76e],.elevation-8[data-v-ccd9e76e],.elevation-9[data-v-ccd9e76e],.elevation-10[data-v-ccd9e76e],.elevation-11[data-v-ccd9e76e],.elevation-12[data-v-ccd9e76e],.elevation-13[data-v-ccd9e76e],.elevation-14[data-v-ccd9e76e],.elevation-15[data-v-ccd9e76e],.elevation-16[data-v-ccd9e76e],.elevation-17[data-v-ccd9e76e],.elevation-18[data-v-ccd9e76e],.elevation-19[data-v-ccd9e76e],.elevation-20[data-v-ccd9e76e],.elevation-21[data-v-ccd9e76e],.elevation-22[data-v-ccd9e76e],.elevation-23[data-v-ccd9e76e],.elevation-24[data-v-ccd9e76e]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-ccd9e76e]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-ccd9e76e]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-ccd9e76e]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-ccd9e76e]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}a[data-v-ccd9e76e]{cursor:pointer}.v-btn--icon[data-v-ccd9e76e]{border:0}.v-footer[data-v-ccd9e76e]{flex-grow:0!important;justify-content:center}.vd-footer-bar[data-v-ccd9e76e] .vd-footer-bar-links a,.vd-footer-bar[data-v-ccd9e76e] p,.vd-footer-bar[data-v-ccd9e76e] .text--primary{color:#000000de}.vd-footer-bar[data-v-ccd9e76e] .text--secondary{color:#0009}.vd-footer-bar[data-v-ccd9e76e] .social .text--primary{color:#0c419a}.vd-footer-bar[data-v-ccd9e76e] .social a.v-btn:hover,.vd-footer-bar[data-v-ccd9e76e] button.v-btn:hover{background:#0000000d}.vd-footer-bar[data-v-ccd9e76e] a.text--primary{color:#0c419a}.vd-footer-bar[data-v-ccd9e76e] .v-divider{border-color:#2f384d}.vd-footer-bar[data-v-ccd9e76e] svg.logo{fill:#0c419a}.vd-footer-bar[data-v-ccd9e76e] .scroll{color:#0c419a!important}.vd-footer-bar.v-theme--dark[data-v-ccd9e76e] .vd-footer-bar-links a{color:#fff}.vd-footer-bar.v-theme--dark[data-v-ccd9e76e] p,.vd-footer-bar.v-theme--dark[data-v-ccd9e76e] .text--primary{color:#ffffffde}.vd-footer-bar.v-theme--dark[data-v-ccd9e76e] .text--secondary{color:#fff9}.vd-footer-bar.v-theme--dark[data-v-ccd9e76e] a.text--primary{color:#fff}.vd-footer-bar.v-theme--dark[data-v-ccd9e76e] .v-divider{border-color:#fff}.vd-footer-bar.v-theme--dark[data-v-ccd9e76e] svg{fill:#fff}.vd-footer-bar-links[data-v-ccd9e76e] li{list-style:none;display:flex}.vd-footer-bar-links[data-v-ccd9e76e] a{transition:.15s;text-decoration:none;padding-top:1px;border-bottom:1px solid transparent}.vd-footer-bar-links[data-v-ccd9e76e] a:hover,.vd-footer-bar-links[data-v-ccd9e76e] a:focus{border-color:currentColor}.vd-footer-bar-links[data-v-ccd9e76e] p{padding:1px 0}.v-theme--dark button.v-btn[data-v-ccd9e76e]:hover{background:#ffffff1a}.vd-france-connect-btn a[data-v-7d3bb666]{color:#000091}.vd-france-connect-btn a[data-v-7d3bb666]:focus{outline-offset:3px}.vd-france-connect-link[data-v-7d3bb666]{background:#000091}.vd-france-connect-link[data-v-7d3bb666]:hover{background:#1212ff;transition:all .2s ease-in-out}.vd-france-connect-link[data-v-7d3bb666]:active{background:#2323ff}.vd-france-connect-link[data-v-7d3bb666]:focus{outline-offset:3px}.vd-france-connect-btn--dark .vd-france-connect-link[data-v-7d3bb666]{color:#fff;background-color:#8585f6}.vd-france-connect-btn--dark .vd-france-connect-link[data-v-7d3bb666]:hover{background-color:#b1b1f9}.vd-france-connect-btn--dark .vd-france-connect-link[data-v-7d3bb666]:active{background-color:#c6c6fb}.vd-france-connect-btn--dark .vd-france-connect-info-link[data-v-7d3bb666]{color:#8585f6}.vd-france-connect-info-link[data-v-7d3bb666]{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-7d3bb666]:hover{background-size:100% 2px}[data-v-7d3bb666] :scope:focus{border-radius:0!important}.cls-2[data-v-c84a4cb8],.cls-2[data-v-3e4cb924]{fill:#0c419a}.logo[data-v-6dde3a6b]{display:flex;height:52px;align-items:center;color:var(--4db05cc3);line-height:1.45}.logo[data-v-6dde3a6b] svg{flex-grow:0;flex-shrink:0}.service-title[data-v-6dde3a6b]{font-size:.875rem;font-weight:500}.service-subtitle[data-v-6dde3a6b]{font-size:.875rem;font-weight:400}@media screen and (min-width: 990px){.service-title[data-v-6dde3a6b]{font-size:1.125rem}.service-subtitle[data-v-6dde3a6b]{font-size:.75rem}}.title[data-v-a7767594]{font-size:24px!important}.alt-title[data-v-a7767594]{font-size:20px!important}.body-text[data-v-a7767594]{font-size:16px!important}.link-label[data-v-a7767594]{font-size:14px!important}h1[data-v-a7767594]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-a7767594]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-a7767594]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-a7767594]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-a7767594]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-a7767594]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-a7767594]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-a7767594]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-a7767594]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-a7767594]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-a7767594]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-a7767594]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-0[data-v-a7767594],.elevation-1[data-v-a7767594],.elevation-2[data-v-a7767594],.elevation-3[data-v-a7767594],.elevation-4[data-v-a7767594],.elevation-5[data-v-a7767594],.elevation-6[data-v-a7767594],.elevation-7[data-v-a7767594],.elevation-8[data-v-a7767594],.elevation-9[data-v-a7767594],.elevation-10[data-v-a7767594],.elevation-11[data-v-a7767594],.elevation-12[data-v-a7767594],.elevation-13[data-v-a7767594],.elevation-14[data-v-a7767594],.elevation-15[data-v-a7767594],.elevation-16[data-v-a7767594],.elevation-17[data-v-a7767594],.elevation-18[data-v-a7767594],.elevation-19[data-v-a7767594],.elevation-20[data-v-a7767594],.elevation-21[data-v-a7767594],.elevation-22[data-v-a7767594],.elevation-23[data-v-a7767594],.elevation-24[data-v-a7767594]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-a7767594]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-a7767594]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-a7767594]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-a7767594]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.header[data-v-a7767594]{top:0;width:100%;margin:0 auto}.sticky-header[data-v-a7767594]{background-color:#fff;border-bottom:solid 1px #ced9eb;width:100%;z-index:1000}.inner-header[data-v-a7767594]{display:flex;align-items:center;height:77px;max-width:1712px;margin:0 auto}.header-logo[data-v-a7767594]{margin-left:1rem}.header-side[data-v-a7767594]{display:flex;align-items:center;margin-left:auto}@media screen and (min-width: 990px){.header-logo[data-v-a7767594]{margin-left:2rem}.inner-header[data-v-a7767594]{height:95px}}.title[data-v-cbbf13b1]{font-size:24px!important}.alt-title[data-v-cbbf13b1]{font-size:20px!important}.body-text[data-v-cbbf13b1]{font-size:16px!important}.link-label[data-v-cbbf13b1]{font-size:14px!important}h1[data-v-cbbf13b1]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-cbbf13b1]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-cbbf13b1]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-cbbf13b1]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-cbbf13b1]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-cbbf13b1]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-cbbf13b1]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-cbbf13b1]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-cbbf13b1]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-cbbf13b1]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-cbbf13b1]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-cbbf13b1]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-0[data-v-cbbf13b1],.elevation-1[data-v-cbbf13b1],.elevation-2[data-v-cbbf13b1],.elevation-3[data-v-cbbf13b1],.elevation-4[data-v-cbbf13b1],.elevation-5[data-v-cbbf13b1],.elevation-6[data-v-cbbf13b1],.elevation-7[data-v-cbbf13b1],.elevation-8[data-v-cbbf13b1],.elevation-9[data-v-cbbf13b1],.elevation-10[data-v-cbbf13b1],.elevation-11[data-v-cbbf13b1],.elevation-12[data-v-cbbf13b1],.elevation-13[data-v-cbbf13b1],.elevation-14[data-v-cbbf13b1],.elevation-15[data-v-cbbf13b1],.elevation-16[data-v-cbbf13b1],.elevation-17[data-v-cbbf13b1],.elevation-18[data-v-cbbf13b1],.elevation-19[data-v-cbbf13b1],.elevation-20[data-v-cbbf13b1],.elevation-21[data-v-cbbf13b1],.elevation-22[data-v-cbbf13b1],.elevation-23[data-v-cbbf13b1],.elevation-24[data-v-cbbf13b1]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-cbbf13b1]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-cbbf13b1]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-cbbf13b1]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-cbbf13b1]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.header-menu-btn[data-v-cbbf13b1]{text-transform:Capitalize;height:77px;width:82px;display:flex;flex-direction:column;align-items:center;flex-shrink:0;justify-content:center;font-weight:700;transition:color .15s .1s,background-color .15s .1s}.header-menu-btn[data-v-cbbf13b1]:focus-visible{background-color:#0c419a;color:#fff}@media screen and (max-width: 991px){.header-menu-btn__label[data-v-cbbf13b1]{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-cbbf13b1]{height:95px;width:95px}}.title[data-v-3e36a465]{font-size:24px!important}.alt-title[data-v-3e36a465]{font-size:20px!important}.body-text[data-v-3e36a465]{font-size:16px!important}.link-label[data-v-3e36a465]{font-size:14px!important}h1[data-v-3e36a465]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-3e36a465]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-3e36a465]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-3e36a465]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-3e36a465]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-3e36a465]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-3e36a465]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-3e36a465]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-3e36a465]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-3e36a465]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-3e36a465]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-3e36a465]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-0[data-v-3e36a465],.elevation-1[data-v-3e36a465],.elevation-2[data-v-3e36a465],.elevation-3[data-v-3e36a465],.elevation-4[data-v-3e36a465],.elevation-5[data-v-3e36a465],.elevation-6[data-v-3e36a465],.elevation-7[data-v-3e36a465],.elevation-8[data-v-3e36a465],.elevation-9[data-v-3e36a465],.elevation-10[data-v-3e36a465],.elevation-11[data-v-3e36a465],.elevation-12[data-v-3e36a465],.elevation-13[data-v-3e36a465],.elevation-14[data-v-3e36a465],.elevation-15[data-v-3e36a465],.elevation-16[data-v-3e36a465],.elevation-17[data-v-3e36a465],.elevation-18[data-v-3e36a465],.elevation-19[data-v-3e36a465],.elevation-20[data-v-3e36a465],.elevation-21[data-v-3e36a465],.elevation-22[data-v-3e36a465],.elevation-23[data-v-3e36a465],.elevation-24[data-v-3e36a465]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-3e36a465]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-3e36a465]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-3e36a465]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-3e36a465]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.overlay[data-v-3e36a465]{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-3e36a465]{height:100dvh;background-color:#fff;display:flex;flex-direction:column}.header-menu-wrapper[data-v-3e36a465]{height:calc(100% - 77px);display:grid;position:relative;overflow:auto}.header-menu-wrapper--submenu-open[data-v-3e36a465]{overflow:clip}@media screen and (min-width: 990px){.menu-wrapper[data-v-3e36a465]{position:absolute;background-color:transparent}.header-menu-wrapper[data-v-3e36a465]{width:350px;overflow:visible}.header-menu[data-v-3e36a465]{background-color:#fff;overflow-y:auto;overflow-x:hidden;height:100%}}.menu-enter-active[data-v-3e36a465]{transition:opacity .15s ease-in}.menu-enter-active .header-menu-wrapper[data-v-3e36a465]{transition:transform .1s ease-in}.menu-leave-active[data-v-3e36a465]{transition:opacity .15s ease-out}.menu-leave-active .header-menu-wrapper[data-v-3e36a465]{transition:transform .1s ease-out}.menu-enter-from[data-v-3e36a465],.menu-leave-to[data-v-3e36a465]{opacity:0}@media screen and (min-width: 990px){.menu-enter-from .header-menu-wrapper[data-v-3e36a465],.menu-leave-to .header-menu-wrapper[data-v-3e36a465]{transform:translateY(10px)}}@media (prefers-reduced-motion: reduce){.menu-enter-active[data-v-3e36a465],.menu-leave-active[data-v-3e36a465]{transition:opacity 0s}.menu-enter-from .header-menu-wrapper[data-v-3e36a465],.menu-leave-to .header-menu-wrapper[data-v-3e36a465]{transform:none}}.title[data-v-753dd5aa]{font-size:24px!important}.alt-title[data-v-753dd5aa]{font-size:20px!important}.body-text[data-v-753dd5aa]{font-size:16px!important}.link-label[data-v-753dd5aa]{font-size:14px!important}h1[data-v-753dd5aa]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-753dd5aa]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-753dd5aa]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-753dd5aa]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-753dd5aa]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-753dd5aa]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-753dd5aa]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-753dd5aa]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-753dd5aa]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-753dd5aa]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-753dd5aa]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-753dd5aa]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-0[data-v-753dd5aa],.elevation-1[data-v-753dd5aa],.elevation-2[data-v-753dd5aa],.elevation-3[data-v-753dd5aa],.elevation-4[data-v-753dd5aa],.elevation-5[data-v-753dd5aa],.elevation-6[data-v-753dd5aa],.elevation-7[data-v-753dd5aa],.elevation-8[data-v-753dd5aa],.elevation-9[data-v-753dd5aa],.elevation-10[data-v-753dd5aa],.elevation-11[data-v-753dd5aa],.elevation-12[data-v-753dd5aa],.elevation-13[data-v-753dd5aa],.elevation-14[data-v-753dd5aa],.elevation-15[data-v-753dd5aa],.elevation-16[data-v-753dd5aa],.elevation-17[data-v-753dd5aa],.elevation-18[data-v-753dd5aa],.elevation-19[data-v-753dd5aa],.elevation-20[data-v-753dd5aa],.elevation-21[data-v-753dd5aa],.elevation-22[data-v-753dd5aa],.elevation-23[data-v-753dd5aa],.elevation-24[data-v-753dd5aa]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-753dd5aa]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-753dd5aa]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-753dd5aa]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-753dd5aa]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.header-menu-item[data-v-753dd5aa]{color:#0c419a;list-style-type:none;margin:0;padding:0;min-height:44px;font-weight:700}.header-menu-item[data-v-753dd5aa]>a{display:flex;flex-direction:column;padding:16px 50px 16px 20px;text-decoration:none;color:currentColor}.header-menu-item[data-v-753dd5aa]>a:hover{text-decoration:underline}.header-menu-item[data-v-753dd5aa]>a:visited{color:currentColor}.header-menu-item[data-v-753dd5aa]>a:first-letter{text-transform:uppercase}.header-menu-item[data-v-753dd5aa]:hover{background-color:#0c419a;color:#fff}.header-menu-item[data-v-753dd5aa]:hover>a>*{color:#fff!important}.title[data-v-c7879d24]{font-size:24px!important}.alt-title[data-v-c7879d24]{font-size:20px!important}.body-text[data-v-c7879d24]{font-size:16px!important}.link-label[data-v-c7879d24]{font-size:14px!important}h1[data-v-c7879d24]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-c7879d24]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-c7879d24]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-c7879d24]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-c7879d24]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-c7879d24]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-c7879d24]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-c7879d24]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-c7879d24]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-c7879d24]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-c7879d24]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-c7879d24]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-0[data-v-c7879d24],.elevation-1[data-v-c7879d24],.elevation-2[data-v-c7879d24],.elevation-3[data-v-c7879d24],.elevation-4[data-v-c7879d24],.elevation-5[data-v-c7879d24],.elevation-6[data-v-c7879d24],.elevation-7[data-v-c7879d24],.elevation-8[data-v-c7879d24],.elevation-9[data-v-c7879d24],.elevation-10[data-v-c7879d24],.elevation-11[data-v-c7879d24],.elevation-12[data-v-c7879d24],.elevation-13[data-v-c7879d24],.elevation-14[data-v-c7879d24],.elevation-15[data-v-c7879d24],.elevation-16[data-v-c7879d24],.elevation-17[data-v-c7879d24],.elevation-18[data-v-c7879d24],.elevation-19[data-v-c7879d24],.elevation-20[data-v-c7879d24],.elevation-21[data-v-c7879d24],.elevation-22[data-v-c7879d24],.elevation-23[data-v-c7879d24],.elevation-24[data-v-c7879d24]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-c7879d24]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-c7879d24]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-c7879d24]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-c7879d24]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.header-menu-section[data-v-c7879d24]{list-style-type:none;padding:0;margin:0}.header-menu-section-title[data-v-c7879d24]{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-5b9763a6]{font-size:24px!important}.alt-title[data-v-5b9763a6]{font-size:20px!important}.body-text[data-v-5b9763a6]{font-size:16px!important}.link-label[data-v-5b9763a6]{font-size:14px!important}h1[data-v-5b9763a6]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-5b9763a6]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-5b9763a6]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-5b9763a6]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-5b9763a6]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-5b9763a6]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-5b9763a6]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-5b9763a6]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-5b9763a6]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-5b9763a6]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-5b9763a6]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-5b9763a6]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-0[data-v-5b9763a6],.elevation-1[data-v-5b9763a6],.elevation-2[data-v-5b9763a6],.elevation-3[data-v-5b9763a6],.elevation-4[data-v-5b9763a6],.elevation-5[data-v-5b9763a6],.elevation-6[data-v-5b9763a6],.elevation-7[data-v-5b9763a6],.elevation-8[data-v-5b9763a6],.elevation-9[data-v-5b9763a6],.elevation-10[data-v-5b9763a6],.elevation-11[data-v-5b9763a6],.elevation-12[data-v-5b9763a6],.elevation-13[data-v-5b9763a6],.elevation-14[data-v-5b9763a6],.elevation-15[data-v-5b9763a6],.elevation-16[data-v-5b9763a6],.elevation-17[data-v-5b9763a6],.elevation-18[data-v-5b9763a6],.elevation-19[data-v-5b9763a6],.elevation-20[data-v-5b9763a6],.elevation-21[data-v-5b9763a6],.elevation-22[data-v-5b9763a6],.elevation-23[data-v-5b9763a6],.elevation-24[data-v-5b9763a6]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-5b9763a6]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-5b9763a6]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-5b9763a6]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-5b9763a6]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.sub-menu-btn[data-v-5b9763a6]{display:flex;justify-content:center;flex-direction:column;width:100%;padding:16px 50px 16px 20px;text-align:left;color:#0c419a}.sub-menu-btn[data-v-5b9763a6]:hover{background-color:#0c419a;color:#fff;text-decoration:underline}.sub-menu-btn[data-v-5b9763a6]:hover>*{color:#fff!important}.sub-menu-btn[data-v-5b9763a6]:first-letter{text-transform:uppercase}.sub-menu-btn__icon[data-v-5b9763a6]{position:absolute;right:20px}@media screen and (max-width: 989px){.sub-menu--open[data-v-5b9763a6]{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-5b9763a6]{overflow-y:clip}.sub-menu--open>.sub-menu-btn[data-v-5b9763a6]{padding:0 16px 8px 40px;border-bottom:1px solid #e0e0e0;color:#000;background-color:transparent}.sub-menu--open>.sub-menu-btn[data-v-5b9763a6]:hover{color:#000}.sub-menu--open>.sub-menu-btn[data-v-5b9763a6]:hover>*{color:#000!important}.sub-menu--open>.sub-menu-btn[data-v-5b9763a6]>.sub-menu-btn__icon{left:10px;right:auto}}@media screen and (min-width: 990px){.sub-menu-btn[data-v-5b9763a6]{position:relative}.sub-menu--open>.sub-menu-btn[data-v-5b9763a6]{background-color:#0c419a;color:#fff;transition:color .15s linear,background-color .15s linear}.sub-menu--open>.sub-menu-btn[data-v-5b9763a6]>*{color:#fff!important}.sub-menu-content-wrapper[data-v-5b9763a6]{position:absolute;top:0;bottom:0;left:350px}.sub-menu-content[data-v-5b9763a6]{width:351px;height:100%;background:#f9f9f9;border-left:1px solid #e0e0e0;overflow-y:auto;overflow-x:hidden}.sub-menu-content>.sub-menu--open .sub-menu-content[data-v-5b9763a6]{left:700px}.sub-menu-content>.sub-menu--open .sub-menu-content>.sub-menu--open .sub-menu-content[data-v-5b9763a6]{left:1050px}.slide-fade-enter-active[data-v-5b9763a6]{transition:opacity .17s ease-out,transform .17s ease-out}.slide-fade-leave-active[data-v-5b9763a6]{transition:opacity .08s ease-in,transform .08s ease-in}.slide-fade-enter-from[data-v-5b9763a6],.slide-fade-leave-to[data-v-5b9763a6]{opacity:0;transform:translate(-10px)}}@media screen and (min-width: 990px) and (prefers-reduced-motion){.slide-fade-enter-active[data-v-5b9763a6],.slide-fade-leave-active[data-v-5b9763a6]{transition:none}}.horizontal-menu[data-v-22407376]{display:flex;align-items:center}.horizontal-menu__tabs[data-v-22407376]{flex:1 1 0}.horizontal-menu__item[data-v-22407376]{cursor:pointer}.horizontal-menu__item-link[data-v-22407376]{font-size:.875rem;font-weight:700}.v-tab-item--selected span[data-v-22407376]{color:#fff}.inner-vertical-menu[data-v-542c3eaa]{display:flex;flex-direction:column;height:100%}.inner-vertical-menu__main-content[data-v-542c3eaa]{flex:1}.title[data-v-40aa801b]{font-size:24px!important}.alt-title[data-v-40aa801b]{font-size:20px!important}.body-text[data-v-40aa801b]{font-size:16px!important}.link-label[data-v-40aa801b]{font-size:14px!important}h1[data-v-40aa801b]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-40aa801b]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-40aa801b]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-40aa801b]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-40aa801b]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-40aa801b]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-40aa801b]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-40aa801b]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-40aa801b]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-40aa801b]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-40aa801b]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-40aa801b]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-0[data-v-40aa801b],.elevation-1[data-v-40aa801b],.elevation-2[data-v-40aa801b],.elevation-3[data-v-40aa801b],.elevation-4[data-v-40aa801b],.elevation-5[data-v-40aa801b],.elevation-6[data-v-40aa801b],.elevation-7[data-v-40aa801b],.elevation-8[data-v-40aa801b],.elevation-9[data-v-40aa801b],.elevation-10[data-v-40aa801b],.elevation-11[data-v-40aa801b],.elevation-12[data-v-40aa801b],.elevation-13[data-v-40aa801b],.elevation-14[data-v-40aa801b],.elevation-15[data-v-40aa801b],.elevation-16[data-v-40aa801b],.elevation-17[data-v-40aa801b],.elevation-18[data-v-40aa801b],.elevation-19[data-v-40aa801b],.elevation-20[data-v-40aa801b],.elevation-21[data-v-40aa801b],.elevation-22[data-v-40aa801b],.elevation-23[data-v-40aa801b],.elevation-24[data-v-40aa801b]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-40aa801b]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-40aa801b]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-40aa801b]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-40aa801b]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.v-list-item[data-v-40aa801b]:hover{background-color:#00000001}.vd-lang-btn[data-v-40aa801b]{font-weight:700;--hoverColor: rgba(tokens.$colors-overlay, .5);text-transform:capitalize}.title[data-v-93d35fbf]{font-size:24px!important}.alt-title[data-v-93d35fbf]{font-size:20px!important}.body-text[data-v-93d35fbf]{font-size:16px!important}.link-label[data-v-93d35fbf]{font-size:14px!important}h1[data-v-93d35fbf]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-93d35fbf]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-93d35fbf]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-93d35fbf]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-93d35fbf]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-93d35fbf]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-93d35fbf]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-93d35fbf]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-93d35fbf]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-93d35fbf]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-93d35fbf]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-93d35fbf]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-0[data-v-93d35fbf],.elevation-1[data-v-93d35fbf],.elevation-2[data-v-93d35fbf],.elevation-3[data-v-93d35fbf],.elevation-4[data-v-93d35fbf],.elevation-5[data-v-93d35fbf],.elevation-6[data-v-93d35fbf],.elevation-7[data-v-93d35fbf],.elevation-8[data-v-93d35fbf],.elevation-9[data-v-93d35fbf],.elevation-10[data-v-93d35fbf],.elevation-11[data-v-93d35fbf],.elevation-12[data-v-93d35fbf],.elevation-13[data-v-93d35fbf],.elevation-14[data-v-93d35fbf],.elevation-15[data-v-93d35fbf],.elevation-16[data-v-93d35fbf],.elevation-17[data-v-93d35fbf],.elevation-18[data-v-93d35fbf],.elevation-19[data-v-93d35fbf],.elevation-20[data-v-93d35fbf],.elevation-21[data-v-93d35fbf],.elevation-22[data-v-93d35fbf],.elevation-23[data-v-93d35fbf],.elevation-24[data-v-93d35fbf]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-93d35fbf]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-93d35fbf]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-93d35fbf]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-93d35fbf]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.vd-notification-content[data-v-93d35fbf]{display:flex;align-items:center}.vd-notification-bar[data-v-93d35fbf] .v-snack__wrapper{padding:16px;min-width:0;max-width:none}[data-v-93d35fbf] .v-snackbar__content{padding:16px!important}[data-v-93d35fbf] .v-snackbar__actions{margin-inline-end:10px}.vd-notification-bar.v-snackbar--vertical[data-v-93d35fbf] .v-snackbar--vertical .v-snackbar__wrapper .v-snackbar__actions{width:100%!important;align-self:auto}.vd-notification-bar.v-snackbar--vertical[data-v-93d35fbf] .v-snack__wrapper{align-items:stretch;flex-direction:row}.vd-notification-bar.v-snackbar--vertical[data-v-93d35fbf] .v-snack__action{align-self:stretch;align-items:stretch;flex-direction:column}.vd-notification-bar.v-snackbar--vertical[data-v-93d35fbf] .v-snackbar__content{margin:0;width:100%;display:flex}.vd-notification-bar.v-snackbar--vertical[data-v-93d35fbf] .vd-notification-content{flex-direction:column;display:flex}.long-text[data-v-93d35fbf] .v-snackbar__actions{width:98%!important}.short-text[data-v-93d35fbf] .v-snackbar__actions{width:48%!important}.action-section-longText[data-v-93d35fbf]{justify-content:space-around}.action-section-shortText[data-v-93d35fbf]{justify-content:end!important}.vd-page-container[data-v-773c0ca7]{flex:1}.title[data-v-2bd5b004]{font-size:24px!important}.alt-title[data-v-2bd5b004]{font-size:20px!important}.body-text[data-v-2bd5b004]{font-size:16px!important}.link-label[data-v-2bd5b004]{font-size:14px!important}h1[data-v-2bd5b004]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-2bd5b004]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-2bd5b004]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-2bd5b004]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-2bd5b004]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-2bd5b004]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-2bd5b004]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-2bd5b004]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-2bd5b004]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-2bd5b004]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-2bd5b004]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-2bd5b004]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-0[data-v-2bd5b004],.elevation-1[data-v-2bd5b004],.elevation-2[data-v-2bd5b004],.elevation-3[data-v-2bd5b004],.elevation-4[data-v-2bd5b004],.elevation-5[data-v-2bd5b004],.elevation-6[data-v-2bd5b004],.elevation-7[data-v-2bd5b004],.elevation-8[data-v-2bd5b004],.elevation-9[data-v-2bd5b004],.elevation-10[data-v-2bd5b004],.elevation-11[data-v-2bd5b004],.elevation-12[data-v-2bd5b004],.elevation-13[data-v-2bd5b004],.elevation-14[data-v-2bd5b004],.elevation-15[data-v-2bd5b004],.elevation-16[data-v-2bd5b004],.elevation-17[data-v-2bd5b004],.elevation-18[data-v-2bd5b004],.elevation-19[data-v-2bd5b004],.elevation-20[data-v-2bd5b004],.elevation-21[data-v-2bd5b004],.elevation-22[data-v-2bd5b004],.elevation-23[data-v-2bd5b004],.elevation-24[data-v-2bd5b004]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-2bd5b004]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-2bd5b004]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-2bd5b004]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-2bd5b004]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.vd-skip-link[data-v-2bd5b004]{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-ac02e38f]{overflow-x:auto}.vd-sub-header-back-btn[data-v-ac02e38f]{margin:0 -6px}.vd-data-list-group[data-v-ac02e38f],.vd-sub-header-informations[data-v-ac02e38f]{max-width:none}.vd-data-list-group[data-v-ac02e38f] .vd-data-list{max-width:200px}.vd-data-list-group[data-v-ac02e38f] .vd-data-list:not(:last-child){margin-right:80px!important}.vd-data-list-group[data-v-ac02e38f] .vd-data-list .vd-key{display:inline-block;font-size:.75rem!important}.vd-data-list-group[data-v-ac02e38f] .vd-data-list .vd-data-list-item-label{color:#ffffffb3!important}.vd-data-list-group[data-v-ac02e38f] .vd-data-list .vd-data-list-item-action-btn{color:#fff!important}.vd-subheader-loading[data-v-ac02e38f]{background:transparent}.vd-subheader-loading[data-v-ac02e38f] .v-skeleton-loader__button{margin:0;min-height:28px;height:auto;background:rgba(255,255,255,var(--v-border-opacity))}
|
|
1
|
+
.title[data-v-26444a7a]{font-size:24px!important}.alt-title[data-v-26444a7a]{font-size:20px!important}.body-text[data-v-26444a7a]{font-size:16px!important}.link-label[data-v-26444a7a]{font-size:14px!important}h1[data-v-26444a7a]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-26444a7a]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-26444a7a]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-26444a7a]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-26444a7a]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-26444a7a]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-26444a7a]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-26444a7a]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-26444a7a]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-26444a7a]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-26444a7a]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-26444a7a]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-26444a7a],.elevation-2[data-v-26444a7a],.elevation-3[data-v-26444a7a],.elevation-4[data-v-26444a7a],.elevation-5[data-v-26444a7a],.elevation-6[data-v-26444a7a],.elevation-7[data-v-26444a7a],.elevation-8[data-v-26444a7a],.elevation-9[data-v-26444a7a],.elevation-10[data-v-26444a7a],.elevation-11[data-v-26444a7a],.elevation-12[data-v-26444a7a],.elevation-13[data-v-26444a7a],.elevation-14[data-v-26444a7a],.elevation-15[data-v-26444a7a],.elevation-16[data-v-26444a7a],.elevation-17[data-v-26444a7a],.elevation-18[data-v-26444a7a],.elevation-19[data-v-26444a7a],.elevation-20[data-v-26444a7a],.elevation-21[data-v-26444a7a],.elevation-22[data-v-26444a7a],.elevation-23[data-v-26444a7a],.elevation-24[data-v-26444a7a]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-26444a7a]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-26444a7a]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-26444a7a]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-26444a7a]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.alert[data-v-26444a7a]{padding:16px}.alert-icon[data-v-26444a7a]{border-radius:50%}[data-v-26444a7a] .v-alert__underlay{display:none}[data-v-26444a7a] .v-alert__close{align-self:center}[data-v-26444a7a] .v-btn--variant-text .v-btn__overlay{background:transparent!important}.alert-icon[data-v-26444a7a] .v-icon__svg{height:1.5rem!important}.alert-close-btn[data-v-26444a7a]{cursor:pointer;line-height:0}.alert-close-btn .v-btn__overlay[data-v-26444a7a]{display:none}@media screen and (max-width: 440px){.alert[data-v-26444a7a]{display:flex;flex-direction:column;background-color:#fff}.alert[data-v-26444a7a] .v-alert__content{align-self:flex-start!important;margin-top:24px}.alert[data-v-26444a7a] .v-alert__close{margin-top:16px;align-self:flex-end}.alert .v-alert__prepend>.v-icon[data-v-26444a7a]{background:none!important}}@media screen and (min-width: 441px){.alert .alert-icon[data-v-26444a7a]{width:3.5rem!important;height:3.5rem!important;display:grid;place-items:center}}.v-alert.alert--warning.v-alert--variant-tonal[data-v-26444a7a]{background:#fcf0d3!important;color:#222324!important}.v-alert.alert--warning.v-alert--variant-tonal[data-v-26444a7a] .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-26444a7a]{background:transparent!important}.v-alert.alert--warning.v-alert--variant-outlined[data-v-26444a7a] .v-alert__border{border-color:#60480e!important;opacity:1!important}.v-alert.alert--warning .v-alert__prepend>.v-icon[data-v-26444a7a],.v-alert.text-warning .v-alert__prepend>.v-icon[data-v-26444a7a]{background:#fdf7e9}.v-alert.alert--warning .v-alert__prepend>.v-icon[data-v-26444a7a] svg,.v-alert.text-warning .v-alert__prepend>.v-icon[data-v-26444a7a] svg{fill:#60480e}.v-alert.text-warning[data-v-26444a7a]{color:#60480e!important;border-color:#60480e!important}.v-alert.alert--success.v-alert--variant-tonal[data-v-26444a7a]{background:#cceee8!important;color:#222324!important}.v-alert.alert--success.v-alert--variant-tonal[data-v-26444a7a] .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-26444a7a]{background:transparent!important}.v-alert.alert--success.v-alert--variant-outlined[data-v-26444a7a] .v-alert__border{border-color:#224e2d!important;opacity:1!important}.v-alert.alert--success .v-alert__prepend>.v-icon[data-v-26444a7a],.v-alert.text-success .v-alert__prepend>.v-icon[data-v-26444a7a]{background:#e5f7f4}.v-alert.alert--success .v-alert__prepend>.v-icon[data-v-26444a7a] svg,.v-alert.text-success .v-alert__prepend>.v-icon[data-v-26444a7a] svg{fill:#224e2d}.v-alert.text-success[data-v-26444a7a]{color:#224e2d!important;border-color:#224e2d!important}.v-alert.alert--error.v-alert--variant-tonal[data-v-26444a7a]{background:#f9dcd7!important;color:#222324!important}.v-alert.alert--error.v-alert--variant-tonal[data-v-26444a7a] .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-26444a7a]{background:transparent!important}.v-alert.alert--error.v-alert--variant-outlined[data-v-26444a7a] .v-alert__border{border-color:#b33f2e!important;opacity:1!important}.v-alert.alert--error .v-alert__prepend>.v-icon[data-v-26444a7a],.v-alert.text-error .v-alert__prepend>.v-icon[data-v-26444a7a]{background:#fcedeb}.v-alert.alert--error .v-alert__prepend>.v-icon[data-v-26444a7a] svg,.v-alert.text-error .v-alert__prepend>.v-icon[data-v-26444a7a] svg{fill:#b33f2e}.v-alert.text-error[data-v-26444a7a]{color:#b33f2e!important;border-color:#b33f2e!important}.v-alert.alert--info.v-alert--variant-tonal[data-v-26444a7a]{background:#ced9eb!important;color:#222324!important}.v-alert.alert--info.v-alert--variant-tonal[data-v-26444a7a] .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-26444a7a]{background:transparent!important}.v-alert.alert--info.v-alert--variant-outlined[data-v-26444a7a] .v-alert__border{border-color:#0c419a!important;opacity:1!important}.v-alert.alert--info .v-alert__prepend>.v-icon[data-v-26444a7a],.v-alert.text-info .v-alert__prepend>.v-icon[data-v-26444a7a]{background:#e7ecf5}.v-alert.alert--info .v-alert__prepend>.v-icon[data-v-26444a7a] svg,.v-alert.text-info .v-alert__prepend>.v-icon[data-v-26444a7a] svg{fill:#0c419a}.v-alert.text-info[data-v-26444a7a]{color:#0c419a!important;border-color:#0c419a!important}.v-btn.v-theme--light[data-v-04e68a28] .v-btn__underlay,.v-btn.v-theme--light[data-v-04e68a28] .v-btn__overlay{display:none}.vd-back-to-top-btn[data-v-c019b012]{position:sticky;z-index:999;opacity:1;float:right}.v-btn--variant-outlined[data-v-c019b012]{background:#fff}.vd-panel[data-v-8456c2b9]{background-color:transparent}.vd-panel-title[data-v-8456c2b9] .v-expansion-panel-title__overlay{background:transparent!important}.vd-panel-text[data-v-8456c2b9] .v-expansion-panel-text__wrapper{padding:0}li[data-v-8456c2b9]{list-style:none}a[data-v-8456c2b9]{transition:.15s;padding-top:1px;border-bottom:1px solid transparent;color:#000}a[data-v-8456c2b9]:hover,a[data-v-8456c2b9]:focus{border-color:currentColor}.v-theme--dark a[data-v-8456c2b9]{color:#fff}.vd-collapse-list a[data-v-8456c2b9]{color:#000}.vd-collapse-list[data-v-8456c2b9] .text-subtitle-1{font-size:1.125rem!important;letter-spacing:.0015em!important;line-height:1.75rem}.vd-collapse-list.theme--dark[data-v-8456c2b9] h4,.vd-collapse-list.theme--dark[data-v-8456c2b9] ul,.vd-collapse-list.theme--dark[data-v-8456c2b9] a,.vd-collapse-list.theme--dark[data-v-8456c2b9] button{color:#fff!important}.vd-collapse-list-mobile[data-v-8456c2b9] .text-subtitle-2{font-size:1rem!important;letter-spacing:.001em!important;line-height:1.375rem;font-weight:600}.vd-collapse-list-mobile[data-v-8456c2b9] .v-icon{color:#0000008a!important}.vd-collapse-list-mobile.theme--dark[data-v-8456c2b9] button{color:#fff!important}.vd-collapse-list-mobile[data-v-8456c2b9] button{color:red!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 (max-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 (min-width: 601px) and (max-width: 960px){.page-container{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-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-ad6690a5]{font-size:24px!important}.alt-title[data-v-ad6690a5]{font-size:20px!important}.body-text[data-v-ad6690a5]{font-size:16px!important}.link-label[data-v-ad6690a5]{font-size:14px!important}h1[data-v-ad6690a5]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-ad6690a5]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-ad6690a5]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-ad6690a5]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-ad6690a5]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-ad6690a5]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-ad6690a5]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-ad6690a5]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-ad6690a5]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-ad6690a5]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-ad6690a5]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-ad6690a5]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-ad6690a5],.elevation-2[data-v-ad6690a5],.elevation-3[data-v-ad6690a5],.elevation-4[data-v-ad6690a5],.elevation-5[data-v-ad6690a5],.elevation-6[data-v-ad6690a5],.elevation-7[data-v-ad6690a5],.elevation-8[data-v-ad6690a5],.elevation-9[data-v-ad6690a5],.elevation-10[data-v-ad6690a5],.elevation-11[data-v-ad6690a5],.elevation-12[data-v-ad6690a5],.elevation-13[data-v-ad6690a5],.elevation-14[data-v-ad6690a5],.elevation-15[data-v-ad6690a5],.elevation-16[data-v-ad6690a5],.elevation-17[data-v-ad6690a5],.elevation-18[data-v-ad6690a5],.elevation-19[data-v-ad6690a5],.elevation-20[data-v-ad6690a5],.elevation-21[data-v-ad6690a5],.elevation-22[data-v-ad6690a5],.elevation-23[data-v-ad6690a5],.elevation-24[data-v-ad6690a5]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-ad6690a5]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-ad6690a5]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-ad6690a5]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-ad6690a5]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.vd-user-menu-btn-ctn[data-v-ad6690a5]{position:relative;z-index:1}.vd-user-menu-btn-ctn .v-btn.v-btn--density-default[data-v-ad6690a5]{height:auto!important}.vd-user-menu-btn-ctn .v-btn[data-v-ad6690a5]{text-transform:none!important}.vd-user-menu-btn[data-v-ad6690a5]{outline:none;padding:12px!important}.vd-user-menu-btn[data-v-ad6690a5]:hover:before{background:#000;opacity:.05}.vd-user-menu-btn[data-v-ad6690a5]:focus:before{background:#0c419a;opacity:.08}.vd-user-menu-btn[data-v-ad6690a5]:focus{background:#0c419a14!important}[data-v-ad6690a5] .vd-user-menu-btn:focus>.v-btn__overlay{opacity:0!important}.title[data-v-12145ca1]{font-size:24px!important}.alt-title[data-v-12145ca1]{font-size:20px!important}.body-text[data-v-12145ca1]{font-size:16px!important}.link-label[data-v-12145ca1]{font-size:14px!important}h1[data-v-12145ca1]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-12145ca1]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-12145ca1]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-12145ca1]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-12145ca1]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-12145ca1]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-12145ca1]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-12145ca1]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-12145ca1]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-12145ca1]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-12145ca1]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-12145ca1]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-12145ca1],.elevation-2[data-v-12145ca1],.elevation-3[data-v-12145ca1],.elevation-4[data-v-12145ca1],.elevation-5[data-v-12145ca1],.elevation-6[data-v-12145ca1],.elevation-7[data-v-12145ca1],.elevation-8[data-v-12145ca1],.elevation-9[data-v-12145ca1],.elevation-10[data-v-12145ca1],.elevation-11[data-v-12145ca1],.elevation-12[data-v-12145ca1],.elevation-13[data-v-12145ca1],.elevation-14[data-v-12145ca1],.elevation-15[data-v-12145ca1],.elevation-16[data-v-12145ca1],.elevation-17[data-v-12145ca1],.elevation-18[data-v-12145ca1],.elevation-19[data-v-12145ca1],.elevation-20[data-v-12145ca1],.elevation-21[data-v-12145ca1],.elevation-22[data-v-12145ca1],.elevation-23[data-v-12145ca1],.elevation-24[data-v-12145ca1]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-12145ca1]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-12145ca1]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-12145ca1]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-12145ca1]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.sy-input-select[data-v-12145ca1]{text-transform:none!important;font-size:16px}.v-input[data-v-12145ca1]{cursor:pointer;position:relative}.v-list[data-v-12145ca1]{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-12145ca1]:hover{background-color:#0000000a}[data-v-12145ca1] .v-list-item[aria-selected=true]{background-color:#00000014}[data-v-12145ca1] .v-list-item[aria-selected=true] .v-list-item-title{font-weight:700}.error[data-v-12145ca1]{border-color:#b33f2e}.v-btn[data-v-12145ca1],.text-color[data-v-12145ca1]{color:#0c419a}.title[data-v-ef2339e7]{font-size:24px!important}.alt-title[data-v-ef2339e7]{font-size:20px!important}.body-text[data-v-ef2339e7]{font-size:16px!important}.link-label[data-v-ef2339e7]{font-size:14px!important}h1[data-v-ef2339e7]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-ef2339e7]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-ef2339e7]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-ef2339e7]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-ef2339e7]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-ef2339e7]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-ef2339e7]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-ef2339e7]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-ef2339e7]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-ef2339e7]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-ef2339e7]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-ef2339e7]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-ef2339e7],.elevation-2[data-v-ef2339e7],.elevation-3[data-v-ef2339e7],.elevation-4[data-v-ef2339e7],.elevation-5[data-v-ef2339e7],.elevation-6[data-v-ef2339e7],.elevation-7[data-v-ef2339e7],.elevation-8[data-v-ef2339e7],.elevation-9[data-v-ef2339e7],.elevation-10[data-v-ef2339e7],.elevation-11[data-v-ef2339e7],.elevation-12[data-v-ef2339e7],.elevation-13[data-v-ef2339e7],.elevation-14[data-v-ef2339e7],.elevation-15[data-v-ef2339e7],.elevation-16[data-v-ef2339e7],.elevation-17[data-v-ef2339e7],.elevation-18[data-v-ef2339e7],.elevation-19[data-v-ef2339e7],.elevation-20[data-v-ef2339e7],.elevation-21[data-v-ef2339e7],.elevation-22[data-v-ef2339e7],.elevation-23[data-v-ef2339e7],.elevation-24[data-v-ef2339e7]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-ef2339e7]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-ef2339e7]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-ef2339e7]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-ef2339e7]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.sy-select[data-v-ef2339e7]{display:flex;flex-direction:column}.v-field[data-v-ef2339e7]{position:relative}.v-field--focused .v-icon.arrow[data-v-ef2339e7]{transform:rotateX(180deg)}.v-list[data-v-ef2339e7]{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-ef2339e7]:hover{background-color:#0000000a}.v-list-item[aria-selected=true][data-v-ef2339e7]{background-color:#00000014}.v-icon[data-v-ef2339e7]{position:absolute;right:10px;color:#434647}[data-v-ef2339e7] .v-field__input{color:#434647}.hidden-label[data-v-ef2339e7]{visibility:hidden;position:absolute;white-space:nowrap}.vd-row[data-v-ac4bdcda]{display:flex;flex-wrap:wrap}.vd-row .vd-data-list-item-label[data-v-ac4bdcda]{align-self:center}.vd-row .vd-data-list-item-label[data-v-ac4bdcda]:after{content:":";margin:0 4px}.vd-data-list-item-action-btn.v-btn[data-v-ac4bdcda]{min-width:0;margin:0 -1px}.v-icon.v-theme--light[data-v-ac4bdcda]{color:#0000008a}.vd-header-loading[data-v-5a62b165]{background:transparent}.vd-header-loading[data-v-5a62b165] .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-5a62b165] .v-skeleton-loader__heading{border-radius:0}[data-v-e625daaf] ul{list-style:none}.title[data-v-111dda07]{font-size:24px!important}.alt-title[data-v-111dda07]{font-size:20px!important}.body-text[data-v-111dda07]{font-size:16px!important}.link-label[data-v-111dda07]{font-size:14px!important}h1[data-v-111dda07]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-111dda07]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-111dda07]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-111dda07]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-111dda07]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-111dda07]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-111dda07]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-111dda07]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-111dda07]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-111dda07]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-111dda07]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-111dda07]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-111dda07],.elevation-2[data-v-111dda07],.elevation-3[data-v-111dda07],.elevation-4[data-v-111dda07],.elevation-5[data-v-111dda07],.elevation-6[data-v-111dda07],.elevation-7[data-v-111dda07],.elevation-8[data-v-111dda07],.elevation-9[data-v-111dda07],.elevation-10[data-v-111dda07],.elevation-11[data-v-111dda07],.elevation-12[data-v-111dda07],.elevation-13[data-v-111dda07],.elevation-14[data-v-111dda07],.elevation-15[data-v-111dda07],.elevation-16[data-v-111dda07],.elevation-17[data-v-111dda07],.elevation-18[data-v-111dda07],.elevation-19[data-v-111dda07],.elevation-20[data-v-111dda07],.elevation-21[data-v-111dda07],.elevation-22[data-v-111dda07],.elevation-23[data-v-111dda07],.elevation-24[data-v-111dda07]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-111dda07]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-111dda07]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-111dda07]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-111dda07]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.v-card__title[data-v-111dda07]>*{line-height:1em}.v-btn--icon[data-v-111dda07]{color:#222324;position:absolute;right:24px}h2[data-v-111dda07]{word-break:break-word;text-wrap:balance}.vd-dialog-box-actions-ctn[data-v-111dda07]{display:flex;flex-direction:column-reverse;justify-content:stretch;gap:16px}@media screen and (min-width: 600px){.vd-dialog-box-actions-ctn[data-v-111dda07]{flex-direction:row}}.vd-download-btn[data-v-ef3f6e33] .v-btn__content{flex-wrap:wrap}.vd-download-btn[data-v-ef3f6e33] .v-icon{flex:none}.outlined-style[data-v-ef3f6e33]{border:1px solid currentColor}.vd-page-container[data-v-955c6758]{flex:1;width:100%;max-width:1712px;margin:0 auto}.vd-code[data-v-8c79b790]{font-size:6rem;line-height:6rem;font-weight:400}.title[data-v-82e1e286]{font-size:24px!important}.alt-title[data-v-82e1e286]{font-size:20px!important}.body-text[data-v-82e1e286]{font-size:16px!important}.link-label[data-v-82e1e286]{font-size:14px!important}h1[data-v-82e1e286]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-82e1e286]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-82e1e286]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-82e1e286]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-82e1e286]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-82e1e286]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-82e1e286]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-82e1e286]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-82e1e286]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-82e1e286]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-82e1e286]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-82e1e286]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-82e1e286],.elevation-2[data-v-82e1e286],.elevation-3[data-v-82e1e286],.elevation-4[data-v-82e1e286],.elevation-5[data-v-82e1e286],.elevation-6[data-v-82e1e286],.elevation-7[data-v-82e1e286],.elevation-8[data-v-82e1e286],.elevation-9[data-v-82e1e286],.elevation-10[data-v-82e1e286],.elevation-11[data-v-82e1e286],.elevation-12[data-v-82e1e286],.elevation-13[data-v-82e1e286],.elevation-14[data-v-82e1e286],.elevation-15[data-v-82e1e286],.elevation-16[data-v-82e1e286],.elevation-17[data-v-82e1e286],.elevation-18[data-v-82e1e286],.elevation-19[data-v-82e1e286],.elevation-20[data-v-82e1e286],.elevation-21[data-v-82e1e286],.elevation-22[data-v-82e1e286],.elevation-23[data-v-82e1e286],.elevation-24[data-v-82e1e286]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-82e1e286]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-82e1e286]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-82e1e286]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-82e1e286]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.vd-social-media-links[data-v-82e1e286]{display:flex;flex-direction:column}li[data-v-82e1e286]{list-style:none}.vd-social-media-links-label.text--primary[data-v-82e1e286]{color:#0c419a;font-weight:600}.v-theme--dark .vd-social-media-links-label.text--primary[data-v-82e1e286]{color:#fff}.vd-social-media-links-icon[data-v-82e1e286]{color:#545859}.v-btn--icon[data-v-82e1e286]{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-82e1e286]:hover{background:#ffffff1a}@media (min-width: 768px){.vd-social-media-links-label[data-v-82e1e286]{text-align:right}}@media (max-width: 767px){.vd-social-media-links-label[data-v-82e1e286]{text-align:left}}.title[data-v-6d7fdd14]{font-size:24px!important}.alt-title[data-v-6d7fdd14]{font-size:20px!important}.body-text[data-v-6d7fdd14]{font-size:16px!important}.link-label[data-v-6d7fdd14]{font-size:14px!important}h1[data-v-6d7fdd14]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-6d7fdd14]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-6d7fdd14]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-6d7fdd14]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-6d7fdd14]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-6d7fdd14]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-6d7fdd14]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-6d7fdd14]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-6d7fdd14]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-6d7fdd14]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-6d7fdd14]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-6d7fdd14]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-6d7fdd14],.elevation-2[data-v-6d7fdd14],.elevation-3[data-v-6d7fdd14],.elevation-4[data-v-6d7fdd14],.elevation-5[data-v-6d7fdd14],.elevation-6[data-v-6d7fdd14],.elevation-7[data-v-6d7fdd14],.elevation-8[data-v-6d7fdd14],.elevation-9[data-v-6d7fdd14],.elevation-10[data-v-6d7fdd14],.elevation-11[data-v-6d7fdd14],.elevation-12[data-v-6d7fdd14],.elevation-13[data-v-6d7fdd14],.elevation-14[data-v-6d7fdd14],.elevation-15[data-v-6d7fdd14],.elevation-16[data-v-6d7fdd14],.elevation-17[data-v-6d7fdd14],.elevation-18[data-v-6d7fdd14],.elevation-19[data-v-6d7fdd14],.elevation-20[data-v-6d7fdd14],.elevation-21[data-v-6d7fdd14],.elevation-22[data-v-6d7fdd14],.elevation-23[data-v-6d7fdd14],.elevation-24[data-v-6d7fdd14]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-6d7fdd14]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-6d7fdd14]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-6d7fdd14]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-6d7fdd14]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}a[data-v-6d7fdd14]{cursor:pointer}.v-btn--icon[data-v-6d7fdd14]{border:0}.v-footer[data-v-6d7fdd14]{flex-grow:0!important;justify-content:center}.v-footer .container[data-v-6d7fdd14]{width:100%;max-width:1712px;margin:0 auto}.vd-footer-bar[data-v-6d7fdd14] .vd-footer-bar-links a,.vd-footer-bar[data-v-6d7fdd14] p,.vd-footer-bar[data-v-6d7fdd14] .text--primary{color:#000000de}.vd-footer-bar[data-v-6d7fdd14] .text--secondary{color:#0009}.vd-footer-bar[data-v-6d7fdd14] .social .text--primary{color:#0c419a}.vd-footer-bar[data-v-6d7fdd14] .social a.v-btn:hover,.vd-footer-bar[data-v-6d7fdd14] button.v-btn:hover{background:#0000000d}.vd-footer-bar[data-v-6d7fdd14] a.text--primary{color:#0c419a}.vd-footer-bar[data-v-6d7fdd14] .v-divider{border-color:#2f384d}.vd-footer-bar[data-v-6d7fdd14] svg.logo{fill:#0c419a}.vd-footer-bar[data-v-6d7fdd14] .scroll{color:#0c419a!important}.vd-footer-bar.v-theme--dark[data-v-6d7fdd14] .vd-footer-bar-links a{color:#fff}.vd-footer-bar.v-theme--dark[data-v-6d7fdd14] p,.vd-footer-bar.v-theme--dark[data-v-6d7fdd14] .text--primary{color:#ffffffde}.vd-footer-bar.v-theme--dark[data-v-6d7fdd14] .text--secondary{color:#fff9}.vd-footer-bar.v-theme--dark[data-v-6d7fdd14] a.text--primary{color:#fff}.vd-footer-bar.v-theme--dark[data-v-6d7fdd14] .v-divider{border-color:#fff}.vd-footer-bar.v-theme--dark[data-v-6d7fdd14] svg{fill:#fff}.vd-footer-bar-links[data-v-6d7fdd14] li{list-style:none;display:flex}.vd-footer-bar-links[data-v-6d7fdd14] a{transition:.15s;text-decoration:none;padding-top:1px;border-bottom:1px solid transparent}.vd-footer-bar-links[data-v-6d7fdd14] a:hover,.vd-footer-bar-links[data-v-6d7fdd14] a:focus{border-color:currentColor}.vd-footer-bar-links[data-v-6d7fdd14] p{padding:1px 0}.v-theme--dark button.v-btn[data-v-6d7fdd14]:hover{background:#ffffff1a}.vd-france-connect-btn a[data-v-7d3bb666]{color:#000091}.vd-france-connect-btn a[data-v-7d3bb666]:focus{outline-offset:3px}.vd-france-connect-link[data-v-7d3bb666]{background:#000091}.vd-france-connect-link[data-v-7d3bb666]:hover{background:#1212ff;transition:all .2s ease-in-out}.vd-france-connect-link[data-v-7d3bb666]:active{background:#2323ff}.vd-france-connect-link[data-v-7d3bb666]:focus{outline-offset:3px}.vd-france-connect-btn--dark .vd-france-connect-link[data-v-7d3bb666]{color:#fff;background-color:#8585f6}.vd-france-connect-btn--dark .vd-france-connect-link[data-v-7d3bb666]:hover{background-color:#b1b1f9}.vd-france-connect-btn--dark .vd-france-connect-link[data-v-7d3bb666]:active{background-color:#c6c6fb}.vd-france-connect-btn--dark .vd-france-connect-info-link[data-v-7d3bb666]{color:#8585f6}.vd-france-connect-info-link[data-v-7d3bb666]{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-7d3bb666]:hover{background-size:100% 2px}[data-v-7d3bb666] :scope:focus{border-radius:0!important}.cls-2[data-v-c84a4cb8],.cls-2[data-v-3e4cb924]{fill:#0c419a}.title[data-v-b87d6ac8]{font-size:24px!important}.alt-title[data-v-b87d6ac8]{font-size:20px!important}.body-text[data-v-b87d6ac8]{font-size:16px!important}.link-label[data-v-b87d6ac8]{font-size:14px!important}h1[data-v-b87d6ac8]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-b87d6ac8]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-b87d6ac8]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-b87d6ac8]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-b87d6ac8]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-b87d6ac8]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-b87d6ac8]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-b87d6ac8]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-b87d6ac8]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-b87d6ac8]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-b87d6ac8]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-b87d6ac8]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-b87d6ac8],.elevation-2[data-v-b87d6ac8],.elevation-3[data-v-b87d6ac8],.elevation-4[data-v-b87d6ac8],.elevation-5[data-v-b87d6ac8],.elevation-6[data-v-b87d6ac8],.elevation-7[data-v-b87d6ac8],.elevation-8[data-v-b87d6ac8],.elevation-9[data-v-b87d6ac8],.elevation-10[data-v-b87d6ac8],.elevation-11[data-v-b87d6ac8],.elevation-12[data-v-b87d6ac8],.elevation-13[data-v-b87d6ac8],.elevation-14[data-v-b87d6ac8],.elevation-15[data-v-b87d6ac8],.elevation-16[data-v-b87d6ac8],.elevation-17[data-v-b87d6ac8],.elevation-18[data-v-b87d6ac8],.elevation-19[data-v-b87d6ac8],.elevation-20[data-v-b87d6ac8],.elevation-21[data-v-b87d6ac8],.elevation-22[data-v-b87d6ac8],.elevation-23[data-v-b87d6ac8],.elevation-24[data-v-b87d6ac8]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-b87d6ac8]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-b87d6ac8]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-b87d6ac8]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-b87d6ac8]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.logo[data-v-b87d6ac8]{display:flex;height:52px;align-items:center;color:#0c419a;line-height:1.45;font-family:Cabin,Arial,Helvetica,sans-serif;text-decoration:none;cursor:pointer}.logo[data-v-b87d6ac8] svg{flex-grow:0;flex-shrink:0}.service-title[data-v-b87d6ac8]{font-size:.875rem;font-weight:500}.service-subtitle[data-v-b87d6ac8]{font-size:.875rem;font-weight:400}@media screen and (min-width: 990px){.service-title[data-v-b87d6ac8]{font-size:1.125rem}.service-subtitle[data-v-b87d6ac8]{font-size:.75rem}}.title[data-v-0b978951]{font-size:24px!important}.alt-title[data-v-0b978951]{font-size:20px!important}.body-text[data-v-0b978951]{font-size:16px!important}.link-label[data-v-0b978951]{font-size:14px!important}h1[data-v-0b978951]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-0b978951]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-0b978951]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-0b978951]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-0b978951]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-0b978951]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-0b978951]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-0b978951]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-0b978951]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-0b978951]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-0b978951]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-0b978951]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-0b978951],.elevation-2[data-v-0b978951],.elevation-3[data-v-0b978951],.elevation-4[data-v-0b978951],.elevation-5[data-v-0b978951],.elevation-6[data-v-0b978951],.elevation-7[data-v-0b978951],.elevation-8[data-v-0b978951],.elevation-9[data-v-0b978951],.elevation-10[data-v-0b978951],.elevation-11[data-v-0b978951],.elevation-12[data-v-0b978951],.elevation-13[data-v-0b978951],.elevation-14[data-v-0b978951],.elevation-15[data-v-0b978951],.elevation-16[data-v-0b978951],.elevation-17[data-v-0b978951],.elevation-18[data-v-0b978951],.elevation-19[data-v-0b978951],.elevation-20[data-v-0b978951],.elevation-21[data-v-0b978951],.elevation-22[data-v-0b978951],.elevation-23[data-v-0b978951],.elevation-24[data-v-0b978951]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-0b978951]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-0b978951]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-0b978951]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-0b978951]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.header[data-v-0b978951]{position:relative;z-index:1}.sticky-header[data-v-0b978951]{background-color:#fff;width:100%;z-index:1000}.inner-header[data-v-0b978951]{display:flex;align-items:center;height:77px;max-width:1712px;margin:0 auto;border-bottom:solid 1px #ced9eb}.header-side[data-v-0b978951]{display:flex;align-items:center;margin-left:auto}@media screen and (min-width: 990px){.inner-header[data-v-0b978951]{height:95px}}.title[data-v-9b8f4e67]{font-size:24px!important}.alt-title[data-v-9b8f4e67]{font-size:20px!important}.body-text[data-v-9b8f4e67]{font-size:16px!important}.link-label[data-v-9b8f4e67]{font-size:14px!important}h1[data-v-9b8f4e67]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-9b8f4e67]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-9b8f4e67]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-9b8f4e67]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-9b8f4e67]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-9b8f4e67]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-9b8f4e67]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-9b8f4e67]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-9b8f4e67]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-9b8f4e67]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-9b8f4e67]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-9b8f4e67]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-9b8f4e67],.elevation-2[data-v-9b8f4e67],.elevation-3[data-v-9b8f4e67],.elevation-4[data-v-9b8f4e67],.elevation-5[data-v-9b8f4e67],.elevation-6[data-v-9b8f4e67],.elevation-7[data-v-9b8f4e67],.elevation-8[data-v-9b8f4e67],.elevation-9[data-v-9b8f4e67],.elevation-10[data-v-9b8f4e67],.elevation-11[data-v-9b8f4e67],.elevation-12[data-v-9b8f4e67],.elevation-13[data-v-9b8f4e67],.elevation-14[data-v-9b8f4e67],.elevation-15[data-v-9b8f4e67],.elevation-16[data-v-9b8f4e67],.elevation-17[data-v-9b8f4e67],.elevation-18[data-v-9b8f4e67],.elevation-19[data-v-9b8f4e67],.elevation-20[data-v-9b8f4e67],.elevation-21[data-v-9b8f4e67],.elevation-22[data-v-9b8f4e67],.elevation-23[data-v-9b8f4e67],.elevation-24[data-v-9b8f4e67]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-9b8f4e67]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-9b8f4e67]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-9b8f4e67]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-9b8f4e67]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.header-menu-btn[data-v-9b8f4e67]{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:#0c419a;color:#fff;border-bottom:solid 1px #ced9eb;transition:color .15s .1s,background-color .15s .1s,border-bottom .15s .1s}.header-menu-btn[data-v-9b8f4e67]:focus-visible{background-color:#fff;color:#0c419a}.header-menu-btn__open[data-v-9b8f4e67]{background-color:#fff;color:#0c419a;border-color:#fff}@media screen and (max-width: 991px){.header-menu-btn__label[data-v-9b8f4e67]{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-9b8f4e67]{height:95px;width:95px}}.title[data-v-63b844d1]{font-size:24px!important}.alt-title[data-v-63b844d1]{font-size:20px!important}.body-text[data-v-63b844d1]{font-size:16px!important}.link-label[data-v-63b844d1]{font-size:14px!important}h1[data-v-63b844d1]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-63b844d1]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-63b844d1]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-63b844d1]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-63b844d1]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-63b844d1]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-63b844d1]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-63b844d1]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-63b844d1]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-63b844d1]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-63b844d1]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-63b844d1]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-63b844d1],.elevation-2[data-v-63b844d1],.elevation-3[data-v-63b844d1],.elevation-4[data-v-63b844d1],.elevation-5[data-v-63b844d1],.elevation-6[data-v-63b844d1],.elevation-7[data-v-63b844d1],.elevation-8[data-v-63b844d1],.elevation-9[data-v-63b844d1],.elevation-10[data-v-63b844d1],.elevation-11[data-v-63b844d1],.elevation-12[data-v-63b844d1],.elevation-13[data-v-63b844d1],.elevation-14[data-v-63b844d1],.elevation-15[data-v-63b844d1],.elevation-16[data-v-63b844d1],.elevation-17[data-v-63b844d1],.elevation-18[data-v-63b844d1],.elevation-19[data-v-63b844d1],.elevation-20[data-v-63b844d1],.elevation-21[data-v-63b844d1],.elevation-22[data-v-63b844d1],.elevation-23[data-v-63b844d1],.elevation-24[data-v-63b844d1]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-63b844d1]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-63b844d1]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-63b844d1]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-63b844d1]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.overlay[data-v-63b844d1]{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-63b844d1]{height:100dvh;background-color:#fff;display:flex;flex-direction:column}.header-menu-wrapper[data-v-63b844d1]{height:calc(100% - 77px);display:grid;position:relative;overflow:auto}.header-menu-wrapper--submenu-open[data-v-63b844d1]{overflow:clip}@media screen and (min-width: 990px){.menu-wrapper[data-v-63b844d1]{position:absolute;background-color:transparent}.header-menu-wrapper[data-v-63b844d1]{width:350px;overflow:visible}.header-menu[data-v-63b844d1]{background-color:#fff;overflow-y:auto;overflow-x:hidden;height:100%}}.menu-enter-active[data-v-63b844d1]{transition:opacity .15s ease-in}.menu-enter-active .header-menu-wrapper[data-v-63b844d1]{transition:transform .1s ease-in}.menu-leave-active[data-v-63b844d1]{transition:opacity .15s ease-out}.menu-leave-active .header-menu-wrapper[data-v-63b844d1]{transition:transform .1s ease-out}.menu-enter-from[data-v-63b844d1],.menu-leave-to[data-v-63b844d1]{opacity:0}@media screen and (min-width: 990px){.menu-enter-from .header-menu-wrapper[data-v-63b844d1],.menu-leave-to .header-menu-wrapper[data-v-63b844d1]{transform:translateY(10px)}}@media (prefers-reduced-motion: reduce){.menu-enter-active[data-v-63b844d1],.menu-leave-active[data-v-63b844d1]{transition:opacity 0s}.menu-enter-from .header-menu-wrapper[data-v-63b844d1],.menu-leave-to .header-menu-wrapper[data-v-63b844d1]{transform:none}}.title[data-v-753dd5aa]{font-size:24px!important}.alt-title[data-v-753dd5aa]{font-size:20px!important}.body-text[data-v-753dd5aa]{font-size:16px!important}.link-label[data-v-753dd5aa]{font-size:14px!important}h1[data-v-753dd5aa]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-753dd5aa]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-753dd5aa]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-753dd5aa]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-753dd5aa]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-753dd5aa]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-753dd5aa]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-753dd5aa]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-753dd5aa]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-753dd5aa]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-753dd5aa]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-753dd5aa]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-753dd5aa],.elevation-2[data-v-753dd5aa],.elevation-3[data-v-753dd5aa],.elevation-4[data-v-753dd5aa],.elevation-5[data-v-753dd5aa],.elevation-6[data-v-753dd5aa],.elevation-7[data-v-753dd5aa],.elevation-8[data-v-753dd5aa],.elevation-9[data-v-753dd5aa],.elevation-10[data-v-753dd5aa],.elevation-11[data-v-753dd5aa],.elevation-12[data-v-753dd5aa],.elevation-13[data-v-753dd5aa],.elevation-14[data-v-753dd5aa],.elevation-15[data-v-753dd5aa],.elevation-16[data-v-753dd5aa],.elevation-17[data-v-753dd5aa],.elevation-18[data-v-753dd5aa],.elevation-19[data-v-753dd5aa],.elevation-20[data-v-753dd5aa],.elevation-21[data-v-753dd5aa],.elevation-22[data-v-753dd5aa],.elevation-23[data-v-753dd5aa],.elevation-24[data-v-753dd5aa]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-753dd5aa]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-753dd5aa]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-753dd5aa]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-753dd5aa]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.header-menu-item[data-v-753dd5aa]{color:#0c419a;list-style-type:none;margin:0;padding:0;min-height:44px;font-weight:700}.header-menu-item[data-v-753dd5aa]>a{display:flex;flex-direction:column;padding:16px 50px 16px 20px;text-decoration:none;color:currentColor}.header-menu-item[data-v-753dd5aa]>a:hover{text-decoration:underline}.header-menu-item[data-v-753dd5aa]>a:visited{color:currentColor}.header-menu-item[data-v-753dd5aa]>a:first-letter{text-transform:uppercase}.header-menu-item[data-v-753dd5aa]:hover{background-color:#0c419a;color:#fff}.header-menu-item[data-v-753dd5aa]:hover>a>*{color:#fff!important}.title[data-v-7c0df756]{font-size:24px!important}.alt-title[data-v-7c0df756]{font-size:20px!important}.body-text[data-v-7c0df756]{font-size:16px!important}.link-label[data-v-7c0df756]{font-size:14px!important}h1[data-v-7c0df756]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-7c0df756]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-7c0df756]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-7c0df756]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-7c0df756]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-7c0df756]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-7c0df756]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-7c0df756]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-7c0df756]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-7c0df756]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-7c0df756]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-7c0df756]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-7c0df756],.elevation-2[data-v-7c0df756],.elevation-3[data-v-7c0df756],.elevation-4[data-v-7c0df756],.elevation-5[data-v-7c0df756],.elevation-6[data-v-7c0df756],.elevation-7[data-v-7c0df756],.elevation-8[data-v-7c0df756],.elevation-9[data-v-7c0df756],.elevation-10[data-v-7c0df756],.elevation-11[data-v-7c0df756],.elevation-12[data-v-7c0df756],.elevation-13[data-v-7c0df756],.elevation-14[data-v-7c0df756],.elevation-15[data-v-7c0df756],.elevation-16[data-v-7c0df756],.elevation-17[data-v-7c0df756],.elevation-18[data-v-7c0df756],.elevation-19[data-v-7c0df756],.elevation-20[data-v-7c0df756],.elevation-21[data-v-7c0df756],.elevation-22[data-v-7c0df756],.elevation-23[data-v-7c0df756],.elevation-24[data-v-7c0df756]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-7c0df756]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-7c0df756]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-7c0df756]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-7c0df756]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.header-menu-section[data-v-7c0df756]{list-style-type:none;padding:0;margin:0}.header-menu-section-title[data-v-7c0df756]{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-e5697195]{font-size:24px!important}.alt-title[data-v-e5697195]{font-size:20px!important}.body-text[data-v-e5697195]{font-size:16px!important}.link-label[data-v-e5697195]{font-size:14px!important}h1[data-v-e5697195]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-e5697195]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-e5697195]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-e5697195]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-e5697195]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-e5697195]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-e5697195]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-e5697195]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-e5697195]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-e5697195]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-e5697195]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-e5697195]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-e5697195],.elevation-2[data-v-e5697195],.elevation-3[data-v-e5697195],.elevation-4[data-v-e5697195],.elevation-5[data-v-e5697195],.elevation-6[data-v-e5697195],.elevation-7[data-v-e5697195],.elevation-8[data-v-e5697195],.elevation-9[data-v-e5697195],.elevation-10[data-v-e5697195],.elevation-11[data-v-e5697195],.elevation-12[data-v-e5697195],.elevation-13[data-v-e5697195],.elevation-14[data-v-e5697195],.elevation-15[data-v-e5697195],.elevation-16[data-v-e5697195],.elevation-17[data-v-e5697195],.elevation-18[data-v-e5697195],.elevation-19[data-v-e5697195],.elevation-20[data-v-e5697195],.elevation-21[data-v-e5697195],.elevation-22[data-v-e5697195],.elevation-23[data-v-e5697195],.elevation-24[data-v-e5697195]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-e5697195]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-e5697195]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-e5697195]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-e5697195]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.sub-menu-btn[data-v-e5697195]{display:flex;justify-content:center;flex-direction:column;width:100%;padding:16px 50px 16px 20px;text-align:left;color:#0c419a}.sub-menu-btn[data-v-e5697195]:hover{background-color:#0c419a;color:#fff;text-decoration:underline}.sub-menu-btn[data-v-e5697195]:hover>*{color:#fff!important}.sub-menu-btn[data-v-e5697195]:first-letter{text-transform:uppercase}.sub-menu-btn__icon[data-v-e5697195]{position:absolute;right:20px}@media screen and (max-width: 989px){.sub-menu--open[data-v-e5697195]{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-e5697195]{overflow-y:clip}.sub-menu--open>.sub-menu-btn[data-v-e5697195]{padding:0 16px 8px 40px;border-bottom:1px solid #e0e0e0;color:#000;background-color:transparent}.sub-menu--open>.sub-menu-btn[data-v-e5697195]:hover{color:#000}.sub-menu--open>.sub-menu-btn[data-v-e5697195]:hover>*{color:#000!important}.sub-menu--open>.sub-menu-btn[data-v-e5697195]>.sub-menu-btn__icon{left:10px;right:auto}}@media screen and (min-width: 990px){.sub-menu-btn[data-v-e5697195]{position:relative}.sub-menu--open>.sub-menu-btn[data-v-e5697195]{background-color:#0c419a;color:#fff;transition:color .15s linear,background-color .15s linear}.sub-menu--open>.sub-menu-btn[data-v-e5697195]>*{color:#fff!important}.sub-menu-content-wrapper[data-v-e5697195]{position:absolute;top:0;bottom:0;left:350px}.sub-menu-content[data-v-e5697195]{width:351px;height:100%;background:#f9f9f9;border-left:1px solid #e0e0e0;overflow-y:auto;overflow-x:hidden}.sub-menu-content>.sub-menu--open .sub-menu-content[data-v-e5697195]{left:700px}.sub-menu-content>.sub-menu--open .sub-menu-content>.sub-menu--open .sub-menu-content[data-v-e5697195]{left:1050px}.slide-fade-enter-active[data-v-e5697195]{transition:opacity .17s ease-out,transform .17s ease-out}.slide-fade-leave-active[data-v-e5697195]{transition:opacity .08s ease-in,transform .08s ease-in}.slide-fade-enter-from[data-v-e5697195],.slide-fade-leave-to[data-v-e5697195]{opacity:0;transform:translate(-10px)}}@media screen and (min-width: 990px) and (prefers-reduced-motion){.slide-fade-enter-active[data-v-e5697195],.slide-fade-leave-active[data-v-e5697195]{transition:none}}.title[data-v-9905d7f9]{font-size:24px!important}.alt-title[data-v-9905d7f9]{font-size:20px!important}.body-text[data-v-9905d7f9]{font-size:16px!important}.link-label[data-v-9905d7f9]{font-size:14px!important}h1[data-v-9905d7f9]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-9905d7f9]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-9905d7f9]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-9905d7f9]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-9905d7f9]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-9905d7f9]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-9905d7f9]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-9905d7f9]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-9905d7f9]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-9905d7f9]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-9905d7f9]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-9905d7f9]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-9905d7f9],.elevation-2[data-v-9905d7f9],.elevation-3[data-v-9905d7f9],.elevation-4[data-v-9905d7f9],.elevation-5[data-v-9905d7f9],.elevation-6[data-v-9905d7f9],.elevation-7[data-v-9905d7f9],.elevation-8[data-v-9905d7f9],.elevation-9[data-v-9905d7f9],.elevation-10[data-v-9905d7f9],.elevation-11[data-v-9905d7f9],.elevation-12[data-v-9905d7f9],.elevation-13[data-v-9905d7f9],.elevation-14[data-v-9905d7f9],.elevation-15[data-v-9905d7f9],.elevation-16[data-v-9905d7f9],.elevation-17[data-v-9905d7f9],.elevation-18[data-v-9905d7f9],.elevation-19[data-v-9905d7f9],.elevation-20[data-v-9905d7f9],.elevation-21[data-v-9905d7f9],.elevation-22[data-v-9905d7f9],.elevation-23[data-v-9905d7f9],.elevation-24[data-v-9905d7f9]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-9905d7f9]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-9905d7f9]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-9905d7f9]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-9905d7f9]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.horizontal-menu[data-v-9905d7f9]{display:flex;align-items:center;max-width:1712px;margin:0 auto}.horizontal-menu__tabs[data-v-9905d7f9]{flex:1 1 0}.horizontal-menu__item[data-v-9905d7f9]{cursor:pointer}.horizontal-menu__item-link[data-v-9905d7f9]{font-size:.875rem;font-weight:700}.v-tab-item--selected span[data-v-9905d7f9]{color:#fff}.inner-vertical-menu[data-v-64e98667]{display:flex;flex-direction:column;height:100%}.inner-vertical-menu__main-content[data-v-64e98667]{flex:1}.title[data-v-1708d64a]{font-size:24px!important}.alt-title[data-v-1708d64a]{font-size:20px!important}.body-text[data-v-1708d64a]{font-size:16px!important}.link-label[data-v-1708d64a]{font-size:14px!important}h1[data-v-1708d64a]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-1708d64a]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-1708d64a]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-1708d64a]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-1708d64a]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-1708d64a]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-1708d64a]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-1708d64a]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-1708d64a]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-1708d64a]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-1708d64a]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-1708d64a]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-1708d64a],.elevation-2[data-v-1708d64a],.elevation-3[data-v-1708d64a],.elevation-4[data-v-1708d64a],.elevation-5[data-v-1708d64a],.elevation-6[data-v-1708d64a],.elevation-7[data-v-1708d64a],.elevation-8[data-v-1708d64a],.elevation-9[data-v-1708d64a],.elevation-10[data-v-1708d64a],.elevation-11[data-v-1708d64a],.elevation-12[data-v-1708d64a],.elevation-13[data-v-1708d64a],.elevation-14[data-v-1708d64a],.elevation-15[data-v-1708d64a],.elevation-16[data-v-1708d64a],.elevation-17[data-v-1708d64a],.elevation-18[data-v-1708d64a],.elevation-19[data-v-1708d64a],.elevation-20[data-v-1708d64a],.elevation-21[data-v-1708d64a],.elevation-22[data-v-1708d64a],.elevation-23[data-v-1708d64a],.elevation-24[data-v-1708d64a]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-1708d64a]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-1708d64a]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-1708d64a]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-1708d64a]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.toolbar[data-v-1708d64a]{background:#e7ecf5;position:relative;display:flex;align-items:center;justify-content:center;z-index:100}.toolbar .container[data-v-1708d64a]{width:100%;max-height:45px;max-width:1712px;display:flex;align-items:center;justify-content:space-between}@media (max-width: 768px){.toolbar .container[data-v-1708d64a]{max-height:41px}}.toolbar .container[data-v-1708d64a] ul{display:flex;align-items:center;justify-content:flex-start;list-style:none;text-decoration:none}.toolbar .container[data-v-1708d64a] ul li{text-align:center}.toolbar .container[data-v-1708d64a] ul>li>a{display:block;color:#07275c;text-decoration:none;padding:10px 16px;cursor:pointer}.toolbar .container[data-v-1708d64a] ul>li>a:hover{text-decoration:underline}@media (max-width: 768px){.toolbar .container[data-v-1708d64a] ul>li>a{font-size:12px}}.toolbar #left-menu ul>li>a[data-v-1708d64a]{font-weight:700;color:#07275c}.toolbar #left-menu ul>li>a[data-v-1708d64a]:hover{text-decoration:none}.toolbar #left-menu li[data-v-1708d64a]:first-child{min-width:95px;background:transparent}@media (max-width: 990px){.toolbar #left-menu li[data-v-1708d64a]:first-child{min-width:82px}}.toolbar #left-menu li[data-v-1708d64a]:nth-child(2){min-width:260px;z-index:2}@media (max-width: 768px){.toolbar #left-menu li[data-v-1708d64a]:nth-child(2){min-width:152px}}.toolbar #left-menu li[data-v-1708d64a]:nth-child(3){background:transparent}.toolbar #left-menu li:first-child a[data-v-1708d64a]:hover,.toolbar #left-menu li:first-child.active[data-v-1708d64a]{background:#ed76b3}.toolbar #left-menu li:nth-child(2) a[data-v-1708d64a]:hover,.toolbar #left-menu .highlight[data-v-1708d64a]{background:#66c9ec}.toolbar #left-menu li:nth-child(3) a[data-v-1708d64a]:hover,.toolbar #left-menu li:nth-child(3).active[data-v-1708d64a]{background:#f0b323}@media (max-width: 1000px){.toolbar #right-menu[data-v-1708d64a]{display:none}}.toolbar #right-menu ul[data-v-1708d64a]{white-space:nowrap;overflow:hidden}.toolbar #right-menu ul li[data-v-1708d64a]{display:inline-block}.toolbar[data-v-1708d64a] .v-input .v-input__details{display:none}.toolbar[data-v-1708d64a] .v-input .v-input__control{font-weight:700}.toolbar[data-v-1708d64a] .v-input .v-input__control .text-color{color:#051a3e!important}.toolbar[data-v-1708d64a] .v-input .v-input__control .v-icon{margin-left:10px}.toolbar[data-v-1708d64a] .v-input .v-input__control .custom-select{display:flex;justify-content:space-between;width:100%}.toolbar[data-v-1708d64a] .v-input .v-input__control .custom-select span{max-width:260px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}@media (max-width: 768px){.toolbar[data-v-1708d64a] .v-input .v-input__control .custom-select span{max-width:182px}}@media (max-width: 768px){.toolbar[data-v-1708d64a] .v-input .v-input__control{font-size:12px}}.toolbar[data-v-1708d64a] .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 (max-width: 768px){.toolbar[data-v-1708d64a] .v-input .v-list{position:fixed;top:38px!important;left:0!important;min-width:100%!important;box-shadow:none!important}}.toolbar[data-v-1708d64a] .v-input .v-list .v-list-item--density-default.v-list-item--one-line{min-height:40px}.toolbar .overlay[data-v-1708d64a]{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 (max-width: 768px){.toolbar .overlay[data-v-1708d64a]{display:none}}.right-menu-item[data-v-1708d64a]{color:#051a3e}.title[data-v-4c0d182f]{font-size:24px!important}.alt-title[data-v-4c0d182f]{font-size:20px!important}.body-text[data-v-4c0d182f]{font-size:16px!important}.link-label[data-v-4c0d182f]{font-size:14px!important}h1[data-v-4c0d182f]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-4c0d182f]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-4c0d182f]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-4c0d182f]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-4c0d182f]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-4c0d182f]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-4c0d182f]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-4c0d182f]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-4c0d182f]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-4c0d182f]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-4c0d182f]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-4c0d182f]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-4c0d182f],.elevation-2[data-v-4c0d182f],.elevation-3[data-v-4c0d182f],.elevation-4[data-v-4c0d182f],.elevation-5[data-v-4c0d182f],.elevation-6[data-v-4c0d182f],.elevation-7[data-v-4c0d182f],.elevation-8[data-v-4c0d182f],.elevation-9[data-v-4c0d182f],.elevation-10[data-v-4c0d182f],.elevation-11[data-v-4c0d182f],.elevation-12[data-v-4c0d182f],.elevation-13[data-v-4c0d182f],.elevation-14[data-v-4c0d182f],.elevation-15[data-v-4c0d182f],.elevation-16[data-v-4c0d182f],.elevation-17[data-v-4c0d182f],.elevation-18[data-v-4c0d182f],.elevation-19[data-v-4c0d182f],.elevation-20[data-v-4c0d182f],.elevation-21[data-v-4c0d182f],.elevation-22[data-v-4c0d182f],.elevation-23[data-v-4c0d182f],.elevation-24[data-v-4c0d182f]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-4c0d182f]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-4c0d182f]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-4c0d182f]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-4c0d182f]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.v-list-item[data-v-4c0d182f]:hover{background-color:#00000001}.vd-lang-btn[data-v-4c0d182f]{font-size:16px;--hoverColor: 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],img[data-v-1ff99a74]{max-height:290px}.title[data-v-53a042d6]{font-size:24px!important}.alt-title[data-v-53a042d6]{font-size:20px!important}.body-text[data-v-53a042d6]{font-size:16px!important}.link-label[data-v-53a042d6]{font-size:14px!important}h1[data-v-53a042d6]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-53a042d6]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-53a042d6]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-53a042d6]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-53a042d6]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-53a042d6]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-53a042d6]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-53a042d6]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-53a042d6]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-53a042d6]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-53a042d6]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-53a042d6]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-53a042d6],.elevation-2[data-v-53a042d6],.elevation-3[data-v-53a042d6],.elevation-4[data-v-53a042d6],.elevation-5[data-v-53a042d6],.elevation-6[data-v-53a042d6],.elevation-7[data-v-53a042d6],.elevation-8[data-v-53a042d6],.elevation-9[data-v-53a042d6],.elevation-10[data-v-53a042d6],.elevation-11[data-v-53a042d6],.elevation-12[data-v-53a042d6],.elevation-13[data-v-53a042d6],.elevation-14[data-v-53a042d6],.elevation-15[data-v-53a042d6],.elevation-16[data-v-53a042d6],.elevation-17[data-v-53a042d6],.elevation-18[data-v-53a042d6],.elevation-19[data-v-53a042d6],.elevation-20[data-v-53a042d6],.elevation-21[data-v-53a042d6],.elevation-22[data-v-53a042d6],.elevation-23[data-v-53a042d6],.elevation-24[data-v-53a042d6]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-53a042d6]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-53a042d6]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-53a042d6]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-53a042d6]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.v-messages__message--success[data-v-53a042d6],.v-field--active .v-messages__message--success[data-v-53a042d6]{color:#224e2d!important}.v-messages__message--error[data-v-53a042d6],.v-field--active .v-messages__message--error[data-v-53a042d6]{color:#b33f2e}[data-v-53a042d6] .v-field.v-field--active .v-label.v-field-label--floating{opacity:1}.multi-line[data-v-53a042d6]{white-space:pre-line!important}.vd-number-field[data-v-53a042d6]{max-width:296px}.vd-key-field[data-v-53a042d6]{width:104px}.custom-counter[data-v-53a042d6]{color:#0000008a}.vd-nir-field[data-v-53a042d6] .v-input__append-inner,.vd-tooltip-icon[data-v-53a042d6]{flex:none;color:#0000008a}[data-v-53a042d6] .v-overlay__content{background:#545859f2!important}.vd-key-field[data-v-53a042d6]{flex:none}.vd-nir-field--outlined[data-v-53a042d6] .v-messages.error--text{padding:6px}.vd-nir-field[data-v-53a042d6]{container-name:nirFieldwrapper}[data-v-53a042d6] .v-input__append{margin-inline-start:0!important}[data-v-53a042d6] .vd-number-field>.v-input__prepend{margin-right:0!important}@media screen and (max-width: 360px){[data-v-53a042d6] .vd-key-field>.v-input__prepend{margin-inline-end:0!important}}[data-v-53a042d6] .v-text-field .v-input__details{padding-inline-start:0!important;padding-inline-end:0!important;flex:none!important}[data-v-53a042d6] .v-text-field .v-input__details .v-messages{color:#000!important}@container nirFieldwrapper (max-width: 300px){.vd-nir-field__fields-wrapper[data-v-53a042d6]>.v-input__control{justify-content:start;flex-wrap:wrap;gap:4px;margin-bottom:4px}.vd-nir-field__fields-wrapper[data-v-53a042d6]>.v-input__control .vd-number-field{flex:100% 0 0}}@media screen and (max-width: 360px){.vd-nir-field__fields-wrapper[data-v-53a042d6]>.v-input__control{justify-content:start;flex-wrap:wrap;gap:4px;margin-bottom:4px}.vd-nir-field__fields-wrapper[data-v-53a042d6]>.v-input__control .vd-number-field{flex:100% 0 0}}.v-text-field .v-input__append-inner[data-v-53a042d6]{padding-left:0!important}[data-v-53a042d6] .v-text-field>.v-input__control>.v-input__slot>.v-text-field__slot{width:min-content!important}.title[data-v-93d35fbf]{font-size:24px!important}.alt-title[data-v-93d35fbf]{font-size:20px!important}.body-text[data-v-93d35fbf]{font-size:16px!important}.link-label[data-v-93d35fbf]{font-size:14px!important}h1[data-v-93d35fbf]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-93d35fbf]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-93d35fbf]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-93d35fbf]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-93d35fbf]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-93d35fbf]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-93d35fbf]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-93d35fbf]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-93d35fbf]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-93d35fbf]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-93d35fbf]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-93d35fbf]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-93d35fbf],.elevation-2[data-v-93d35fbf],.elevation-3[data-v-93d35fbf],.elevation-4[data-v-93d35fbf],.elevation-5[data-v-93d35fbf],.elevation-6[data-v-93d35fbf],.elevation-7[data-v-93d35fbf],.elevation-8[data-v-93d35fbf],.elevation-9[data-v-93d35fbf],.elevation-10[data-v-93d35fbf],.elevation-11[data-v-93d35fbf],.elevation-12[data-v-93d35fbf],.elevation-13[data-v-93d35fbf],.elevation-14[data-v-93d35fbf],.elevation-15[data-v-93d35fbf],.elevation-16[data-v-93d35fbf],.elevation-17[data-v-93d35fbf],.elevation-18[data-v-93d35fbf],.elevation-19[data-v-93d35fbf],.elevation-20[data-v-93d35fbf],.elevation-21[data-v-93d35fbf],.elevation-22[data-v-93d35fbf],.elevation-23[data-v-93d35fbf],.elevation-24[data-v-93d35fbf]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-93d35fbf]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-93d35fbf]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-93d35fbf]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-93d35fbf]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.vd-notification-content[data-v-93d35fbf]{display:flex;align-items:center}.vd-notification-bar[data-v-93d35fbf] .v-snack__wrapper{padding:16px;min-width:0;max-width:none}[data-v-93d35fbf] .v-snackbar__content{padding:16px!important}[data-v-93d35fbf] .v-snackbar__actions{margin-inline-end:10px}.vd-notification-bar.v-snackbar--vertical[data-v-93d35fbf] .v-snackbar--vertical .v-snackbar__wrapper .v-snackbar__actions{width:100%!important;align-self:auto}.vd-notification-bar.v-snackbar--vertical[data-v-93d35fbf] .v-snack__wrapper{align-items:stretch;flex-direction:row}.vd-notification-bar.v-snackbar--vertical[data-v-93d35fbf] .v-snack__action{align-self:stretch;align-items:stretch;flex-direction:column}.vd-notification-bar.v-snackbar--vertical[data-v-93d35fbf] .v-snackbar__content{margin:0;width:100%;display:flex}.vd-notification-bar.v-snackbar--vertical[data-v-93d35fbf] .vd-notification-content{flex-direction:column;display:flex}.long-text[data-v-93d35fbf] .v-snackbar__actions{width:98%!important}.short-text[data-v-93d35fbf] .v-snackbar__actions{width:48%!important}.action-section-longText[data-v-93d35fbf]{justify-content:space-around}.action-section-shortText[data-v-93d35fbf]{justify-content:end!important}.phone-field-container[data-v-4ee90459]{display:flex;flex-direction:column;align-items:flex-start;width:100%}.phoneField[data-v-4ee90459]{width:100%}.custom-select[data-v-4ee90459]{width:30%}@media (min-width: 600px){.phone-field-container[data-v-4ee90459]{flex-direction:row;align-items:center}.custom-select[data-v-4ee90459]{margin-right:1rem;margin-bottom:0;min-width:144px}.phoneField[data-v-4ee90459]{min-width:350px}}[data-v-4ee90459] .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}.title[data-v-2bd5b004]{font-size:24px!important}.alt-title[data-v-2bd5b004]{font-size:20px!important}.body-text[data-v-2bd5b004]{font-size:16px!important}.link-label[data-v-2bd5b004]{font-size:14px!important}h1[data-v-2bd5b004]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-2bd5b004]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-2bd5b004]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-2bd5b004]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-2bd5b004]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-2bd5b004]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-2bd5b004]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-2bd5b004]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-2bd5b004]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-2bd5b004]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-2bd5b004]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-2bd5b004]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-2bd5b004],.elevation-2[data-v-2bd5b004],.elevation-3[data-v-2bd5b004],.elevation-4[data-v-2bd5b004],.elevation-5[data-v-2bd5b004],.elevation-6[data-v-2bd5b004],.elevation-7[data-v-2bd5b004],.elevation-8[data-v-2bd5b004],.elevation-9[data-v-2bd5b004],.elevation-10[data-v-2bd5b004],.elevation-11[data-v-2bd5b004],.elevation-12[data-v-2bd5b004],.elevation-13[data-v-2bd5b004],.elevation-14[data-v-2bd5b004],.elevation-15[data-v-2bd5b004],.elevation-16[data-v-2bd5b004],.elevation-17[data-v-2bd5b004],.elevation-18[data-v-2bd5b004],.elevation-19[data-v-2bd5b004],.elevation-20[data-v-2bd5b004],.elevation-21[data-v-2bd5b004],.elevation-22[data-v-2bd5b004],.elevation-23[data-v-2bd5b004],.elevation-24[data-v-2bd5b004]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-2bd5b004]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-2bd5b004]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-2bd5b004]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-2bd5b004]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.vd-skip-link[data-v-2bd5b004]{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-93d57abf]{overflow-x:auto}.vd-sub-header-back-btn[data-v-93d57abf]{margin:0 -6px}.vd-data-list-group[data-v-93d57abf],.vd-sub-header-informations[data-v-93d57abf]{max-width:none}.vd-data-list-group[data-v-93d57abf] .vd-data-list{max-width:200px}.vd-data-list-group[data-v-93d57abf] .vd-data-list:not(:last-child){margin-right:80px!important}.vd-data-list-group[data-v-93d57abf] .vd-data-list .vd-key{display:inline-block;font-size:.75rem!important}.vd-data-list-group[data-v-93d57abf] .vd-data-list .vd-data-list-item-label{color:#ffffffb3!important}.vd-data-list-group[data-v-93d57abf] .vd-data-list .vd-data-list-item-action-btn{color:#fff!important}.vd-subheader-loading[data-v-93d57abf]{background:transparent}.vd-subheader-loading[data-v-93d57abf] .v-skeleton-loader__button{margin:0;min-height:28px;height:auto;background:rgba(255,255,255,var(--v-border-opacity))}.title[data-v-7cf8bf85]{font-size:24px!important}.alt-title[data-v-7cf8bf85]{font-size:20px!important}.body-text[data-v-7cf8bf85]{font-size:16px!important}.link-label[data-v-7cf8bf85]{font-size:14px!important}h1[data-v-7cf8bf85]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-7cf8bf85]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-7cf8bf85]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-7cf8bf85]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-7cf8bf85]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-7cf8bf85]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-7cf8bf85]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-7cf8bf85]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-7cf8bf85]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-7cf8bf85]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-7cf8bf85]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-7cf8bf85]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-7cf8bf85],.elevation-2[data-v-7cf8bf85],.elevation-3[data-v-7cf8bf85],.elevation-4[data-v-7cf8bf85],.elevation-5[data-v-7cf8bf85],.elevation-6[data-v-7cf8bf85],.elevation-7[data-v-7cf8bf85],.elevation-8[data-v-7cf8bf85],.elevation-9[data-v-7cf8bf85],.elevation-10[data-v-7cf8bf85],.elevation-11[data-v-7cf8bf85],.elevation-12[data-v-7cf8bf85],.elevation-13[data-v-7cf8bf85],.elevation-14[data-v-7cf8bf85],.elevation-15[data-v-7cf8bf85],.elevation-16[data-v-7cf8bf85],.elevation-17[data-v-7cf8bf85],.elevation-18[data-v-7cf8bf85],.elevation-19[data-v-7cf8bf85],.elevation-20[data-v-7cf8bf85],.elevation-21[data-v-7cf8bf85],.elevation-22[data-v-7cf8bf85],.elevation-23[data-v-7cf8bf85],.elevation-24[data-v-7cf8bf85]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-7cf8bf85]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-7cf8bf85]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-7cf8bf85]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-7cf8bf85]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.vd-user-icon[data-v-7cf8bf85]{width:40px;height:40px;background:#eee;border-radius:50%}.vd-user-icon svg[data-v-7cf8bf85],.vd-user-icon .v-icon__svg[data-v-7cf8bf85]{width:24px;height:24px}.vd-cookie-table[data-v-e018bb81] table{table-layout:fixed}.title[data-v-76037a97]{font-size:24px!important}.alt-title[data-v-76037a97]{font-size:20px!important}.body-text[data-v-76037a97]{font-size:16px!important}.link-label[data-v-76037a97]{font-size:14px!important}h1[data-v-76037a97]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-76037a97]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-76037a97]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-76037a97]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-76037a97]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-76037a97]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-76037a97]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-76037a97]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-76037a97]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-76037a97]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-76037a97]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-76037a97]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-76037a97],.elevation-2[data-v-76037a97],.elevation-3[data-v-76037a97],.elevation-4[data-v-76037a97],.elevation-5[data-v-76037a97],.elevation-6[data-v-76037a97],.elevation-7[data-v-76037a97],.elevation-8[data-v-76037a97],.elevation-9[data-v-76037a97],.elevation-10[data-v-76037a97],.elevation-11[data-v-76037a97],.elevation-12[data-v-76037a97],.elevation-13[data-v-76037a97],.elevation-14[data-v-76037a97],.elevation-15[data-v-76037a97],.elevation-16[data-v-76037a97],.elevation-17[data-v-76037a97],.elevation-18[data-v-76037a97],.elevation-19[data-v-76037a97],.elevation-20[data-v-76037a97],.elevation-21[data-v-76037a97],.elevation-22[data-v-76037a97],.elevation-23[data-v-76037a97],.elevation-24[data-v-76037a97]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-76037a97]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-76037a97]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-76037a97]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-76037a97]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}details>summary[data-v-76037a97]{cursor:pointer;list-style:none;-webkit-user-select:none;user-select:none}details>summary[data-v-76037a97]::marker,details>summary[data-v-76037a97]::-webkit-details-marker{display:none}.vd-cookies-information__radio-group[data-v-76037a97]{margin-top:0}.vd-cookies-information__radio-group[data-v-76037a97] .v-input__details{padding:0}.vd-cookies-information__radio-group[data-v-76037a97] .v-messages{text-align:end}.vd-cookie-banner[data-v-d6db9002]{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-d6db9002]{display:flex;flex-direction:column;width:100%;background:transparent}.vd-cookie-banner-content[data-v-d6db9002]{overflow-y:auto;padding-right:8px;background:transparent}.vd-cookie-banner-content div[data-v-d6db9002]{background:transparent}.vd-cookie-banner-action-ctn .v-btn[data-v-d6db9002]{flex:1 1 auto}.v-btn--icon[data-v-d6db9002]{color:#0000008a;position:absolute;right:24px}.height-enter-active[data-v-d6db9002],.height-leave-active[data-v-d6db9002]{box-sizing:border-box;transition:height 2s ease;interpolate-size:allow-keywords;overflow:hidden;background-color:#fff}.height-enter-active[data-v-d6db9002]{transition:height .5s ease}.height-leave-active[data-v-d6db9002]{transition:height .1s ease}.height-enter-from[data-v-d6db9002],.height-leave-to[data-v-d6db9002]{height:0}.height-enter-to[data-v-d6db9002],.height-leave-from[data-v-d6db9002]{height:auto}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cnamts/synapse",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6-alpha",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "CNAM DS v3",
|
|
6
6
|
"type": "module",
|
|
@@ -44,21 +44,22 @@
|
|
|
44
44
|
"node": ">=18.0.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@chromatic-com/storybook": "^2.
|
|
47
|
+
"@chromatic-com/storybook": "^3.2.2",
|
|
48
48
|
"@jls-digital/storybook-addon-code": "^1.0.4",
|
|
49
49
|
"@mdi/js": "^7.4.47",
|
|
50
|
-
"@storybook/addon-docs": "^8.
|
|
51
|
-
"@storybook/addon-essentials": "^8.
|
|
52
|
-
"@storybook/addon-interactions": "^8.
|
|
53
|
-
"@storybook/addon-links": "^8.
|
|
54
|
-
"@storybook/addon-onboarding": "^8.
|
|
55
|
-
"@storybook/addon-
|
|
56
|
-
"@storybook/
|
|
57
|
-
"@storybook/
|
|
58
|
-
"@storybook/
|
|
59
|
-
"@storybook/
|
|
60
|
-
"@storybook/
|
|
61
|
-
"@storybook/vue3
|
|
50
|
+
"@storybook/addon-docs": "^8.4.7",
|
|
51
|
+
"@storybook/addon-essentials": "^8.4.7",
|
|
52
|
+
"@storybook/addon-interactions": "^8.4.7",
|
|
53
|
+
"@storybook/addon-links": "^8.4.7",
|
|
54
|
+
"@storybook/addon-onboarding": "^8.4.7",
|
|
55
|
+
"@storybook/addon-queryparams": "^7.0.1",
|
|
56
|
+
"@storybook/addon-viewport": "^8.4.7",
|
|
57
|
+
"@storybook/blocks": "^8.4.7",
|
|
58
|
+
"@storybook/manager-api": "^8.4.7",
|
|
59
|
+
"@storybook/test": "^8.4.7",
|
|
60
|
+
"@storybook/theming": "^8.4.7",
|
|
61
|
+
"@storybook/vue3": "^8.4.7",
|
|
62
|
+
"@storybook/vue3-vite": "^8.4.7",
|
|
62
63
|
"@stylistic/eslint-plugin": "^2.9.0",
|
|
63
64
|
"@stylistic/eslint-plugin-ts": "^2.9.0",
|
|
64
65
|
"@tsconfig/node20": "^20.1.4",
|
|
@@ -71,14 +72,13 @@
|
|
|
71
72
|
"auto-changelog": "^2.4.0",
|
|
72
73
|
"axios": "^1.7.7",
|
|
73
74
|
"eslint": "^9.13.0",
|
|
74
|
-
"eslint-plugin-storybook": "^0.
|
|
75
|
+
"eslint-plugin-storybook": "^0.11.1",
|
|
75
76
|
"eslint-plugin-vue": "^9.30.0",
|
|
76
77
|
"eslint-plugin-vuejs-accessibility": "^2.4.1",
|
|
77
78
|
"happy-dom": "^15.7.4",
|
|
78
79
|
"husky": "^9.1.6",
|
|
79
80
|
"resize-observer-polyfill": "^1.5.1",
|
|
80
|
-
"
|
|
81
|
-
"storybook": "^8.3.6",
|
|
81
|
+
"storybook": "^8.4.7",
|
|
82
82
|
"storybook-addon-vue-mdx": "^1.0.4",
|
|
83
83
|
"typescript": "5.4.2",
|
|
84
84
|
"typescript-eslint": "^8.11.0",
|
|
@@ -99,6 +99,7 @@
|
|
|
99
99
|
"deepmerge": "^4.3.1",
|
|
100
100
|
"iso-639-1": "^3.1.3",
|
|
101
101
|
"maska": "^3.0.3",
|
|
102
|
+
"sass-embedded": "^1.83.0",
|
|
102
103
|
"sass-loader": "^16.0.3",
|
|
103
104
|
"semantic-release": "^24.1.2"
|
|
104
105
|
},
|
package/src/assets/tokens.scss
CHANGED
|
@@ -341,9 +341,9 @@ h1 {
|
|
|
341
341
|
}
|
|
342
342
|
|
|
343
343
|
.h1-bold {
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
344
|
+
font-size: 32px !important;
|
|
345
|
+
font-weight: bold !important;
|
|
346
|
+
line-height: 130% !important;
|
|
347
347
|
}
|
|
348
348
|
|
|
349
349
|
h2 {
|
|
@@ -352,9 +352,9 @@ h2 {
|
|
|
352
352
|
}
|
|
353
353
|
|
|
354
354
|
.h2-bold {
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
355
|
+
font-size: 28px !important;
|
|
356
|
+
font-weight: bold !important;
|
|
357
|
+
line-height: 130% !important;
|
|
358
358
|
}
|
|
359
359
|
|
|
360
360
|
h3 {
|
|
@@ -363,9 +363,9 @@ h3 {
|
|
|
363
363
|
}
|
|
364
364
|
|
|
365
365
|
.h3-bold {
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
366
|
+
font-size: 24px !important;
|
|
367
|
+
font-weight: bold !important;
|
|
368
|
+
line-height: 130% !important;
|
|
369
369
|
}
|
|
370
370
|
|
|
371
371
|
h4 {
|
|
@@ -374,14 +374,14 @@ h4 {
|
|
|
374
374
|
}
|
|
375
375
|
|
|
376
376
|
.h4-bold {
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
377
|
+
font-size: 20px !important;
|
|
378
|
+
font-weight: bold !important;
|
|
379
|
+
line-height: 130% !important;
|
|
380
380
|
}
|
|
381
381
|
|
|
382
382
|
.display-1 {
|
|
383
|
-
|
|
384
|
-
|
|
383
|
+
font-size: 40px !important;
|
|
384
|
+
line-height: 130% !important;
|
|
385
385
|
}
|
|
386
386
|
|
|
387
387
|
.display-1-bold {
|
|
@@ -391,8 +391,8 @@ h4 {
|
|
|
391
391
|
}
|
|
392
392
|
|
|
393
393
|
.display-2 {
|
|
394
|
-
|
|
395
|
-
|
|
394
|
+
font-size: 30px !important;
|
|
395
|
+
line-height: 130% !important;
|
|
396
396
|
}
|
|
397
397
|
|
|
398
398
|
.display-2-bold {
|
|
@@ -429,7 +429,6 @@ $spacing-horizontal-huge: 80px;
|
|
|
429
429
|
|
|
430
430
|
|
|
431
431
|
// Surcharger toutes les élévations pour utiliser uniquement l'élévation 02
|
|
432
|
-
.elevation-0,
|
|
433
432
|
.elevation-1,
|
|
434
433
|
.elevation-2,
|
|
435
434
|
.elevation-3,
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Meta, Story } from '@storybook/addon-docs';
|
|
2
|
+
import * as AccessStories from './Accessibilite.stories.ts';
|
|
3
|
+
|
|
4
|
+
<Meta of={AccessStories} />
|
|
5
|
+
|
|
6
|
+
Accessibilité
|
|
7
|
+
=============
|
|
8
|
+
<Story of={AccessStories.Legende} />
|
|
9
|
+
<br />
|
|
10
|
+
|
|
11
|
+
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
12
|
+
|
|
13
|
+
<Story of={AccessStories.AccessibilitePanel} />
|
|
14
|
+
<br />
|