@cnamts/synapse 0.0.2-alpha → 0.0.4-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/README.md +1 -1
- package/dist/design-system-v3.d.ts +712 -27
- package/dist/design-system-v3.js +2745 -5384
- package/dist/design-system-v3.umd.cjs +10 -2
- package/dist/style.css +1 -1
- package/package.json +32 -29
- package/src/components/Alert/Alert.mdx +1 -1
- package/src/components/Alert/Alert.stories.ts +91 -1
- package/src/components/Alert/Alert.vue +8 -8
- package/src/components/BackBtn/BackBtn.mdx +1 -1
- package/src/components/BackBtn/BackBtn.stories.ts +84 -1
- package/src/components/BackToTopBtn/BackToTopBtn.mdx +3 -3
- package/src/components/BackToTopBtn/BackToTopBtn.stories.ts +172 -11
- package/src/components/CollapsibleList/CollapsibleList.mdx +2 -2
- package/src/components/CollapsibleList/CollapsibleList.stories.ts +37 -1
- package/src/components/CopyBtn/CopyBtn.mdx +1 -1
- package/src/components/CopyBtn/CopyBtn.stories.ts +120 -1
- package/src/components/CopyBtn/CopyBtn.vue +1 -1
- package/src/components/Customs/CustomInputSelect/CustomInputSelect.mdx +6 -8
- package/src/components/Customs/CustomInputSelect/CustomInputSelect.stories.ts +270 -4
- package/src/components/Customs/CustomInputSelect/CustomInputSelect.vue +80 -53
- package/src/components/Customs/CustomInputSelect/config.ts +10 -0
- package/src/components/Customs/CustomSelect/CustomSelect.mdx +3 -3
- package/src/components/Customs/CustomSelect/CustomSelect.stories.ts +158 -2
- package/src/components/Customs/CustomSelect/CustomSelect.vue +25 -6
- package/src/components/Customs/CustomTextField/CustomTextField.mdx +44 -0
- package/src/components/Customs/CustomTextField/CustomTextField.stories.ts +403 -0
- package/src/components/Customs/CustomTextField/CustomTextField.vue +110 -0
- package/src/components/Customs/CustomTextField/tests/CustomTextField.spec.ts +93 -0
- package/src/components/Customs/CustomTextField/tests/__snapshots__/CustomTextField.spec.ts.snap +59 -0
- package/src/components/Customs/CustomTextField/types.d.ts +3 -0
- package/src/components/DataList/DataList.mdx +77 -0
- package/src/components/DataList/DataList.stories.ts +960 -0
- package/src/components/DataList/DataList.vue +140 -0
- package/src/components/DataList/DataListLoading/DataListLoading.vue +56 -0
- package/src/components/DataList/DataListLoading/tests/DataListLoading.spec.ts +23 -0
- package/src/components/DataList/locales.ts +3 -0
- package/src/components/DataList/tests/DataList.spec.ts +194 -0
- package/src/components/DataList/types.d.ts +23 -0
- package/src/components/DataListGroup/DataListGroup.mdx +77 -0
- package/src/components/DataListGroup/DataListGroup.stories.ts +987 -0
- package/src/components/DataListGroup/DataListGroup.vue +59 -0
- package/src/components/DataListGroup/tests/DataListGroup.spec.ts +54 -0
- package/src/components/DataListGroup/tests/data/dataListGroupItems.ts +41 -0
- package/src/components/DataListGroup/types.d.ts +15 -0
- package/src/components/DataListItem/DataListItem.vue +135 -0
- package/src/components/DataListItem/config.ts +17 -0
- package/src/components/DataListItem/locales.ts +3 -0
- package/src/components/DataListItem/tests/DataListItem.spec.ts +156 -0
- package/src/components/DataListItem/types.d.ts +23 -0
- package/src/components/DownloadBtn/Accessibilite.mdx +14 -0
- package/src/components/DownloadBtn/Accessibilite.stories.ts +166 -0
- package/src/components/DownloadBtn/AccessibiliteItems.ts +129 -0
- package/src/components/DownloadBtn/DownloadBtn.mdx +5 -6
- package/src/components/DownloadBtn/DownloadBtn.stories.ts +207 -2
- package/src/components/DownloadBtn/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/FooterBar/FooterBar.mdx +2 -2
- package/src/components/FooterBar/FooterBar.stories.ts +1 -1
- package/src/components/FranceConnectBtn/FranceConnectBtn.mdx +1 -1
- package/src/components/FranceConnectBtn/FranceConnectBtn.stories.ts +58 -1
- package/src/components/FranceConnectBtn/FranceConnectBtn.vue +2 -2
- package/src/components/HeaderBar/HeaderBar.mdx +256 -0
- package/src/components/HeaderBar/HeaderBar.stories.ts +703 -0
- package/src/components/HeaderBar/HeaderBar.vue +276 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/HeaderBurgerMenu.mdx +433 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/HeaderBurgerMenu.stories.ts +1089 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/HeaderBurgerMenu.vue +234 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuItem/HeaderMenuItem.mdx +38 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuItem/HeaderMenuItem.stories.ts +89 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuItem/HeaderMenuItem.vue +51 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuItem/tests/HeaderMenuItem.spec.ts +16 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuItem/tests/__snapshots__/HeaderMenuItem.spec.ts.snap +3 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuSection/HeaderMenuSection.mdx +17 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuSection/HeaderMenuSection.stories.ts +121 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuSection/HeaderMenuSection.vue +51 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuSection/tests/HeaderMenuSection.spec.ts +31 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/HeaderSubMenu/HeaderSubMenu.mdx +43 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/HeaderSubMenu/HeaderSubMenu.stories.ts +261 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/HeaderSubMenu/HeaderSubMenu.vue +194 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/HeaderSubMenu/tests/HeaderSubMenu.spec.ts +63 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/conts.ts +1 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/locals.ts +4 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/tests/HeaderBurgerMenu.spec.ts +180 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/tests/__snapshots__/HeaderBurgerMenu.spec.ts.snap +13 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/tests/__snapshots__/HeaderComplexMenu.spec.ts.snap +13 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/tests/useHandleSubMenus.spec.ts +158 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/useHandleSubMenus.ts +49 -0
- package/src/components/HeaderBar/HeaderLogo/HeaderLogo.vue +143 -0
- package/src/components/HeaderBar/HeaderLogo/locales.ts +3 -0
- package/src/components/HeaderBar/HeaderLogo/logos/Logo-mobile.vue +117 -0
- package/src/components/HeaderBar/HeaderLogo/logos/Logo.vue +279 -0
- package/src/components/HeaderBar/HeaderLogo/tests/HeaderLogo.spec.ts +119 -0
- package/src/components/HeaderBar/HeaderMenuBtn/HeaderMenuBtn.vue +84 -0
- package/src/components/HeaderBar/HeaderMenuBtn/locals.ts +4 -0
- package/src/components/HeaderBar/HeaderMenuBtn/tests/HeaderMenuBtn.spec.ts +70 -0
- package/src/components/HeaderBar/Usages.mdx +85 -0
- package/src/components/HeaderBar/consts.scss +6 -0
- package/src/components/HeaderBar/consts.ts +2 -0
- package/src/components/HeaderBar/locales.ts +3 -0
- package/src/components/HeaderBar/tests/HeaderBar.spec.ts +216 -0
- package/src/components/HeaderBar/tests/__snapshots__/HeaderBar.spec.ts.snap +45 -0
- package/src/components/HeaderBar/tests/useHeaderResponsiveMode.spec.ts +26 -0
- package/src/components/HeaderBar/tests/useScrollDirection.spec.ts +34 -0
- package/src/components/HeaderBar/useHeaderResponsiveMode.ts +25 -0
- package/src/components/HeaderBar/useScrollDirection.ts +26 -0
- package/src/components/HeaderLoading/HeaderLoading.mdx +28 -0
- package/src/components/HeaderLoading/HeaderLoading.stories.ts +62 -0
- package/src/components/HeaderLoading/HeaderLoading.vue +45 -0
- package/src/components/HeaderLoading/tests/HeaderLoading.spec.ts +22 -0
- package/src/components/HeaderNavigationBar/HeaderNavigationBar.mdx +128 -0
- package/src/components/HeaderNavigationBar/HeaderNavigationBar.stories.ts +784 -0
- package/src/components/HeaderNavigationBar/HeaderNavigationBar.vue +194 -0
- package/src/components/HeaderNavigationBar/HorizontalNavbar/HorizontalNavbar.vue +74 -0
- package/src/components/HeaderNavigationBar/HorizontalNavbar/config.ts +18 -0
- package/src/components/HeaderNavigationBar/tests/HeaderNavigationBar.spec.ts +127 -0
- package/src/components/HeaderNavigationBar/types.ts +7 -0
- package/src/components/HeaderToolbar/HeaderToolbar.mdx +31 -0
- package/src/components/HeaderToolbar/HeaderToolbar.stories.ts +343 -0
- package/src/components/HeaderToolbar/HeaderToolbar.vue +487 -0
- package/src/components/HeaderToolbar/tests/HeaderToolbar.spec.ts +196 -0
- package/src/components/HeaderToolbar/types.d.ts +20 -0
- package/src/components/LangBtn/LangBtn.mdx +1 -1
- package/src/components/LangBtn/LangBtn.stories.ts +125 -8
- package/src/components/Logo/Logo.mdx +2 -2
- package/src/components/Logo/Logo.stories.ts +147 -1
- package/src/components/LogoBrandSection/LogoBrandSection.mdx +14 -0
- package/src/components/LogoBrandSection/LogoBrandSection.stories.ts +158 -0
- package/src/components/LogoBrandSection/LogoBrandSection.vue +312 -0
- package/src/components/LogoBrandSection/assets/ameli-pro.svg +1 -0
- package/src/components/LogoBrandSection/assets/ameli.svg +1 -0
- package/src/components/LogoBrandSection/assets/cnam.svg +1 -0
- package/src/components/LogoBrandSection/assets/compte-ameli.svg +1 -0
- package/src/components/LogoBrandSection/dividerDimensionsMapping.ts +14 -0
- package/src/components/LogoBrandSection/locales.ts +14 -0
- package/src/components/LogoBrandSection/secondaryLogoMapping.ts +24 -0
- package/src/components/LogoBrandSection/tests/LogoBrandSection.spec.ts +365 -0
- package/src/components/LogoBrandSection/tests/__snapshots__/LogoBrandSection.spec.ts.snap +14 -0
- package/src/components/LogoBrandSection/types.ts +8 -0
- package/src/components/NotificationBar/NotificationBar.mdx +6 -6
- package/src/components/NotificationBar/NotificationBar.stories.ts +1 -1
- package/src/components/NotificationBar/NotificationBar.vue +7 -9
- package/src/components/NotificationBar/tests/NotificationBar.spec.ts +1 -1
- package/src/components/PageContainer/PageContainer.mdx +1 -1
- package/src/components/PageContainer/PageContainer.stories.ts +86 -1
- package/src/components/PageContainer/PageContainer.vue +0 -1
- package/src/components/PhoneField/PhoneField.mdx +49 -0
- package/src/components/PhoneField/PhoneField.stories.ts +869 -0
- package/src/components/PhoneField/PhoneField.vue +230 -0
- package/src/components/PhoneField/indicatifs.ts +104 -0
- package/src/components/PhoneField/locales.ts +4 -0
- package/src/components/PhoneField/tests/PhoneField.spec.ts +179 -0
- package/src/components/SkipLink/SkipLink.stories.ts +50 -1
- package/src/components/SocialMediaLinks/SocialMediaLinks.mdx +28 -1
- package/src/components/SocialMediaLinks/SocialMediaLinks.stories.ts +37 -1
- package/src/components/SubHeader/SubHeader.mdx +31 -0
- package/src/components/SubHeader/SubHeader.stories.ts +1032 -0
- package/src/components/SubHeader/SubHeader.vue +185 -0
- package/src/components/SubHeader/config.ts +12 -0
- package/src/components/SubHeader/locales.ts +3 -0
- package/src/components/SubHeader/tests/SubHeader.spec.ts +144 -0
- package/src/components/index.ts +24 -7
- package/src/composables/widthable/index.ts +29 -0
- package/src/composables/widthable/tests/widthable.spec.ts +52 -0
- package/src/designTokens/tokens/cnam/cnamLightTheme.ts +2 -2
- package/src/main.ts +1 -0
- package/src/modules.d.ts +4 -0
- package/src/services/index.ts +1 -0
- package/src/stories/Demarrer/Accueil.mdx +10 -0
- package/src/stories/Demarrer/Accueil.stories.ts +76 -0
- package/src/stories/Demarrer/PolitiqueDeConfidentialite.mdx +9 -0
- package/src/stories/Demarrer/PolitiqueDeConfidentialite.stories.ts +20 -0
- package/src/stories/Fondamentaux/Accessibilite/Accessibilite.mdx +1 -2
- package/src/stories/Fondamentaux/Accessibilite/Accessibilite.stories.ts +1 -1
- package/src/stories/Fondamentaux/EcoConception/Econception.stories.ts +1 -1
- package/src/stories/GuideDuDev/moduleDeNotification.mdx +52 -48
- package/src/stories/GuideDuDev/vuetifyOptions.mdx +31 -28
- package/src/stories/Guidelines/CustomisationEtThemes.mdx +1 -1
- package/src/utils/functions/throttleDisplayFn/tests/throttleDisplayFn.spec.ts +47 -0
- package/src/utils/functions/throttleDisplayFn/throttleDisplayFn.ts +26 -0
- package/src/utils/rules/exactLength/index.ts +33 -0
- package/src/utils/rules/exactLength/locales.ts +6 -0
- package/src/utils/rules/required/index.ts +25 -0
- package/src/utils/rules/required/locales.ts +5 -0
- package/src/utils/rules/required/ruleMessageHelper.ts +14 -0
- package/src/utils/rules/required/tests/index.spec.ts +47 -0
- package/src/utils/rules/required/tests/rulesMessageHelper.spec.ts +22 -0
- package/src/utils/rules/types.d.ts +15 -0
- package/src/components/Beta/beta.mdx +0 -5
- package/src/components/Deprecated/deprecated.mdx +0 -5
- package/src/stories/Home/Accueil.mdx +0 -7
- package/src/stories/Home/PolitiqueDeConfidentialite.mdx +0 -4
- package/src/stories/Home/synapse.webp +0 -0
- /package/src/components/Logo/{types.d.ts → types.ts} +0 -0
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.v-btn{align-items:center;border-radius:4px;display:inline-grid;grid-template-areas:"prepend content append";grid-template-columns:max-content auto max-content;font-weight:500;justify-content:center;letter-spacing:.0892857143em;line-height:normal;max-width:100%;outline:none;position:relative;text-decoration:none;text-indent:.0892857143em;text-transform:uppercase;transition-property:box-shadow,transform,opacity,background;transition-duration:.28s;transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-user-select:none;user-select:none;vertical-align:middle;flex-shrink:0}.v-btn--size-x-small{--v-btn-size: .625rem;--v-btn-height: 20px;font-size:var(--v-btn-size);min-width:36px;padding:0 8px}.v-btn--size-small{--v-btn-size: .75rem;--v-btn-height: 28px;font-size:var(--v-btn-size);min-width:50px;padding:0 12px}.v-btn--size-default{--v-btn-size: .875rem;--v-btn-height: 36px;font-size:var(--v-btn-size);min-width:64px;padding:0 16px}.v-btn--size-large{--v-btn-size: 1rem;--v-btn-height: 44px;font-size:var(--v-btn-size);min-width:78px;padding:0 20px}.v-btn--size-x-large{--v-btn-size: 1.125rem;--v-btn-height: 52px;font-size:var(--v-btn-size);min-width:92px;padding:0 24px}.v-btn.v-btn--density-default{height:calc(var(--v-btn-height) + 0px)}.v-btn.v-btn--density-comfortable{height:calc(var(--v-btn-height) + -8px)}.v-btn.v-btn--density-compact{height:calc(var(--v-btn-height) + -12px)}.v-btn{border-color:rgba(var(--v-border-color),var(--v-border-opacity));border-style:solid;border-width:0}.v-btn--border{border-width:thin;box-shadow:none}.v-btn--absolute{position:absolute}.v-btn--fixed{position:fixed}.v-btn:hover>.v-btn__overlay{opacity:calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier))}.v-btn:focus-visible>.v-btn__overlay{opacity:calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier))}@supports not selector(:focus-visible){.v-btn:focus>.v-btn__overlay{opacity:calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier))}}.v-btn--active>.v-btn__overlay,.v-btn[aria-haspopup=menu][aria-expanded=true]>.v-btn__overlay{opacity:calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier))}.v-btn--active:hover>.v-btn__overlay,.v-btn[aria-haspopup=menu][aria-expanded=true]:hover>.v-btn__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier))}.v-btn--active:focus-visible>.v-btn__overlay,.v-btn[aria-haspopup=menu][aria-expanded=true]:focus-visible>.v-btn__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}@supports not selector(:focus-visible){.v-btn--active:focus>.v-btn__overlay,.v-btn[aria-haspopup=menu][aria-expanded=true]:focus>.v-btn__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}}.v-btn--variant-plain,.v-btn--variant-outlined,.v-btn--variant-text,.v-btn--variant-tonal{background:transparent;color:inherit}.v-btn--variant-plain{opacity:.62}.v-btn--variant-plain:focus,.v-btn--variant-plain:hover{opacity:1}.v-btn--variant-plain .v-btn__overlay{display:none}.v-btn--variant-elevated,.v-btn--variant-flat{background:rgb(var(--v-theme-surface));color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-btn--variant-elevated{box-shadow:0 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 2px 2px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 5px 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-btn--variant-flat{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-btn--variant-outlined{border:thin solid currentColor}.v-btn--variant-text .v-btn__overlay{background:currentColor}.v-btn--variant-tonal .v-btn__underlay{background:currentColor;opacity:var(--v-activated-opacity);border-radius:inherit;top:0;right:0;bottom:0;left:0;pointer-events:none}.v-btn .v-btn__underlay{position:absolute}@supports selector(:focus-visible){.v-btn:after{pointer-events:none;border:2px solid currentColor;border-radius:inherit;opacity:0;transition:opacity .2s ease-in-out}.v-btn:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%}.v-btn:focus-visible:after{opacity:calc(.25 * var(--v-theme-overlay-multiplier))}}.v-btn--icon{border-radius:50%;min-width:0;padding:0}.v-btn--icon.v-btn--size-default{--v-btn-size: 1rem}.v-btn--icon.v-btn--density-default{width:calc(var(--v-btn-height) + 12px);height:calc(var(--v-btn-height) + 12px)}.v-btn--icon.v-btn--density-comfortable{width:calc(var(--v-btn-height) + 0px);height:calc(var(--v-btn-height) + 0px)}.v-btn--icon.v-btn--density-compact{width:calc(var(--v-btn-height) + -8px);height:calc(var(--v-btn-height) + -8px)}.v-btn--elevated:hover,.v-btn--elevated:focus{box-shadow:0 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 4px 5px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 10px 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-btn--elevated:active{box-shadow:0 5px 5px -3px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 8px 10px 1px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 3px 14px 2px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-btn--flat{box-shadow:none}.v-btn--block{display:flex;flex:1 0 auto;min-width:100%}.v-btn--disabled{pointer-events:none;opacity:.26}.v-btn--disabled:hover{opacity:.26}.v-btn--disabled.v-btn--variant-elevated,.v-btn--disabled.v-btn--variant-flat{box-shadow:none;opacity:1;color:rgba(var(--v-theme-on-surface),.26);background:rgb(var(--v-theme-surface))}.v-btn--disabled.v-btn--variant-elevated .v-btn__overlay,.v-btn--disabled.v-btn--variant-flat .v-btn__overlay{opacity:.4615384615}.v-btn--loading{pointer-events:none}.v-btn--loading .v-btn__content,.v-btn--loading .v-btn__prepend,.v-btn--loading .v-btn__append{opacity:0}.v-btn--stacked{grid-template-areas:"prepend" "content" "append";grid-template-columns:auto;grid-template-rows:max-content max-content max-content;justify-items:center;align-content:center}.v-btn--stacked .v-btn__content{flex-direction:column;line-height:1.25}.v-btn--stacked .v-btn__prepend,.v-btn--stacked .v-btn__append,.v-btn--stacked .v-btn__content>.v-icon--start,.v-btn--stacked .v-btn__content>.v-icon--end{margin-inline:0}.v-btn--stacked .v-btn__prepend,.v-btn--stacked .v-btn__content>.v-icon--start{margin-bottom:4px}.v-btn--stacked .v-btn__append,.v-btn--stacked .v-btn__content>.v-icon--end{margin-top:4px}.v-btn--stacked.v-btn--size-x-small{--v-btn-size: .625rem;--v-btn-height: 56px;font-size:var(--v-btn-size);min-width:56px;padding:0 12px}.v-btn--stacked.v-btn--size-small{--v-btn-size: .75rem;--v-btn-height: 64px;font-size:var(--v-btn-size);min-width:64px;padding:0 14px}.v-btn--stacked.v-btn--size-default{--v-btn-size: .875rem;--v-btn-height: 72px;font-size:var(--v-btn-size);min-width:72px;padding:0 16px}.v-btn--stacked.v-btn--size-large{--v-btn-size: 1rem;--v-btn-height: 80px;font-size:var(--v-btn-size);min-width:80px;padding:0 18px}.v-btn--stacked.v-btn--size-x-large{--v-btn-size: 1.125rem;--v-btn-height: 88px;font-size:var(--v-btn-size);min-width:88px;padding:0 20px}.v-btn--stacked.v-btn--density-default{height:calc(var(--v-btn-height) + 0px)}.v-btn--stacked.v-btn--density-comfortable{height:calc(var(--v-btn-height) + -16px)}.v-btn--stacked.v-btn--density-compact{height:calc(var(--v-btn-height) + -24px)}.v-btn--slim{padding:0 8px}.v-btn--readonly{pointer-events:none}.v-btn--rounded{border-radius:24px}.v-btn--rounded.v-btn--icon{border-radius:4px}.v-btn .v-icon{--v-icon-size-multiplier: .8571428571}.v-btn--icon .v-icon{--v-icon-size-multiplier: 1}.v-btn--stacked .v-icon{--v-icon-size-multiplier: 1.1428571429}.v-btn--stacked.v-btn--block{min-width:100%}.v-btn__loader{align-items:center;display:flex;height:100%;justify-content:center;left:0;position:absolute;top:0;width:100%}.v-btn__loader>.v-progress-circular{width:1.5em;height:1.5em}.v-btn__content,.v-btn__prepend,.v-btn__append{align-items:center;display:flex;transition:transform,opacity .2s cubic-bezier(.4,0,.2,1)}.v-btn__prepend{grid-area:prepend;margin-inline:calc(var(--v-btn-height) / -9) calc(var(--v-btn-height) / 4.5)}.v-btn--slim .v-btn__prepend{margin-inline-start:0}.v-btn__append{grid-area:append;margin-inline:calc(var(--v-btn-height) / 4.5) calc(var(--v-btn-height) / -9)}.v-btn--slim .v-btn__append{margin-inline-end:0}.v-btn__content{grid-area:content;justify-content:center;white-space:nowrap}.v-btn__content>.v-icon--start{margin-inline:calc(var(--v-btn-height) / -9) calc(var(--v-btn-height) / 4.5)}.v-btn__content>.v-icon--end{margin-inline:calc(var(--v-btn-height) / 4.5) calc(var(--v-btn-height) / -9)}.v-btn--stacked .v-btn__content{white-space:normal}.v-btn__overlay{background-color:currentColor;border-radius:inherit;opacity:0;transition:opacity .2s ease-in-out}.v-btn__overlay,.v-btn__underlay{pointer-events:none}.v-btn__overlay,.v-btn__underlay{position:absolute;top:0;left:0;width:100%;height:100%}.v-pagination .v-btn{border-radius:4px}.v-pagination .v-btn--rounded{border-radius:50%}.v-btn__overlay{transition:none}.v-pagination__item--is-active .v-btn__overlay{opacity:var(--v-border-opacity)}.v-btn-toggle>.v-btn.v-btn--active:not(.v-btn--disabled)>.v-btn__overlay{opacity:calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier))}.v-btn-toggle>.v-btn.v-btn--active:not(.v-btn--disabled):hover>.v-btn__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier))}.v-btn-toggle>.v-btn.v-btn--active:not(.v-btn--disabled):focus-visible>.v-btn__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}@supports not selector(:focus-visible){.v-btn-toggle>.v-btn.v-btn--active:not(.v-btn--disabled):focus>.v-btn__overlay{opacity:calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier))}}.v-btn-group{display:inline-flex;flex-wrap:nowrap;max-width:100%;min-width:0;overflow:hidden;vertical-align:middle}.v-btn-group{border-color:rgba(var(--v-border-color),var(--v-border-opacity));border-style:solid;border-width:0}.v-btn-group--border{border-width:thin;box-shadow:none}.v-btn-group{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-btn-group{border-radius:4px}.v-btn-group{background:transparent;color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-btn-group--density-default.v-btn-group{height:48px}.v-btn-group--density-comfortable.v-btn-group{height:40px}.v-btn-group--density-compact.v-btn-group{height:36px}.v-btn-group .v-btn{border-radius:0;border-color:inherit}.v-btn-group .v-btn:not(:last-child){border-inline-end:none}.v-btn-group .v-btn:not(:first-child){border-inline-start:none}.v-btn-group .v-btn:first-child{border-start-start-radius:inherit;border-end-start-radius:inherit}.v-btn-group .v-btn:last-child{border-start-end-radius:inherit;border-end-end-radius:inherit}.v-btn-group--divided .v-btn:not(:last-child){border-inline-end-width:thin;border-inline-end-style:solid;border-inline-end-color:rgba(var(--v-border-color),var(--v-border-opacity))}.v-btn-group--tile{border-radius:0}.v-icon{--v-icon-size-multiplier: 1;align-items:center;display:inline-flex;font-feature-settings:"liga";height:1em;justify-content:center;letter-spacing:normal;line-height:1;position:relative;text-indent:0;text-align:center;-webkit-user-select:none;user-select:none;vertical-align:middle;width:1em;min-width:1em}.v-icon--clickable{cursor:pointer}.v-icon--disabled{pointer-events:none;opacity:.38}.v-icon--size-x-small{font-size:calc(var(--v-icon-size-multiplier) * 1em)}.v-icon--size-small{font-size:calc(var(--v-icon-size-multiplier) * 1.25em)}.v-icon--size-default{font-size:calc(var(--v-icon-size-multiplier) * 1.5em)}.v-icon--size-large{font-size:calc(var(--v-icon-size-multiplier) * 1.75em)}.v-icon--size-x-large{font-size:calc(var(--v-icon-size-multiplier) * 2em)}.v-icon__svg{fill:currentColor;width:100%;height:100%}.v-icon--start{margin-inline-end:8px}.v-icon--end{margin-inline-start:8px}.v-progress-circular{align-items:center;display:inline-flex;justify-content:center;position:relative;vertical-align:middle}.v-progress-circular>svg{width:100%;height:100%;margin:auto;position:absolute;top:0;bottom:0;left:0;right:0;z-index:0}.v-progress-circular__content{align-items:center;display:flex;justify-content:center}.v-progress-circular__underlay{color:rgba(var(--v-border-color),var(--v-border-opacity));stroke:currentColor;z-index:1}.v-progress-circular__overlay{stroke:currentColor;transition:all .2s ease-in-out,stroke-width 0s;z-index:2}.v-progress-circular--size-x-small{height:16px;width:16px}.v-progress-circular--size-small{height:24px;width:24px}.v-progress-circular--size-default{height:32px;width:32px}.v-progress-circular--size-large{height:48px;width:48px}.v-progress-circular--size-x-large{height:64px;width:64px}.v-progress-circular--indeterminate>svg{animation:progress-circular-rotate 1.4s linear infinite;transform-origin:center center;transition:all .2s ease-in-out}.v-progress-circular--indeterminate .v-progress-circular__overlay{animation:progress-circular-dash 1.4s ease-in-out infinite,progress-circular-rotate 1.4s linear infinite;stroke-dasharray:25,200;stroke-dashoffset:0;stroke-linecap:round;transform-origin:center center;transform:rotate(-90deg)}.v-progress-circular--disable-shrink>svg{animation-duration:.7s}.v-progress-circular--disable-shrink .v-progress-circular__overlay{animation:none}.v-progress-circular--indeterminate:not(.v-progress-circular--visible)>svg,.v-progress-circular--indeterminate:not(.v-progress-circular--visible) .v-progress-circular__overlay{animation-play-state:paused!important}@keyframes progress-circular-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0px}50%{stroke-dasharray:100,200;stroke-dashoffset:-15px}to{stroke-dasharray:100,200;stroke-dashoffset:-124px}}@keyframes progress-circular-rotate{to{transform:rotate(270deg)}}.v-progress-linear{background:transparent;overflow:hidden;position:relative;transition:.2s cubic-bezier(.4,0,.2,1);width:100%}@media (forced-colors: active){.v-progress-linear{border:thin solid buttontext}}.v-progress-linear__background,.v-progress-linear__buffer{background:currentColor;bottom:0;left:0;opacity:var(--v-border-opacity);position:absolute;top:0;width:100%;transition-property:width,left,right;transition:inherit}@media (forced-colors: active){.v-progress-linear__buffer{background-color:highlight;opacity:.3}}.v-progress-linear__content{align-items:center;display:flex;height:100%;justify-content:center;left:0;pointer-events:none;position:absolute;top:0;width:100%}.v-progress-linear__determinate,.v-progress-linear__indeterminate{background:currentColor}@media (forced-colors: active){.v-progress-linear__determinate,.v-progress-linear__indeterminate{background-color:highlight}}.v-progress-linear__determinate{height:inherit;left:0;position:absolute;transition:inherit;transition-property:width,left,right}.v-progress-linear__indeterminate .long,.v-progress-linear__indeterminate .short{animation-play-state:paused;animation-duration:2.2s;animation-iteration-count:infinite;bottom:0;height:inherit;left:0;position:absolute;right:auto;top:0;width:auto}.v-progress-linear__indeterminate .long{animation-name:indeterminate-ltr}.v-progress-linear__indeterminate .short{animation-name:indeterminate-short-ltr}.v-progress-linear__stream{animation:stream .25s infinite linear;animation-play-state:paused;bottom:0;left:auto;opacity:.3;pointer-events:none;position:absolute;transition:inherit;transition-property:width,left,right}.v-progress-linear--reverse .v-progress-linear__background,.v-progress-linear--reverse .v-progress-linear__determinate,.v-progress-linear--reverse .v-progress-linear__content,.v-progress-linear--reverse .v-progress-linear__indeterminate .long,.v-progress-linear--reverse .v-progress-linear__indeterminate .short{left:auto;right:0}.v-progress-linear--reverse .v-progress-linear__indeterminate .long{animation-name:indeterminate-rtl}.v-progress-linear--reverse .v-progress-linear__indeterminate .short{animation-name:indeterminate-short-rtl}.v-progress-linear--reverse .v-progress-linear__stream{right:auto}.v-progress-linear--absolute,.v-progress-linear--fixed{left:0;z-index:1}.v-progress-linear--absolute{position:absolute}.v-progress-linear--fixed{position:fixed}.v-progress-linear--rounded{border-radius:9999px}.v-progress-linear--rounded.v-progress-linear--rounded-bar .v-progress-linear__determinate,.v-progress-linear--rounded.v-progress-linear--rounded-bar .v-progress-linear__indeterminate{border-radius:inherit}.v-progress-linear--striped .v-progress-linear__determinate{animation:progress-linear-stripes 1s infinite linear;background-image:linear-gradient(135deg,hsla(0,0%,100%,.25) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.25) 0,hsla(0,0%,100%,.25) 75%,transparent 0,transparent);background-repeat:repeat;background-size:var(--v-progress-linear-height)}.v-progress-linear--active .v-progress-linear__indeterminate .long,.v-progress-linear--active .v-progress-linear__indeterminate .short,.v-progress-linear--active .v-progress-linear__stream{animation-play-state:running}.v-progress-linear--rounded-bar .v-progress-linear__determinate,.v-progress-linear--rounded-bar .v-progress-linear__indeterminate,.v-progress-linear--rounded-bar .v-progress-linear__stream+.v-progress-linear__background{border-radius:9999px}.v-progress-linear--rounded-bar .v-progress-linear__determinate{border-start-start-radius:0;border-end-start-radius:0}@keyframes indeterminate-ltr{0%{left:-90%;right:100%}60%{left:-90%;right:100%}to{left:100%;right:-35%}}@keyframes indeterminate-rtl{0%{left:100%;right:-90%}60%{left:100%;right:-90%}to{left:-35%;right:100%}}@keyframes indeterminate-short-ltr{0%{left:-200%;right:100%}60%{left:107%;right:-8%}to{left:107%;right:-8%}}@keyframes indeterminate-short-rtl{0%{left:100%;right:-200%}60%{left:-8%;right:107%}to{left:-8%;right:107%}}@keyframes stream{to{transform:translate(var(--v-progress-linear-stream-to))}}@keyframes progress-linear-stripes{0%{background-position-x:var(--v-progress-linear-height)}}.v-ripple__container{color:inherit;border-radius:inherit;position:absolute;width:100%;height:100%;left:0;top:0;overflow:hidden;z-index:0;pointer-events:none;contain:strict}.v-ripple__animation{color:inherit;position:absolute;top:0;left:0;border-radius:50%;background:currentColor;opacity:0;pointer-events:none;overflow:hidden;will-change:transform,opacity}.v-ripple__animation--enter{transition:none;opacity:0}.v-ripple__animation--in{transition:transform .25s cubic-bezier(0,0,.2,1),opacity .1s cubic-bezier(0,0,.2,1);opacity:calc(.25 * var(--v-theme-overlay-multiplier))}.v-ripple__animation--out{transition:opacity .3s cubic-bezier(0,0,.2,1);opacity:0}.v-alert{display:grid;flex:1 1;grid-template-areas:"prepend content append close" ". content . .";grid-template-columns:max-content auto max-content max-content;position:relative;padding:16px;overflow:hidden;--v-border-color: currentColor}.v-alert--absolute{position:absolute}.v-alert--fixed{position:fixed}.v-alert--sticky{position:sticky}.v-alert{border-radius:4px}.v-alert--variant-plain,.v-alert--variant-outlined,.v-alert--variant-text,.v-alert--variant-tonal{background:transparent;color:inherit}.v-alert--variant-plain{opacity:.62}.v-alert--variant-plain:focus,.v-alert--variant-plain:hover{opacity:1}.v-alert--variant-plain .v-alert__overlay{display:none}.v-alert--variant-elevated,.v-alert--variant-flat{background:rgb(var(--v-theme-surface-light));color:rgba(var(--v-theme-on-surface-light),var(--v-high-emphasis-opacity))}.v-alert--variant-elevated{box-shadow:0 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 1px 1px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 3px 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-alert--variant-flat{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-alert--variant-outlined{border:thin solid currentColor}.v-alert--variant-text .v-alert__overlay{background:currentColor}.v-alert--variant-tonal .v-alert__underlay{background:currentColor;opacity:var(--v-activated-opacity);border-radius:inherit;top:0;right:0;bottom:0;left:0;pointer-events:none}.v-alert .v-alert__underlay{position:absolute}.v-alert--prominent{grid-template-areas:"prepend content append close" "prepend content . ."}.v-alert.v-alert--border{--v-border-opacity: .38}.v-alert.v-alert--border.v-alert--border-start{padding-inline-start:24px}.v-alert.v-alert--border.v-alert--border-end{padding-inline-end:24px}.v-alert--variant-plain{transition:.2s opacity cubic-bezier(.4,0,.2,1)}.v-alert--density-default{padding-bottom:16px;padding-top:16px}.v-alert--density-default.v-alert--border-top{padding-top:24px}.v-alert--density-default.v-alert--border-bottom{padding-bottom:24px}.v-alert--density-comfortable{padding-bottom:12px;padding-top:12px}.v-alert--density-comfortable.v-alert--border-top{padding-top:20px}.v-alert--density-comfortable.v-alert--border-bottom{padding-bottom:20px}.v-alert--density-compact{padding-bottom:8px;padding-top:8px}.v-alert--density-compact.v-alert--border-top{padding-top:16px}.v-alert--density-compact.v-alert--border-bottom{padding-bottom:16px}.v-alert__border{border-radius:inherit;bottom:0;left:0;opacity:var(--v-border-opacity);position:absolute;pointer-events:none;right:0;top:0;width:100%}.v-alert__border{border-color:currentColor;border-style:solid;border-width:0}.v-alert__border--border{border-width:8px;box-shadow:none}.v-alert--border-start .v-alert__border{border-inline-start-width:8px}.v-alert--border-end .v-alert__border{border-inline-end-width:8px}.v-alert--border-top .v-alert__border{border-top-width:8px}.v-alert--border-bottom .v-alert__border{border-bottom-width:8px}.v-alert__close{flex:0 1 auto;grid-area:close}.v-alert__content{align-self:center;grid-area:content;overflow:hidden}.v-alert__append,.v-alert__close{align-self:flex-start;margin-inline-start:16px}.v-alert__append{align-self:flex-start;grid-area:append}.v-alert__append+.v-alert__close{margin-inline-start:16px}.v-alert__prepend{align-self:flex-start;display:flex;align-items:center;grid-area:prepend;margin-inline-end:16px}.v-alert--prominent .v-alert__prepend{align-self:center}.v-alert__underlay{grid-area:none;position:absolute}.v-alert--border-start .v-alert__underlay{border-top-left-radius:0;border-bottom-left-radius:0}.v-alert--border-end .v-alert__underlay{border-top-right-radius:0;border-bottom-right-radius:0}.v-alert--border-top .v-alert__underlay{border-top-left-radius:0;border-top-right-radius:0}.v-alert--border-bottom .v-alert__underlay{border-bottom-left-radius:0;border-bottom-right-radius:0}.v-alert-title{align-items:center;align-self:center;display:flex;font-size:1.25rem;font-weight:500;-webkit-hyphens:auto;hyphens:auto;letter-spacing:.0125em;line-height:1.75rem;overflow-wrap:normal;text-transform:none;word-break:normal;word-wrap:break-word}.v-menu>.v-overlay__content{display:flex;flex-direction:column}.v-menu>.v-overlay__content{border-radius:4px}.v-menu>.v-overlay__content>.v-card,.v-menu>.v-overlay__content>.v-sheet,.v-menu>.v-overlay__content>.v-list{background:rgb(var(--v-theme-surface));border-radius:inherit;overflow:auto;height:100%}.v-menu>.v-overlay__content>.v-card,.v-menu>.v-overlay__content>.v-sheet,.v-menu>.v-overlay__content>.v-list{box-shadow:0 5px 5px -3px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 8px 10px 1px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 3px 14px 2px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-overlay-container{contain:layout;left:0;pointer-events:none;position:absolute;top:0;display:contents}.v-overlay-scroll-blocked{padding-inline-end:var(--v-scrollbar-offset)}.v-overlay-scroll-blocked:not(html){overflow-y:hidden!important}html.v-overlay-scroll-blocked{position:fixed;top:var(--v-body-scroll-y);left:var(--v-body-scroll-x);width:100%;height:100%}.v-overlay{border-radius:inherit;display:flex;left:0;pointer-events:none;position:fixed;top:0;bottom:0;right:0}.v-overlay__content{outline:none;position:absolute;pointer-events:auto;contain:layout}.v-overlay__scrim{pointer-events:auto;background:rgb(var(--v-theme-on-surface));border-radius:inherit;bottom:0;left:0;opacity:var(--v-overlay-opacity, .32);position:fixed;right:0;top:0}.v-overlay--absolute,.v-overlay--contained .v-overlay__scrim{position:absolute}.v-overlay--scroll-blocked{padding-inline-end:var(--v-scrollbar-offset)}.v-sheet{display:block}.v-sheet{border-color:rgba(var(--v-border-color),var(--v-border-opacity));border-style:solid;border-width:0}.v-sheet--border{border-width:thin;box-shadow:none}.v-sheet{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-sheet--absolute{position:absolute}.v-sheet--fixed{position:fixed}.v-sheet--relative{position:relative}.v-sheet--sticky{position:sticky}.v-sheet{border-radius:0}.v-sheet{background:rgb(var(--v-theme-surface));color:rgba(var(--v-theme-on-surface),var(--v-high-emphasis-opacity))}.v-sheet--rounded{border-radius:4px}.v-snackbar{justify-content:center;z-index:10000;margin:8px;margin-inline-end:calc(8px + var(--v-scrollbar-offset));padding:var(--v-layout-top) var(--v-layout-right) var(--v-layout-bottom) var(--v-layout-left)}.v-snackbar:not(.v-snackbar--center):not(.v-snackbar--top){align-items:flex-end}.v-snackbar__wrapper{align-items:center;display:flex;max-width:672px;min-height:48px;min-width:344px;overflow:hidden;padding:0}.v-snackbar__wrapper{border-radius:4px}.v-snackbar--variant-plain,.v-snackbar--variant-outlined,.v-snackbar--variant-text,.v-snackbar--variant-tonal{background:transparent;color:inherit}.v-snackbar--variant-plain{opacity:.62}.v-snackbar--variant-plain:focus,.v-snackbar--variant-plain:hover{opacity:1}.v-snackbar--variant-plain .v-snackbar__overlay{display:none}.v-snackbar--variant-elevated,.v-snackbar--variant-flat{background:rgb(var(--v-theme-surface-variant));color:rgb(var(--v-theme-on-surface-variant))}.v-snackbar--variant-elevated{box-shadow:0 3px 5px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 6px 10px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 1px 18px 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-snackbar--variant-flat{box-shadow:0 0 0 0 var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)),0 0 0 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)),0 0 0 0 var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, .12))}.v-snackbar--variant-outlined{border:thin solid currentColor}.v-snackbar--variant-text .v-snackbar__overlay{background:currentColor}.v-snackbar--variant-tonal .v-snackbar__underlay{background:currentColor;opacity:var(--v-activated-opacity);border-radius:inherit;top:0;right:0;bottom:0;left:0;pointer-events:none}.v-snackbar .v-snackbar__underlay{position:absolute}.v-snackbar__content{flex-grow:1;font-size:.875rem;font-weight:400;letter-spacing:.0178571429em;line-height:1.425;margin-right:auto;padding:14px 16px;text-align:initial}.v-snackbar__actions{align-items:center;align-self:center;display:flex;margin-inline-end:8px}.v-snackbar__actions>.v-btn{padding:0 8px;min-width:auto}.v-snackbar__timer{width:100%;position:absolute;top:0}.v-snackbar__timer .v-progress-linear{transition:.2s linear}.v-snackbar--absolute{position:absolute;z-index:1}.v-snackbar--multi-line .v-snackbar__wrapper{min-height:68px}.v-snackbar--vertical .v-snackbar__wrapper{flex-direction:column}.v-snackbar--vertical .v-snackbar__wrapper .v-snackbar__actions{align-self:flex-end;margin-bottom:8px}.v-snackbar--center{align-items:center;justify-content:center}.v-snackbar--top{align-items:flex-start}.v-snackbar--bottom{align-items:flex-end}.v-snackbar--left,.v-snackbar--start{justify-content:flex-start}.v-snackbar--right,.v-snackbar--end{justify-content:flex-end}.v-snackbar-transition-enter-active,.v-snackbar-transition-leave-active{transition-duration:.15s;transition-timing-function:cubic-bezier(0,0,.2,1)}.v-snackbar-transition-enter-active{transition-property:opacity,transform}.v-snackbar-transition-enter-from{opacity:0;transform:scale(.8)}.v-snackbar-transition-leave-active{transition-property:opacity}.v-snackbar-transition-leave-to{opacity:0}.vd-page-container[data-v-d073449d]{flex:1}.title[data-v-848d90b4]{font-size:24px!important}.alt-title[data-v-848d90b4]{font-size:20px!important}.body-text[data-v-848d90b4]{font-size:16px!important}.link-label[data-v-848d90b4]{font-size:14px!important}h1[data-v-848d90b4]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-848d90b4]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-848d90b4]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-848d90b4]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-848d90b4]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-848d90b4]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-848d90b4]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-848d90b4]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-848d90b4]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-848d90b4]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-848d90b4]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-848d90b4]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-0[data-v-848d90b4],.elevation-1[data-v-848d90b4],.elevation-2[data-v-848d90b4],.elevation-3[data-v-848d90b4],.elevation-4[data-v-848d90b4],.elevation-5[data-v-848d90b4],.elevation-6[data-v-848d90b4],.elevation-7[data-v-848d90b4],.elevation-8[data-v-848d90b4],.elevation-9[data-v-848d90b4],.elevation-10[data-v-848d90b4],.elevation-11[data-v-848d90b4],.elevation-12[data-v-848d90b4],.elevation-13[data-v-848d90b4],.elevation-14[data-v-848d90b4],.elevation-15[data-v-848d90b4],.elevation-16[data-v-848d90b4],.elevation-17[data-v-848d90b4],.elevation-18[data-v-848d90b4],.elevation-19[data-v-848d90b4],.elevation-20[data-v-848d90b4],.elevation-21[data-v-848d90b4],.elevation-22[data-v-848d90b4],.elevation-23[data-v-848d90b4],.elevation-24[data-v-848d90b4]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-848d90b4]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-848d90b4]{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-848d90b4]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-848d90b4]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.alert[data-v-848d90b4]{padding:16px}.alert-icon[data-v-848d90b4]{border-radius:50%}[data-v-848d90b4] .v-alert__underlay{display:none}[data-v-848d90b4] .v-alert__close{align-self:center}[data-v-848d90b4] .v-btn--variant-text .v-btn__overlay{background:transparent!important}.alert-icon[data-v-848d90b4] .v-icon__svg{height:1.5rem!important}.alert-close-btn[data-v-848d90b4]{cursor:pointer;line-height:0}.alert-close-btn .v-btn__overlay[data-v-848d90b4]{display:none}@media screen and (max-width: 440px){.alert[data-v-848d90b4]{display:flex;flex-direction:column;background-color:#fff}.alert[data-v-848d90b4] .v-alert__content{align-self:flex-start!important;margin-top:24px}.alert[data-v-848d90b4] .v-alert__close{margin-top:16px;align-self:flex-end}.alert .v-alert__prepend>.v-icon[data-v-848d90b4]{background:none!important}}@media screen and (min-width: 441px){.alert .alert-icon[data-v-848d90b4]{width:3.5rem!important;height:3.5rem!important;display:grid;place-items:center}}.v-alert.alert--warning.v-alert--variant-tonal[data-v-848d90b4]{background:#fcf0d3!important;color:#222324!important}.v-alert.alert--warning.v-alert--variant-tonal[data-v-848d90b4] .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-848d90b4]{background:transparent!important}.v-alert.alert--warning.v-alert--variant-outlined[data-v-848d90b4] .v-alert__border{border-color:#60480e!important;opacity:1!important}.v-alert.alert--warning .v-alert__prepend>.v-icon[data-v-848d90b4],.v-alert.text-warning .v-alert__prepend>.v-icon[data-v-848d90b4]{background:#fdf7e9}.v-alert.alert--warning .v-alert__prepend>.v-icon[data-v-848d90b4] svg,.v-alert.text-warning .v-alert__prepend>.v-icon[data-v-848d90b4] svg{fill:#60480e}.v-alert.text-warning[data-v-848d90b4]{color:#60480e!important;border-color:#60480e!important}.v-alert.alert--success.v-alert--variant-tonal[data-v-848d90b4]{background:#cceee8!important;color:#222324!important}.v-alert.alert--success.v-alert--variant-tonal[data-v-848d90b4] .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-848d90b4]{background:transparent!important}.v-alert.alert--success.v-alert--variant-outlined[data-v-848d90b4] .v-alert__border{border-color:#224e2d!important;opacity:1!important}.v-alert.alert--success .v-alert__prepend>.v-icon[data-v-848d90b4],.v-alert.text-success .v-alert__prepend>.v-icon[data-v-848d90b4]{background:#e5f7f4}.v-alert.alert--success .v-alert__prepend>.v-icon[data-v-848d90b4] svg,.v-alert.text-success .v-alert__prepend>.v-icon[data-v-848d90b4] svg{fill:#224e2d}.v-alert.text-success[data-v-848d90b4]{color:#224e2d!important;border-color:#224e2d!important}.v-alert.alert--error.v-alert--variant-tonal[data-v-848d90b4]{background:#f9dcd7!important;color:#222324!important}.v-alert.alert--error.v-alert--variant-tonal[data-v-848d90b4] .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-848d90b4]{background:transparent!important}.v-alert.alert--error.v-alert--variant-outlined[data-v-848d90b4] .v-alert__border{border-color:#b33f2e!important;opacity:1!important}.v-alert.alert--error .v-alert__prepend>.v-icon[data-v-848d90b4],.v-alert.text-error .v-alert__prepend>.v-icon[data-v-848d90b4]{background:#fcedeb}.v-alert.alert--error .v-alert__prepend>.v-icon[data-v-848d90b4] svg,.v-alert.text-error .v-alert__prepend>.v-icon[data-v-848d90b4] svg{fill:#b33f2e}.v-alert.text-error[data-v-848d90b4]{color:#b33f2e!important;border-color:#b33f2e!important}.v-alert.alert--info.v-alert--variant-tonal[data-v-848d90b4]{background:#ced9eb!important;color:#222324!important}.v-alert.alert--info.v-alert--variant-tonal[data-v-848d90b4] .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-848d90b4]{background:transparent!important}.v-alert.alert--info.v-alert--variant-outlined[data-v-848d90b4] .v-alert__border{border-color:#0c419a!important;opacity:1!important}.v-alert.alert--info .v-alert__prepend>.v-icon[data-v-848d90b4],.v-alert.text-info .v-alert__prepend>.v-icon[data-v-848d90b4]{background:#e7ecf5}.v-alert.alert--info .v-alert__prepend>.v-icon[data-v-848d90b4] svg,.v-alert.text-info .v-alert__prepend>.v-icon[data-v-848d90b4] svg{fill:#0c419a}.v-alert.text-info[data-v-848d90b4]{color:#0c419a!important;border-color:#0c419a!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:#616161e6;color:#fff}.v-btn--icon .v-icon{color:#76797a}.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-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}.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-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-france-connect-btn a[data-v-df93ee72]{color:#000091}.vd-france-connect-btn a[data-v-df93ee72]:focus{outline-offset:3px}.vd-france-connect-link[data-v-df93ee72]{background:#000091}.vd-france-connect-link[data-v-df93ee72]:hover{background:#1212ff;transition:all .2s ease-in-out}.vd-france-connect-link[data-v-df93ee72]:active{background:#2323ff}.vd-france-connect-link[data-v-df93ee72]:focus{outline-offset:3px}.vd-france-connect-btn--dark .vd-france-connect-link[data-v-df93ee72]{color:#fff;background-color:#8585f6}.vd-france-connect-btn--dark .vd-france-connect-link[data-v-df93ee72]:hover{background-color:#b1b1f9}.vd-france-connect-btn--dark .vd-france-connect-link[data-v-df93ee72]:active{background-color:#c6c6fb}.vd-france-connect-btn--dark .vd-france-connect-info-link[data-v-df93ee72]{color:#8585f6}.vd-france-connect-info-link[data-v-df93ee72]{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-df93ee72]:hover{background-size:100% 2px}[data-v-df93ee72] :scope:focus{border-radius:0!important}.title[data-v-9763e461]{font-size:24px!important}.alt-title[data-v-9763e461]{font-size:20px!important}.body-text[data-v-9763e461]{font-size:16px!important}.link-label[data-v-9763e461]{font-size:14px!important}h1[data-v-9763e461]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-9763e461]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-9763e461]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-9763e461]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-9763e461]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-9763e461]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-9763e461]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-9763e461]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-9763e461]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-9763e461]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-9763e461]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-9763e461]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-0[data-v-9763e461],.elevation-1[data-v-9763e461],.elevation-2[data-v-9763e461],.elevation-3[data-v-9763e461],.elevation-4[data-v-9763e461],.elevation-5[data-v-9763e461],.elevation-6[data-v-9763e461],.elevation-7[data-v-9763e461],.elevation-8[data-v-9763e461],.elevation-9[data-v-9763e461],.elevation-10[data-v-9763e461],.elevation-11[data-v-9763e461],.elevation-12[data-v-9763e461],.elevation-13[data-v-9763e461],.elevation-14[data-v-9763e461],.elevation-15[data-v-9763e461],.elevation-16[data-v-9763e461],.elevation-17[data-v-9763e461],.elevation-18[data-v-9763e461],.elevation-19[data-v-9763e461],.elevation-20[data-v-9763e461],.elevation-21[data-v-9763e461],.elevation-22[data-v-9763e461],.elevation-23[data-v-9763e461],.elevation-24[data-v-9763e461]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-9763e461]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-9763e461]{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-9763e461]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-9763e461]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.vd-notification-content[data-v-9763e461]{display:flex;align-items:center}.vd-notification-bar[data-v-9763e461] .v-snack__wrapper{padding:16px;min-width:0;max-width:none}[data-v-9763e461] .v-snackbar__content{padding:16px!important}[data-v-9763e461] .v-snackbar__actions{margin-inline-end:10px}.vd-notification-bar.v-snackbar--vertical[data-v-9763e461] .v-snackbar--vertical .v-snackbar__wrapper .v-snackbar__actions{width:100%!important;align-self:auto}.vd-notification-bar.v-snackbar--vertical[data-v-9763e461] .v-snack__wrapper{align-items:stretch;flex-direction:row}.vd-notification-bar.v-snackbar--vertical[data-v-9763e461] .v-snack__action{align-self:stretch;align-items:stretch;flex-direction:column}.vd-notification-bar.v-snackbar--vertical[data-v-9763e461] .v-snackbar__content{margin:0;width:100%;display:flex}.vd-notification-bar.v-snackbar--vertical[data-v-9763e461] .vd-notification-content{flex-direction:column;display:flex}.long-text[data-v-9763e461] .v-snackbar__actions{width:98%!important}.short-text[data-v-9763e461] .v-snackbar__actions{width:48%!important}.action-section-longText[data-v-9763e461]{justify-content:space-around}.action-section-shortText[data-v-9763e461]{justify-content:end!important}.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}.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[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}
|
|
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))}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cnamts/synapse",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4-alpha",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "CNAM DS v3",
|
|
6
6
|
"type": "module",
|
|
@@ -44,49 +44,51 @@
|
|
|
44
44
|
"node": ">=18.0.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@chromatic-com/storybook": "^2.0.
|
|
47
|
+
"@chromatic-com/storybook": "^2.0.2",
|
|
48
|
+
"@jls-digital/storybook-addon-code": "^1.0.4",
|
|
48
49
|
"@mdi/js": "^7.4.47",
|
|
49
|
-
"@storybook/addon-docs": "^8.3.
|
|
50
|
-
"@storybook/addon-essentials": "^8.
|
|
51
|
-
"@storybook/addon-interactions": "^8.3.
|
|
52
|
-
"@storybook/addon-links": "^8.
|
|
53
|
-
"@storybook/addon-onboarding": "^8.
|
|
54
|
-
"@storybook/addon-viewport": "^8.
|
|
55
|
-
"@storybook/blocks": "^8.
|
|
56
|
-
"@storybook/manager-api": "^8.
|
|
57
|
-
"@storybook/test": "^8.3.
|
|
58
|
-
"@storybook/theming": "^8.
|
|
59
|
-
"@storybook/vue3": "^8.
|
|
60
|
-
"@storybook/vue3-vite": "^8.
|
|
61
|
-
"@stylistic/eslint-plugin": "^2.
|
|
62
|
-
"@stylistic/eslint-plugin-ts": "^2.
|
|
50
|
+
"@storybook/addon-docs": "^8.3.6",
|
|
51
|
+
"@storybook/addon-essentials": "^8.3.6",
|
|
52
|
+
"@storybook/addon-interactions": "^8.3.6",
|
|
53
|
+
"@storybook/addon-links": "^8.3.6",
|
|
54
|
+
"@storybook/addon-onboarding": "^8.3.6",
|
|
55
|
+
"@storybook/addon-viewport": "^8.3.6",
|
|
56
|
+
"@storybook/blocks": "^8.3.6",
|
|
57
|
+
"@storybook/manager-api": "^8.3.6",
|
|
58
|
+
"@storybook/test": "^8.3.6",
|
|
59
|
+
"@storybook/theming": "^8.3.6",
|
|
60
|
+
"@storybook/vue3": "^8.3.6",
|
|
61
|
+
"@storybook/vue3-vite": "^8.3.6",
|
|
62
|
+
"@stylistic/eslint-plugin": "^2.9.0",
|
|
63
|
+
"@stylistic/eslint-plugin-ts": "^2.9.0",
|
|
63
64
|
"@tsconfig/node20": "^20.1.4",
|
|
64
65
|
"@types/node": "^20.17.1",
|
|
65
|
-
"@typescript-eslint/parser": "^8.
|
|
66
|
-
"@vitejs/plugin-vue": "^5.1.
|
|
67
|
-
"@vitest/coverage-v8": "^2.
|
|
66
|
+
"@typescript-eslint/parser": "^8.11.0",
|
|
67
|
+
"@vitejs/plugin-vue": "^5.1.4",
|
|
68
|
+
"@vitest/coverage-v8": "^2.1.4",
|
|
68
69
|
"@vue/test-utils": "^2.4.6",
|
|
69
70
|
"@vue/tsconfig": "^0.5.1",
|
|
70
71
|
"auto-changelog": "^2.4.0",
|
|
71
72
|
"axios": "^1.7.7",
|
|
72
|
-
"eslint": "^9.
|
|
73
|
+
"eslint": "^9.13.0",
|
|
73
74
|
"eslint-plugin-storybook": "^0.8.0",
|
|
74
|
-
"eslint-plugin-vue": "^9.
|
|
75
|
+
"eslint-plugin-vue": "^9.30.0",
|
|
75
76
|
"eslint-plugin-vuejs-accessibility": "^2.4.1",
|
|
76
|
-
"happy-dom": "^15.
|
|
77
|
-
"husky": "^9.1.
|
|
77
|
+
"happy-dom": "^15.7.4",
|
|
78
|
+
"husky": "^9.1.6",
|
|
78
79
|
"resize-observer-polyfill": "^1.5.1",
|
|
79
|
-
"sass": "^1.
|
|
80
|
-
"storybook": "^8.
|
|
81
|
-
"storybook-addon-vue-mdx": "^1.0.
|
|
80
|
+
"sass": "^1.80.5",
|
|
81
|
+
"storybook": "^8.3.6",
|
|
82
|
+
"storybook-addon-vue-mdx": "^1.0.4",
|
|
82
83
|
"typescript": "5.4.2",
|
|
83
|
-
"typescript-eslint": "^8.
|
|
84
|
+
"typescript-eslint": "^8.11.0",
|
|
84
85
|
"vite": "^5.4.10",
|
|
85
86
|
"vite-plugin-dts": "^4.0.1",
|
|
87
|
+
"vite-plugin-vuetify": "^2.0.4",
|
|
86
88
|
"vitest": "^2.0.5",
|
|
87
89
|
"vue": "^3.4.33",
|
|
88
90
|
"vue-router": "^4.4.5",
|
|
89
|
-
"vue-tsc": "^2.
|
|
91
|
+
"vue-tsc": "^2.1.8"
|
|
90
92
|
},
|
|
91
93
|
"peerDependencies": {
|
|
92
94
|
"vue": "^3.4.33",
|
|
@@ -94,9 +96,10 @@
|
|
|
94
96
|
},
|
|
95
97
|
"dependencies": {
|
|
96
98
|
"@mdi/js": "^7.4.47",
|
|
97
|
-
"@storybook/addon-docs": "^8.3.4",
|
|
98
99
|
"deepmerge": "^4.3.1",
|
|
99
100
|
"iso-639-1": "^3.1.3",
|
|
101
|
+
"maska": "^3.0.3",
|
|
102
|
+
"sass-loader": "^16.0.3",
|
|
100
103
|
"semantic-release": "^24.1.2"
|
|
101
104
|
},
|
|
102
105
|
"publishConfig": {
|
|
@@ -18,7 +18,7 @@ Le composant `AlertWrapper` est utilisé pour afficher une alerte à l’utilisa
|
|
|
18
18
|
|
|
19
19
|
<Source dark code={`
|
|
20
20
|
<script setup lang="ts">
|
|
21
|
-
import Alert from '
|
|
21
|
+
import Alert from '@cnamts/synapse'
|
|
22
22
|
import { ref } from 'vue'
|
|
23
23
|
|
|
24
24
|
const showAlert = ref(true);
|
|
@@ -3,7 +3,7 @@ import Alert from './Alert.vue'
|
|
|
3
3
|
import { VBtn } from 'vuetify/components'
|
|
4
4
|
|
|
5
5
|
const meta = {
|
|
6
|
-
title: '
|
|
6
|
+
title: 'Composants/Feedback/Alert',
|
|
7
7
|
component: Alert,
|
|
8
8
|
parameters: {
|
|
9
9
|
layout: 'fullscreen',
|
|
@@ -31,6 +31,35 @@ export default meta
|
|
|
31
31
|
type Story = StoryObj<typeof meta>
|
|
32
32
|
|
|
33
33
|
export const Default: Story = {
|
|
34
|
+
parameters: {
|
|
35
|
+
sourceCode: [
|
|
36
|
+
{
|
|
37
|
+
name: 'Template',
|
|
38
|
+
code: `<template>
|
|
39
|
+
<div class="d-flex flex-wrap align-center justify-center">
|
|
40
|
+
<Alert v-model="showAlert" type="success" variant="tonal" :closable="true">
|
|
41
|
+
<template #default>This is a success alert</template>
|
|
42
|
+
</Alert>
|
|
43
|
+
|
|
44
|
+
<VBtn v-if="!showAlert" color="primary" @click="showAlert = true">
|
|
45
|
+
Réinitialiser
|
|
46
|
+
</VBtn>
|
|
47
|
+
</div>
|
|
48
|
+
</template>
|
|
49
|
+
`,
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
name: 'Script',
|
|
53
|
+
code: `<script setup lang="ts">
|
|
54
|
+
import Alert from '@cnamts/synapse'
|
|
55
|
+
import { ref } from 'vue'
|
|
56
|
+
|
|
57
|
+
const showAlert = ref(true);
|
|
58
|
+
</script>
|
|
59
|
+
`,
|
|
60
|
+
},
|
|
61
|
+
],
|
|
62
|
+
},
|
|
34
63
|
args: {
|
|
35
64
|
modelValue: true,
|
|
36
65
|
type: 'success',
|
|
@@ -59,6 +88,35 @@ export const Default: Story = {
|
|
|
59
88
|
}
|
|
60
89
|
|
|
61
90
|
export const Outlined: Story = {
|
|
91
|
+
parameters: {
|
|
92
|
+
sourceCode: [
|
|
93
|
+
{
|
|
94
|
+
name: 'Template',
|
|
95
|
+
code: `<template>
|
|
96
|
+
<div class="d-flex flex-wrap align-center justify-center">
|
|
97
|
+
<Alert v-model="showAlert" type="warning" variant="outlined" :closable="true">
|
|
98
|
+
<template #default>This is a warning alert</template>
|
|
99
|
+
</Alert>
|
|
100
|
+
|
|
101
|
+
<VBtn v-if="!showAlert" color="primary" @click="showAlert = true">
|
|
102
|
+
Réinitialiser
|
|
103
|
+
</VBtn>
|
|
104
|
+
</div>
|
|
105
|
+
</template>
|
|
106
|
+
`,
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
name: 'Script',
|
|
110
|
+
code: `<script setup lang="ts">
|
|
111
|
+
import Alert from '@cnamts/synapse'
|
|
112
|
+
import { ref } from 'vue'
|
|
113
|
+
|
|
114
|
+
const showAlert = ref(true);
|
|
115
|
+
</script>
|
|
116
|
+
`,
|
|
117
|
+
},
|
|
118
|
+
],
|
|
119
|
+
},
|
|
62
120
|
args: {
|
|
63
121
|
type: 'warning',
|
|
64
122
|
closable: true,
|
|
@@ -86,6 +144,38 @@ export const Outlined: Story = {
|
|
|
86
144
|
}
|
|
87
145
|
|
|
88
146
|
export const SlotIcon: Story = {
|
|
147
|
+
parameters: {
|
|
148
|
+
sourceCode: [
|
|
149
|
+
{
|
|
150
|
+
name: 'Template',
|
|
151
|
+
code: `<template>
|
|
152
|
+
<div class="d-flex flex-wrap align-center justify-center">
|
|
153
|
+
<Alert v-model="showAlert" type="success" variant="tonal" :closable="true">
|
|
154
|
+
<template #default>This is a success alert</template>
|
|
155
|
+
<template #icon>{{ icon }}</template>
|
|
156
|
+
</Alert>
|
|
157
|
+
|
|
158
|
+
<VBtn v-if="!showAlert" color="primary" @click="showAlert = true">
|
|
159
|
+
Réinitialiser
|
|
160
|
+
</VBtn>
|
|
161
|
+
</div>
|
|
162
|
+
</template>
|
|
163
|
+
`,
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
name: 'Script',
|
|
167
|
+
code: `<script setup lang="ts">
|
|
168
|
+
import Alert from '@cnamts/synapse'
|
|
169
|
+
import { ref } from 'vue'
|
|
170
|
+
import { mdiAccountCheck } from '@mdi/js'
|
|
171
|
+
|
|
172
|
+
const showAlert = ref(true);
|
|
173
|
+
const icon = mdiAccountCheck;
|
|
174
|
+
</script>
|
|
175
|
+
`,
|
|
176
|
+
},
|
|
177
|
+
],
|
|
178
|
+
},
|
|
89
179
|
args: {
|
|
90
180
|
type: 'success',
|
|
91
181
|
closable: true,
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
2
|
import { computed } from 'vue'
|
|
3
|
-
import { VAlert, VIcon, VBtn } from 'vuetify/components'
|
|
4
3
|
import { locales } from './locales'
|
|
5
4
|
import {
|
|
6
5
|
mdiAlertOutline,
|
|
@@ -97,6 +96,7 @@
|
|
|
97
96
|
|
|
98
97
|
<style lang="scss" scoped>
|
|
99
98
|
@use '@/assets/tokens.scss';
|
|
99
|
+
@use 'sass:map';
|
|
100
100
|
|
|
101
101
|
.alert {
|
|
102
102
|
padding: tokens.$padding-4;
|
|
@@ -166,10 +166,10 @@
|
|
|
166
166
|
|
|
167
167
|
@mixin redesign($type, $map) {
|
|
168
168
|
&.alert--#{$type}.v-alert--variant-tonal {
|
|
169
|
-
background: map
|
|
169
|
+
background: map.get($map, 'background') !important;
|
|
170
170
|
color: tokens.$colors-text-base !important;
|
|
171
171
|
:deep(.v-alert__border) {
|
|
172
|
-
border-color: map
|
|
172
|
+
border-color: map.get($map, 'border') !important;
|
|
173
173
|
opacity: 1 !important;
|
|
174
174
|
border-inline-start-width: 4px;
|
|
175
175
|
}
|
|
@@ -178,7 +178,7 @@
|
|
|
178
178
|
&.alert--#{$type}.v-alert--variant-outlined {
|
|
179
179
|
background: transparent !important;
|
|
180
180
|
:deep(.v-alert__border) {
|
|
181
|
-
border-color: map
|
|
181
|
+
border-color: map.get($map, 'border') !important;
|
|
182
182
|
opacity: 1 !important;
|
|
183
183
|
}
|
|
184
184
|
}
|
|
@@ -186,16 +186,16 @@
|
|
|
186
186
|
&.alert--#{$type},
|
|
187
187
|
&.text-#{$type} {
|
|
188
188
|
.v-alert__prepend > .v-icon {
|
|
189
|
-
background: map
|
|
189
|
+
background: map.get($map, 'icon-bg');
|
|
190
190
|
:deep(svg) {
|
|
191
|
-
fill: map
|
|
191
|
+
fill: map.get($map, 'accent');
|
|
192
192
|
}
|
|
193
193
|
}
|
|
194
194
|
}
|
|
195
195
|
|
|
196
196
|
&.text-#{$type} {
|
|
197
|
-
color: map
|
|
198
|
-
border-color: map
|
|
197
|
+
color: map.get($map, 'accent') !important;
|
|
198
|
+
border-color: map.get($map, 'accent') !important;
|
|
199
199
|
}
|
|
200
200
|
}
|
|
201
201
|
|