@cnamts/synapse 0.0.5-alpha → 0.0.7-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.
Files changed (229) hide show
  1. package/dist/design-system-v3.d.ts +487 -415
  2. package/dist/design-system-v3.js +2954 -2203
  3. package/dist/design-system-v3.umd.cjs +6 -6
  4. package/dist/style.css +1 -1
  5. package/package.json +17 -17
  6. package/src/assets/settings.scss +3 -0
  7. package/src/assets/tokens.scss +16 -16
  8. package/src/components/BackBtn/AccessibiliteItems.ts +0 -30
  9. package/src/components/BackBtn/BackBtn.mdx +1 -1
  10. package/src/components/BackBtn/BackBtn.stories.ts +12 -9
  11. package/src/components/BackBtn/BackBtn.vue +0 -1
  12. package/src/components/BackToTopBtn/AccessibiliteItems.ts +0 -30
  13. package/src/components/BackToTopBtn/BackToTopBtn.mdx +1 -1
  14. package/src/components/BackToTopBtn/BackToTopBtn.stories.ts +3 -3
  15. package/src/components/CollapsibleList/Accessibilite.stories.ts +4 -0
  16. package/src/components/CollapsibleList/AccessibiliteItems.ts +55 -62
  17. package/src/components/CollapsibleList/CollapsibleList.stories.ts +1 -1
  18. package/src/components/CookieBanner/Accessibilite.stories.ts +219 -0
  19. package/src/components/CookieBanner/AccessibiliteItems.ts +356 -0
  20. package/src/components/CookieBanner/CookieBanner.mdx +219 -0
  21. package/src/components/CookieBanner/CookieBanner.stories.ts +680 -0
  22. package/src/components/CookieBanner/CookieBanner.vue +225 -0
  23. package/src/components/CookieBanner/config.ts +38 -0
  24. package/src/components/CookieBanner/locales.ts +12 -0
  25. package/src/components/CookieBanner/tests/CookieBanner.spec.ts +129 -0
  26. package/src/components/CookieBanner/tests/__snapshots__/CookieBanner.spec.ts.snap +197 -0
  27. package/src/components/CookiesSelection/CookiesInformation/CookiesInformation.vue +123 -0
  28. package/src/components/CookiesSelection/CookiesInformation/locales.ts +21 -0
  29. package/src/components/CookiesSelection/CookiesInformation/tests/CookiesInformation.spec.ts +121 -0
  30. package/src/components/CookiesSelection/CookiesSelection.vue +127 -0
  31. package/src/components/CookiesSelection/CookiesTable/CookiesTable.vue +47 -0
  32. package/src/components/CookiesSelection/CookiesTable/headers.ts +14 -0
  33. package/src/components/CookiesSelection/CookiesTable/tests/CookiesTable.spec.ts +30 -0
  34. package/src/components/CookiesSelection/CookiesTable/tests/__snapshots__/CookiesTable.spec.ts.snap +3 -0
  35. package/src/components/CookiesSelection/locales.ts +10 -0
  36. package/src/components/CookiesSelection/tests/CookiesSelection.spec.ts +184 -0
  37. package/src/components/CookiesSelection/tests/__snapshots__/CookiesSelection.spec.ts.snap +192 -0
  38. package/src/components/CookiesSelection/types.ts +15 -0
  39. package/src/components/CopyBtn/AccessibiliteItems.ts +0 -30
  40. package/src/components/CopyBtn/CopyBtn.mdx +1 -1
  41. package/src/components/CopyBtn/CopyBtn.stories.ts +9 -6
  42. package/src/components/CopyBtn/CopyBtn.vue +0 -1
  43. package/src/components/Customs/SyBtnSelect/Accessibilite.mdx +14 -0
  44. package/src/components/Customs/SyBtnSelect/Accessibilite.stories.ts +193 -0
  45. package/src/components/Customs/SyBtnSelect/AccessibiliteItems.ts +139 -0
  46. package/src/components/Customs/SyBtnSelect/SyBtnSelect.mdx +3 -2
  47. package/src/components/Customs/SyBtnSelect/SyBtnSelect.stories.ts +30 -14
  48. package/src/components/Customs/SyBtnSelect/SyBtnSelect.vue +21 -13
  49. package/src/components/Customs/SyBtnSelect/constants/ExpertiseLevelEnum.ts +4 -0
  50. package/src/components/Customs/SyInputSelect/Accessibilite.mdx +14 -0
  51. package/src/components/Customs/SyInputSelect/Accessibilite.stories.ts +166 -0
  52. package/src/components/Customs/SyInputSelect/AccessibiliteItems.ts +96 -0
  53. package/src/components/Customs/SyInputSelect/SyInputSelect.mdx +7 -3
  54. package/src/components/Customs/SyInputSelect/SyInputSelect.stories.ts +24 -65
  55. package/src/components/Customs/SyInputSelect/SyInputSelect.vue +36 -4
  56. package/src/components/Customs/SyInputSelect/constants/ExpertiseLevelEnum.ts +4 -0
  57. package/src/components/Customs/SySelect/Accessibilite.mdx +14 -0
  58. package/src/components/Customs/SySelect/Accessibilite.stories.ts +217 -0
  59. package/src/components/Customs/SySelect/AccessibiliteItems.ts +173 -0
  60. package/src/components/Customs/SySelect/SySelect.mdx +4 -4
  61. package/src/components/Customs/SySelect/SySelect.stories.ts +4 -60
  62. package/src/components/Customs/SySelect/SySelect.vue +35 -8
  63. package/src/components/Customs/SySelect/constants/ExpertiseLevelEnum.ts +4 -0
  64. package/src/components/Customs/SyTextField/Accessibilite.mdx +14 -0
  65. package/src/components/Customs/SyTextField/Accessibilite.stories.ts +224 -0
  66. package/src/components/Customs/SyTextField/AccessibiliteItems.ts +198 -0
  67. package/src/components/Customs/SyTextField/SyTextField.mdx +1 -1
  68. package/src/components/Customs/SyTextField/SyTextField.stories.ts +118 -7
  69. package/src/components/Customs/SyTextField/SyTextField.vue +27 -7
  70. package/src/components/Customs/SyTextField/constants/ExpertiseLevelEnum.ts +4 -0
  71. package/src/components/Customs/SyTextField/tests/__snapshots__/SyTextField.spec.ts.snap +2 -1
  72. package/src/components/DataList/Accessibilite.mdx +14 -0
  73. package/src/components/DataList/Accessibilite.stories.ts +166 -0
  74. package/src/components/DataList/AccessibiliteItems.ts +47 -0
  75. package/src/components/DataList/DataList.mdx +1 -1
  76. package/src/components/DataList/DataList.stories.ts +10 -10
  77. package/src/components/DataList/constants/ExpertiseLevelEnum.ts +4 -0
  78. package/src/components/DataListGroup/Accessibilite.mdx +14 -0
  79. package/src/components/DataListGroup/Accessibilite.stories.ts +225 -0
  80. package/src/components/DataListGroup/AccessibiliteItems.ts +79 -0
  81. package/src/components/DataListGroup/DataListGroup.mdx +1 -1
  82. package/src/components/DataListGroup/DataListGroup.stories.ts +7 -7
  83. package/src/components/DataListGroup/constants/ExpertiseLevelEnum.ts +4 -0
  84. package/src/components/DialogBox/Accessibilite.mdx +14 -0
  85. package/src/components/DialogBox/Accessibilite.stories.ts +189 -0
  86. package/src/components/DialogBox/AccessibiliteItems.ts +167 -0
  87. package/src/components/DialogBox/constants/ExpertiseLevelEnum.ts +4 -0
  88. package/src/components/DownloadBtn/AccessibiliteItems.ts +1 -31
  89. package/src/components/DownloadBtn/DownloadBtn.mdx +5 -6
  90. package/src/components/DownloadBtn/DownloadBtn.stories.ts +25 -26
  91. package/src/components/ErrorPage/Accessibilite.mdx +14 -0
  92. package/src/components/ErrorPage/Accessibilite.stories.ts +189 -0
  93. package/src/components/ErrorPage/AccessibiliteItems.ts +205 -0
  94. package/src/components/ErrorPage/ErrorPage.vue +1 -1
  95. package/src/components/ErrorPage/constants/ExpertiseLevelEnum.ts +4 -0
  96. package/src/components/ErrorPage/tests/__snapshots__/ErrorPage.spec.ts.snap +4 -4
  97. package/src/components/FooterBar/Accessibilite.mdx +14 -0
  98. package/src/components/FooterBar/Accessibilite.stories.ts +223 -0
  99. package/src/components/FooterBar/AccessibiliteItems.ts +257 -0
  100. package/src/components/FooterBar/FooterBar.mdx +2 -2
  101. package/src/components/FooterBar/FooterBar.stories.ts +14 -14
  102. package/src/components/FooterBar/FooterBar.vue +86 -75
  103. package/src/components/FooterBar/constants/ExpertiseLevelEnum.ts +4 -0
  104. package/src/components/FooterBar/tests/__snapshots__/FooterBar.spec.ts.snap +22 -20
  105. package/src/components/FranceConnectBtn/AccessibiliteItems.ts +0 -30
  106. package/src/components/FranceConnectBtn/FranceConnectBtn.mdx +1 -1
  107. package/src/components/FranceConnectBtn/FranceConnectBtn.stories.ts +5 -4
  108. package/src/components/HeaderBar/Accessibilite.mdx +14 -0
  109. package/src/components/HeaderBar/Accessibilite.stories.ts +223 -0
  110. package/src/components/HeaderBar/AccessibiliteItems.ts +194 -0
  111. package/src/components/HeaderBar/HeaderBar.stories.ts +19 -12
  112. package/src/components/HeaderBar/HeaderBar.vue +9 -12
  113. package/src/components/HeaderBar/HeaderBurgerMenu/Accessibilite.mdx +14 -0
  114. package/src/components/HeaderBar/HeaderBurgerMenu/Accessibilite.stories.ts +223 -0
  115. package/src/components/HeaderBar/HeaderBurgerMenu/AccessibiliteItems.ts +174 -0
  116. package/src/components/HeaderBar/HeaderBurgerMenu/HeaderBurgerMenu.vue +1 -0
  117. package/src/components/HeaderBar/HeaderBurgerMenu/constants/ExpertiseLevelEnum.ts +4 -0
  118. package/src/components/HeaderBar/constants/ExpertiseLevelEnum.ts +4 -0
  119. package/src/components/HeaderBar/tests/__snapshots__/HeaderBar.spec.ts.snap +1 -1
  120. package/src/components/HeaderLoading/Accessibilite.mdx +14 -0
  121. package/src/components/HeaderLoading/Accessibilite.stories.ts +167 -0
  122. package/src/components/HeaderLoading/AccessibiliteItems.ts +29 -0
  123. package/src/components/HeaderLoading/HeaderLoading.mdx +1 -1
  124. package/src/components/HeaderLoading/HeaderLoading.stories.ts +1 -1
  125. package/src/components/HeaderLoading/constants/ExpertiseLevelEnum.ts +4 -0
  126. package/src/components/HeaderNavigationBar/HeaderNavigationBar.stories.ts +104 -32
  127. package/src/components/HeaderNavigationBar/HorizontalNavbar/HorizontalNavbar.vue +35 -33
  128. package/src/components/HeaderToolbar/Accessibilite.mdx +14 -0
  129. package/src/components/HeaderToolbar/Accessibilite.stories.ts +203 -0
  130. package/src/components/HeaderToolbar/AccessibiliteItems.ts +200 -0
  131. package/src/components/HeaderToolbar/HeaderToolbar.mdx +1 -1
  132. package/src/components/HeaderToolbar/HeaderToolbar.stories.ts +2 -2
  133. package/src/components/HeaderToolbar/HeaderToolbar.vue +24 -1
  134. package/src/components/HeaderToolbar/constants/ExpertiseLevelEnum.ts +4 -0
  135. package/src/components/LangBtn/Accessibilite.stories.ts +3 -1
  136. package/src/components/LangBtn/AccessibiliteItems.ts +0 -31
  137. package/src/components/LangBtn/LangBtn.mdx +1 -1
  138. package/src/components/LangBtn/LangBtn.stories.ts +4 -4
  139. package/src/components/LangBtn/LangBtn.vue +3 -2
  140. package/src/components/Logo/Accessibilite.mdx +14 -0
  141. package/src/components/Logo/Accessibilite.stories.ts +223 -0
  142. package/src/components/Logo/AccessibiliteItems.ts +155 -0
  143. package/src/components/Logo/Logo.mdx +1 -1
  144. package/src/components/Logo/Logo.stories.ts +8 -8
  145. package/src/components/Logo/constants/ExpertiseLevelEnum.ts +4 -0
  146. package/src/components/LogoBrandSection/Accessibilite.mdx +14 -0
  147. package/src/components/LogoBrandSection/Accessibilite.stories.ts +223 -0
  148. package/src/components/LogoBrandSection/AccessibiliteItems.ts +194 -0
  149. package/src/components/LogoBrandSection/constants/ExpertiseLevelEnum.ts +4 -0
  150. package/src/components/MaintenancePage/Accessibilite.mdx +14 -0
  151. package/src/components/MaintenancePage/Accessibilite.stories.ts +189 -0
  152. package/src/components/MaintenancePage/AccessibiliteItems.ts +173 -0
  153. package/src/components/MaintenancePage/constants/ExpertiseLevelEnum.ts +4 -0
  154. package/src/components/NirField/Accessibilite.mdx +14 -0
  155. package/src/components/NirField/Accessibilite.stories.ts +214 -0
  156. package/src/components/NirField/AccessibiliteItems.ts +243 -0
  157. package/src/components/NirField/NirField.mdx +213 -0
  158. package/src/components/NirField/NirField.stories.ts +412 -0
  159. package/src/components/NirField/NirField.vue +453 -0
  160. package/src/components/NirField/config.ts +16 -0
  161. package/src/components/NirField/constants/ExpertiseLevelEnum.ts +4 -0
  162. package/src/components/NirField/locales.ts +12 -0
  163. package/src/components/NirField/nirValidation.ts +42 -0
  164. package/src/components/NirField/tests/NirField.spec.ts +120 -0
  165. package/src/components/NotFoundPage/Accessibilite.mdx +14 -0
  166. package/src/components/NotFoundPage/Accessibilite.stories.ts +190 -0
  167. package/src/components/NotFoundPage/AccessibiliteItems.ts +205 -0
  168. package/src/components/NotFoundPage/constants/ExpertiseLevelEnum.ts +4 -0
  169. package/src/components/NotFoundPage/tests/__snapshots__/NotFoundPage.spec.ts.snap +4 -4
  170. package/src/components/NotificationBar/AccessibiliteItems.ts +0 -30
  171. package/src/components/NotificationBar/NotificationBar.mdx +1 -1
  172. package/src/components/PageContainer/PageContainer.mdx +1 -1
  173. package/src/components/PageContainer/PageContainer.stories.ts +9 -9
  174. package/src/components/PageContainer/PageContainer.vue +24 -18
  175. package/src/components/PageContainer/tests/PageContainer.spec.ts +2 -2
  176. package/src/components/PageContainer/tests/__snapshots__/PageContainer.spec.ts.snap +2 -2
  177. package/src/components/PhoneField/Accessibilite.mdx +14 -0
  178. package/src/components/PhoneField/Accessibilite.stories.ts +216 -0
  179. package/src/components/PhoneField/AccessibiliteItems.ts +238 -0
  180. package/src/components/PhoneField/PhoneField.mdx +1 -1
  181. package/src/components/PhoneField/PhoneField.stories.ts +2 -2
  182. package/src/components/PhoneField/PhoneField.vue +0 -1
  183. package/src/components/PhoneField/constants/ExpertiseLevelEnum.ts +4 -0
  184. package/src/components/SkipLink/Accessibilite.stories.ts +1 -1
  185. package/src/components/SkipLink/SkipLink.stories.ts +2 -2
  186. package/src/components/SocialMediaLinks/Accessibilite.mdx +14 -0
  187. package/src/components/SocialMediaLinks/Accessibilite.stories.ts +170 -0
  188. package/src/components/SocialMediaLinks/AccessibiliteItems.ts +160 -0
  189. package/src/components/SocialMediaLinks/SocialMediaLinks.mdx +1 -1
  190. package/src/components/SocialMediaLinks/SocialMediaLinks.stories.ts +1 -1
  191. package/src/components/SocialMediaLinks/SocialMediaLinks.vue +7 -1
  192. package/src/components/SocialMediaLinks/constants/ExpertiseLevelEnum.ts +4 -0
  193. package/src/components/SocialMediaLinks/tests/__snapshots__/SocialMediaLinks.spec.ts.snap +2 -2
  194. package/src/components/SubHeader/Accessibilite.mdx +14 -0
  195. package/src/components/SubHeader/Accessibilite.stories.ts +166 -0
  196. package/src/components/SubHeader/AccessibiliteItems.ts +146 -0
  197. package/src/components/SubHeader/SubHeader.mdx +1 -1
  198. package/src/components/SubHeader/SubHeader.stories.ts +17 -14
  199. package/src/components/SubHeader/constants/ExpertiseLevelEnum.ts +4 -0
  200. package/src/components/SyAlert/Accessibilite.mdx +14 -0
  201. package/src/components/{Alert → SyAlert}/Accessibilite.stories.ts +1 -1
  202. package/src/components/{Alert → SyAlert}/AccessibiliteItems.ts +2 -32
  203. package/src/components/{Alert/Alert.mdx → SyAlert/SyAlert.mdx} +9 -9
  204. package/src/components/{Alert/Alert.stories.ts → SyAlert/SyAlert.stories.ts} +22 -22
  205. package/src/components/{Alert/Alert.vue → SyAlert/SyAlert.vue} +7 -0
  206. package/src/components/SyAlert/constants/ExpertiseLevelEnum.ts +4 -0
  207. package/src/components/{Alert/tests/Alert.spec.ts → SyAlert/tests/SyAlert.spec.ts} +5 -5
  208. package/src/components/{Alert/tests/__snapshots__/Alert.spec.ts.snap → SyAlert/tests/__snapshots__/SyAlert.spec.ts.snap} +2 -2
  209. package/src/components/UserMenuBtn/Accessibilite.mdx +14 -0
  210. package/src/components/UserMenuBtn/Accessibilite.stories.ts +189 -0
  211. package/src/components/UserMenuBtn/AccessibiliteItems.ts +155 -0
  212. package/src/components/UserMenuBtn/UserMenuBtn.mdx +17 -17
  213. package/src/components/UserMenuBtn/UserMenuBtn.stories.ts +121 -19
  214. package/src/components/UserMenuBtn/UserMenuBtn.vue +25 -29
  215. package/src/components/UserMenuBtn/config.ts +1 -1
  216. package/src/components/UserMenuBtn/constants/ExpertiseLevelEnum.ts +4 -0
  217. package/src/components/index.ts +11 -4
  218. package/src/composables/rules/tests/useFieldValidation.spec.ts +60 -58
  219. package/src/composables/rules/useFieldValidation.ts +65 -28
  220. package/src/main.ts +1 -0
  221. package/src/stories/GuideDuDev/CommentUtiliserLesRules.mdx +67 -79
  222. package/src/stories/GuideDuDev/components.stories.ts +5 -5
  223. package/src/stories/GuideDuDev/moduleDeNotification.mdx +1 -1
  224. package/src/stories/Guidelines/Vuetify/Vuetify.mdx +11 -0
  225. package/src/stories/Guidelines/Vuetify/Vuetify.stories.ts +138 -0
  226. package/src/stories/Guidelines/Vuetify/VuetifyItems.ts +350 -0
  227. /package/src/components/{Alert → CookieBanner}/Accessibilite.mdx +0 -0
  228. /package/src/components/{Alert → CookieBanner}/constants/ExpertiseLevelEnum.ts +0 -0
  229. /package/src/components/{Alert → SyAlert}/locales.ts +0 -0
package/dist/style.css CHANGED
@@ -1 +1 @@
1
- .title[data-v-6f216856]{font-size:24px!important}.alt-title[data-v-6f216856]{font-size:20px!important}.body-text[data-v-6f216856]{font-size:16px!important}.link-label[data-v-6f216856]{font-size:14px!important}h1[data-v-6f216856]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-6f216856]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-6f216856]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-6f216856]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-6f216856]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-6f216856]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-6f216856]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-6f216856]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-6f216856]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-6f216856]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-6f216856]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-6f216856]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-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-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-043ca1b1]{font-size:24px!important}.alt-title[data-v-043ca1b1]{font-size:20px!important}.body-text[data-v-043ca1b1]{font-size:16px!important}.link-label[data-v-043ca1b1]{font-size:14px!important}h1[data-v-043ca1b1]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-043ca1b1]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-043ca1b1]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-043ca1b1]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-043ca1b1]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-043ca1b1]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-043ca1b1]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-043ca1b1]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-043ca1b1]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-043ca1b1]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-043ca1b1]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-043ca1b1]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-043ca1b1],.elevation-2[data-v-043ca1b1],.elevation-3[data-v-043ca1b1],.elevation-4[data-v-043ca1b1],.elevation-5[data-v-043ca1b1],.elevation-6[data-v-043ca1b1],.elevation-7[data-v-043ca1b1],.elevation-8[data-v-043ca1b1],.elevation-9[data-v-043ca1b1],.elevation-10[data-v-043ca1b1],.elevation-11[data-v-043ca1b1],.elevation-12[data-v-043ca1b1],.elevation-13[data-v-043ca1b1],.elevation-14[data-v-043ca1b1],.elevation-15[data-v-043ca1b1],.elevation-16[data-v-043ca1b1],.elevation-17[data-v-043ca1b1],.elevation-18[data-v-043ca1b1],.elevation-19[data-v-043ca1b1],.elevation-20[data-v-043ca1b1],.elevation-21[data-v-043ca1b1],.elevation-22[data-v-043ca1b1],.elevation-23[data-v-043ca1b1],.elevation-24[data-v-043ca1b1]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-043ca1b1]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-043ca1b1]{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-043ca1b1]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-043ca1b1]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.vd-user-menu-btn-ctn[data-v-043ca1b1]{position:relative;z-index:1}.vd-user-menu-btn-ctn .v-btn.v-btn--density-default[data-v-043ca1b1]{height:auto!important}.vd-user-menu-btn[data-v-043ca1b1]{outline:none;padding:12px!important}.vd-user-menu-btn[data-v-043ca1b1]:hover:before{background:#000;opacity:.05}.vd-user-menu-btn[data-v-043ca1b1]:focus:before{background:#0c419a;opacity:.08}.vd-user-menu-btn[data-v-043ca1b1]:focus{background:#0c419a14!important}[data-v-043ca1b1] .vd-user-menu-btn:focus>.v-btn__overlay{opacity:0!important}.title[data-v-cfa16d24]{font-size:24px!important}.alt-title[data-v-cfa16d24]{font-size:20px!important}.body-text[data-v-cfa16d24]{font-size:16px!important}.link-label[data-v-cfa16d24]{font-size:14px!important}h1[data-v-cfa16d24]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-cfa16d24]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-cfa16d24]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-cfa16d24]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-cfa16d24]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-cfa16d24]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-cfa16d24]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-cfa16d24]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-cfa16d24]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-cfa16d24]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-cfa16d24]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-cfa16d24]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-cfa16d24],.elevation-2[data-v-cfa16d24],.elevation-3[data-v-cfa16d24],.elevation-4[data-v-cfa16d24],.elevation-5[data-v-cfa16d24],.elevation-6[data-v-cfa16d24],.elevation-7[data-v-cfa16d24],.elevation-8[data-v-cfa16d24],.elevation-9[data-v-cfa16d24],.elevation-10[data-v-cfa16d24],.elevation-11[data-v-cfa16d24],.elevation-12[data-v-cfa16d24],.elevation-13[data-v-cfa16d24],.elevation-14[data-v-cfa16d24],.elevation-15[data-v-cfa16d24],.elevation-16[data-v-cfa16d24],.elevation-17[data-v-cfa16d24],.elevation-18[data-v-cfa16d24],.elevation-19[data-v-cfa16d24],.elevation-20[data-v-cfa16d24],.elevation-21[data-v-cfa16d24],.elevation-22[data-v-cfa16d24],.elevation-23[data-v-cfa16d24],.elevation-24[data-v-cfa16d24]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-cfa16d24]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-cfa16d24]{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-cfa16d24]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-cfa16d24]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.v-input[data-v-cfa16d24]{cursor:pointer;position:relative}.v-list[data-v-cfa16d24]{position:absolute;width:100%;z-index:1;background-color:#fff;min-width:fit-content;max-width:100px;padding:0;box-shadow:0 2px 5px #0000001f,0 2px 10px #00000014;border-radius:4px;overflow-y:auto;max-height:300px}.v-list-item[data-v-cfa16d24]:hover{background-color:#0000000a}[data-v-cfa16d24] .v-list-item[aria-selected=true]{background-color:#00000014}[data-v-cfa16d24] .v-list-item[aria-selected=true] .v-list-item-title{font-weight:700}.v-btn[data-v-cfa16d24],.text-color[data-v-cfa16d24]{color:#0c419a}.title[data-v-7b57a9f5]{font-size:24px!important}.alt-title[data-v-7b57a9f5]{font-size:20px!important}.body-text[data-v-7b57a9f5]{font-size:16px!important}.link-label[data-v-7b57a9f5]{font-size:14px!important}h1[data-v-7b57a9f5]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-7b57a9f5]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-7b57a9f5]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-7b57a9f5]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-7b57a9f5]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-7b57a9f5]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-7b57a9f5]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-7b57a9f5]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-7b57a9f5]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-7b57a9f5]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-7b57a9f5]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-7b57a9f5]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-7b57a9f5],.elevation-2[data-v-7b57a9f5],.elevation-3[data-v-7b57a9f5],.elevation-4[data-v-7b57a9f5],.elevation-5[data-v-7b57a9f5],.elevation-6[data-v-7b57a9f5],.elevation-7[data-v-7b57a9f5],.elevation-8[data-v-7b57a9f5],.elevation-9[data-v-7b57a9f5],.elevation-10[data-v-7b57a9f5],.elevation-11[data-v-7b57a9f5],.elevation-12[data-v-7b57a9f5],.elevation-13[data-v-7b57a9f5],.elevation-14[data-v-7b57a9f5],.elevation-15[data-v-7b57a9f5],.elevation-16[data-v-7b57a9f5],.elevation-17[data-v-7b57a9f5],.elevation-18[data-v-7b57a9f5],.elevation-19[data-v-7b57a9f5],.elevation-20[data-v-7b57a9f5],.elevation-21[data-v-7b57a9f5],.elevation-22[data-v-7b57a9f5],.elevation-23[data-v-7b57a9f5],.elevation-24[data-v-7b57a9f5]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-7b57a9f5]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-7b57a9f5]{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-7b57a9f5]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-7b57a9f5]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.sy-select[data-v-7b57a9f5]{display:flex;flex-direction:column;min-width:225px}.v-field[data-v-7b57a9f5]{position:relative}.v-field--focused .v-icon[data-v-7b57a9f5]{transform:rotateX(180deg)}.v-list[data-v-7b57a9f5]{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-7b57a9f5]:hover{background-color:#0000000a}.v-list-item[aria-selected=true][data-v-7b57a9f5]{background-color:#00000014}.v-icon[data-v-7b57a9f5]{position:absolute;right:10px;color:#434647}[data-v-7b57a9f5] .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-5a62b165]{background:transparent}.vd-header-loading[data-v-5a62b165] .v-skeleton-loader__heading{width:100%;height:100%;border-radius:35px;margin:0;background:rgba(128,128,128,var(--v-border-opacity))}.vd-header-loading.v-skeleton-loader--tile[data-v-5a62b165] .v-skeleton-loader__heading{border-radius:0}[data-v-e625daaf] ul{list-style:none}.title[data-v-111dda07]{font-size:24px!important}.alt-title[data-v-111dda07]{font-size:20px!important}.body-text[data-v-111dda07]{font-size:16px!important}.link-label[data-v-111dda07]{font-size:14px!important}h1[data-v-111dda07]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-111dda07]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-111dda07]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-111dda07]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-111dda07]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-111dda07]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-111dda07]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-111dda07]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-111dda07]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-111dda07]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-111dda07]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-111dda07]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-111dda07],.elevation-2[data-v-111dda07],.elevation-3[data-v-111dda07],.elevation-4[data-v-111dda07],.elevation-5[data-v-111dda07],.elevation-6[data-v-111dda07],.elevation-7[data-v-111dda07],.elevation-8[data-v-111dda07],.elevation-9[data-v-111dda07],.elevation-10[data-v-111dda07],.elevation-11[data-v-111dda07],.elevation-12[data-v-111dda07],.elevation-13[data-v-111dda07],.elevation-14[data-v-111dda07],.elevation-15[data-v-111dda07],.elevation-16[data-v-111dda07],.elevation-17[data-v-111dda07],.elevation-18[data-v-111dda07],.elevation-19[data-v-111dda07],.elevation-20[data-v-111dda07],.elevation-21[data-v-111dda07],.elevation-22[data-v-111dda07],.elevation-23[data-v-111dda07],.elevation-24[data-v-111dda07]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-111dda07]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-111dda07]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-111dda07]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-111dda07]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.v-card__title[data-v-111dda07]>*{line-height:1em}.v-btn--icon[data-v-111dda07]{color:#222324;position:absolute;right:24px}h2[data-v-111dda07]{word-break:break-word;text-wrap:balance}.vd-dialog-box-actions-ctn[data-v-111dda07]{display:flex;flex-direction:column-reverse;justify-content:stretch;gap:16px}@media screen and (min-width: 600px){.vd-dialog-box-actions-ctn[data-v-111dda07]{flex-direction:row}}.vd-download-btn[data-v-ef3f6e33] .v-btn__content{flex-wrap:wrap}.vd-download-btn[data-v-ef3f6e33] .v-icon{flex:none}.outlined-style[data-v-ef3f6e33]{border:1px solid currentColor}.vd-page-container[data-v-773c0ca7]{flex:1}.vd-code[data-v-8c79b790]{font-size:6rem;line-height:6rem;font-weight:400}.title[data-v-82e1e286]{font-size:24px!important}.alt-title[data-v-82e1e286]{font-size:20px!important}.body-text[data-v-82e1e286]{font-size:16px!important}.link-label[data-v-82e1e286]{font-size:14px!important}h1[data-v-82e1e286]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-82e1e286]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-82e1e286]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-82e1e286]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-82e1e286]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-82e1e286]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-82e1e286]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-82e1e286]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-82e1e286]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-82e1e286]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-82e1e286]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-82e1e286]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-82e1e286],.elevation-2[data-v-82e1e286],.elevation-3[data-v-82e1e286],.elevation-4[data-v-82e1e286],.elevation-5[data-v-82e1e286],.elevation-6[data-v-82e1e286],.elevation-7[data-v-82e1e286],.elevation-8[data-v-82e1e286],.elevation-9[data-v-82e1e286],.elevation-10[data-v-82e1e286],.elevation-11[data-v-82e1e286],.elevation-12[data-v-82e1e286],.elevation-13[data-v-82e1e286],.elevation-14[data-v-82e1e286],.elevation-15[data-v-82e1e286],.elevation-16[data-v-82e1e286],.elevation-17[data-v-82e1e286],.elevation-18[data-v-82e1e286],.elevation-19[data-v-82e1e286],.elevation-20[data-v-82e1e286],.elevation-21[data-v-82e1e286],.elevation-22[data-v-82e1e286],.elevation-23[data-v-82e1e286],.elevation-24[data-v-82e1e286]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-82e1e286]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-82e1e286]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-82e1e286]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-82e1e286]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.vd-social-media-links[data-v-82e1e286]{display:flex;flex-direction:column}li[data-v-82e1e286]{list-style:none}.vd-social-media-links-label.text--primary[data-v-82e1e286]{color:#0c419a;font-weight:600}.v-theme--dark .vd-social-media-links-label.text--primary[data-v-82e1e286]{color:#fff}.vd-social-media-links-icon[data-v-82e1e286]{color:#545859}.v-btn--icon[data-v-82e1e286]{width:calc(var(--v-btn-height) + 5px);height:calc(var(--v-btn-height) + 5px);border:0}.v-theme--dark .v-btn--variant-text[data-v-82e1e286]:hover{background:#ffffff1a}@media (min-width: 768px){.vd-social-media-links-label[data-v-82e1e286]{text-align:right}}@media (max-width: 767px){.vd-social-media-links-label[data-v-82e1e286]{text-align:left}}.title[data-v-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-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}.title[data-v-b87d6ac8]{font-size:24px!important}.alt-title[data-v-b87d6ac8]{font-size:20px!important}.body-text[data-v-b87d6ac8]{font-size:16px!important}.link-label[data-v-b87d6ac8]{font-size:14px!important}h1[data-v-b87d6ac8]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-b87d6ac8]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-b87d6ac8]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-b87d6ac8]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-b87d6ac8]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-b87d6ac8]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-b87d6ac8]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-b87d6ac8]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-b87d6ac8]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-b87d6ac8]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-b87d6ac8]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-b87d6ac8]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-b87d6ac8],.elevation-2[data-v-b87d6ac8],.elevation-3[data-v-b87d6ac8],.elevation-4[data-v-b87d6ac8],.elevation-5[data-v-b87d6ac8],.elevation-6[data-v-b87d6ac8],.elevation-7[data-v-b87d6ac8],.elevation-8[data-v-b87d6ac8],.elevation-9[data-v-b87d6ac8],.elevation-10[data-v-b87d6ac8],.elevation-11[data-v-b87d6ac8],.elevation-12[data-v-b87d6ac8],.elevation-13[data-v-b87d6ac8],.elevation-14[data-v-b87d6ac8],.elevation-15[data-v-b87d6ac8],.elevation-16[data-v-b87d6ac8],.elevation-17[data-v-b87d6ac8],.elevation-18[data-v-b87d6ac8],.elevation-19[data-v-b87d6ac8],.elevation-20[data-v-b87d6ac8],.elevation-21[data-v-b87d6ac8],.elevation-22[data-v-b87d6ac8],.elevation-23[data-v-b87d6ac8],.elevation-24[data-v-b87d6ac8]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-b87d6ac8]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-b87d6ac8]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-b87d6ac8]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-b87d6ac8]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.logo[data-v-b87d6ac8]{display:flex;height:52px;align-items:center;color:#0c419a;line-height:1.45;font-family:Cabin,Arial,Helvetica,sans-serif;text-decoration:none;cursor:pointer}.logo[data-v-b87d6ac8] svg{flex-grow:0;flex-shrink:0}.service-title[data-v-b87d6ac8]{font-size:.875rem;font-weight:500}.service-subtitle[data-v-b87d6ac8]{font-size:.875rem;font-weight:400}@media screen and (min-width: 990px){.service-title[data-v-b87d6ac8]{font-size:1.125rem}.service-subtitle[data-v-b87d6ac8]{font-size:.75rem}}.title[data-v-1310f38f]{font-size:24px!important}.alt-title[data-v-1310f38f]{font-size:20px!important}.body-text[data-v-1310f38f]{font-size:16px!important}.link-label[data-v-1310f38f]{font-size:14px!important}h1[data-v-1310f38f]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-1310f38f]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-1310f38f]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-1310f38f]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-1310f38f]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-1310f38f]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-1310f38f]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-1310f38f]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-1310f38f]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-1310f38f]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-1310f38f]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-1310f38f]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-1310f38f],.elevation-2[data-v-1310f38f],.elevation-3[data-v-1310f38f],.elevation-4[data-v-1310f38f],.elevation-5[data-v-1310f38f],.elevation-6[data-v-1310f38f],.elevation-7[data-v-1310f38f],.elevation-8[data-v-1310f38f],.elevation-9[data-v-1310f38f],.elevation-10[data-v-1310f38f],.elevation-11[data-v-1310f38f],.elevation-12[data-v-1310f38f],.elevation-13[data-v-1310f38f],.elevation-14[data-v-1310f38f],.elevation-15[data-v-1310f38f],.elevation-16[data-v-1310f38f],.elevation-17[data-v-1310f38f],.elevation-18[data-v-1310f38f],.elevation-19[data-v-1310f38f],.elevation-20[data-v-1310f38f],.elevation-21[data-v-1310f38f],.elevation-22[data-v-1310f38f],.elevation-23[data-v-1310f38f],.elevation-24[data-v-1310f38f]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-1310f38f]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-1310f38f]{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-1310f38f]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-1310f38f]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.header[data-v-1310f38f]{position:relative;z-index:1}.sticky-header[data-v-1310f38f]{background-color:#fff;width:100%;z-index:1000}.inner-header[data-v-1310f38f]{display:flex;align-items:center;height:77px;max-width:1712px;margin:0 auto;border-bottom:solid 1px #ced9eb}.header-logo[data-v-1310f38f]{margin-left:1rem}.header-side[data-v-1310f38f]{display:flex;align-items:center;margin-left:auto}@media screen and (min-width: 990px){.header-logo[data-v-1310f38f]{margin-left:2rem}.inner-header[data-v-1310f38f]{height:95px}}.title[data-v-9b8f4e67]{font-size:24px!important}.alt-title[data-v-9b8f4e67]{font-size:20px!important}.body-text[data-v-9b8f4e67]{font-size:16px!important}.link-label[data-v-9b8f4e67]{font-size:14px!important}h1[data-v-9b8f4e67]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-9b8f4e67]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-9b8f4e67]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-9b8f4e67]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-9b8f4e67]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-9b8f4e67]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-9b8f4e67]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-9b8f4e67]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-9b8f4e67]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-9b8f4e67]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-9b8f4e67]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-9b8f4e67]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-9b8f4e67],.elevation-2[data-v-9b8f4e67],.elevation-3[data-v-9b8f4e67],.elevation-4[data-v-9b8f4e67],.elevation-5[data-v-9b8f4e67],.elevation-6[data-v-9b8f4e67],.elevation-7[data-v-9b8f4e67],.elevation-8[data-v-9b8f4e67],.elevation-9[data-v-9b8f4e67],.elevation-10[data-v-9b8f4e67],.elevation-11[data-v-9b8f4e67],.elevation-12[data-v-9b8f4e67],.elevation-13[data-v-9b8f4e67],.elevation-14[data-v-9b8f4e67],.elevation-15[data-v-9b8f4e67],.elevation-16[data-v-9b8f4e67],.elevation-17[data-v-9b8f4e67],.elevation-18[data-v-9b8f4e67],.elevation-19[data-v-9b8f4e67],.elevation-20[data-v-9b8f4e67],.elevation-21[data-v-9b8f4e67],.elevation-22[data-v-9b8f4e67],.elevation-23[data-v-9b8f4e67],.elevation-24[data-v-9b8f4e67]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-9b8f4e67]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-9b8f4e67]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-9b8f4e67]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-9b8f4e67]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.header-menu-btn[data-v-9b8f4e67]{text-transform:Capitalize;height:77px;width:82px;display:flex;flex-direction:column;align-items:center;flex-shrink:0;justify-content:center;font-weight:700;background-color:#0c419a;color:#fff;border-bottom:solid 1px #ced9eb;transition:color .15s .1s,background-color .15s .1s,border-bottom .15s .1s}.header-menu-btn[data-v-9b8f4e67]:focus-visible{background-color:#fff;color:#0c419a}.header-menu-btn__open[data-v-9b8f4e67]{background-color:#fff;color:#0c419a;border-color:#fff}@media screen and (max-width: 991px){.header-menu-btn__label[data-v-9b8f4e67]{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}}@media screen and (min-width: 990px){.header-menu-btn[data-v-9b8f4e67]{height:95px;width:95px}}.title[data-v-63b844d1]{font-size:24px!important}.alt-title[data-v-63b844d1]{font-size:20px!important}.body-text[data-v-63b844d1]{font-size:16px!important}.link-label[data-v-63b844d1]{font-size:14px!important}h1[data-v-63b844d1]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-63b844d1]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-63b844d1]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-63b844d1]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-63b844d1]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-63b844d1]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-63b844d1]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-63b844d1]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-63b844d1]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-63b844d1]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-63b844d1]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-63b844d1]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-63b844d1],.elevation-2[data-v-63b844d1],.elevation-3[data-v-63b844d1],.elevation-4[data-v-63b844d1],.elevation-5[data-v-63b844d1],.elevation-6[data-v-63b844d1],.elevation-7[data-v-63b844d1],.elevation-8[data-v-63b844d1],.elevation-9[data-v-63b844d1],.elevation-10[data-v-63b844d1],.elevation-11[data-v-63b844d1],.elevation-12[data-v-63b844d1],.elevation-13[data-v-63b844d1],.elevation-14[data-v-63b844d1],.elevation-15[data-v-63b844d1],.elevation-16[data-v-63b844d1],.elevation-17[data-v-63b844d1],.elevation-18[data-v-63b844d1],.elevation-19[data-v-63b844d1],.elevation-20[data-v-63b844d1],.elevation-21[data-v-63b844d1],.elevation-22[data-v-63b844d1],.elevation-23[data-v-63b844d1],.elevation-24[data-v-63b844d1]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-63b844d1]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-63b844d1]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-63b844d1]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-63b844d1]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.overlay[data-v-63b844d1]{top:0;right:0;bottom:0;left:0;position:fixed;z-index:1000;background-color:#03102580;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px)}.menu-wrapper[data-v-63b844d1]{height:100dvh;background-color:#fff;display:flex;flex-direction:column}.header-menu-wrapper[data-v-63b844d1]{height:calc(100% - 77px);display:grid;position:relative;overflow:auto}.header-menu-wrapper--submenu-open[data-v-63b844d1]{overflow:clip}@media screen and (min-width: 990px){.menu-wrapper[data-v-63b844d1]{position:absolute;background-color:transparent}.header-menu-wrapper[data-v-63b844d1]{width:350px;overflow:visible}.header-menu[data-v-63b844d1]{background-color:#fff;overflow-y:auto;overflow-x:hidden;height:100%}}.menu-enter-active[data-v-63b844d1]{transition:opacity .15s ease-in}.menu-enter-active .header-menu-wrapper[data-v-63b844d1]{transition:transform .1s ease-in}.menu-leave-active[data-v-63b844d1]{transition:opacity .15s ease-out}.menu-leave-active .header-menu-wrapper[data-v-63b844d1]{transition:transform .1s ease-out}.menu-enter-from[data-v-63b844d1],.menu-leave-to[data-v-63b844d1]{opacity:0}@media screen and (min-width: 990px){.menu-enter-from .header-menu-wrapper[data-v-63b844d1],.menu-leave-to .header-menu-wrapper[data-v-63b844d1]{transform:translateY(10px)}}@media (prefers-reduced-motion: reduce){.menu-enter-active[data-v-63b844d1],.menu-leave-active[data-v-63b844d1]{transition:opacity 0s}.menu-enter-from .header-menu-wrapper[data-v-63b844d1],.menu-leave-to .header-menu-wrapper[data-v-63b844d1]{transform:none}}.title[data-v-753dd5aa]{font-size:24px!important}.alt-title[data-v-753dd5aa]{font-size:20px!important}.body-text[data-v-753dd5aa]{font-size:16px!important}.link-label[data-v-753dd5aa]{font-size:14px!important}h1[data-v-753dd5aa]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-753dd5aa]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-753dd5aa]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-753dd5aa]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-753dd5aa]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-753dd5aa]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-753dd5aa]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-753dd5aa]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-753dd5aa]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-753dd5aa]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-753dd5aa]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-753dd5aa]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-753dd5aa],.elevation-2[data-v-753dd5aa],.elevation-3[data-v-753dd5aa],.elevation-4[data-v-753dd5aa],.elevation-5[data-v-753dd5aa],.elevation-6[data-v-753dd5aa],.elevation-7[data-v-753dd5aa],.elevation-8[data-v-753dd5aa],.elevation-9[data-v-753dd5aa],.elevation-10[data-v-753dd5aa],.elevation-11[data-v-753dd5aa],.elevation-12[data-v-753dd5aa],.elevation-13[data-v-753dd5aa],.elevation-14[data-v-753dd5aa],.elevation-15[data-v-753dd5aa],.elevation-16[data-v-753dd5aa],.elevation-17[data-v-753dd5aa],.elevation-18[data-v-753dd5aa],.elevation-19[data-v-753dd5aa],.elevation-20[data-v-753dd5aa],.elevation-21[data-v-753dd5aa],.elevation-22[data-v-753dd5aa],.elevation-23[data-v-753dd5aa],.elevation-24[data-v-753dd5aa]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-753dd5aa]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-753dd5aa]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-753dd5aa]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-753dd5aa]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.header-menu-item[data-v-753dd5aa]{color:#0c419a;list-style-type:none;margin:0;padding:0;min-height:44px;font-weight:700}.header-menu-item[data-v-753dd5aa]>a{display:flex;flex-direction:column;padding:16px 50px 16px 20px;text-decoration:none;color:currentColor}.header-menu-item[data-v-753dd5aa]>a:hover{text-decoration:underline}.header-menu-item[data-v-753dd5aa]>a:visited{color:currentColor}.header-menu-item[data-v-753dd5aa]>a:first-letter{text-transform:uppercase}.header-menu-item[data-v-753dd5aa]:hover{background-color:#0c419a;color:#fff}.header-menu-item[data-v-753dd5aa]:hover>a>*{color:#fff!important}.title[data-v-7c0df756]{font-size:24px!important}.alt-title[data-v-7c0df756]{font-size:20px!important}.body-text[data-v-7c0df756]{font-size:16px!important}.link-label[data-v-7c0df756]{font-size:14px!important}h1[data-v-7c0df756]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-7c0df756]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-7c0df756]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-7c0df756]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-7c0df756]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-7c0df756]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-7c0df756]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-7c0df756]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-7c0df756]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-7c0df756]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-7c0df756]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-7c0df756]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-7c0df756],.elevation-2[data-v-7c0df756],.elevation-3[data-v-7c0df756],.elevation-4[data-v-7c0df756],.elevation-5[data-v-7c0df756],.elevation-6[data-v-7c0df756],.elevation-7[data-v-7c0df756],.elevation-8[data-v-7c0df756],.elevation-9[data-v-7c0df756],.elevation-10[data-v-7c0df756],.elevation-11[data-v-7c0df756],.elevation-12[data-v-7c0df756],.elevation-13[data-v-7c0df756],.elevation-14[data-v-7c0df756],.elevation-15[data-v-7c0df756],.elevation-16[data-v-7c0df756],.elevation-17[data-v-7c0df756],.elevation-18[data-v-7c0df756],.elevation-19[data-v-7c0df756],.elevation-20[data-v-7c0df756],.elevation-21[data-v-7c0df756],.elevation-22[data-v-7c0df756],.elevation-23[data-v-7c0df756],.elevation-24[data-v-7c0df756]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-7c0df756]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-7c0df756]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-7c0df756]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-7c0df756]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.header-menu-section[data-v-7c0df756]{list-style-type:none;padding:0;margin:0}.header-menu-section-title[data-v-7c0df756]{padding:40px 16px 8px 20px;border-bottom:1px solid #e0e0e0;font-size:1.1rem;margin-bottom:8px;color:#212529;text-transform:capitalize;font-weight:700}.title[data-v-e5697195]{font-size:24px!important}.alt-title[data-v-e5697195]{font-size:20px!important}.body-text[data-v-e5697195]{font-size:16px!important}.link-label[data-v-e5697195]{font-size:14px!important}h1[data-v-e5697195]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-e5697195]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-e5697195]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-e5697195]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-e5697195]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-e5697195]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-e5697195]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-e5697195]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-e5697195]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-e5697195]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-e5697195]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-e5697195]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-e5697195],.elevation-2[data-v-e5697195],.elevation-3[data-v-e5697195],.elevation-4[data-v-e5697195],.elevation-5[data-v-e5697195],.elevation-6[data-v-e5697195],.elevation-7[data-v-e5697195],.elevation-8[data-v-e5697195],.elevation-9[data-v-e5697195],.elevation-10[data-v-e5697195],.elevation-11[data-v-e5697195],.elevation-12[data-v-e5697195],.elevation-13[data-v-e5697195],.elevation-14[data-v-e5697195],.elevation-15[data-v-e5697195],.elevation-16[data-v-e5697195],.elevation-17[data-v-e5697195],.elevation-18[data-v-e5697195],.elevation-19[data-v-e5697195],.elevation-20[data-v-e5697195],.elevation-21[data-v-e5697195],.elevation-22[data-v-e5697195],.elevation-23[data-v-e5697195],.elevation-24[data-v-e5697195]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-e5697195]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-e5697195]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-e5697195]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-e5697195]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.sub-menu-btn[data-v-e5697195]{display:flex;justify-content:center;flex-direction:column;width:100%;padding:16px 50px 16px 20px;text-align:left;color:#0c419a}.sub-menu-btn[data-v-e5697195]:hover{background-color:#0c419a;color:#fff;text-decoration:underline}.sub-menu-btn[data-v-e5697195]:hover>*{color:#fff!important}.sub-menu-btn[data-v-e5697195]:first-letter{text-transform:uppercase}.sub-menu-btn__icon[data-v-e5697195]{position:absolute;right:20px}@media screen and (max-width: 989px){.sub-menu--open[data-v-e5697195]{position:absolute;left:0;top:0;width:100%;height:100%;overflow-y:auto;background-color:#fff;padding-top:40px;z-index:10}.sub-menu--child-open[data-v-e5697195]{overflow-y:clip}.sub-menu--open>.sub-menu-btn[data-v-e5697195]{padding:0 16px 8px 40px;border-bottom:1px solid #e0e0e0;color:#000;background-color:transparent}.sub-menu--open>.sub-menu-btn[data-v-e5697195]:hover{color:#000}.sub-menu--open>.sub-menu-btn[data-v-e5697195]:hover>*{color:#000!important}.sub-menu--open>.sub-menu-btn[data-v-e5697195]>.sub-menu-btn__icon{left:10px;right:auto}}@media screen and (min-width: 990px){.sub-menu-btn[data-v-e5697195]{position:relative}.sub-menu--open>.sub-menu-btn[data-v-e5697195]{background-color:#0c419a;color:#fff;transition:color .15s linear,background-color .15s linear}.sub-menu--open>.sub-menu-btn[data-v-e5697195]>*{color:#fff!important}.sub-menu-content-wrapper[data-v-e5697195]{position:absolute;top:0;bottom:0;left:350px}.sub-menu-content[data-v-e5697195]{width:351px;height:100%;background:#f9f9f9;border-left:1px solid #e0e0e0;overflow-y:auto;overflow-x:hidden}.sub-menu-content>.sub-menu--open .sub-menu-content[data-v-e5697195]{left:700px}.sub-menu-content>.sub-menu--open .sub-menu-content>.sub-menu--open .sub-menu-content[data-v-e5697195]{left:1050px}.slide-fade-enter-active[data-v-e5697195]{transition:opacity .17s ease-out,transform .17s ease-out}.slide-fade-leave-active[data-v-e5697195]{transition:opacity .08s ease-in,transform .08s ease-in}.slide-fade-enter-from[data-v-e5697195],.slide-fade-leave-to[data-v-e5697195]{opacity:0;transform:translate(-10px)}}@media screen and (min-width: 990px) and (prefers-reduced-motion){.slide-fade-enter-active[data-v-e5697195],.slide-fade-leave-active[data-v-e5697195]{transition:none}}.horizontal-menu[data-v-685507b5]{display:flex;align-items:center}.horizontal-menu__tabs[data-v-685507b5]{flex:1 1 0}.horizontal-menu__item[data-v-685507b5]{cursor:pointer}.horizontal-menu__item-link[data-v-685507b5]{font-size:.875rem;font-weight:700}.v-tab-item--selected span[data-v-685507b5]{color:#fff}.inner-vertical-menu[data-v-64e98667]{display:flex;flex-direction:column;height:100%}.inner-vertical-menu__main-content[data-v-64e98667]{flex:1}.title[data-v-6a571404]{font-size:24px!important}.alt-title[data-v-6a571404]{font-size:20px!important}.body-text[data-v-6a571404]{font-size:16px!important}.link-label[data-v-6a571404]{font-size:14px!important}h1[data-v-6a571404]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-6a571404]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-6a571404]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-6a571404]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-6a571404]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-6a571404]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-6a571404]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-6a571404]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-6a571404]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-6a571404]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-6a571404]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-6a571404]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-6a571404],.elevation-2[data-v-6a571404],.elevation-3[data-v-6a571404],.elevation-4[data-v-6a571404],.elevation-5[data-v-6a571404],.elevation-6[data-v-6a571404],.elevation-7[data-v-6a571404],.elevation-8[data-v-6a571404],.elevation-9[data-v-6a571404],.elevation-10[data-v-6a571404],.elevation-11[data-v-6a571404],.elevation-12[data-v-6a571404],.elevation-13[data-v-6a571404],.elevation-14[data-v-6a571404],.elevation-15[data-v-6a571404],.elevation-16[data-v-6a571404],.elevation-17[data-v-6a571404],.elevation-18[data-v-6a571404],.elevation-19[data-v-6a571404],.elevation-20[data-v-6a571404],.elevation-21[data-v-6a571404],.elevation-22[data-v-6a571404],.elevation-23[data-v-6a571404],.elevation-24[data-v-6a571404]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-6a571404]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-6a571404]{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-6a571404]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-6a571404]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.toolbar[data-v-6a571404]{background:#e7ecf5;position:relative;display:flex;align-items:center;justify-content:center;z-index:100}.toolbar .container[data-v-6a571404]{width:100%;max-height:45px;max-width:1712px;display:flex;align-items:center;justify-content:space-between}@media (max-width: 768px){.toolbar .container[data-v-6a571404]{max-height:41px}}.toolbar .container[data-v-6a571404] ul{display:flex;align-items:center;justify-content:flex-start;list-style:none;text-decoration:none}.toolbar .container[data-v-6a571404] ul li{text-align:center}.toolbar .container[data-v-6a571404] ul>li>a{display:block;color:#07275c;text-decoration:none;padding:10px 16px;cursor:pointer}.toolbar .container[data-v-6a571404] ul>li>a:hover{text-decoration:underline}@media (max-width: 768px){.toolbar .container[data-v-6a571404] ul>li>a{font-size:12px}}.toolbar #left-menu ul>li>a[data-v-6a571404]{font-weight:700;color:#07275c}.toolbar #left-menu ul>li>a[data-v-6a571404]:hover{text-decoration:none}.toolbar #left-menu li[data-v-6a571404]:first-child{min-width:95px;background:transparent}@media (max-width: 990px){.toolbar #left-menu li[data-v-6a571404]:first-child{min-width:82px}}.toolbar #left-menu li[data-v-6a571404]:nth-child(2){min-width:260px;z-index:2}@media (max-width: 768px){.toolbar #left-menu li[data-v-6a571404]:nth-child(2){min-width:152px}}.toolbar #left-menu li[data-v-6a571404]:nth-child(3){background:transparent}.toolbar #left-menu li:first-child a[data-v-6a571404]:hover,.toolbar #left-menu li:first-child.active[data-v-6a571404]{background:#ed76b3}.toolbar #left-menu li:nth-child(2) a[data-v-6a571404]:hover,.toolbar #left-menu .highlight[data-v-6a571404]{background:#66c9ec}.toolbar #left-menu li:nth-child(3) a[data-v-6a571404]:hover,.toolbar #left-menu li:nth-child(3).active[data-v-6a571404]{background:#f0b323}@media (max-width: 1000px){.toolbar #right-menu[data-v-6a571404]{display:none}}.toolbar #right-menu ul[data-v-6a571404]{white-space:nowrap;overflow:hidden}.toolbar #right-menu ul li[data-v-6a571404]{display:inline-block}.toolbar[data-v-6a571404] .v-input .v-input__details{display:none}.toolbar[data-v-6a571404] .v-input .v-input__control{font-weight:700}.toolbar[data-v-6a571404] .v-input .v-input__control .text-color{color:#051a3e!important}.toolbar[data-v-6a571404] .v-input .v-input__control .v-icon{margin-left:10px}.toolbar[data-v-6a571404] .v-input .v-input__control .custom-select{display:flex;justify-content:space-between;width:100%}.toolbar[data-v-6a571404] .v-input .v-input__control .custom-select span{max-width:260px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}@media (max-width: 768px){.toolbar[data-v-6a571404] .v-input .v-input__control .custom-select span{max-width:182px}}@media (max-width: 768px){.toolbar[data-v-6a571404] .v-input .v-input__control{font-size:12px}}.toolbar[data-v-6a571404] .v-input .v-list{top:34px!important;left:-16px!important;text-align:left;min-width:260px;max-width:fit-content!important;border-radius:0}@media (max-width: 768px){.toolbar[data-v-6a571404] .v-input .v-list{position:fixed;top:38px!important;left:0!important;min-width:100%!important;box-shadow:none!important}}.toolbar[data-v-6a571404] .v-input .v-list .v-list-item--density-default.v-list-item--one-line{min-height:40px}.toolbar .overlay[data-v-6a571404]{position:fixed;display:block;top:0;left:0;width:100%;height:100%;background-color:#03102580;cursor:default;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px);z-index:1}@media (max-width: 768px){.toolbar .overlay[data-v-6a571404]{display:none}}.right-menu-item[data-v-6a571404]{color:#051a3e}.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-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-logo-brand-section .vd-title-container[data-v-ca95c6a8]{overflow:hidden}.vd-logo-brand-section[data-v-ca95c6a8] .vd-title{line-height:1.45!important}.vd-logo-brand-section .vd-compte-entreprise-title[data-v-ca95c6a8]{font-weight:700!important}.vd-logo-brand-section .vd-compte-entreprise-title span[data-v-ca95c6a8]{color:#cd545b}.vd-logo-brand-section[data-v-ca95c6a8] img{width:auto;height:100%;flex:none}.vd-logo-brand-section svg[data-v-ca95c6a8],.vd-logo-brand-section .vd-home-link[data-v-ca95c6a8]{flex:none}.vd-logo-brand-section .vd-home-link[data-v-ca95c6a8]{cursor:pointer}img[data-v-aea9e609],img[data-v-1ff99a74]{max-height:290px}.title[data-v-93d35fbf]{font-size:24px!important}.alt-title[data-v-93d35fbf]{font-size:20px!important}.body-text[data-v-93d35fbf]{font-size:16px!important}.link-label[data-v-93d35fbf]{font-size:14px!important}h1[data-v-93d35fbf]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-93d35fbf]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-93d35fbf]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-93d35fbf]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-93d35fbf]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-93d35fbf]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-93d35fbf]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-93d35fbf]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-93d35fbf]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-93d35fbf]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-93d35fbf]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-93d35fbf]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-93d35fbf],.elevation-2[data-v-93d35fbf],.elevation-3[data-v-93d35fbf],.elevation-4[data-v-93d35fbf],.elevation-5[data-v-93d35fbf],.elevation-6[data-v-93d35fbf],.elevation-7[data-v-93d35fbf],.elevation-8[data-v-93d35fbf],.elevation-9[data-v-93d35fbf],.elevation-10[data-v-93d35fbf],.elevation-11[data-v-93d35fbf],.elevation-12[data-v-93d35fbf],.elevation-13[data-v-93d35fbf],.elevation-14[data-v-93d35fbf],.elevation-15[data-v-93d35fbf],.elevation-16[data-v-93d35fbf],.elevation-17[data-v-93d35fbf],.elevation-18[data-v-93d35fbf],.elevation-19[data-v-93d35fbf],.elevation-20[data-v-93d35fbf],.elevation-21[data-v-93d35fbf],.elevation-22[data-v-93d35fbf],.elevation-23[data-v-93d35fbf],.elevation-24[data-v-93d35fbf]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-93d35fbf]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-93d35fbf]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-93d35fbf]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-93d35fbf]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.vd-notification-content[data-v-93d35fbf]{display:flex;align-items:center}.vd-notification-bar[data-v-93d35fbf] .v-snack__wrapper{padding:16px;min-width:0;max-width:none}[data-v-93d35fbf] .v-snackbar__content{padding:16px!important}[data-v-93d35fbf] .v-snackbar__actions{margin-inline-end:10px}.vd-notification-bar.v-snackbar--vertical[data-v-93d35fbf] .v-snackbar--vertical .v-snackbar__wrapper .v-snackbar__actions{width:100%!important;align-self:auto}.vd-notification-bar.v-snackbar--vertical[data-v-93d35fbf] .v-snack__wrapper{align-items:stretch;flex-direction:row}.vd-notification-bar.v-snackbar--vertical[data-v-93d35fbf] .v-snack__action{align-self:stretch;align-items:stretch;flex-direction:column}.vd-notification-bar.v-snackbar--vertical[data-v-93d35fbf] .v-snackbar__content{margin:0;width:100%;display:flex}.vd-notification-bar.v-snackbar--vertical[data-v-93d35fbf] .vd-notification-content{flex-direction:column;display:flex}.long-text[data-v-93d35fbf] .v-snackbar__actions{width:98%!important}.short-text[data-v-93d35fbf] .v-snackbar__actions{width:48%!important}.action-section-longText[data-v-93d35fbf]{justify-content:space-around}.action-section-shortText[data-v-93d35fbf]{justify-content:end!important}.phone-field-container[data-v-5fb66c52]{display:flex;flex-direction:column;align-items:flex-start;width:100%}.phoneField[data-v-5fb66c52]{width:100%}.custom-select[data-v-5fb66c52]{width:30%}@media (min-width: 600px){.phone-field-container[data-v-5fb66c52]{flex-direction:row;align-items:center}.custom-select[data-v-5fb66c52]{margin-right:1rem;margin-bottom:0;min-width:144px}.phoneField[data-v-5fb66c52]{min-width:350px}}[data-v-5fb66c52] .v-list{position:absolute;left:inherit!important;margin-top:58px;background-color:#fff;max-height:300px;padding:0;box-shadow:0 2px 5px #0000001f,0 2px 10px #00000014;border-radius:4px;overflow-y:auto;z-index:2}.title[data-v-2bd5b004]{font-size:24px!important}.alt-title[data-v-2bd5b004]{font-size:20px!important}.body-text[data-v-2bd5b004]{font-size:16px!important}.link-label[data-v-2bd5b004]{font-size:14px!important}h1[data-v-2bd5b004]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-2bd5b004]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-2bd5b004]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-2bd5b004]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-2bd5b004]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-2bd5b004]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-2bd5b004]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-2bd5b004]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-2bd5b004]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-2bd5b004]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-2bd5b004]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-2bd5b004]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-2bd5b004],.elevation-2[data-v-2bd5b004],.elevation-3[data-v-2bd5b004],.elevation-4[data-v-2bd5b004],.elevation-5[data-v-2bd5b004],.elevation-6[data-v-2bd5b004],.elevation-7[data-v-2bd5b004],.elevation-8[data-v-2bd5b004],.elevation-9[data-v-2bd5b004],.elevation-10[data-v-2bd5b004],.elevation-11[data-v-2bd5b004],.elevation-12[data-v-2bd5b004],.elevation-13[data-v-2bd5b004],.elevation-14[data-v-2bd5b004],.elevation-15[data-v-2bd5b004],.elevation-16[data-v-2bd5b004],.elevation-17[data-v-2bd5b004],.elevation-18[data-v-2bd5b004],.elevation-19[data-v-2bd5b004],.elevation-20[data-v-2bd5b004],.elevation-21[data-v-2bd5b004],.elevation-22[data-v-2bd5b004],.elevation-23[data-v-2bd5b004],.elevation-24[data-v-2bd5b004]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-2bd5b004]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-2bd5b004]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-2bd5b004]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-2bd5b004]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.vd-skip-link[data-v-2bd5b004]{z-index:150;position:fixed;top:0;right:0;transition:none;width:100%;background:#fff;outline:none;border:2px solid #051a3e}.vd-sub-header[data-v-93d57abf]{overflow-x:auto}.vd-sub-header-back-btn[data-v-93d57abf]{margin:0 -6px}.vd-data-list-group[data-v-93d57abf],.vd-sub-header-informations[data-v-93d57abf]{max-width:none}.vd-data-list-group[data-v-93d57abf] .vd-data-list{max-width:200px}.vd-data-list-group[data-v-93d57abf] .vd-data-list:not(:last-child){margin-right:80px!important}.vd-data-list-group[data-v-93d57abf] .vd-data-list .vd-key{display:inline-block;font-size:.75rem!important}.vd-data-list-group[data-v-93d57abf] .vd-data-list .vd-data-list-item-label{color:#ffffffb3!important}.vd-data-list-group[data-v-93d57abf] .vd-data-list .vd-data-list-item-action-btn{color:#fff!important}.vd-subheader-loading[data-v-93d57abf]{background:transparent}.vd-subheader-loading[data-v-93d57abf] .v-skeleton-loader__button{margin:0;min-height:28px;height:auto;background:rgba(255,255,255,var(--v-border-opacity))}@use "@/assets/tokens.scss";.vd-user-icon[data-v-d84e4110]{width:40px;height:40px;background:tokens.$grey-lighten-90;border-radius:50%}.vd-user-icon svg[data-v-d84e4110],.vd-user-icon .v-icon__svg[data-v-d84e4110]{width:24px;height:24px}
1
+ .title[data-v-d21449f5]{font-size:24px!important}.alt-title[data-v-d21449f5]{font-size:20px!important}.body-text[data-v-d21449f5]{font-size:16px!important}.link-label[data-v-d21449f5]{font-size:14px!important}h1[data-v-d21449f5]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-d21449f5]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-d21449f5]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-d21449f5]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-d21449f5]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-d21449f5]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-d21449f5]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-d21449f5]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-d21449f5]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-d21449f5]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-d21449f5]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-d21449f5]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-d21449f5],.elevation-2[data-v-d21449f5],.elevation-3[data-v-d21449f5],.elevation-4[data-v-d21449f5],.elevation-5[data-v-d21449f5],.elevation-6[data-v-d21449f5],.elevation-7[data-v-d21449f5],.elevation-8[data-v-d21449f5],.elevation-9[data-v-d21449f5],.elevation-10[data-v-d21449f5],.elevation-11[data-v-d21449f5],.elevation-12[data-v-d21449f5],.elevation-13[data-v-d21449f5],.elevation-14[data-v-d21449f5],.elevation-15[data-v-d21449f5],.elevation-16[data-v-d21449f5],.elevation-17[data-v-d21449f5],.elevation-18[data-v-d21449f5],.elevation-19[data-v-d21449f5],.elevation-20[data-v-d21449f5],.elevation-21[data-v-d21449f5],.elevation-22[data-v-d21449f5],.elevation-23[data-v-d21449f5],.elevation-24[data-v-d21449f5]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-d21449f5]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-d21449f5]{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-d21449f5]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-d21449f5]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.alert[data-v-d21449f5]{padding:16px}.alert-icon[data-v-d21449f5]{border-radius:50%}[data-v-d21449f5] .v-alert__underlay{display:none}[data-v-d21449f5] .v-alert__close{align-self:center}[data-v-d21449f5] .v-btn--variant-text .v-btn__overlay{background:transparent!important}.alert-icon[data-v-d21449f5] .v-icon__svg{height:1.5rem!important}.alert-close-btn[data-v-d21449f5]{cursor:pointer;line-height:0}.alert-close-btn .v-btn__overlay[data-v-d21449f5]{display:none}.v-btn[data-v-d21449f5]{text-transform:none;font-weight:700;font-size:.75rem;letter-spacing:normal}@media screen and (max-width: 440px){.alert[data-v-d21449f5]{display:flex;flex-direction:column;background-color:#fff}.alert[data-v-d21449f5] .v-alert__content{align-self:flex-start!important;margin-top:24px}.alert[data-v-d21449f5] .v-alert__close{margin-top:16px;align-self:flex-end}.alert .v-alert__prepend>.v-icon[data-v-d21449f5]{background:none!important}}@media screen and (min-width: 441px){.alert .alert-icon[data-v-d21449f5]{width:3.5rem!important;height:3.5rem!important;display:grid;place-items:center}}.v-alert.alert--warning.v-alert--variant-tonal[data-v-d21449f5]{background:#fcf0d3!important;color:#222324!important}.v-alert.alert--warning.v-alert--variant-tonal[data-v-d21449f5] .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-d21449f5]{background:transparent!important}.v-alert.alert--warning.v-alert--variant-outlined[data-v-d21449f5] .v-alert__border{border-color:#60480e!important;opacity:1!important}.v-alert.alert--warning .v-alert__prepend>.v-icon[data-v-d21449f5],.v-alert.text-warning .v-alert__prepend>.v-icon[data-v-d21449f5]{background:#fdf7e9}.v-alert.alert--warning .v-alert__prepend>.v-icon[data-v-d21449f5] svg,.v-alert.text-warning .v-alert__prepend>.v-icon[data-v-d21449f5] svg{fill:#60480e}.v-alert.text-warning[data-v-d21449f5]{color:#60480e!important;border-color:#60480e!important}.v-alert.alert--success.v-alert--variant-tonal[data-v-d21449f5]{background:#cceee8!important;color:#222324!important}.v-alert.alert--success.v-alert--variant-tonal[data-v-d21449f5] .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-d21449f5]{background:transparent!important}.v-alert.alert--success.v-alert--variant-outlined[data-v-d21449f5] .v-alert__border{border-color:#224e2d!important;opacity:1!important}.v-alert.alert--success .v-alert__prepend>.v-icon[data-v-d21449f5],.v-alert.text-success .v-alert__prepend>.v-icon[data-v-d21449f5]{background:#e5f7f4}.v-alert.alert--success .v-alert__prepend>.v-icon[data-v-d21449f5] svg,.v-alert.text-success .v-alert__prepend>.v-icon[data-v-d21449f5] svg{fill:#224e2d}.v-alert.text-success[data-v-d21449f5]{color:#224e2d!important;border-color:#224e2d!important}.v-alert.alert--error.v-alert--variant-tonal[data-v-d21449f5]{background:#f9dcd7!important;color:#222324!important}.v-alert.alert--error.v-alert--variant-tonal[data-v-d21449f5] .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-d21449f5]{background:transparent!important}.v-alert.alert--error.v-alert--variant-outlined[data-v-d21449f5] .v-alert__border{border-color:#b33f2e!important;opacity:1!important}.v-alert.alert--error .v-alert__prepend>.v-icon[data-v-d21449f5],.v-alert.text-error .v-alert__prepend>.v-icon[data-v-d21449f5]{background:#fcedeb}.v-alert.alert--error .v-alert__prepend>.v-icon[data-v-d21449f5] svg,.v-alert.text-error .v-alert__prepend>.v-icon[data-v-d21449f5] svg{fill:#b33f2e}.v-alert.text-error[data-v-d21449f5]{color:#b33f2e!important;border-color:#b33f2e!important}.v-alert.alert--info.v-alert--variant-tonal[data-v-d21449f5]{background:#ced9eb!important;color:#222324!important}.v-alert.alert--info.v-alert--variant-tonal[data-v-d21449f5] .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-d21449f5]{background:transparent!important}.v-alert.alert--info.v-alert--variant-outlined[data-v-d21449f5] .v-alert__border{border-color:#0c419a!important;opacity:1!important}.v-alert.alert--info .v-alert__prepend>.v-icon[data-v-d21449f5],.v-alert.text-info .v-alert__prepend>.v-icon[data-v-d21449f5]{background:#e7ecf5}.v-alert.alert--info .v-alert__prepend>.v-icon[data-v-d21449f5] svg,.v-alert.text-info .v-alert__prepend>.v-icon[data-v-d21449f5] svg{fill:#0c419a}.v-alert.text-info[data-v-d21449f5]{color:#0c419a!important;border-color:#0c419a!important}.v-btn.v-theme--light[data-v-04e68a28] .v-btn__underlay,.v-btn.v-theme--light[data-v-04e68a28] .v-btn__overlay{display:none}.vd-back-to-top-btn[data-v-c019b012]{position:sticky;z-index:999;opacity:1;float:right}.v-btn--variant-outlined[data-v-c019b012]{background:#fff}.vd-panel[data-v-8456c2b9]{background-color:transparent}.vd-panel-title[data-v-8456c2b9] .v-expansion-panel-title__overlay{background:transparent!important}.vd-panel-text[data-v-8456c2b9] .v-expansion-panel-text__wrapper{padding:0}li[data-v-8456c2b9]{list-style:none}a[data-v-8456c2b9]{transition:.15s;padding-top:1px;border-bottom:1px solid transparent;color:#000}a[data-v-8456c2b9]:hover,a[data-v-8456c2b9]:focus{border-color:currentColor}.v-theme--dark a[data-v-8456c2b9]{color:#fff}.vd-collapse-list a[data-v-8456c2b9]{color:#000}.vd-collapse-list[data-v-8456c2b9] .text-subtitle-1{font-size:1.125rem!important;letter-spacing:.0015em!important;line-height:1.75rem}.vd-collapse-list.theme--dark[data-v-8456c2b9] h4,.vd-collapse-list.theme--dark[data-v-8456c2b9] ul,.vd-collapse-list.theme--dark[data-v-8456c2b9] a,.vd-collapse-list.theme--dark[data-v-8456c2b9] button{color:#fff!important}.vd-collapse-list-mobile[data-v-8456c2b9] .text-subtitle-2{font-size:1rem!important;letter-spacing:.001em!important;line-height:1.375rem;font-weight:600}.vd-collapse-list-mobile[data-v-8456c2b9] .v-icon{color:#0000008a!important}.vd-collapse-list-mobile.theme--dark[data-v-8456c2b9] button{color:#fff!important}.vd-collapse-list-mobile[data-v-8456c2b9] button{color:red!important}.title{font-size:24px!important}.alt-title{font-size:20px!important}.body-text{font-size:16px!important}.link-label{font-size:14px!important}h1{font-size:32px!important;line-height:130%!important}.h1-bold{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2{font-size:28px!important;line-height:130%!important}.h2-bold{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3{font-size:24px!important;line-height:130%!important}.h3-bold{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4{font-size:20px!important;line-height:130%!important}.h4-bold{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1{font-size:40px!important;line-height:130%!important}.display-1-bold{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2{font-size:30px!important;line-height:130%!important}.display-2-bold{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1,.elevation-2,.elevation-3,.elevation-4,.elevation-5,.elevation-6,.elevation-7,.elevation-8,.elevation-9,.elevation-10,.elevation-11,.elevation-12,.elevation-13,.elevation-14,.elevation-15,.elevation-16,.elevation-17,.elevation-18,.elevation-19,.elevation-20,.elevation-21,.elevation-22,.elevation-23,.elevation-24{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.vd-copy-tooltip-menu{padding:6px 16px;box-shadow:none;margin-top:2px;background:#545859f2;color:#fff}.v-btn--icon .v-icon{color:#76797a}.title[data-v-ad6690a5]{font-size:24px!important}.alt-title[data-v-ad6690a5]{font-size:20px!important}.body-text[data-v-ad6690a5]{font-size:16px!important}.link-label[data-v-ad6690a5]{font-size:14px!important}h1[data-v-ad6690a5]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-ad6690a5]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-ad6690a5]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-ad6690a5]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-ad6690a5]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-ad6690a5]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-ad6690a5]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-ad6690a5]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-ad6690a5]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-ad6690a5]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-ad6690a5]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-ad6690a5]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-ad6690a5],.elevation-2[data-v-ad6690a5],.elevation-3[data-v-ad6690a5],.elevation-4[data-v-ad6690a5],.elevation-5[data-v-ad6690a5],.elevation-6[data-v-ad6690a5],.elevation-7[data-v-ad6690a5],.elevation-8[data-v-ad6690a5],.elevation-9[data-v-ad6690a5],.elevation-10[data-v-ad6690a5],.elevation-11[data-v-ad6690a5],.elevation-12[data-v-ad6690a5],.elevation-13[data-v-ad6690a5],.elevation-14[data-v-ad6690a5],.elevation-15[data-v-ad6690a5],.elevation-16[data-v-ad6690a5],.elevation-17[data-v-ad6690a5],.elevation-18[data-v-ad6690a5],.elevation-19[data-v-ad6690a5],.elevation-20[data-v-ad6690a5],.elevation-21[data-v-ad6690a5],.elevation-22[data-v-ad6690a5],.elevation-23[data-v-ad6690a5],.elevation-24[data-v-ad6690a5]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-ad6690a5]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-ad6690a5]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-ad6690a5]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-ad6690a5]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.vd-user-menu-btn-ctn[data-v-ad6690a5]{position:relative;z-index:1}.vd-user-menu-btn-ctn .v-btn.v-btn--density-default[data-v-ad6690a5]{height:auto!important}.vd-user-menu-btn-ctn .v-btn[data-v-ad6690a5]{text-transform:none!important}.vd-user-menu-btn[data-v-ad6690a5]{outline:none;padding:12px!important}.vd-user-menu-btn[data-v-ad6690a5]:hover:before{background:#000;opacity:.05}.vd-user-menu-btn[data-v-ad6690a5]:focus:before{background:#0c419a;opacity:.08}.vd-user-menu-btn[data-v-ad6690a5]:focus{background:#0c419a14!important}[data-v-ad6690a5] .vd-user-menu-btn:focus>.v-btn__overlay{opacity:0!important}.title[data-v-12145ca1]{font-size:24px!important}.alt-title[data-v-12145ca1]{font-size:20px!important}.body-text[data-v-12145ca1]{font-size:16px!important}.link-label[data-v-12145ca1]{font-size:14px!important}h1[data-v-12145ca1]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-12145ca1]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-12145ca1]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-12145ca1]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-12145ca1]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-12145ca1]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-12145ca1]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-12145ca1]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-12145ca1]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-12145ca1]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-12145ca1]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-12145ca1]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-12145ca1],.elevation-2[data-v-12145ca1],.elevation-3[data-v-12145ca1],.elevation-4[data-v-12145ca1],.elevation-5[data-v-12145ca1],.elevation-6[data-v-12145ca1],.elevation-7[data-v-12145ca1],.elevation-8[data-v-12145ca1],.elevation-9[data-v-12145ca1],.elevation-10[data-v-12145ca1],.elevation-11[data-v-12145ca1],.elevation-12[data-v-12145ca1],.elevation-13[data-v-12145ca1],.elevation-14[data-v-12145ca1],.elevation-15[data-v-12145ca1],.elevation-16[data-v-12145ca1],.elevation-17[data-v-12145ca1],.elevation-18[data-v-12145ca1],.elevation-19[data-v-12145ca1],.elevation-20[data-v-12145ca1],.elevation-21[data-v-12145ca1],.elevation-22[data-v-12145ca1],.elevation-23[data-v-12145ca1],.elevation-24[data-v-12145ca1]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-12145ca1]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-12145ca1]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-12145ca1]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-12145ca1]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.sy-input-select[data-v-12145ca1]{text-transform:none!important;font-size:16px}.v-input[data-v-12145ca1]{cursor:pointer;position:relative}.v-list[data-v-12145ca1]{position:absolute;width:100%;z-index:1;background-color:#fff;min-width:fit-content;max-width:100px;padding:0;box-shadow:0 2px 5px #0000001f,0 2px 10px #00000014;border-radius:4px;overflow-y:auto;max-height:300px}.v-list-item[data-v-12145ca1]:hover{background-color:#0000000a}[data-v-12145ca1] .v-list-item[aria-selected=true]{background-color:#00000014}[data-v-12145ca1] .v-list-item[aria-selected=true] .v-list-item-title{font-weight:700}.error[data-v-12145ca1]{border-color:#b33f2e}.v-btn[data-v-12145ca1],.text-color[data-v-12145ca1]{color:#0c419a}.title[data-v-ef2339e7]{font-size:24px!important}.alt-title[data-v-ef2339e7]{font-size:20px!important}.body-text[data-v-ef2339e7]{font-size:16px!important}.link-label[data-v-ef2339e7]{font-size:14px!important}h1[data-v-ef2339e7]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-ef2339e7]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-ef2339e7]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-ef2339e7]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-ef2339e7]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-ef2339e7]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-ef2339e7]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-ef2339e7]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-ef2339e7]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-ef2339e7]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-ef2339e7]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-ef2339e7]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-ef2339e7],.elevation-2[data-v-ef2339e7],.elevation-3[data-v-ef2339e7],.elevation-4[data-v-ef2339e7],.elevation-5[data-v-ef2339e7],.elevation-6[data-v-ef2339e7],.elevation-7[data-v-ef2339e7],.elevation-8[data-v-ef2339e7],.elevation-9[data-v-ef2339e7],.elevation-10[data-v-ef2339e7],.elevation-11[data-v-ef2339e7],.elevation-12[data-v-ef2339e7],.elevation-13[data-v-ef2339e7],.elevation-14[data-v-ef2339e7],.elevation-15[data-v-ef2339e7],.elevation-16[data-v-ef2339e7],.elevation-17[data-v-ef2339e7],.elevation-18[data-v-ef2339e7],.elevation-19[data-v-ef2339e7],.elevation-20[data-v-ef2339e7],.elevation-21[data-v-ef2339e7],.elevation-22[data-v-ef2339e7],.elevation-23[data-v-ef2339e7],.elevation-24[data-v-ef2339e7]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-ef2339e7]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-ef2339e7]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-ef2339e7]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-ef2339e7]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.sy-select[data-v-ef2339e7]{display:flex;flex-direction:column}.v-field[data-v-ef2339e7]{position:relative}.v-field--focused .v-icon.arrow[data-v-ef2339e7]{transform:rotateX(180deg)}.v-list[data-v-ef2339e7]{position:absolute;left:inherit!important;margin-top:-22px;background-color:#fff;max-height:300px;padding:0;box-shadow:0 2px 5px #0000001f,0 2px 10px #00000014;border-radius:4px;overflow-y:auto;z-index:2}.v-list-item[data-v-ef2339e7]:hover{background-color:#0000000a}.v-list-item[aria-selected=true][data-v-ef2339e7]{background-color:#00000014}.v-icon[data-v-ef2339e7]{position:absolute;right:10px;color:#434647}[data-v-ef2339e7] .v-field__input{color:#434647}.hidden-label[data-v-ef2339e7]{visibility:hidden;position:absolute;white-space:nowrap}.vd-row[data-v-ac4bdcda]{display:flex;flex-wrap:wrap}.vd-row .vd-data-list-item-label[data-v-ac4bdcda]{align-self:center}.vd-row .vd-data-list-item-label[data-v-ac4bdcda]:after{content:":";margin:0 4px}.vd-data-list-item-action-btn.v-btn[data-v-ac4bdcda]{min-width:0;margin:0 -1px}.v-icon.v-theme--light[data-v-ac4bdcda]{color:#0000008a}.vd-header-loading[data-v-5a62b165]{background:transparent}.vd-header-loading[data-v-5a62b165] .v-skeleton-loader__heading{width:100%;height:100%;border-radius:35px;margin:0;background:rgba(128,128,128,var(--v-border-opacity))}.vd-header-loading.v-skeleton-loader--tile[data-v-5a62b165] .v-skeleton-loader__heading{border-radius:0}[data-v-e625daaf] ul{list-style:none}.title[data-v-111dda07]{font-size:24px!important}.alt-title[data-v-111dda07]{font-size:20px!important}.body-text[data-v-111dda07]{font-size:16px!important}.link-label[data-v-111dda07]{font-size:14px!important}h1[data-v-111dda07]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-111dda07]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-111dda07]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-111dda07]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-111dda07]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-111dda07]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-111dda07]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-111dda07]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-111dda07]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-111dda07]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-111dda07]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-111dda07]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-111dda07],.elevation-2[data-v-111dda07],.elevation-3[data-v-111dda07],.elevation-4[data-v-111dda07],.elevation-5[data-v-111dda07],.elevation-6[data-v-111dda07],.elevation-7[data-v-111dda07],.elevation-8[data-v-111dda07],.elevation-9[data-v-111dda07],.elevation-10[data-v-111dda07],.elevation-11[data-v-111dda07],.elevation-12[data-v-111dda07],.elevation-13[data-v-111dda07],.elevation-14[data-v-111dda07],.elevation-15[data-v-111dda07],.elevation-16[data-v-111dda07],.elevation-17[data-v-111dda07],.elevation-18[data-v-111dda07],.elevation-19[data-v-111dda07],.elevation-20[data-v-111dda07],.elevation-21[data-v-111dda07],.elevation-22[data-v-111dda07],.elevation-23[data-v-111dda07],.elevation-24[data-v-111dda07]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-111dda07]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-111dda07]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-111dda07]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-111dda07]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.v-card__title[data-v-111dda07]>*{line-height:1em}.v-btn--icon[data-v-111dda07]{color:#222324;position:absolute;right:24px}h2[data-v-111dda07]{word-break:break-word;text-wrap:balance}.vd-dialog-box-actions-ctn[data-v-111dda07]{display:flex;flex-direction:column-reverse;justify-content:stretch;gap:16px}@media screen and (min-width: 600px){.vd-dialog-box-actions-ctn[data-v-111dda07]{flex-direction:row}}.vd-download-btn[data-v-ef3f6e33] .v-btn__content{flex-wrap:wrap}.vd-download-btn[data-v-ef3f6e33] .v-icon{flex:none}.outlined-style[data-v-ef3f6e33]{border:1px solid currentColor}.vd-page-container[data-v-a1092a88]{flex:1;width:100%;max-width:1712px;margin:0 auto}.vd-code[data-v-8a08901d]{font-size:6rem;line-height:6rem;font-weight:400}.title[data-v-14404215]{font-size:24px!important}.alt-title[data-v-14404215]{font-size:20px!important}.body-text[data-v-14404215]{font-size:16px!important}.link-label[data-v-14404215]{font-size:14px!important}h1[data-v-14404215]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-14404215]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-14404215]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-14404215]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-14404215]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-14404215]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-14404215]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-14404215]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-14404215]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-14404215]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-14404215]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-14404215]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-14404215],.elevation-2[data-v-14404215],.elevation-3[data-v-14404215],.elevation-4[data-v-14404215],.elevation-5[data-v-14404215],.elevation-6[data-v-14404215],.elevation-7[data-v-14404215],.elevation-8[data-v-14404215],.elevation-9[data-v-14404215],.elevation-10[data-v-14404215],.elevation-11[data-v-14404215],.elevation-12[data-v-14404215],.elevation-13[data-v-14404215],.elevation-14[data-v-14404215],.elevation-15[data-v-14404215],.elevation-16[data-v-14404215],.elevation-17[data-v-14404215],.elevation-18[data-v-14404215],.elevation-19[data-v-14404215],.elevation-20[data-v-14404215],.elevation-21[data-v-14404215],.elevation-22[data-v-14404215],.elevation-23[data-v-14404215],.elevation-24[data-v-14404215]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-14404215]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-14404215]{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-14404215]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-14404215]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.vd-social-media-links[data-v-14404215]{display:flex;flex-direction:column}li[data-v-14404215]{list-style:none}.vd-social-media-links-label.text--primary[data-v-14404215]{color:#0c419a;font-weight:600}.v-theme--dark .vd-social-media-links-label.text--primary[data-v-14404215]{color:#fff}.vd-social-media-links-icon[data-v-14404215]{color:#545859}.v-btn--icon[data-v-14404215]{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-14404215]:hover{background:#ffffff1a}@media (min-width: 768px){.vd-social-media-links-label[data-v-14404215]{text-align:right}.vd-social-media-links-content[data-v-14404215]{justify-content:flex-end}}@media (max-width: 767px){.vd-social-media-links-label[data-v-14404215]{text-align:left}.vd-social-media-links-content[data-v-14404215]{justify-content:flex-start}}.title[data-v-85a79e6b]{font-size:24px!important}.alt-title[data-v-85a79e6b]{font-size:20px!important}.body-text[data-v-85a79e6b]{font-size:16px!important}.link-label[data-v-85a79e6b]{font-size:14px!important}h1[data-v-85a79e6b]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-85a79e6b]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-85a79e6b]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-85a79e6b]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-85a79e6b]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-85a79e6b]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-85a79e6b]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-85a79e6b]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-85a79e6b]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-85a79e6b]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-85a79e6b]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-85a79e6b]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-85a79e6b],.elevation-2[data-v-85a79e6b],.elevation-3[data-v-85a79e6b],.elevation-4[data-v-85a79e6b],.elevation-5[data-v-85a79e6b],.elevation-6[data-v-85a79e6b],.elevation-7[data-v-85a79e6b],.elevation-8[data-v-85a79e6b],.elevation-9[data-v-85a79e6b],.elevation-10[data-v-85a79e6b],.elevation-11[data-v-85a79e6b],.elevation-12[data-v-85a79e6b],.elevation-13[data-v-85a79e6b],.elevation-14[data-v-85a79e6b],.elevation-15[data-v-85a79e6b],.elevation-16[data-v-85a79e6b],.elevation-17[data-v-85a79e6b],.elevation-18[data-v-85a79e6b],.elevation-19[data-v-85a79e6b],.elevation-20[data-v-85a79e6b],.elevation-21[data-v-85a79e6b],.elevation-22[data-v-85a79e6b],.elevation-23[data-v-85a79e6b],.elevation-24[data-v-85a79e6b]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-85a79e6b]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-85a79e6b]{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-85a79e6b]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-85a79e6b]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}a[data-v-85a79e6b]{cursor:pointer}.v-btn--icon[data-v-85a79e6b]{border:0}.v-footer[data-v-85a79e6b]{flex-grow:0!important;justify-content:center}.v-footer .container[data-v-85a79e6b]{width:100%;max-width:1712px;margin:0 auto}.vd-footer-bar[data-v-85a79e6b] .vd-footer-bar-links a,.vd-footer-bar[data-v-85a79e6b] p,.vd-footer-bar[data-v-85a79e6b] .text--primary{color:#000000de}.vd-footer-bar[data-v-85a79e6b] .text--secondary{color:#0009}.vd-footer-bar[data-v-85a79e6b] .social .text--primary{color:#0c419a}.vd-footer-bar[data-v-85a79e6b] .social a.v-btn:hover,.vd-footer-bar[data-v-85a79e6b] button.v-btn:hover{background:#0000000d}.vd-footer-bar[data-v-85a79e6b] a.text--primary{color:#0c419a}.vd-footer-bar[data-v-85a79e6b] .v-divider{border-color:#2f384d}.vd-footer-bar[data-v-85a79e6b] svg.logo{fill:#0c419a}.vd-footer-bar[data-v-85a79e6b] .scroll{color:#0c419a!important}.vd-footer-bar.v-theme--dark[data-v-85a79e6b] .vd-footer-bar-links a{color:#fff}.vd-footer-bar.v-theme--dark[data-v-85a79e6b] p,.vd-footer-bar.v-theme--dark[data-v-85a79e6b] .text--primary{color:#ffffffde}.vd-footer-bar.v-theme--dark[data-v-85a79e6b] .text--secondary{color:#fff9}.vd-footer-bar.v-theme--dark[data-v-85a79e6b] a.text--primary{color:#fff}.vd-footer-bar.v-theme--dark[data-v-85a79e6b] .v-divider{border-color:#fff}.vd-footer-bar.v-theme--dark[data-v-85a79e6b] svg{fill:#fff}.vd-footer-bar-links[data-v-85a79e6b] li{list-style:none;display:flex}.vd-footer-bar-links[data-v-85a79e6b] a{transition:.15s;text-decoration:none;padding-top:1px;border-bottom:1px solid transparent}.vd-footer-bar-links[data-v-85a79e6b] a:hover,.vd-footer-bar-links[data-v-85a79e6b] a:focus{border-color:currentColor}.vd-footer-bar-links[data-v-85a79e6b] p{padding:1px 0}.v-theme--dark button.v-btn[data-v-85a79e6b]:hover{background:#ffffff1a}.vd-france-connect-btn a[data-v-7d3bb666]{color:#000091}.vd-france-connect-btn a[data-v-7d3bb666]:focus{outline-offset:3px}.vd-france-connect-link[data-v-7d3bb666]{background:#000091}.vd-france-connect-link[data-v-7d3bb666]:hover{background:#1212ff;transition:all .2s ease-in-out}.vd-france-connect-link[data-v-7d3bb666]:active{background:#2323ff}.vd-france-connect-link[data-v-7d3bb666]:focus{outline-offset:3px}.vd-france-connect-btn--dark .vd-france-connect-link[data-v-7d3bb666]{color:#fff;background-color:#8585f6}.vd-france-connect-btn--dark .vd-france-connect-link[data-v-7d3bb666]:hover{background-color:#b1b1f9}.vd-france-connect-btn--dark .vd-france-connect-link[data-v-7d3bb666]:active{background-color:#c6c6fb}.vd-france-connect-btn--dark .vd-france-connect-info-link[data-v-7d3bb666]{color:#8585f6}.vd-france-connect-info-link[data-v-7d3bb666]{background-image:linear-gradient(currentColor,currentColor);background-position:0% 100%;background-repeat:no-repeat;background-size:100% 1px}.vd-france-connect-info-link[data-v-7d3bb666]:hover{background-size:100% 2px}[data-v-7d3bb666] :scope:focus{border-radius:0!important}.cls-2[data-v-c84a4cb8],.cls-2[data-v-3e4cb924]{fill:#0c419a}.title[data-v-b87d6ac8]{font-size:24px!important}.alt-title[data-v-b87d6ac8]{font-size:20px!important}.body-text[data-v-b87d6ac8]{font-size:16px!important}.link-label[data-v-b87d6ac8]{font-size:14px!important}h1[data-v-b87d6ac8]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-b87d6ac8]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-b87d6ac8]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-b87d6ac8]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-b87d6ac8]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-b87d6ac8]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-b87d6ac8]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-b87d6ac8]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-b87d6ac8]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-b87d6ac8]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-b87d6ac8]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-b87d6ac8]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-b87d6ac8],.elevation-2[data-v-b87d6ac8],.elevation-3[data-v-b87d6ac8],.elevation-4[data-v-b87d6ac8],.elevation-5[data-v-b87d6ac8],.elevation-6[data-v-b87d6ac8],.elevation-7[data-v-b87d6ac8],.elevation-8[data-v-b87d6ac8],.elevation-9[data-v-b87d6ac8],.elevation-10[data-v-b87d6ac8],.elevation-11[data-v-b87d6ac8],.elevation-12[data-v-b87d6ac8],.elevation-13[data-v-b87d6ac8],.elevation-14[data-v-b87d6ac8],.elevation-15[data-v-b87d6ac8],.elevation-16[data-v-b87d6ac8],.elevation-17[data-v-b87d6ac8],.elevation-18[data-v-b87d6ac8],.elevation-19[data-v-b87d6ac8],.elevation-20[data-v-b87d6ac8],.elevation-21[data-v-b87d6ac8],.elevation-22[data-v-b87d6ac8],.elevation-23[data-v-b87d6ac8],.elevation-24[data-v-b87d6ac8]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-b87d6ac8]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-b87d6ac8]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-b87d6ac8]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-b87d6ac8]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.logo[data-v-b87d6ac8]{display:flex;height:52px;align-items:center;color:#0c419a;line-height:1.45;font-family:Cabin,Arial,Helvetica,sans-serif;text-decoration:none;cursor:pointer}.logo[data-v-b87d6ac8] svg{flex-grow:0;flex-shrink:0}.service-title[data-v-b87d6ac8]{font-size:.875rem;font-weight:500}.service-subtitle[data-v-b87d6ac8]{font-size:.875rem;font-weight:400}@media screen and (min-width: 990px){.service-title[data-v-b87d6ac8]{font-size:1.125rem}.service-subtitle[data-v-b87d6ac8]{font-size:.75rem}}.title[data-v-b4466b1f]{font-size:24px!important}.alt-title[data-v-b4466b1f]{font-size:20px!important}.body-text[data-v-b4466b1f]{font-size:16px!important}.link-label[data-v-b4466b1f]{font-size:14px!important}h1[data-v-b4466b1f]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-b4466b1f]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-b4466b1f]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-b4466b1f]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-b4466b1f]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-b4466b1f]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-b4466b1f]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-b4466b1f]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-b4466b1f]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-b4466b1f]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-b4466b1f]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-b4466b1f]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-b4466b1f],.elevation-2[data-v-b4466b1f],.elevation-3[data-v-b4466b1f],.elevation-4[data-v-b4466b1f],.elevation-5[data-v-b4466b1f],.elevation-6[data-v-b4466b1f],.elevation-7[data-v-b4466b1f],.elevation-8[data-v-b4466b1f],.elevation-9[data-v-b4466b1f],.elevation-10[data-v-b4466b1f],.elevation-11[data-v-b4466b1f],.elevation-12[data-v-b4466b1f],.elevation-13[data-v-b4466b1f],.elevation-14[data-v-b4466b1f],.elevation-15[data-v-b4466b1f],.elevation-16[data-v-b4466b1f],.elevation-17[data-v-b4466b1f],.elevation-18[data-v-b4466b1f],.elevation-19[data-v-b4466b1f],.elevation-20[data-v-b4466b1f],.elevation-21[data-v-b4466b1f],.elevation-22[data-v-b4466b1f],.elevation-23[data-v-b4466b1f],.elevation-24[data-v-b4466b1f]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-b4466b1f]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-b4466b1f]{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-b4466b1f]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-b4466b1f]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.header[data-v-b4466b1f]{position:relative;z-index:1}.sticky-header[data-v-b4466b1f]{background-color:#fff;width:100%;z-index:1000}.inner-header[data-v-b4466b1f]{display:flex;align-items:center;height:77px;max-width:1712px;margin:0 auto;border-bottom:solid 1px #ced9eb}.header-side[data-v-b4466b1f]{display:flex;align-items:center;margin-left:auto}@media screen and (min-width: 340px){.menu+.header-logo[data-v-b4466b1f]{padding-left:16px!important}}@media screen and (min-width: 990px){.inner-header[data-v-b4466b1f]{height:95px}}.title[data-v-9b8f4e67]{font-size:24px!important}.alt-title[data-v-9b8f4e67]{font-size:20px!important}.body-text[data-v-9b8f4e67]{font-size:16px!important}.link-label[data-v-9b8f4e67]{font-size:14px!important}h1[data-v-9b8f4e67]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-9b8f4e67]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-9b8f4e67]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-9b8f4e67]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-9b8f4e67]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-9b8f4e67]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-9b8f4e67]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-9b8f4e67]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-9b8f4e67]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-9b8f4e67]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-9b8f4e67]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-9b8f4e67]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-9b8f4e67],.elevation-2[data-v-9b8f4e67],.elevation-3[data-v-9b8f4e67],.elevation-4[data-v-9b8f4e67],.elevation-5[data-v-9b8f4e67],.elevation-6[data-v-9b8f4e67],.elevation-7[data-v-9b8f4e67],.elevation-8[data-v-9b8f4e67],.elevation-9[data-v-9b8f4e67],.elevation-10[data-v-9b8f4e67],.elevation-11[data-v-9b8f4e67],.elevation-12[data-v-9b8f4e67],.elevation-13[data-v-9b8f4e67],.elevation-14[data-v-9b8f4e67],.elevation-15[data-v-9b8f4e67],.elevation-16[data-v-9b8f4e67],.elevation-17[data-v-9b8f4e67],.elevation-18[data-v-9b8f4e67],.elevation-19[data-v-9b8f4e67],.elevation-20[data-v-9b8f4e67],.elevation-21[data-v-9b8f4e67],.elevation-22[data-v-9b8f4e67],.elevation-23[data-v-9b8f4e67],.elevation-24[data-v-9b8f4e67]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-9b8f4e67]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-9b8f4e67]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-9b8f4e67]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-9b8f4e67]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.header-menu-btn[data-v-9b8f4e67]{text-transform:Capitalize;height:77px;width:82px;display:flex;flex-direction:column;align-items:center;flex-shrink:0;justify-content:center;font-weight:700;background-color:#0c419a;color:#fff;border-bottom:solid 1px #ced9eb;transition:color .15s .1s,background-color .15s .1s,border-bottom .15s .1s}.header-menu-btn[data-v-9b8f4e67]:focus-visible{background-color:#fff;color:#0c419a}.header-menu-btn__open[data-v-9b8f4e67]{background-color:#fff;color:#0c419a;border-color:#fff}@media screen and (max-width: 991px){.header-menu-btn__label[data-v-9b8f4e67]{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}}@media screen and (min-width: 990px){.header-menu-btn[data-v-9b8f4e67]{height:95px;width:95px}}.title[data-v-78aeada6]{font-size:24px!important}.alt-title[data-v-78aeada6]{font-size:20px!important}.body-text[data-v-78aeada6]{font-size:16px!important}.link-label[data-v-78aeada6]{font-size:14px!important}h1[data-v-78aeada6]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-78aeada6]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-78aeada6]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-78aeada6]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-78aeada6]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-78aeada6]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-78aeada6]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-78aeada6]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-78aeada6]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-78aeada6]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-78aeada6]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-78aeada6]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-78aeada6],.elevation-2[data-v-78aeada6],.elevation-3[data-v-78aeada6],.elevation-4[data-v-78aeada6],.elevation-5[data-v-78aeada6],.elevation-6[data-v-78aeada6],.elevation-7[data-v-78aeada6],.elevation-8[data-v-78aeada6],.elevation-9[data-v-78aeada6],.elevation-10[data-v-78aeada6],.elevation-11[data-v-78aeada6],.elevation-12[data-v-78aeada6],.elevation-13[data-v-78aeada6],.elevation-14[data-v-78aeada6],.elevation-15[data-v-78aeada6],.elevation-16[data-v-78aeada6],.elevation-17[data-v-78aeada6],.elevation-18[data-v-78aeada6],.elevation-19[data-v-78aeada6],.elevation-20[data-v-78aeada6],.elevation-21[data-v-78aeada6],.elevation-22[data-v-78aeada6],.elevation-23[data-v-78aeada6],.elevation-24[data-v-78aeada6]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-78aeada6]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-78aeada6]{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-78aeada6]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-78aeada6]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.overlay[data-v-78aeada6]{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-78aeada6]{height:100dvh;background-color:#fff;display:flex;flex-direction:column}.header-menu-wrapper[data-v-78aeada6]{height:calc(100% - 77px);display:grid;position:relative;overflow:auto}.header-menu-wrapper--submenu-open[data-v-78aeada6]{overflow:clip}@media screen and (min-width: 990px){.menu-wrapper[data-v-78aeada6]{position:absolute;background-color:transparent}.header-menu-wrapper[data-v-78aeada6]{width:350px;overflow:visible}.header-menu[data-v-78aeada6]{background-color:#fff;overflow-y:auto;overflow-x:hidden;height:100%}}.menu-enter-active[data-v-78aeada6]{transition:opacity .15s ease-in}.menu-enter-active .header-menu-wrapper[data-v-78aeada6]{transition:transform .1s ease-in}.menu-leave-active[data-v-78aeada6]{transition:opacity .15s ease-out}.menu-leave-active .header-menu-wrapper[data-v-78aeada6]{transition:transform .1s ease-out}.menu-enter-from[data-v-78aeada6],.menu-leave-to[data-v-78aeada6]{opacity:0}@media screen and (min-width: 990px){.menu-enter-from .header-menu-wrapper[data-v-78aeada6],.menu-leave-to .header-menu-wrapper[data-v-78aeada6]{transform:translateY(10px)}}@media (prefers-reduced-motion: reduce){.menu-enter-active[data-v-78aeada6],.menu-leave-active[data-v-78aeada6]{transition:opacity 0s}.menu-enter-from .header-menu-wrapper[data-v-78aeada6],.menu-leave-to .header-menu-wrapper[data-v-78aeada6]{transform:none}}.title[data-v-753dd5aa]{font-size:24px!important}.alt-title[data-v-753dd5aa]{font-size:20px!important}.body-text[data-v-753dd5aa]{font-size:16px!important}.link-label[data-v-753dd5aa]{font-size:14px!important}h1[data-v-753dd5aa]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-753dd5aa]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-753dd5aa]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-753dd5aa]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-753dd5aa]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-753dd5aa]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-753dd5aa]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-753dd5aa]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-753dd5aa]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-753dd5aa]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-753dd5aa]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-753dd5aa]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-753dd5aa],.elevation-2[data-v-753dd5aa],.elevation-3[data-v-753dd5aa],.elevation-4[data-v-753dd5aa],.elevation-5[data-v-753dd5aa],.elevation-6[data-v-753dd5aa],.elevation-7[data-v-753dd5aa],.elevation-8[data-v-753dd5aa],.elevation-9[data-v-753dd5aa],.elevation-10[data-v-753dd5aa],.elevation-11[data-v-753dd5aa],.elevation-12[data-v-753dd5aa],.elevation-13[data-v-753dd5aa],.elevation-14[data-v-753dd5aa],.elevation-15[data-v-753dd5aa],.elevation-16[data-v-753dd5aa],.elevation-17[data-v-753dd5aa],.elevation-18[data-v-753dd5aa],.elevation-19[data-v-753dd5aa],.elevation-20[data-v-753dd5aa],.elevation-21[data-v-753dd5aa],.elevation-22[data-v-753dd5aa],.elevation-23[data-v-753dd5aa],.elevation-24[data-v-753dd5aa]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-753dd5aa]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-753dd5aa]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-753dd5aa]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-753dd5aa]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.header-menu-item[data-v-753dd5aa]{color:#0c419a;list-style-type:none;margin:0;padding:0;min-height:44px;font-weight:700}.header-menu-item[data-v-753dd5aa]>a{display:flex;flex-direction:column;padding:16px 50px 16px 20px;text-decoration:none;color:currentColor}.header-menu-item[data-v-753dd5aa]>a:hover{text-decoration:underline}.header-menu-item[data-v-753dd5aa]>a:visited{color:currentColor}.header-menu-item[data-v-753dd5aa]>a:first-letter{text-transform:uppercase}.header-menu-item[data-v-753dd5aa]:hover{background-color:#0c419a;color:#fff}.header-menu-item[data-v-753dd5aa]:hover>a>*{color:#fff!important}.title[data-v-7c0df756]{font-size:24px!important}.alt-title[data-v-7c0df756]{font-size:20px!important}.body-text[data-v-7c0df756]{font-size:16px!important}.link-label[data-v-7c0df756]{font-size:14px!important}h1[data-v-7c0df756]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-7c0df756]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-7c0df756]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-7c0df756]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-7c0df756]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-7c0df756]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-7c0df756]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-7c0df756]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-7c0df756]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-7c0df756]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-7c0df756]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-7c0df756]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-7c0df756],.elevation-2[data-v-7c0df756],.elevation-3[data-v-7c0df756],.elevation-4[data-v-7c0df756],.elevation-5[data-v-7c0df756],.elevation-6[data-v-7c0df756],.elevation-7[data-v-7c0df756],.elevation-8[data-v-7c0df756],.elevation-9[data-v-7c0df756],.elevation-10[data-v-7c0df756],.elevation-11[data-v-7c0df756],.elevation-12[data-v-7c0df756],.elevation-13[data-v-7c0df756],.elevation-14[data-v-7c0df756],.elevation-15[data-v-7c0df756],.elevation-16[data-v-7c0df756],.elevation-17[data-v-7c0df756],.elevation-18[data-v-7c0df756],.elevation-19[data-v-7c0df756],.elevation-20[data-v-7c0df756],.elevation-21[data-v-7c0df756],.elevation-22[data-v-7c0df756],.elevation-23[data-v-7c0df756],.elevation-24[data-v-7c0df756]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-7c0df756]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-7c0df756]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-7c0df756]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-7c0df756]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.header-menu-section[data-v-7c0df756]{list-style-type:none;padding:0;margin:0}.header-menu-section-title[data-v-7c0df756]{padding:40px 16px 8px 20px;border-bottom:1px solid #e0e0e0;font-size:1.1rem;margin-bottom:8px;color:#212529;text-transform:capitalize;font-weight:700}.title[data-v-e5697195]{font-size:24px!important}.alt-title[data-v-e5697195]{font-size:20px!important}.body-text[data-v-e5697195]{font-size:16px!important}.link-label[data-v-e5697195]{font-size:14px!important}h1[data-v-e5697195]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-e5697195]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-e5697195]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-e5697195]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-e5697195]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-e5697195]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-e5697195]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-e5697195]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-e5697195]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-e5697195]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-e5697195]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-e5697195]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-e5697195],.elevation-2[data-v-e5697195],.elevation-3[data-v-e5697195],.elevation-4[data-v-e5697195],.elevation-5[data-v-e5697195],.elevation-6[data-v-e5697195],.elevation-7[data-v-e5697195],.elevation-8[data-v-e5697195],.elevation-9[data-v-e5697195],.elevation-10[data-v-e5697195],.elevation-11[data-v-e5697195],.elevation-12[data-v-e5697195],.elevation-13[data-v-e5697195],.elevation-14[data-v-e5697195],.elevation-15[data-v-e5697195],.elevation-16[data-v-e5697195],.elevation-17[data-v-e5697195],.elevation-18[data-v-e5697195],.elevation-19[data-v-e5697195],.elevation-20[data-v-e5697195],.elevation-21[data-v-e5697195],.elevation-22[data-v-e5697195],.elevation-23[data-v-e5697195],.elevation-24[data-v-e5697195]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-e5697195]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-e5697195]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-e5697195]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-e5697195]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.sub-menu-btn[data-v-e5697195]{display:flex;justify-content:center;flex-direction:column;width:100%;padding:16px 50px 16px 20px;text-align:left;color:#0c419a}.sub-menu-btn[data-v-e5697195]:hover{background-color:#0c419a;color:#fff;text-decoration:underline}.sub-menu-btn[data-v-e5697195]:hover>*{color:#fff!important}.sub-menu-btn[data-v-e5697195]:first-letter{text-transform:uppercase}.sub-menu-btn__icon[data-v-e5697195]{position:absolute;right:20px}@media screen and (max-width: 989px){.sub-menu--open[data-v-e5697195]{position:absolute;left:0;top:0;width:100%;height:100%;overflow-y:auto;background-color:#fff;padding-top:40px;z-index:10}.sub-menu--child-open[data-v-e5697195]{overflow-y:clip}.sub-menu--open>.sub-menu-btn[data-v-e5697195]{padding:0 16px 8px 40px;border-bottom:1px solid #e0e0e0;color:#000;background-color:transparent}.sub-menu--open>.sub-menu-btn[data-v-e5697195]:hover{color:#000}.sub-menu--open>.sub-menu-btn[data-v-e5697195]:hover>*{color:#000!important}.sub-menu--open>.sub-menu-btn[data-v-e5697195]>.sub-menu-btn__icon{left:10px;right:auto}}@media screen and (min-width: 990px){.sub-menu-btn[data-v-e5697195]{position:relative}.sub-menu--open>.sub-menu-btn[data-v-e5697195]{background-color:#0c419a;color:#fff;transition:color .15s linear,background-color .15s linear}.sub-menu--open>.sub-menu-btn[data-v-e5697195]>*{color:#fff!important}.sub-menu-content-wrapper[data-v-e5697195]{position:absolute;top:0;bottom:0;left:350px}.sub-menu-content[data-v-e5697195]{width:351px;height:100%;background:#f9f9f9;border-left:1px solid #e0e0e0;overflow-y:auto;overflow-x:hidden}.sub-menu-content>.sub-menu--open .sub-menu-content[data-v-e5697195]{left:700px}.sub-menu-content>.sub-menu--open .sub-menu-content>.sub-menu--open .sub-menu-content[data-v-e5697195]{left:1050px}.slide-fade-enter-active[data-v-e5697195]{transition:opacity .17s ease-out,transform .17s ease-out}.slide-fade-leave-active[data-v-e5697195]{transition:opacity .08s ease-in,transform .08s ease-in}.slide-fade-enter-from[data-v-e5697195],.slide-fade-leave-to[data-v-e5697195]{opacity:0;transform:translate(-10px)}}@media screen and (min-width: 990px) and (prefers-reduced-motion){.slide-fade-enter-active[data-v-e5697195],.slide-fade-leave-active[data-v-e5697195]{transition:none}}.title[data-v-9905d7f9]{font-size:24px!important}.alt-title[data-v-9905d7f9]{font-size:20px!important}.body-text[data-v-9905d7f9]{font-size:16px!important}.link-label[data-v-9905d7f9]{font-size:14px!important}h1[data-v-9905d7f9]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-9905d7f9]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-9905d7f9]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-9905d7f9]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-9905d7f9]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-9905d7f9]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-9905d7f9]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-9905d7f9]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-9905d7f9]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-9905d7f9]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-9905d7f9]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-9905d7f9]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-9905d7f9],.elevation-2[data-v-9905d7f9],.elevation-3[data-v-9905d7f9],.elevation-4[data-v-9905d7f9],.elevation-5[data-v-9905d7f9],.elevation-6[data-v-9905d7f9],.elevation-7[data-v-9905d7f9],.elevation-8[data-v-9905d7f9],.elevation-9[data-v-9905d7f9],.elevation-10[data-v-9905d7f9],.elevation-11[data-v-9905d7f9],.elevation-12[data-v-9905d7f9],.elevation-13[data-v-9905d7f9],.elevation-14[data-v-9905d7f9],.elevation-15[data-v-9905d7f9],.elevation-16[data-v-9905d7f9],.elevation-17[data-v-9905d7f9],.elevation-18[data-v-9905d7f9],.elevation-19[data-v-9905d7f9],.elevation-20[data-v-9905d7f9],.elevation-21[data-v-9905d7f9],.elevation-22[data-v-9905d7f9],.elevation-23[data-v-9905d7f9],.elevation-24[data-v-9905d7f9]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-9905d7f9]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-9905d7f9]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-9905d7f9]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-9905d7f9]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.horizontal-menu[data-v-9905d7f9]{display:flex;align-items:center;max-width:1712px;margin:0 auto}.horizontal-menu__tabs[data-v-9905d7f9]{flex:1 1 0}.horizontal-menu__item[data-v-9905d7f9]{cursor:pointer}.horizontal-menu__item-link[data-v-9905d7f9]{font-size:.875rem;font-weight:700}.v-tab-item--selected span[data-v-9905d7f9]{color:#fff}.inner-vertical-menu[data-v-64e98667]{display:flex;flex-direction:column;height:100%}.inner-vertical-menu__main-content[data-v-64e98667]{flex:1}.title[data-v-469c119a]{font-size:24px!important}.alt-title[data-v-469c119a]{font-size:20px!important}.body-text[data-v-469c119a]{font-size:16px!important}.link-label[data-v-469c119a]{font-size:14px!important}h1[data-v-469c119a]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-469c119a]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-469c119a]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-469c119a]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-469c119a]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-469c119a]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-469c119a]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-469c119a]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-469c119a]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-469c119a]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-469c119a]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-469c119a]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-469c119a],.elevation-2[data-v-469c119a],.elevation-3[data-v-469c119a],.elevation-4[data-v-469c119a],.elevation-5[data-v-469c119a],.elevation-6[data-v-469c119a],.elevation-7[data-v-469c119a],.elevation-8[data-v-469c119a],.elevation-9[data-v-469c119a],.elevation-10[data-v-469c119a],.elevation-11[data-v-469c119a],.elevation-12[data-v-469c119a],.elevation-13[data-v-469c119a],.elevation-14[data-v-469c119a],.elevation-15[data-v-469c119a],.elevation-16[data-v-469c119a],.elevation-17[data-v-469c119a],.elevation-18[data-v-469c119a],.elevation-19[data-v-469c119a],.elevation-20[data-v-469c119a],.elevation-21[data-v-469c119a],.elevation-22[data-v-469c119a],.elevation-23[data-v-469c119a],.elevation-24[data-v-469c119a]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-469c119a]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-469c119a]{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-469c119a]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-469c119a]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.toolbar[data-v-469c119a]{background:#e7ecf5;position:relative;display:flex;align-items:center;justify-content:center;z-index:100}.toolbar .container[data-v-469c119a]{width:100%;max-height:45px;max-width:1712px;display:flex;align-items:center;justify-content:space-between}@media (max-width: 768px){.toolbar .container[data-v-469c119a]{max-height:41px}}.toolbar .container[data-v-469c119a] ul{display:flex;align-items:center;justify-content:flex-start;list-style:none;text-decoration:none}.toolbar .container[data-v-469c119a] ul li{text-align:center}.toolbar .container[data-v-469c119a] ul>li>a{display:block;color:#07275c;text-decoration:none;padding:10px 16px;cursor:pointer}.toolbar .container[data-v-469c119a] ul>li>a:hover{text-decoration:underline}@media (max-width: 768px){.toolbar .container[data-v-469c119a] ul>li>a{font-size:12px}}.toolbar .container[data-v-469c119a] .sy-input-select{width:100%;display:flex;justify-content:space-between}@media (max-width: 768px){.toolbar .container[data-v-469c119a] .sy-input-select{font-size:12px}.toolbar .container[data-v-469c119a] .sy-input-select span{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}}.toolbar #left-menu ul>li>a[data-v-469c119a]{font-weight:700;color:#07275c}.toolbar #left-menu ul>li>a[data-v-469c119a]:hover{text-decoration:none}.toolbar #left-menu li[data-v-469c119a]:first-child{min-width:95px;background:transparent}@media (max-width: 990px){.toolbar #left-menu li[data-v-469c119a]:first-child{min-width:82px}}.toolbar #left-menu li[data-v-469c119a]:nth-child(2){z-index:2;max-height:44px;min-width:260px}@media (max-width: 768px){.toolbar #left-menu li[data-v-469c119a]:nth-child(2){max-height:38px;min-width:152px}}.toolbar #left-menu li:nth-child(2) a[data-v-469c119a]{max-height:44px}@media (max-width: 768px){.toolbar #left-menu li:nth-child(2) a[data-v-469c119a]{max-height:38px}}.toolbar #left-menu li[data-v-469c119a]:nth-child(3){background:transparent}.toolbar #left-menu li:first-child a[data-v-469c119a]:hover,.toolbar #left-menu li:first-child.active[data-v-469c119a]{background:#ed76b3}.toolbar #left-menu li:nth-child(2) a[data-v-469c119a]:hover,.toolbar #left-menu .highlight[data-v-469c119a]{background:#66c9ec}.toolbar #left-menu li:nth-child(3) a[data-v-469c119a]:hover,.toolbar #left-menu li:nth-child(3).active[data-v-469c119a]{background:#f0b323}@media (max-width: 1000px){.toolbar #right-menu[data-v-469c119a]{display:none}}.toolbar #right-menu ul[data-v-469c119a]{white-space:nowrap;overflow:hidden}.toolbar #right-menu ul li[data-v-469c119a]{display:inline-block}.toolbar[data-v-469c119a] .v-input .v-input__details{display:none}.toolbar[data-v-469c119a] .v-input .v-input__control{font-weight:700}.toolbar[data-v-469c119a] .v-input .v-input__control .text-color{color:#051a3e!important}.toolbar[data-v-469c119a] .v-input .v-input__control .v-icon{margin-left:10px}.toolbar[data-v-469c119a] .v-input .v-input__control .custom-select{display:flex;justify-content:space-between;width:100%}.toolbar[data-v-469c119a] .v-input .v-input__control .custom-select span{max-width:260px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}@media (max-width: 768px){.toolbar[data-v-469c119a] .v-input .v-input__control .custom-select span{max-width:182px}}@media (max-width: 768px){.toolbar[data-v-469c119a] .v-input .v-input__control{font-size:12px}}.toolbar[data-v-469c119a] .v-input .v-list{top:34px!important;left:-16px!important;text-align:left;min-width:260px;max-width:fit-content!important;border-radius:0}@media (max-width: 768px){.toolbar[data-v-469c119a] .v-input .v-list{position:fixed;top:38px!important;left:0!important;min-width:100%!important;box-shadow:none!important}}.toolbar[data-v-469c119a] .v-input .v-list .v-list-item--density-default.v-list-item--one-line{min-height:40px}.toolbar .overlay[data-v-469c119a]{position:fixed;display:block;top:0;left:0;width:100%;height:100%;background-color:#03102580;cursor:default;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px);z-index:1}@media (max-width: 768px){.toolbar .overlay[data-v-469c119a]{display:none}}.right-menu-item[data-v-469c119a]{color:#051a3e}.title[data-v-4c0d182f]{font-size:24px!important}.alt-title[data-v-4c0d182f]{font-size:20px!important}.body-text[data-v-4c0d182f]{font-size:16px!important}.link-label[data-v-4c0d182f]{font-size:14px!important}h1[data-v-4c0d182f]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-4c0d182f]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-4c0d182f]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-4c0d182f]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-4c0d182f]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-4c0d182f]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-4c0d182f]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-4c0d182f]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-4c0d182f]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-4c0d182f]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-4c0d182f]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-4c0d182f]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-4c0d182f],.elevation-2[data-v-4c0d182f],.elevation-3[data-v-4c0d182f],.elevation-4[data-v-4c0d182f],.elevation-5[data-v-4c0d182f],.elevation-6[data-v-4c0d182f],.elevation-7[data-v-4c0d182f],.elevation-8[data-v-4c0d182f],.elevation-9[data-v-4c0d182f],.elevation-10[data-v-4c0d182f],.elevation-11[data-v-4c0d182f],.elevation-12[data-v-4c0d182f],.elevation-13[data-v-4c0d182f],.elevation-14[data-v-4c0d182f],.elevation-15[data-v-4c0d182f],.elevation-16[data-v-4c0d182f],.elevation-17[data-v-4c0d182f],.elevation-18[data-v-4c0d182f],.elevation-19[data-v-4c0d182f],.elevation-20[data-v-4c0d182f],.elevation-21[data-v-4c0d182f],.elevation-22[data-v-4c0d182f],.elevation-23[data-v-4c0d182f],.elevation-24[data-v-4c0d182f]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-4c0d182f]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-4c0d182f]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-4c0d182f]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-4c0d182f]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.v-list-item[data-v-4c0d182f]:hover{background-color:#00000001}.vd-lang-btn[data-v-4c0d182f]{font-size:16px;--hoverColor: rgba(tokens.$colors-overlay, .5);text-transform:none;letter-spacing:inherit}.vd-logo-brand-section .vd-title-container[data-v-ca95c6a8]{overflow:hidden}.vd-logo-brand-section[data-v-ca95c6a8] .vd-title{line-height:1.45!important}.vd-logo-brand-section .vd-compte-entreprise-title[data-v-ca95c6a8]{font-weight:700!important}.vd-logo-brand-section .vd-compte-entreprise-title span[data-v-ca95c6a8]{color:#cd545b}.vd-logo-brand-section[data-v-ca95c6a8] img{width:auto;height:100%;flex:none}.vd-logo-brand-section svg[data-v-ca95c6a8],.vd-logo-brand-section .vd-home-link[data-v-ca95c6a8]{flex:none}.vd-logo-brand-section .vd-home-link[data-v-ca95c6a8]{cursor:pointer}img[data-v-aea9e609],img[data-v-1ff99a74]{max-height:290px}.title[data-v-a1b2f672]{font-size:24px!important}.alt-title[data-v-a1b2f672]{font-size:20px!important}.body-text[data-v-a1b2f672]{font-size:16px!important}.link-label[data-v-a1b2f672]{font-size:14px!important}h1[data-v-a1b2f672]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-a1b2f672]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-a1b2f672]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-a1b2f672]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-a1b2f672]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-a1b2f672]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-a1b2f672]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-a1b2f672]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-a1b2f672]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-a1b2f672]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-a1b2f672]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-a1b2f672]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-a1b2f672],.elevation-2[data-v-a1b2f672],.elevation-3[data-v-a1b2f672],.elevation-4[data-v-a1b2f672],.elevation-5[data-v-a1b2f672],.elevation-6[data-v-a1b2f672],.elevation-7[data-v-a1b2f672],.elevation-8[data-v-a1b2f672],.elevation-9[data-v-a1b2f672],.elevation-10[data-v-a1b2f672],.elevation-11[data-v-a1b2f672],.elevation-12[data-v-a1b2f672],.elevation-13[data-v-a1b2f672],.elevation-14[data-v-a1b2f672],.elevation-15[data-v-a1b2f672],.elevation-16[data-v-a1b2f672],.elevation-17[data-v-a1b2f672],.elevation-18[data-v-a1b2f672],.elevation-19[data-v-a1b2f672],.elevation-20[data-v-a1b2f672],.elevation-21[data-v-a1b2f672],.elevation-22[data-v-a1b2f672],.elevation-23[data-v-a1b2f672],.elevation-24[data-v-a1b2f672]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-a1b2f672]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-a1b2f672]{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-a1b2f672]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-a1b2f672]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.v-messages__message--success[data-v-a1b2f672],.v-field--active .v-messages__message--success[data-v-a1b2f672]{color:#224e2d!important}.v-messages__message--error[data-v-a1b2f672],.v-field--active .v-messages__message--error[data-v-a1b2f672]{color:#b33f2e}[data-v-a1b2f672] .v-field.v-field--active .v-label.v-field-label--floating{opacity:1}.multi-line[data-v-a1b2f672]{white-space:pre-line!important}.vd-number-field[data-v-a1b2f672]{max-width:296px}.vd-key-field[data-v-a1b2f672]{width:104px}.custom-counter[data-v-a1b2f672]{color:#0000008a}.vd-nir-field[data-v-a1b2f672] .v-input__append-inner,.vd-tooltip-icon[data-v-a1b2f672]{flex:none;color:#0000008a}[data-v-a1b2f672] .v-overlay__content{background:#545859f2!important}.vd-key-field[data-v-a1b2f672]{flex:none}.vd-nir-field--outlined[data-v-a1b2f672] .v-messages.error--text{padding:6px}.vd-nir-field[data-v-a1b2f672]{container-name:nirFieldwrapper}[data-v-a1b2f672] .v-input__append{margin-inline-start:0!important}[data-v-a1b2f672] .vd-number-field>.v-input__prepend{margin-right:0!important}@media screen and (max-width: 360px){[data-v-a1b2f672] .vd-key-field>.v-input__prepend{margin-inline-end:0!important}}[data-v-a1b2f672] .v-text-field .v-input__details{padding-inline-start:0!important;padding-inline-end:0!important;flex:none!important}[data-v-a1b2f672] .v-text-field .v-input__details .v-messages{color:#000!important}@container nirFieldwrapper (max-width: 300px){.vd-nir-field__fields-wrapper[data-v-a1b2f672]>.v-input__control{justify-content:start;flex-wrap:wrap;gap:4px;margin-bottom:4px}.vd-nir-field__fields-wrapper[data-v-a1b2f672]>.v-input__control .vd-number-field{flex:100% 0 0}}@media screen and (max-width: 360px){.vd-nir-field__fields-wrapper[data-v-a1b2f672]>.v-input__control{justify-content:start;flex-wrap:wrap;gap:4px;margin-bottom:4px}.vd-nir-field__fields-wrapper[data-v-a1b2f672]>.v-input__control .vd-number-field{flex:100% 0 0}}.v-text-field .v-input__append-inner[data-v-a1b2f672]{padding-left:0!important}[data-v-a1b2f672] .v-text-field>.v-input__control>.v-input__slot>.v-text-field__slot{width:min-content!important}.title[data-v-93d35fbf]{font-size:24px!important}.alt-title[data-v-93d35fbf]{font-size:20px!important}.body-text[data-v-93d35fbf]{font-size:16px!important}.link-label[data-v-93d35fbf]{font-size:14px!important}h1[data-v-93d35fbf]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-93d35fbf]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-93d35fbf]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-93d35fbf]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-93d35fbf]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-93d35fbf]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-93d35fbf]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-93d35fbf]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-93d35fbf]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-93d35fbf]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-93d35fbf]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-93d35fbf]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-93d35fbf],.elevation-2[data-v-93d35fbf],.elevation-3[data-v-93d35fbf],.elevation-4[data-v-93d35fbf],.elevation-5[data-v-93d35fbf],.elevation-6[data-v-93d35fbf],.elevation-7[data-v-93d35fbf],.elevation-8[data-v-93d35fbf],.elevation-9[data-v-93d35fbf],.elevation-10[data-v-93d35fbf],.elevation-11[data-v-93d35fbf],.elevation-12[data-v-93d35fbf],.elevation-13[data-v-93d35fbf],.elevation-14[data-v-93d35fbf],.elevation-15[data-v-93d35fbf],.elevation-16[data-v-93d35fbf],.elevation-17[data-v-93d35fbf],.elevation-18[data-v-93d35fbf],.elevation-19[data-v-93d35fbf],.elevation-20[data-v-93d35fbf],.elevation-21[data-v-93d35fbf],.elevation-22[data-v-93d35fbf],.elevation-23[data-v-93d35fbf],.elevation-24[data-v-93d35fbf]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-93d35fbf]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-93d35fbf]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-93d35fbf]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-93d35fbf]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.vd-notification-content[data-v-93d35fbf]{display:flex;align-items:center}.vd-notification-bar[data-v-93d35fbf] .v-snack__wrapper{padding:16px;min-width:0;max-width:none}[data-v-93d35fbf] .v-snackbar__content{padding:16px!important}[data-v-93d35fbf] .v-snackbar__actions{margin-inline-end:10px}.vd-notification-bar.v-snackbar--vertical[data-v-93d35fbf] .v-snackbar--vertical .v-snackbar__wrapper .v-snackbar__actions{width:100%!important;align-self:auto}.vd-notification-bar.v-snackbar--vertical[data-v-93d35fbf] .v-snack__wrapper{align-items:stretch;flex-direction:row}.vd-notification-bar.v-snackbar--vertical[data-v-93d35fbf] .v-snack__action{align-self:stretch;align-items:stretch;flex-direction:column}.vd-notification-bar.v-snackbar--vertical[data-v-93d35fbf] .v-snackbar__content{margin:0;width:100%;display:flex}.vd-notification-bar.v-snackbar--vertical[data-v-93d35fbf] .vd-notification-content{flex-direction:column;display:flex}.long-text[data-v-93d35fbf] .v-snackbar__actions{width:98%!important}.short-text[data-v-93d35fbf] .v-snackbar__actions{width:48%!important}.action-section-longText[data-v-93d35fbf]{justify-content:space-around}.action-section-shortText[data-v-93d35fbf]{justify-content:end!important}.phone-field-container[data-v-4ee90459]{display:flex;flex-direction:column;align-items:flex-start;width:100%}.phoneField[data-v-4ee90459]{width:100%}.custom-select[data-v-4ee90459]{width:30%}@media (min-width: 600px){.phone-field-container[data-v-4ee90459]{flex-direction:row;align-items:center}.custom-select[data-v-4ee90459]{margin-right:1rem;margin-bottom:0;min-width:144px}.phoneField[data-v-4ee90459]{min-width:350px}}[data-v-4ee90459] .v-list{position:absolute;left:inherit!important;background-color:#fff;max-height:300px;padding:0;box-shadow:0 2px 5px #0000001f,0 2px 10px #00000014;border-radius:4px;overflow-y:auto;z-index:2}.title[data-v-2bd5b004]{font-size:24px!important}.alt-title[data-v-2bd5b004]{font-size:20px!important}.body-text[data-v-2bd5b004]{font-size:16px!important}.link-label[data-v-2bd5b004]{font-size:14px!important}h1[data-v-2bd5b004]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-2bd5b004]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-2bd5b004]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-2bd5b004]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-2bd5b004]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-2bd5b004]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-2bd5b004]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-2bd5b004]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-2bd5b004]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-2bd5b004]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-2bd5b004]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-2bd5b004]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-2bd5b004],.elevation-2[data-v-2bd5b004],.elevation-3[data-v-2bd5b004],.elevation-4[data-v-2bd5b004],.elevation-5[data-v-2bd5b004],.elevation-6[data-v-2bd5b004],.elevation-7[data-v-2bd5b004],.elevation-8[data-v-2bd5b004],.elevation-9[data-v-2bd5b004],.elevation-10[data-v-2bd5b004],.elevation-11[data-v-2bd5b004],.elevation-12[data-v-2bd5b004],.elevation-13[data-v-2bd5b004],.elevation-14[data-v-2bd5b004],.elevation-15[data-v-2bd5b004],.elevation-16[data-v-2bd5b004],.elevation-17[data-v-2bd5b004],.elevation-18[data-v-2bd5b004],.elevation-19[data-v-2bd5b004],.elevation-20[data-v-2bd5b004],.elevation-21[data-v-2bd5b004],.elevation-22[data-v-2bd5b004],.elevation-23[data-v-2bd5b004],.elevation-24[data-v-2bd5b004]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-2bd5b004]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-2bd5b004]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-2bd5b004]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-2bd5b004]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.vd-skip-link[data-v-2bd5b004]{z-index:150;position:fixed;top:0;right:0;transition:none;width:100%;background:#fff;outline:none;border:2px solid #051a3e}.vd-sub-header[data-v-93d57abf]{overflow-x:auto}.vd-sub-header-back-btn[data-v-93d57abf]{margin:0 -6px}.vd-data-list-group[data-v-93d57abf],.vd-sub-header-informations[data-v-93d57abf]{max-width:none}.vd-data-list-group[data-v-93d57abf] .vd-data-list{max-width:200px}.vd-data-list-group[data-v-93d57abf] .vd-data-list:not(:last-child){margin-right:80px!important}.vd-data-list-group[data-v-93d57abf] .vd-data-list .vd-key{display:inline-block;font-size:.75rem!important}.vd-data-list-group[data-v-93d57abf] .vd-data-list .vd-data-list-item-label{color:#ffffffb3!important}.vd-data-list-group[data-v-93d57abf] .vd-data-list .vd-data-list-item-action-btn{color:#fff!important}.vd-subheader-loading[data-v-93d57abf]{background:transparent}.vd-subheader-loading[data-v-93d57abf] .v-skeleton-loader__button{margin:0;min-height:28px;height:auto;background:rgba(255,255,255,var(--v-border-opacity))}.title[data-v-7cf8bf85]{font-size:24px!important}.alt-title[data-v-7cf8bf85]{font-size:20px!important}.body-text[data-v-7cf8bf85]{font-size:16px!important}.link-label[data-v-7cf8bf85]{font-size:14px!important}h1[data-v-7cf8bf85]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-7cf8bf85]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-7cf8bf85]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-7cf8bf85]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-7cf8bf85]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-7cf8bf85]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-7cf8bf85]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-7cf8bf85]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-7cf8bf85]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-7cf8bf85]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-7cf8bf85]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-7cf8bf85]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-7cf8bf85],.elevation-2[data-v-7cf8bf85],.elevation-3[data-v-7cf8bf85],.elevation-4[data-v-7cf8bf85],.elevation-5[data-v-7cf8bf85],.elevation-6[data-v-7cf8bf85],.elevation-7[data-v-7cf8bf85],.elevation-8[data-v-7cf8bf85],.elevation-9[data-v-7cf8bf85],.elevation-10[data-v-7cf8bf85],.elevation-11[data-v-7cf8bf85],.elevation-12[data-v-7cf8bf85],.elevation-13[data-v-7cf8bf85],.elevation-14[data-v-7cf8bf85],.elevation-15[data-v-7cf8bf85],.elevation-16[data-v-7cf8bf85],.elevation-17[data-v-7cf8bf85],.elevation-18[data-v-7cf8bf85],.elevation-19[data-v-7cf8bf85],.elevation-20[data-v-7cf8bf85],.elevation-21[data-v-7cf8bf85],.elevation-22[data-v-7cf8bf85],.elevation-23[data-v-7cf8bf85],.elevation-24[data-v-7cf8bf85]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-7cf8bf85]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-7cf8bf85]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-7cf8bf85]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-7cf8bf85]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}.vd-user-icon[data-v-7cf8bf85]{width:40px;height:40px;background:#eee;border-radius:50%}.vd-user-icon svg[data-v-7cf8bf85],.vd-user-icon .v-icon__svg[data-v-7cf8bf85]{width:24px;height:24px}.vd-cookie-table[data-v-e018bb81] table{table-layout:fixed}.title[data-v-76037a97]{font-size:24px!important}.alt-title[data-v-76037a97]{font-size:20px!important}.body-text[data-v-76037a97]{font-size:16px!important}.link-label[data-v-76037a97]{font-size:14px!important}h1[data-v-76037a97]{font-size:32px!important;line-height:130%!important}.h1-bold[data-v-76037a97]{font-size:32px!important;font-weight:700!important;line-height:130%!important}h2[data-v-76037a97]{font-size:28px!important;line-height:130%!important}.h2-bold[data-v-76037a97]{font-size:28px!important;font-weight:700!important;line-height:130%!important}h3[data-v-76037a97]{font-size:24px!important;line-height:130%!important}.h3-bold[data-v-76037a97]{font-size:24px!important;font-weight:700!important;line-height:130%!important}h4[data-v-76037a97]{font-size:20px!important;line-height:130%!important}.h4-bold[data-v-76037a97]{font-size:20px!important;font-weight:700!important;line-height:130%!important}.display-1[data-v-76037a97]{font-size:40px!important;line-height:130%!important}.display-1-bold[data-v-76037a97]{font-size:40px!important;font-weight:700!important;line-height:130%!important}.display-2[data-v-76037a97]{font-size:30px!important;line-height:130%!important}.display-2-bold[data-v-76037a97]{font-size:30px!important;font-weight:700!important;line-height:130%!important}.elevation-1[data-v-76037a97],.elevation-2[data-v-76037a97],.elevation-3[data-v-76037a97],.elevation-4[data-v-76037a97],.elevation-5[data-v-76037a97],.elevation-6[data-v-76037a97],.elevation-7[data-v-76037a97],.elevation-8[data-v-76037a97],.elevation-9[data-v-76037a97],.elevation-10[data-v-76037a97],.elevation-11[data-v-76037a97],.elevation-12[data-v-76037a97],.elevation-13[data-v-76037a97],.elevation-14[data-v-76037a97],.elevation-15[data-v-76037a97],.elevation-16[data-v-76037a97],.elevation-17[data-v-76037a97],.elevation-18[data-v-76037a97],.elevation-19[data-v-76037a97],.elevation-20[data-v-76037a97],.elevation-21[data-v-76037a97],.elevation-22[data-v-76037a97],.elevation-23[data-v-76037a97],.elevation-24[data-v-76037a97]{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f!important}.page-container[data-v-76037a97]{text-align:center;margin:0 auto;padding:40px 40px 56px 56px;width:1160px}@media (max-width: 600px){.page-container[data-v-76037a97]{max-width:600px;padding:40px 24px 80px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:24px;width:80%}}@media (min-width: 601px) and (max-width: 960px){.page-container[data-v-76037a97]{max-width:960px;width:80%;display:grid;grid-template-columns:repeat(6,1fr);grid-gap:24px}}@media (min-width: 960px){.page-container[data-v-76037a97]{max-width:960px;width:100%;display:grid;grid-template-columns:repeat(12,1fr);grid-gap:24px}}details>summary[data-v-76037a97]{cursor:pointer;list-style:none;-webkit-user-select:none;user-select:none}details>summary[data-v-76037a97]::marker,details>summary[data-v-76037a97]::-webkit-details-marker{display:none}.vd-cookies-information__radio-group[data-v-76037a97]{margin-top:0}.vd-cookies-information__radio-group[data-v-76037a97] .v-input__details{padding:0}.vd-cookies-information__radio-group[data-v-76037a97] .v-messages{text-align:end}.vd-cookie-banner[data-v-d6db9002]{position:fixed;left:50%;bottom:0;display:flex;transform:translate(-50%);z-index:20;max-height:calc(100dvh - 64px);width:calc(100% - 64px);max-width:1200px;margin-bottom:32px}.vd-cookie-banner__inner[data-v-d6db9002]{display:flex;flex-direction:column;width:100%;background:transparent}.vd-cookie-banner-content[data-v-d6db9002]{overflow-y:auto;padding-right:8px;background:transparent}.vd-cookie-banner-content div[data-v-d6db9002]{background:transparent}.vd-cookie-banner-action-ctn .v-btn[data-v-d6db9002]{flex:1 1 auto}.v-btn--icon[data-v-d6db9002]{color:#0000008a;position:absolute;right:24px}.height-enter-active[data-v-d6db9002],.height-leave-active[data-v-d6db9002]{box-sizing:border-box;transition:height 2s ease;interpolate-size:allow-keywords;overflow:hidden;background-color:#fff}.height-enter-active[data-v-d6db9002]{transition:height .5s ease}.height-leave-active[data-v-d6db9002]{transition:height .1s ease}.height-enter-from[data-v-d6db9002],.height-leave-to[data-v-d6db9002]{height:0}.height-enter-to[data-v-d6db9002],.height-leave-from[data-v-d6db9002]{height:auto}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cnamts/synapse",
3
- "version": "0.0.5-alpha",
3
+ "version": "0.0.7-alpha",
4
4
  "private": false,
5
5
  "description": "CNAM DS v3",
6
6
  "type": "module",
@@ -44,22 +44,22 @@
44
44
  "node": ">=18.0.0"
45
45
  },
46
46
  "devDependencies": {
47
- "@chromatic-com/storybook": "^2.0.2",
47
+ "@chromatic-com/storybook": "^3.2.2",
48
48
  "@jls-digital/storybook-addon-code": "^1.0.4",
49
49
  "@mdi/js": "^7.4.47",
50
- "@storybook/addon-docs": "^8.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",
50
+ "@storybook/addon-docs": "^8.4.7",
51
+ "@storybook/addon-essentials": "^8.4.7",
52
+ "@storybook/addon-interactions": "^8.4.7",
53
+ "@storybook/addon-links": "^8.4.7",
54
+ "@storybook/addon-onboarding": "^8.4.7",
55
55
  "@storybook/addon-queryparams": "^7.0.1",
56
- "@storybook/addon-viewport": "^8.3.6",
57
- "@storybook/blocks": "^8.3.6",
58
- "@storybook/manager-api": "^8.3.6",
59
- "@storybook/test": "^8.3.6",
60
- "@storybook/theming": "^8.3.6",
61
- "@storybook/vue3": "^8.3.6",
62
- "@storybook/vue3-vite": "^8.3.6",
56
+ "@storybook/addon-viewport": "^8.4.7",
57
+ "@storybook/blocks": "^8.4.7",
58
+ "@storybook/manager-api": "^8.4.7",
59
+ "@storybook/test": "^8.4.7",
60
+ "@storybook/theming": "^8.4.7",
61
+ "@storybook/vue3": "^8.4.7",
62
+ "@storybook/vue3-vite": "^8.4.7",
63
63
  "@stylistic/eslint-plugin": "^2.9.0",
64
64
  "@stylistic/eslint-plugin-ts": "^2.9.0",
65
65
  "@tsconfig/node20": "^20.1.4",
@@ -72,14 +72,13 @@
72
72
  "auto-changelog": "^2.4.0",
73
73
  "axios": "^1.7.7",
74
74
  "eslint": "^9.13.0",
75
- "eslint-plugin-storybook": "^0.8.0",
75
+ "eslint-plugin-storybook": "^0.11.1",
76
76
  "eslint-plugin-vue": "^9.30.0",
77
77
  "eslint-plugin-vuejs-accessibility": "^2.4.1",
78
78
  "happy-dom": "^15.7.4",
79
79
  "husky": "^9.1.6",
80
80
  "resize-observer-polyfill": "^1.5.1",
81
- "sass": "^1.80.5",
82
- "storybook": "^8.3.6",
81
+ "storybook": "^8.4.7",
83
82
  "storybook-addon-vue-mdx": "^1.0.4",
84
83
  "typescript": "5.4.2",
85
84
  "typescript-eslint": "^8.11.0",
@@ -100,6 +99,7 @@
100
99
  "deepmerge": "^4.3.1",
101
100
  "iso-639-1": "^3.1.3",
102
101
  "maska": "^3.0.3",
102
+ "sass-embedded": "^1.83.0",
103
103
  "sass-loader": "^16.0.3",
104
104
  "semantic-release": "^24.1.2"
105
105
  },
@@ -0,0 +1,3 @@
1
+ @use 'vuetify/settings' with (
2
+ $body-font-family: Arial
3
+ );
@@ -341,9 +341,9 @@ h1 {
341
341
  }
342
342
 
343
343
  .h1-bold {
344
- font-size: 32px !important;
345
- font-weight: bold !important;
346
- line-height: 130% !important;
344
+ font-size: 32px !important;
345
+ font-weight: bold !important;
346
+ line-height: 130% !important;
347
347
  }
348
348
 
349
349
  h2 {
@@ -352,9 +352,9 @@ h2 {
352
352
  }
353
353
 
354
354
  .h2-bold {
355
- font-size: 28px !important;
356
- font-weight: bold !important;
357
- line-height: 130% !important;
355
+ font-size: 28px !important;
356
+ font-weight: bold !important;
357
+ line-height: 130% !important;
358
358
  }
359
359
 
360
360
  h3 {
@@ -363,9 +363,9 @@ h3 {
363
363
  }
364
364
 
365
365
  .h3-bold {
366
- font-size: 24px !important;
367
- font-weight: bold !important;
368
- line-height: 130% !important;
366
+ font-size: 24px !important;
367
+ font-weight: bold !important;
368
+ line-height: 130% !important;
369
369
  }
370
370
 
371
371
  h4 {
@@ -374,14 +374,14 @@ h4 {
374
374
  }
375
375
 
376
376
  .h4-bold {
377
- font-size: 20px !important;
378
- font-weight: bold !important;
379
- line-height: 130% !important;
377
+ font-size: 20px !important;
378
+ font-weight: bold !important;
379
+ line-height: 130% !important;
380
380
  }
381
381
 
382
382
  .display-1 {
383
- font-size: 40px !important;
384
- line-height: 130% !important;
383
+ font-size: 40px !important;
384
+ line-height: 130% !important;
385
385
  }
386
386
 
387
387
  .display-1-bold {
@@ -391,8 +391,8 @@ h4 {
391
391
  }
392
392
 
393
393
  .display-2 {
394
- font-size: 30px !important;
395
- line-height: 130% !important;
394
+ font-size: 30px !important;
395
+ line-height: 130% !important;
396
396
  }
397
397
 
398
398
  .display-2-bold {
@@ -1,37 +1,7 @@
1
1
  import { ExpertiseLevelEnum } from './constants/ExpertiseLevelEnum'
2
2
 
3
3
  export const AccessibiliteItemsIndeterminate = [
4
- {
5
- title: 'Catégorie 1 : Images',
6
- subtitle: '1.4 Pour chaque image utilisée comme CAPTCHA ou comme image-test, ayant une alternative textuelle, cette alternative permet-elle d’identifier la nature et la fonction de l’image ?',
7
- items: [
8
- {
9
-
10
- precision: '1.4.1 Pour chaque image (balise <img>) utilisée comme CAPTCHA ou comme image-test, ayant une alternative textuelle, cette alternative est-elle pertinente ?',
11
- link: 'https://accessibilite.numerique.gouv.fr/methode/criteres-et-tests/#1.4.1',
12
- solution: [{
13
- info1: '1. Retrouver dans le document les images structurées au moyen d’un élément <img> pourvues d’une alternative textuelle et utilisées comme CAPTCHA ou comme image-test',
14
- info2: '2. Pour chaque image, vérifier que l’alternative textuelle est pertinente',
15
- info3: '3. Si c’est le cas pour chaque image, le test est validé',
16
- }],
17
- expertise: ExpertiseLevelEnum.DEV,
18
4
 
19
- },
20
- {
21
-
22
- precision: ' 1.4.6 Pour chaque image vectorielle (balise <svg>) utilisée comme CAPTCHA ou comme image-test, ayant une alternative textuelle, cette alternative est-elle pertinente ?',
23
- link: 'https://accessibilite.numerique.gouv.fr/methode/criteres-et-tests/#1.4.6',
24
- solution: [{
25
- info1: '1. Retrouver dans le document les éléments <svg> pourvus d’une alternative textuelle et utilisés comme CAPTCHA ou comme image-test;',
26
- info2: '2. Pour chaque élément <svg>, vérifier que l’alternative textuelle est pertinente',
27
- info3: '3. Si c’est le cas pour chaque image, le test est validé',
28
- }],
29
- expertise: ExpertiseLevelEnum.DEV,
30
-
31
- },
32
-
33
- ],
34
- },
35
5
  {
36
6
  title: 'Catégorie 10 : Présentation de l\'information',
37
7
  subtitle: '10.8 Pour chaque page web, les contenus cachés ont-ils vocation à être ignorés par les technologies d’assistance',
@@ -17,7 +17,7 @@ L’élément `BackBtn` est utilisé pour permettre à l’utilisateur de reveni
17
17
 
18
18
  <Source dark code={`
19
19
  <script setup lang="ts">
20
- import BackBtn from '@cnamts/synapse'
20
+ import { BackBtn } from '@cnamts/synapse'
21
21
  </script>
22
22
 
23
23
  <template>